Shortcodes Ultimate - Version 4.7.2

Version Description

  • New Ghost style for [button]
  • Minor UI fixes (for WP 3.9+)
Download this release

Release Info

Developer gn_themes
Plugin Icon 128x128 Shortcodes Ultimate
Version 4.7.2
Comparing to
See all releases

Code changes from version 4.7.1 to 4.7.2

assets/css/content-shortcodes.css CHANGED
@@ -296,6 +296,12 @@
296
  .su-button-style-flat span { border: none }
297
  .su-button-style-flat span { position: relative }
298
  .su-button-style-flat:hover span { top: 1px }
 
 
 
 
 
 
299
  .su-button-style-soft span { background: 0 -20px url('../images/styles/style-soft.png') repeat-x }
300
  .su-button-style-soft:hover span { background: 0 0 url('../images/styles/style-soft.png') repeat-x }
301
  .su-button-style-glass span { background: 0 50% url('../images/styles/style-glass.png') repeat-x }
296
  .su-button-style-flat span { border: none }
297
  .su-button-style-flat span { position: relative }
298
  .su-button-style-flat:hover span { top: 1px }
299
+ .su-button-style-ghost { background: transparent !important; }
300
+ .su-button-style-ghost span {
301
+ border-width: 3px;
302
+ border-style: solid;
303
+ }
304
+ .su-button-style-ghost:hover span { border-color: inherit !important; }
305
  .su-button-style-soft span { background: 0 -20px url('../images/styles/style-soft.png') repeat-x }
306
  .su-button-style-soft:hover span { background: 0 0 url('../images/styles/style-soft.png') repeat-x }
307
  .su-button-style-glass span { background: 0 50% url('../images/styles/style-glass.png') repeat-x }
assets/css/generator.css CHANGED
@@ -622,10 +622,9 @@
622
  color: #fff;
623
  }
624
 
625
- /* Compatibility for Visual Composer, Elegant Themes and SiteOrigin page builders */
626
- body.su-generator-priority-mode .mfp-bg { z-index: 90001 !important; }
627
- body.su-generator-priority-mode .mfp-wrap { z-index: 90002 !important; }
628
- body.su-generator-priority-mode .mfp-preloader { z-index: 90003 !important; }
629
- body.su-generator-priority-mode .mfp-content { z-index: 90004 !important; }
630
- body.su-generator-priority-mode button.mfp-close,
631
- body.su-generator-priority-mode button.mfp-arrow { z-index: 90005 !important; }
622
  color: #fff;
623
  }
624
 
625
+ body.su-mfp-shown .mfp-bg { z-index: 10000 !important; }
626
+ body.su-mfp-shown .mfp-wrap { z-index: 10001 !important; }
627
+ body.su-mfp-shown .mfp-preloader { z-index: 10002 !important; }
628
+ body.su-mfp-shown .mfp-content { z-index: 10003 !important; }
629
+ body.su-mfp-shown button.mfp-close,
630
+ body.su-mfp-shown button.mfp-arrow { z-index: 10004 !important; }
 
assets/css/options-page.css CHANGED
@@ -255,3 +255,10 @@ body.toplevel_page_shortcodes-ultimate .mfp-iframe-scaler iframe { background: #
255
  background: #FFFFE0;
256
  font-family: Monaco, Consolas, monospace;
257
  }
 
 
 
 
 
 
 
255
  background: #FFFFE0;
256
  font-family: Monaco, Consolas, monospace;
257
  }
258
+
259
+ body.su-mfp-shown .mfp-bg { z-index: 10000 !important; }
260
+ body.su-mfp-shown .mfp-wrap { z-index: 10001 !important; }
261
+ body.su-mfp-shown .mfp-preloader { z-index: 10002 !important; }
262
+ body.su-mfp-shown .mfp-content { z-index: 10003 !important; }
263
+ body.su-mfp-shown button.mfp-close,
264
+ body.su-mfp-shown button.mfp-arrow { z-index: 10004 !important; }
assets/js/generator.js CHANGED
@@ -19,19 +19,19 @@ jQuery(document).ready(function ($) {
19
  // Save the target
20
  window.su_generator_target = $(this).data('target');
21
  // Visual Composer
22
- if ($('#wpb_visual_composer').is(':visible')) {
23
- $('body').addClass('su-generator-priority-mode');
24
- window.su_generator_target = 'wpb_tinymce_content';
25
- }
26
  // Elegant Themes page builder
27
- else if ($('.et_pb_modal_settings_container').is(':visible')) {
28
- $('body').addClass('su-generator-priority-mode');
29
- window.su_generator_target = 'et_pb_content_new';
30
- }
31
  // SiteOrigin page builder
32
- else if ($('.panels-admin-dialog').is(':visible')) {
33
- $('body').addClass('su-generator-priority-mode');
34
- }
35
  // Get open shortcode
36
  var shortcode = $(this).data('shortcode');
37
  // Open magnificPopup
@@ -47,7 +47,7 @@ jQuery(document).ready(function ($) {
47
  $search.focus();
48
  }, 200);
49
  // Change z-index
50
- $('body').addClass('su-generator-shown');
51
  // Save selection
52
  mce_selection = (typeof tinyMCE !== 'undefined' && tinyMCE.activeEditor != null && tinyMCE.activeEditor.hasOwnProperty('selection')) ? tinyMCE.activeEditor.selection.getContent({
53
  format: "text"
@@ -68,7 +68,7 @@ jQuery(document).ready(function ($) {
68
  // Clear selection
69
  mce_selection = '';
70
  // Change z-index
71
- $('body').removeClass('su-generator-shown');
72
  }
73
  }
74
  }).magnificPopup('open');
19
  // Save the target
20
  window.su_generator_target = $(this).data('target');
21
  // Visual Composer
22
+ // if ($('#wpb_visual_composer').is(':visible')) {
23
+ // $('body').addClass('su-generator-priority-mode');
24
+ // window.su_generator_target = 'wpb_tinymce_content';
25
+ // }
26
  // Elegant Themes page builder
27
+ // else if ($('.et_pb_modal_settings_container').is(':visible')) {
28
+ // $('body').addClass('su-generator-priority-mode');
29
+ // window.su_generator_target = 'et_pb_content_new';
30
+ // }
31
  // SiteOrigin page builder
32
+ // else if ($('.panels-admin-dialog').is(':visible')) {
33
+ // $('body').addClass('su-generator-priority-mode');
34
+ // }
35
  // Get open shortcode
36
  var shortcode = $(this).data('shortcode');
37
  // Open magnificPopup
47
  $search.focus();
48
  }, 200);
49
  // Change z-index
50
+ $('body').addClass('su-mfp-shown');
51
  // Save selection
52
  mce_selection = (typeof tinyMCE !== 'undefined' && tinyMCE.activeEditor != null && tinyMCE.activeEditor.hasOwnProperty('selection')) ? tinyMCE.activeEditor.selection.getContent({
53
  format: "text"
68
  // Clear selection
69
  mce_selection = '';
70
  // Change z-index
71
+ $('body').removeClass('su-mfp-shown');
72
  }
73
  }
74
  }).magnificPopup('open');
assets/js/options-page.js CHANGED
@@ -4,13 +4,33 @@ jQuery(document).ready(function ($) {
4
  // ########## About screen ##########
5
 
6
  $('.su-demo-video').magnificPopup({
7
- type: 'iframe'
 
 
 
 
 
 
 
 
 
 
8
  });
9
 
10
  // ########## Custom CSS screen ##########
11
 
12
  $('.su-custom-css-originals a').magnificPopup({
13
- type: 'iframe'
 
 
 
 
 
 
 
 
 
 
14
  });
15
 
16
  // Enable ACE editor
@@ -69,7 +89,13 @@ jQuery(document).ready(function ($) {
69
  type: 'inline',
70
  alignTop: true,
71
  callbacks: {
 
 
 
 
72
  close: function () {
 
 
73
  $example_preview.html('');
74
  }
75
  }
4
  // ########## About screen ##########
5
 
6
  $('.su-demo-video').magnificPopup({
7
+ type: 'iframe',
8
+ callbacks: {
9
+ open: function () {
10
+ // Change z-index
11
+ $('body').addClass('su-mfp-shown');
12
+ },
13
+ close: function () {
14
+ // Change z-index
15
+ $('body').removeClass('su-mfp-shown');
16
+ }
17
+ }
18
  });
19
 
20
  // ########## Custom CSS screen ##########
21
 
22
  $('.su-custom-css-originals a').magnificPopup({
23
+ type: 'iframe',
24
+ callbacks: {
25
+ open: function () {
26
+ // Change z-index
27
+ $('body').addClass('su-mfp-shown');
28
+ },
29
+ close: function () {
30
+ // Change z-index
31
+ $('body').removeClass('su-mfp-shown');
32
+ }
33
+ }
34
  });
35
 
36
  // Enable ACE editor
89
  type: 'inline',
90
  alignTop: true,
91
  callbacks: {
92
+ open: function () {
93
+ // Change z-index
94
+ $('body').addClass('su-mfp-shown');
95
+ },
96
  close: function () {
97
+ // Change z-index
98
+ $('body').removeClass('su-mfp-shown');
99
  $example_preview.html('');
100
  }
101
  }
inc/core/data.php CHANGED
@@ -683,6 +683,7 @@ class Su_Data {
683
  'values' => array(
684
  'default' => __( 'Default', 'su' ),
685
  'flat' => __( 'Flat', 'su' ),
 
686
  'soft' => __( 'Soft', 'su' ),
687
  'glass' => __( 'Glass', 'su' ),
688
  'bubbles' => __( 'Bubbles', 'su' ),
683
  'values' => array(
684
  'default' => __( 'Default', 'su' ),
685
  'flat' => __( 'Flat', 'su' ),
686
+ 'ghost' => __( 'Ghost', 'su' ),
687
  'soft' => __( 'Soft', 'su' ),
688
  'glass' => __( 'Glass', 'su' ),
689
  'bubbles' => __( 'Bubbles', 'su' ),
inc/core/load.php CHANGED
@@ -214,6 +214,7 @@ class Shortcodes_Ultimate {
214
  * Add plugin actions links
215
  */
216
  public static function actions_links( $links ) {
 
217
  $links[] = '<a href="' . admin_url( 'admin.php?page=shortcodes-ultimate' ) . '#tab-0">' . __( 'Where to start?', 'su' ) . '</a>';
218
  return $links;
219
  }
214
  * Add plugin actions links
215
  */
216
  public static function actions_links( $links ) {
217
+ $links[] = '<a href="' . admin_url( 'admin.php?page=shortcodes-ultimate-examples' ) . '">' . __( 'Examples', 'su' ) . '</a>';
218
  $links[] = '<a href="' . admin_url( 'admin.php?page=shortcodes-ultimate' ) . '#tab-0">' . __( 'Where to start?', 'su' ) . '</a>';
219
  return $links;
220
  }
inc/core/tools.php CHANGED
@@ -673,7 +673,8 @@ class Su_Tools {
673
  }
674
 
675
  public static function reset_users_cache() {
676
- if ( $_GET['update'] === 'del' || $_GET['update'] === 'add' || $_GET['updated'] === '1' ) delete_transient( 'su/users_cache' );
 
677
  }
678
 
679
  public static function get_taxonomies() {
673
  }
674
 
675
  public static function reset_users_cache() {
676
+ if ( ( isset( $_GET['update'] ) || isset( $_GET['updated'] ) ) )
677
+ if ( $_GET['update'] === 'del' || $_GET['update'] === 'add' || $_GET['updated'] === '1' ) delete_transient( 'su/users_cache' );
678
  }
679
 
680
  public static function get_taxonomies() {
languages/su-ru_RU.mo CHANGED
Binary file
languages/su-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-04-02 21:13+0400\n"
6
- "PO-Revision-Date: 2014-04-02 21:20+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
@@ -24,7 +24,7 @@ msgstr "Добро пожаловать в Shortcodes Ultimate"
24
  msgid "A real swiss army knife for WordPress"
25
  msgstr "Настоящий швейцарский армейский нож для WordPress"
26
 
27
- #: inc/core/admin-views.php:11 inc/core/load.php:228
28
  msgid "Project homepage"
29
  msgstr "Страница проекта"
30
 
@@ -32,11 +32,11 @@ msgstr "Страница проекта"
32
  msgid "Documentation"
33
  msgstr "Документация"
34
 
35
- #: inc/core/admin-views.php:13 inc/core/load.php:229
36
  msgid "Support forum"
37
  msgstr "Форум поддержки"
38
 
39
- #: inc/core/admin-views.php:14 inc/core/load.php:230
40
  msgid "Changelog"
41
  msgstr "Список изменений"
42
 
@@ -266,7 +266,7 @@ msgstr "Все"
266
  msgid "Content"
267
  msgstr "Содержимое"
268
 
269
- #: inc/core/data.php:19 inc/core/data.php:826
270
  msgid "Box"
271
  msgstr "Блок"
272
 
@@ -274,7 +274,7 @@ msgstr "Блок"
274
  msgid "Media"
275
  msgstr "Медиа"
276
 
277
- #: inc/core/data.php:21 inc/core/data.php:2096
278
  msgid "Gallery"
279
  msgstr "Галерея"
280
 
@@ -286,8 +286,8 @@ msgstr "Данные"
286
  msgid "Other"
287
  msgstr "Другое"
288
 
289
- #: inc/core/data.php:32 inc/core/data.php:1861 inc/core/data.php:1980
290
- #: inc/core/data.php:2118 inc/core/data.php:2262
291
  msgid "None"
292
  msgstr "Нет"
293
 
@@ -364,14 +364,14 @@ msgstr "Заголовок"
364
 
365
  #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:274
366
  #: inc/core/data.php:426 inc/core/data.php:456 inc/core/data.php:517
367
- #: inc/core/data.php:684 inc/core/data.php:838 inc/core/data.php:1002
368
- #: inc/core/data.php:2465 inc/core/data.php:2517 inc/core/data.php:2580
369
  msgid "Default"
370
  msgstr "По умолчанию"
371
 
372
  #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:279
373
- #: inc/core/data.php:459 inc/core/data.php:523 inc/core/data.php:694
374
- #: inc/core/data.php:845 inc/core/data.php:972
375
  msgid "Style"
376
  msgstr "Стиль"
377
 
@@ -385,7 +385,7 @@ msgid "Install additional styles"
385
  msgstr "Установить дополнительные стили"
386
 
387
  #: inc/core/data.php:148 inc/core/data.php:531 inc/core/data.php:610
388
- #: inc/core/data.php:715
389
  msgid "Size"
390
  msgstr "Размер"
391
 
@@ -394,17 +394,17 @@ msgid "Select heading size (pixels)"
394
  msgstr "Выберите размер заголовка (в пикселях)"
395
 
396
  #: inc/core/data.php:154 inc/core/data.php:492 inc/core/data.php:553
397
- #: inc/core/data.php:980
398
  msgid "Left"
399
  msgstr "Слева"
400
 
401
- #: inc/core/data.php:155 inc/core/data.php:554 inc/core/data.php:1912
402
- #: inc/core/data.php:2050
403
  msgid "Center"
404
  msgstr "По центру"
405
 
406
  #: inc/core/data.php:156 inc/core/data.php:493 inc/core/data.php:555
407
- #: inc/core/data.php:981
408
  msgid "Right"
409
  msgstr "Справа"
410
 
@@ -429,26 +429,7 @@ msgstr "Отступ снизу (в пикселях)"
429
  #: inc/core/data.php:381 inc/core/data.php:409 inc/core/data.php:439
430
  #: inc/core/data.php:475 inc/core/data.php:500 inc/core/data.php:536
431
  #: inc/core/data.php:563 inc/core/data.php:579 inc/core/data.php:621
432
- #: inc/core/data.php:651 inc/core/data.php:772 inc/core/data.php:816
433
- #: inc/core/data.php:872 inc/core/data.php:909 inc/core/data.php:941
434
- #: inc/core/data.php:1043 inc/core/data.php:1059 inc/core/data.php:1111
435
- #: inc/core/data.php:1236 inc/core/data.php:1287 inc/core/data.php:1332
436
- #: inc/core/data.php:1431 inc/core/data.php:1470 inc/core/data.php:1540
437
- #: inc/core/data.php:1562 inc/core/data.php:1593 inc/core/data.php:1626
438
- #: inc/core/data.php:1642 inc/core/data.php:1672 inc/core/data.php:1692
439
- #: inc/core/data.php:1719 inc/core/data.php:1740 inc/core/data.php:1785
440
- #: inc/core/data.php:1830 inc/core/data.php:1949 inc/core/data.php:2087
441
- #: inc/core/data.php:2168 inc/core/data.php:2342 inc/core/data.php:2397
442
- #: inc/core/data.php:2443
443
- msgid "Class"
444
- msgstr "Класс"
445
-
446
- #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
447
- #: inc/core/data.php:311 inc/core/data.php:329 inc/core/data.php:358
448
- #: inc/core/data.php:382 inc/core/data.php:410 inc/core/data.php:440
449
- #: inc/core/data.php:476 inc/core/data.php:501 inc/core/data.php:537
450
- #: inc/core/data.php:564 inc/core/data.php:580 inc/core/data.php:622
451
- #: inc/core/data.php:652 inc/core/data.php:773 inc/core/data.php:817
452
  #: inc/core/data.php:873 inc/core/data.php:910 inc/core/data.php:942
453
  #: inc/core/data.php:1044 inc/core/data.php:1060 inc/core/data.php:1112
454
  #: inc/core/data.php:1237 inc/core/data.php:1288 inc/core/data.php:1333
@@ -459,6 +440,25 @@ msgstr "Класс"
459
  #: inc/core/data.php:1831 inc/core/data.php:1950 inc/core/data.php:2088
460
  #: inc/core/data.php:2169 inc/core/data.php:2343 inc/core/data.php:2398
461
  #: inc/core/data.php:2444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  msgid "Extra CSS class"
463
  msgstr "Дополнительный CSS класс"
464
 
@@ -516,8 +516,8 @@ msgstr "Вкладка"
516
  msgid "Tab name"
517
  msgstr "Имя вкладки"
518
 
519
- #: inc/core/data.php:230 inc/core/data.php:263 inc/core/data.php:790
520
- #: inc/core/data.php:833 inc/core/data.php:1499
521
  msgid "Title"
522
  msgstr "Заголовок"
523
 
@@ -640,8 +640,8 @@ msgstr "Папка 1"
640
  msgid "Folder 2"
641
  msgstr "Папка 2"
642
 
643
- #: inc/core/data.php:300 inc/core/data.php:640 inc/core/data.php:745
644
- #: inc/core/data.php:796
645
  msgid "Icon"
646
  msgstr "Иконка"
647
 
@@ -726,11 +726,11 @@ msgstr "Разделитель текста со ссылкой ВВЕРХ"
726
  msgid "Spacer"
727
  msgstr "Пробел"
728
 
729
- #: inc/core/data.php:376 inc/core/data.php:1094 inc/core/data.php:1151
730
- #: inc/core/data.php:1270 inc/core/data.php:1321 inc/core/data.php:1365
731
- #: inc/core/data.php:1517 inc/core/data.php:1774 inc/core/data.php:1813
732
- #: inc/core/data.php:1896 inc/core/data.php:2016 inc/core/data.php:2153
733
- #: inc/core/data.php:2370
734
  msgid "Height"
735
  msgstr "Высота"
736
 
@@ -746,7 +746,7 @@ msgstr "Пробел с настраиваемой высотой"
746
  msgid "Highlight"
747
  msgstr "Выделитель"
748
 
749
- #: inc/core/data.php:398 inc/core/data.php:700 inc/core/data.php:890
750
  msgid "Background"
751
  msgstr "Фон"
752
 
@@ -754,7 +754,7 @@ msgstr "Фон"
754
  msgid "Highlighted text background color"
755
  msgstr "Цвет фона выделяемого текста"
756
 
757
- #: inc/core/data.php:405 inc/core/data.php:706 inc/core/data.php:896
758
  msgid "Text color"
759
  msgstr "Цвет текста"
760
 
@@ -949,7 +949,7 @@ msgid "Select column width. This width will be calculated depend page width"
949
  msgstr ""
950
  "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
951
 
952
- #: inc/core/data.php:616 inc/core/data.php:726
953
  msgid "Centered"
954
  msgstr "По центру"
955
 
@@ -977,11 +977,11 @@ msgstr "Список"
977
  msgid "You can upload custom icon for this list or pick a built-in icon"
978
  msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
979
 
980
- #: inc/core/data.php:646 inc/core/data.php:751 inc/core/data.php:802
981
  msgid "Icon color"
982
  msgstr "Цвет иконки"
983
 
984
- #: inc/core/data.php:647 inc/core/data.php:752 inc/core/data.php:803
985
  msgid ""
986
  "This color will be applied to the selected icon. Does not works with "
987
  "uploaded icons"
@@ -1019,15 +1019,15 @@ msgstr "Ссылка"
1019
  msgid "Button link"
1020
  msgstr "Ссылка кнопки"
1021
 
1022
- #: inc/core/data.php:674 inc/core/data.php:1584
1023
  msgid "Same tab"
1024
  msgstr "Та же вкладка"
1025
 
1026
- #: inc/core/data.php:675 inc/core/data.php:1585
1027
  msgid "New tab"
1028
  msgstr "Новая вкладка"
1029
 
1030
- #: inc/core/data.php:678 inc/core/data.php:1588
1031
  msgid "Target"
1032
  msgstr "Цель"
1033
 
@@ -1035,244 +1035,248 @@ msgstr "Цель"
1035
  msgid "Button link target"
1036
  msgstr "Цель ссылки кнопки"
1037
 
1038
- #: inc/core/data.php:686 inc/core/data.php:839
 
 
 
 
1039
  msgid "Soft"
1040
  msgstr "Мягкий"
1041
 
1042
- #: inc/core/data.php:687 inc/core/data.php:840
1043
  msgid "Glass"
1044
  msgstr "Стекло"
1045
 
1046
- #: inc/core/data.php:688 inc/core/data.php:841
1047
  msgid "Bubbles"
1048
  msgstr "Пузыри"
1049
 
1050
- #: inc/core/data.php:689 inc/core/data.php:842
1051
  msgid "Noise"
1052
  msgstr "Шум"
1053
 
1054
- #: inc/core/data.php:690
1055
  msgid "Stroked"
1056
  msgstr "Прошитый"
1057
 
1058
- #: inc/core/data.php:691
1059
  msgid "3D"
1060
  msgstr "3D"
1061
 
1062
- #: inc/core/data.php:694
1063
  msgid "Button background style preset"
1064
  msgstr "Стиль фона кнопки"
1065
 
1066
- #: inc/core/data.php:700
1067
  msgid "Button background color"
1068
  msgstr "Цвет фона кнопки"
1069
 
1070
- #: inc/core/data.php:707
1071
  msgid "Button text color"
1072
  msgstr "Цвет текста кнопки"
1073
 
1074
- #: inc/core/data.php:716
1075
  msgid "Button size"
1076
  msgstr "Размер кнопки"
1077
 
1078
- #: inc/core/data.php:721
1079
  msgid "Fluid"
1080
  msgstr "Резиновая"
1081
 
1082
- #: inc/core/data.php:721
1083
  msgid "Fluid buttons has 100% width"
1084
  msgstr "Резиновые кнопки имеют ширину 100%"
1085
 
1086
- #: inc/core/data.php:726
1087
  msgid "Is button centered on the page"
1088
  msgstr "Кнопка выровнена по центру страницы"
1089
 
1090
- #: inc/core/data.php:731
1091
  msgid "Auto"
1092
  msgstr "Авто"
1093
 
1094
- #: inc/core/data.php:732
1095
  msgid "Round"
1096
  msgstr "Круглый"
1097
 
1098
- #: inc/core/data.php:733
1099
  msgid "Square"
1100
  msgstr "Квадратный"
1101
 
1102
- #: inc/core/data.php:739 inc/core/data.php:867 inc/core/data.php:905
1103
  msgid "Radius"
1104
  msgstr "Радиус"
1105
 
1106
- #: inc/core/data.php:740
1107
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1108
  msgstr ""
1109
  "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
1110
 
1111
- #: inc/core/data.php:746
1112
  msgid "You can upload custom icon for this button or pick a built-in icon"
1113
  msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
1114
 
1115
- #: inc/core/data.php:757
1116
  msgid "Text shadow"
1117
  msgstr "Тень текста"
1118
 
1119
- #: inc/core/data.php:758
1120
  msgid "Button text shadow"
1121
  msgstr "Тень текста на кнопке"
1122
 
1123
- #: inc/core/data.php:762
1124
  msgid "Description"
1125
  msgstr "Описание"
1126
 
1127
- #: inc/core/data.php:763
1128
  msgid ""
1129
  "Small description under button text. This option is incompatible with icon."
1130
  msgstr ""
1131
  "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
1132
  "кнопок."
1133
 
1134
- #: inc/core/data.php:767
1135
  msgid "onClick"
1136
  msgstr "onClick"
1137
 
1138
- #: inc/core/data.php:768
1139
  msgid "Advanced JavaScript code for onClick action"
1140
  msgstr "JavaScript код для атрибута onClick"
1141
 
1142
- #: inc/core/data.php:776
1143
  msgid "Button text"
1144
  msgstr "Текст кнопки"
1145
 
1146
- #: inc/core/data.php:777
1147
  msgid "Styled button"
1148
  msgstr "Стильная кнопка"
1149
 
1150
- #: inc/core/data.php:783
1151
  msgid "Service"
1152
  msgstr "Услуга"
1153
 
1154
- #: inc/core/data.php:789 inc/core/shortcodes.php:430
1155
  msgid "Service title"
1156
  msgstr "Название услуги"
1157
 
1158
- #: inc/core/data.php:791
1159
  msgid "Service name"
1160
  msgstr "Название услуги"
1161
 
1162
- #: inc/core/data.php:797
1163
  msgid "You can upload custom icon for this box"
1164
  msgstr "Вы можете загрузить свою иконку для этого блока"
1165
 
1166
- #: inc/core/data.php:811
1167
  msgid "Icon size"
1168
  msgstr "Размер иконки"
1169
 
1170
- #: inc/core/data.php:812
1171
  msgid "Size of the uploaded icon in pixels"
1172
  msgstr "Размер загруженной иконки в пикселях"
1173
 
1174
- #: inc/core/data.php:820
1175
  msgid "Service description"
1176
  msgstr "Описание услуги"
1177
 
1178
- #: inc/core/data.php:821
1179
  msgid "Service box with title"
1180
  msgstr "Блок услуга с заголовком"
1181
 
1182
- #: inc/core/data.php:832
1183
  msgid "Box title"
1184
  msgstr "Заголовок блока"
1185
 
1186
- #: inc/core/data.php:833
1187
  msgid "Text for the box title"
1188
  msgstr "Текст для заголовка блока"
1189
 
1190
- #: inc/core/data.php:846
1191
  msgid "Box style preset"
1192
  msgstr "Стиль блока"
1193
 
1194
- #: inc/core/data.php:852 inc/core/generator-views.php:99
1195
  msgid "Color"
1196
  msgstr "Цвет"
1197
 
1198
- #: inc/core/data.php:853
1199
  msgid "Color for the box title and borders"
1200
  msgstr "Цвет заголовка блока и его рамки"
1201
 
1202
- #: inc/core/data.php:859
1203
  msgid "Title text color"
1204
  msgstr "Цвет текста заголовка"
1205
 
1206
- #: inc/core/data.php:859
1207
  msgid "Color for the box title text"
1208
  msgstr "Цвет текста в заголовке блока"
1209
 
1210
- #: inc/core/data.php:868
1211
  msgid "Box corners radius"
1212
  msgstr "Радиус углов"
1213
 
1214
- #: inc/core/data.php:876
1215
  msgid "Box content"
1216
  msgstr "Содержимое блока"
1217
 
1218
- #: inc/core/data.php:877
1219
  msgid "Colored box with caption"
1220
  msgstr "Цветной блок с заголовком"
1221
 
1222
- #: inc/core/data.php:882
1223
  msgid "Note"
1224
  msgstr "Заметка"
1225
 
1226
- #: inc/core/data.php:890
1227
  msgid "Note background color"
1228
  msgstr "Цвет фона заметки"
1229
 
1230
- #: inc/core/data.php:897
1231
  msgid "Note text color"
1232
  msgstr "Цвет текста заметки"
1233
 
1234
- #: inc/core/data.php:905
1235
  msgid "Note corners radius"
1236
  msgstr "Радиус углов"
1237
 
1238
- #: inc/core/data.php:913
1239
  msgid "Note text"
1240
  msgstr "Текст заметки"
1241
 
1242
- #: inc/core/data.php:914
1243
  msgid "Colored box"
1244
  msgstr "Цветной блок"
1245
 
1246
- #: inc/core/data.php:919 inc/core/data.php:1863 inc/core/data.php:1982
1247
- #: inc/core/data.php:2120
1248
  msgid "Lightbox"
1249
  msgstr "Лайтбокс"
1250
 
1251
- #: inc/core/data.php:926
1252
  msgid "Iframe"
1253
  msgstr "Фрейм (iframe)"
1254
 
1255
- #: inc/core/data.php:927
1256
  msgid "Image"
1257
  msgstr "Изображение"
1258
 
1259
- #: inc/core/data.php:928
1260
  msgid "Inline (html content)"
1261
  msgstr "HTML элемент"
1262
 
1263
- #: inc/core/data.php:931
1264
  msgid "Content type"
1265
  msgstr "Тип содержимого"
1266
 
1267
- #: inc/core/data.php:932
1268
  msgid "Select type of the lightbox window content"
1269
  msgstr "Выберите тип содержимого в окне лайтбокса"
1270
 
1271
- #: inc/core/data.php:936
1272
  msgid "Content source"
1273
  msgstr "Источник содержимого"
1274
 
1275
- #: inc/core/data.php:937
1276
  msgid ""
1277
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1278
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
@@ -1289,102 +1293,102 @@ msgstr ""
1289
  "%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
1290
  "%value>#contact-form</b> - любой HTML элемент (html элемент)"
1291
 
1292
- #: inc/core/data.php:945
1293
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1294
  msgstr ""
1295
  "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
1296
 
1297
- #: inc/core/data.php:946
1298
  msgid "Lightbox window with custom content"
1299
  msgstr "Лайтбокс с произвольным содержимым"
1300
 
1301
- #: inc/core/data.php:951
1302
  msgid "Tooltip"
1303
  msgstr "Подсказка"
1304
 
1305
- #: inc/core/data.php:958
1306
  msgid "Basic: Light"
1307
  msgstr "Базовый: Светлый"
1308
 
1309
- #: inc/core/data.php:959
1310
  msgid "Basic: Dark"
1311
  msgstr "Базовый: Темный"
1312
 
1313
- #: inc/core/data.php:960
1314
  msgid "Basic: Yellow"
1315
  msgstr "Базовый: Желтый"
1316
 
1317
- #: inc/core/data.php:961
1318
  msgid "Basic: Green"
1319
  msgstr "Базовый: Зеленый"
1320
 
1321
- #: inc/core/data.php:962
1322
  msgid "Basic: Red"
1323
  msgstr "Базовый: Красный"
1324
 
1325
- #: inc/core/data.php:963
1326
  msgid "Basic: Blue"
1327
  msgstr "Базовый: Голубой"
1328
 
1329
- #: inc/core/data.php:964
1330
  msgid "Youtube"
1331
  msgstr "Youtube"
1332
 
1333
- #: inc/core/data.php:965
1334
  msgid "Tipsy"
1335
  msgstr "Tipsy"
1336
 
1337
- #: inc/core/data.php:966
1338
  msgid "Bootstrap"
1339
  msgstr "Bootstrap"
1340
 
1341
- #: inc/core/data.php:967
1342
  msgid "jTools"
1343
  msgstr "jTools"
1344
 
1345
- #: inc/core/data.php:968
1346
  msgid "Tipped"
1347
  msgstr "Tipped"
1348
 
1349
- #: inc/core/data.php:969
1350
  msgid "Cluetip"
1351
  msgstr "Cluetip"
1352
 
1353
- #: inc/core/data.php:973
1354
  msgid "Tooltip window style"
1355
  msgstr "Стиль окна подсказки"
1356
 
1357
- #: inc/core/data.php:978
1358
  msgid "Top"
1359
  msgstr "Сверху"
1360
 
1361
- #: inc/core/data.php:979
1362
  msgid "Bottom"
1363
  msgstr "Снизу"
1364
 
1365
- #: inc/core/data.php:984
1366
  msgid "Position"
1367
  msgstr "Положение"
1368
 
1369
- #: inc/core/data.php:985
1370
  msgid "Tooltip position"
1371
  msgstr "Положение всплывающей подсказки"
1372
 
1373
- #: inc/core/data.php:990
1374
  msgid "Shadow"
1375
  msgstr "Тень"
1376
 
1377
- #: inc/core/data.php:991
1378
  msgid ""
1379
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1380
  "blue, green etc."
1381
  msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
1382
 
1383
- #: inc/core/data.php:996
1384
  msgid "Rounded corners"
1385
  msgstr "Скругление"
1386
 
1387
- #: inc/core/data.php:997
1388
  msgid ""
1389
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1390
  "blue, green etc."
@@ -1392,154 +1396,154 @@ msgstr ""
1392
  "Добавить скругленные уголки окну подсказки. Скругление работает только для "
1393
  "базовых стилей."
1394
 
1395
- #: inc/core/data.php:1011
1396
  msgid "Font size"
1397
  msgstr "Размер шрифта"
1398
 
1399
- #: inc/core/data.php:1012
1400
  msgid "Tooltip font size"
1401
  msgstr "Размер шрифта подсказки"
1402
 
1403
- #: inc/core/data.php:1016
1404
  msgid "Tooltip title"
1405
  msgstr "Заголовок подсказки"
1406
 
1407
- #: inc/core/data.php:1017
1408
  msgid ""
1409
  "Enter title for tooltip window. Leave this field empty to hide the title"
1410
  msgstr ""
1411
  "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
1412
  "заголовок"
1413
 
1414
- #: inc/core/data.php:1020 inc/core/shortcodes.php:508
1415
  msgid "Tooltip text"
1416
  msgstr "Текст подсказки"
1417
 
1418
- #: inc/core/data.php:1021
1419
  msgid "Tooltip content"
1420
  msgstr "Содержимое подсказки"
1421
 
1422
- #: inc/core/data.php:1022
1423
  msgid "Enter tooltip content here"
1424
  msgstr "Введите сюда содержимое подсказки"
1425
 
1426
- #: inc/core/data.php:1027
1427
  msgid "Show and hide on mouse hover"
1428
  msgstr "Показать и скрыть при наведении мыши"
1429
 
1430
- #: inc/core/data.php:1028
1431
  msgid "Show and hide by mouse click"
1432
  msgstr "Показать и скрыть по клику мыши"
1433
 
1434
- #: inc/core/data.php:1029
1435
  msgid "Always visible"
1436
  msgstr "Всегда видима"
1437
 
1438
- #: inc/core/data.php:1032
1439
  msgid "Behavior"
1440
  msgstr "Поведение"
1441
 
1442
- #: inc/core/data.php:1033
1443
  msgid "Select tooltip behavior"
1444
  msgstr "Выберите поведение подсказки"
1445
 
1446
- #: inc/core/data.php:1038
1447
  msgid "Close button"
1448
  msgstr "Кнопка закрыть"
1449
 
1450
- #: inc/core/data.php:1039
1451
  msgid "Show close button"
1452
  msgstr "Показывать кнопку закрыть"
1453
 
1454
- #: inc/core/data.php:1047
1455
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1456
  msgstr ""
1457
  "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
1458
 
1459
- #: inc/core/data.php:1048
1460
  msgid "Tooltip window with custom content"
1461
  msgstr "Всплывающая подсказка с произвольным содержимым"
1462
 
1463
- #: inc/core/data.php:1053
1464
  msgid "Private"
1465
  msgstr "Заметка для авторов"
1466
 
1467
- #: inc/core/data.php:1063
1468
  msgid "Private note text"
1469
  msgstr "Текст приватной заметки"
1470
 
1471
- #: inc/core/data.php:1064
1472
  msgid "Private note for post authors"
1473
  msgstr "Приватный текст для других авторов"
1474
 
1475
- #: inc/core/data.php:1069
1476
  msgid "YouTube"
1477
  msgstr "YouTube"
1478
 
1479
- #: inc/core/data.php:1076 inc/core/data.php:1128 inc/core/data.php:1253
1480
- #: inc/core/data.php:1303 inc/core/data.php:1347 inc/core/data.php:1659
1481
- #: inc/core/data.php:1756
1482
  msgid "Url"
1483
  msgstr "Ссылка"
1484
 
1485
- #: inc/core/data.php:1077 inc/core/data.php:1129
1486
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1487
  msgstr ""
1488
  "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1489
 
1490
- #: inc/core/data.php:1085 inc/core/data.php:1142 inc/core/data.php:1261
1491
- #: inc/core/data.php:1312 inc/core/data.php:1356 inc/core/data.php:1453
1492
- #: inc/core/data.php:1508 inc/core/data.php:1765 inc/core/data.php:1804
1493
- #: inc/core/data.php:1888 inc/core/data.php:2007 inc/core/data.php:2145
1494
- #: inc/core/data.php:2361
1495
  msgid "Width"
1496
  msgstr "Ширина"
1497
 
1498
- #: inc/core/data.php:1086 inc/core/data.php:1143 inc/core/data.php:1262
1499
- #: inc/core/data.php:1313 inc/core/data.php:1357 inc/core/data.php:1509
1500
  msgid "Player width"
1501
  msgstr "Ширина плеера"
1502
 
1503
- #: inc/core/data.php:1095 inc/core/data.php:1152 inc/core/data.php:1271
1504
- #: inc/core/data.php:1322 inc/core/data.php:1366 inc/core/data.php:1518
1505
  msgid "Player height"
1506
  msgstr "Высота плеера"
1507
 
1508
- #: inc/core/data.php:1100 inc/core/data.php:1157 inc/core/data.php:1276
1509
- #: inc/core/data.php:1327 inc/core/data.php:1371 inc/core/data.php:1780
1510
- #: inc/core/data.php:1819 inc/core/data.php:1901 inc/core/data.php:2022
1511
  msgid "Responsive"
1512
  msgstr "Отзывчивость (responsive)"
1513
 
1514
- #: inc/core/data.php:1101 inc/core/data.php:1158 inc/core/data.php:1277
1515
- #: inc/core/data.php:1328 inc/core/data.php:1372
1516
  msgid "Ignore width and height parameters and make player responsive"
1517
  msgstr ""
1518
  "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1519
 
1520
- #: inc/core/data.php:1106 inc/core/data.php:1191 inc/core/data.php:1282
1521
- #: inc/core/data.php:1377 inc/core/data.php:1459 inc/core/data.php:1529
1522
- #: inc/core/data.php:1936 inc/core/data.php:2074
1523
  msgid "Autoplay"
1524
  msgstr "Автовоспроизведение"
1525
 
1526
- #: inc/core/data.php:1107 inc/core/data.php:1192 inc/core/data.php:1283
1527
  msgid "Play video automatically when page is loaded"
1528
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1529
 
1530
- #: inc/core/data.php:1115
1531
  msgid "YouTube video"
1532
  msgstr "Видео YouTube"
1533
 
1534
- #: inc/core/data.php:1121
1535
  msgid "YouTube Advanced"
1536
  msgstr "YouTube продвинутый"
1537
 
1538
- #: inc/core/data.php:1133
1539
  msgid "Playlist"
1540
  msgstr "Плейлист"
1541
 
1542
- #: inc/core/data.php:1134
1543
  msgid ""
1544
  "Value is a comma-separated list of video IDs to play. If you specify a "
1545
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
@@ -1549,44 +1553,44 @@ msgstr ""
1549
  "значение, то первым будет проиграно видео из параметра URL, а указанные "
1550
  "здесь видео будут проиграны после него"
1551
 
1552
- #: inc/core/data.php:1163
1553
  msgid "0 - Hide controls"
1554
  msgstr "0 - Спрятать панель"
1555
 
1556
- #: inc/core/data.php:1164
1557
  msgid "1 - Show controls"
1558
  msgstr "1 - Показать панель"
1559
 
1560
- #: inc/core/data.php:1165
1561
  msgid "2 - Show controls when playback is started"
1562
  msgstr "2 - Показать панель при начале воспроизведения"
1563
 
1564
- #: inc/core/data.php:1168 inc/core/data.php:1523
1565
  msgid "Controls"
1566
  msgstr "Элементы управления"
1567
 
1568
- #: inc/core/data.php:1169
1569
  msgid "This parameter indicates whether the video player controls will display"
1570
  msgstr ""
1571
  "Этот параметр определяет как показывать панель управления воспроизведением"
1572
 
1573
- #: inc/core/data.php:1174
1574
  msgid "0 - Do not hide controls"
1575
  msgstr "0 - Не прятать панель"
1576
 
1577
- #: inc/core/data.php:1175
1578
  msgid "1 - Hide all controls on mouse out"
1579
  msgstr "1 - Спрятать панель при уходе мыши"
1580
 
1581
- #: inc/core/data.php:1176
1582
  msgid "2 - Hide progress bar on mouse out"
1583
  msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
1584
 
1585
- #: inc/core/data.php:1179
1586
  msgid "Autohide"
1587
  msgstr "Авто-скрытие"
1588
 
1589
- #: inc/core/data.php:1180
1590
  msgid ""
1591
  "This parameter indicates whether the video controls will automatically hide "
1592
  "after a video begins playing"
@@ -1594,11 +1598,11 @@ msgstr ""
1594
  "Этот параметр определяет как скрывать панель управления воспроизведением во "
1595
  "время проигрывания ролика"
1596
 
1597
- #: inc/core/data.php:1185
1598
  msgid "Show title bar"
1599
  msgstr "Показывать заголовок"
1600
 
1601
- #: inc/core/data.php:1186
1602
  msgid ""
1603
  "If you set the parameter value to NO, then the player will not display "
1604
  "information like the video title and uploader before the video starts "
@@ -1607,21 +1611,21 @@ msgstr ""
1607
  "Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
1608
  "названием видео и имя автора видео"
1609
 
1610
- #: inc/core/data.php:1197 inc/core/data.php:1465 inc/core/data.php:1535
1611
  msgid "Loop"
1612
  msgstr "Повтор"
1613
 
1614
- #: inc/core/data.php:1198
1615
  msgid ""
1616
  "Setting of YES will cause the player to play the initial video again and "
1617
  "again"
1618
  msgstr "Видео будет снова проиграно по окнчании воспроизведения"
1619
 
1620
- #: inc/core/data.php:1203
1621
  msgid "Related videos"
1622
  msgstr "Похожие видео"
1623
 
1624
- #: inc/core/data.php:1204
1625
  msgid ""
1626
  "This parameter indicates whether the player should show related videos when "
1627
  "playback of the initial video ends"
@@ -1629,17 +1633,17 @@ msgstr ""
1629
  "Этот параметр позволяет отключать показ похожих видео по окончании "
1630
  "воспроизведения"
1631
 
1632
- #: inc/core/data.php:1209
1633
  msgid "Show full-screen button"
1634
  msgstr "Показывать кнопку полноэкранного режима"
1635
 
1636
- #: inc/core/data.php:1210
1637
  msgid ""
1638
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1639
  msgstr ""
1640
  "Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
1641
 
1642
- #: inc/core/data.php:1216
1643
  msgid ""
1644
  "This parameter lets you use a YouTube player that does not show a YouTube "
1645
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
@@ -1651,70 +1655,70 @@ msgstr ""
1651
  "управления воспроизведением. Вместо он будет показан либо в панели заголовка "
1652
  "видео, либо как полупрозрачный над видео"
1653
 
1654
- #: inc/core/data.php:1221
1655
  msgid "Dark theme"
1656
  msgstr "Темная тема"
1657
 
1658
- #: inc/core/data.php:1222
1659
  msgid "Light theme"
1660
  msgstr "Светлая тема"
1661
 
1662
- #: inc/core/data.php:1225 inc/core/data.php:2392
1663
  msgid "Theme"
1664
  msgstr "Тема"
1665
 
1666
- #: inc/core/data.php:1226
1667
  msgid ""
1668
  "This parameter indicates whether the embedded player will display player "
1669
  "controls (like a play button or volume control) within a dark or light "
1670
  "control bar"
1671
  msgstr "Выберите тему для проигрывателя"
1672
 
1673
- #: inc/core/data.php:1231
1674
  msgid "Force HTTPS"
1675
  msgstr "Принудительный HTTPS"
1676
 
1677
- #: inc/core/data.php:1232
1678
  msgid "Use HTTPS in player iframe"
1679
  msgstr "Использовать протокол HTTPS во фрейме проигрывателя"
1680
 
1681
- #: inc/core/data.php:1240
1682
  msgid "YouTube video player with advanced settings"
1683
  msgstr "YouTube видео плеер с расширенными настройками"
1684
 
1685
- #: inc/core/data.php:1246
1686
  msgid "Vimeo"
1687
  msgstr "Vimeo"
1688
 
1689
- #: inc/core/data.php:1253
1690
  msgid "Url of Vimeo page with video"
1691
  msgstr "Ссылка на страницу Vimeo с видео"
1692
 
1693
- #: inc/core/data.php:1291
1694
  msgid "Vimeo video"
1695
  msgstr "Видео Vimeo"
1696
 
1697
- #: inc/core/data.php:1297
1698
  msgid "Screenr"
1699
  msgstr "Screenr"
1700
 
1701
- #: inc/core/data.php:1304
1702
  msgid "Url of Screenr page with video"
1703
  msgstr "Ссылка на страницу Screenr с видео"
1704
 
1705
- #: inc/core/data.php:1336
1706
  msgid "Screenr video"
1707
  msgstr "Видео Screenr"
1708
 
1709
- #: inc/core/data.php:1341
1710
  msgid "Dailymotion"
1711
  msgstr "Dailymotion"
1712
 
1713
- #: inc/core/data.php:1348
1714
  msgid "Url of Dailymotion page with video"
1715
  msgstr "Ссылка на страницу Dailymotion с видео"
1716
 
1717
- #: inc/core/data.php:1378
1718
  msgid ""
1719
  "Start the playback of the video automatically after the player load. May not "
1720
  "work on some mobile OS versions"
@@ -1722,79 +1726,79 @@ msgstr ""
1722
  "Автоматически начать воспроизведение видео. Может не работать на некоторых "
1723
  "моильных ОС"
1724
 
1725
- #: inc/core/data.php:1383
1726
  msgid "Background color"
1727
  msgstr "Цвет фона"
1728
 
1729
- #: inc/core/data.php:1384
1730
  msgid "HTML color of the background of controls elements"
1731
  msgstr "HTML цвет фона элементов управления"
1732
 
1733
- #: inc/core/data.php:1389
1734
  msgid "Foreground color"
1735
  msgstr "Цвет переднего плана"
1736
 
1737
- #: inc/core/data.php:1390
1738
  msgid "HTML color of the foreground of controls elements"
1739
  msgstr "HTML цвет передней части элементов управления"
1740
 
1741
- #: inc/core/data.php:1395
1742
  msgid "Highlight color"
1743
  msgstr "Цвет подсветки"
1744
 
1745
- #: inc/core/data.php:1396
1746
  msgid "HTML color of the controls elements' highlights"
1747
  msgstr "HTML цвет подсветки элементов управления"
1748
 
1749
- #: inc/core/data.php:1401
1750
  msgid "Show logo"
1751
  msgstr "Показать логотип"
1752
 
1753
- #: inc/core/data.php:1402
1754
  msgid "Allows to hide or show the Dailymotion logo"
1755
  msgstr "Показать или нет лого Dailymotion"
1756
 
1757
- #: inc/core/data.php:1414
1758
  msgid "Quality"
1759
  msgstr "Качество"
1760
 
1761
- #: inc/core/data.php:1415
1762
  msgid "Determines the quality that must be played by default if available"
1763
  msgstr "Определите качество, которое нужно воспроизвести, если доступно"
1764
 
1765
- #: inc/core/data.php:1420
1766
  msgid "Show related videos"
1767
  msgstr "Показать похожие видео"
1768
 
1769
- #: inc/core/data.php:1421
1770
  msgid "Show related videos at the end of the video"
1771
  msgstr "Показать похожие видео в конце воспроизведения"
1772
 
1773
- #: inc/core/data.php:1426
1774
  msgid "Show video info"
1775
  msgstr "Показывать инфо видео"
1776
 
1777
- #: inc/core/data.php:1427
1778
  msgid "Show videos info (title/author) on the start screen"
1779
  msgstr "Показать информацию о видео (заголовок/автор) на начальном экране"
1780
 
1781
- #: inc/core/data.php:1435
1782
  msgid "Dailymotion video"
1783
  msgstr "Видео Dailymotion"
1784
 
1785
- #: inc/core/data.php:1440
1786
  msgid "Audio"
1787
  msgstr "Аудио"
1788
 
1789
- #: inc/core/data.php:1447 inc/core/data.php:1487
1790
  msgid "File"
1791
  msgstr "Файл"
1792
 
1793
- #: inc/core/data.php:1448
1794
  msgid "Audio file url. Supported formats: mp3, ogg"
1795
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1796
 
1797
- #: inc/core/data.php:1454
1798
  msgid ""
1799
  "Player width. You can specify width in percents and player will be "
1800
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
@@ -1803,63 +1807,63 @@ msgstr ""
1803
  "отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
1804
  "%value>100&#37;</b>"
1805
 
1806
- #: inc/core/data.php:1460 inc/core/data.php:1530
1807
  msgid "Play file automatically when page is loaded"
1808
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1809
 
1810
- #: inc/core/data.php:1466 inc/core/data.php:1536
1811
  msgid "Repeat when playback is ended"
1812
  msgstr "Повторять, когда воспроизведение окночено"
1813
 
1814
- #: inc/core/data.php:1474
1815
  msgid "Custom audio player"
1816
  msgstr "Настраиваемый аудио-плеер"
1817
 
1818
- #: inc/core/data.php:1480
1819
  msgid "Video"
1820
  msgstr "Видео"
1821
 
1822
- #: inc/core/data.php:1488
1823
  msgid "Url to mp4/flv video-file"
1824
  msgstr "Ссылка на mp4/flv видео-файл"
1825
 
1826
- #: inc/core/data.php:1493
1827
  msgid "Poster"
1828
  msgstr "Постер"
1829
 
1830
- #: inc/core/data.php:1494
1831
  msgid "Url to poster image, that will be shown before playback"
1832
  msgstr ""
1833
  "Ссылка на изображение постера. Изображение будет показано перед началом "
1834
  "воспроизведения"
1835
 
1836
- #: inc/core/data.php:1500
1837
  msgid "Player title"
1838
  msgstr "Заголовок плеера"
1839
 
1840
- #: inc/core/data.php:1524
1841
  msgid "Show player controls (play/pause etc.) or not"
1842
  msgstr ""
1843
  "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1844
 
1845
- #: inc/core/data.php:1544
1846
  msgid "Custom video player"
1847
  msgstr "Настраиваемый видео-плеер"
1848
 
1849
- #: inc/core/data.php:1550
1850
  msgid "Table"
1851
  msgstr "Таблица"
1852
 
1853
- #: inc/core/data.php:1557
1854
  msgid "CSV file"
1855
  msgstr "CSV файл"
1856
 
1857
- #: inc/core/data.php:1558
1858
  msgid "Upload CSV file if you want to create HTML-table from file"
1859
  msgstr ""
1860
  "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1861
 
1862
- #: inc/core/data.php:1566
1863
  msgid ""
1864
  "<table>\n"
1865
  "<tr>\n"
@@ -1883,231 +1887,231 @@ msgstr ""
1883
  "</tr>\n"
1884
  "</table>"
1885
 
1886
- #: inc/core/data.php:1567
1887
  msgid "Styled table from HTML or CSV file"
1888
  msgstr "Стильная таблица из HTML или CSV файла"
1889
 
1890
- #: inc/core/data.php:1572
1891
  msgid "Permalink"
1892
  msgstr "Постоянная ссылка"
1893
 
1894
- #: inc/core/data.php:1578 inc/core/data.php:2502
1895
  msgid "ID"
1896
  msgstr "ID"
1897
 
1898
- #: inc/core/data.php:1579
1899
  msgid "Post or page ID"
1900
  msgstr "ID записи или страницы"
1901
 
1902
- #: inc/core/data.php:1589
1903
  msgid "Link target. blank - link will be opened in new window/tab"
1904
  msgstr ""
1905
  "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
1906
  "вкладке"
1907
 
1908
- #: inc/core/data.php:1598
1909
  msgid "Permalink to specified post/page"
1910
  msgstr "Постоянная ссылка на страницу"
1911
 
1912
- #: inc/core/data.php:1603
1913
  msgid "Members"
1914
  msgstr "Участники"
1915
 
1916
- #: inc/core/data.php:1608 inc/core/shortcodes.php:794
1917
  msgid "This content is for registered users only. Please %login%."
1918
  msgstr ""
1919
  "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1920
 
1921
- #: inc/core/data.php:1609
1922
  msgid "Message"
1923
  msgstr "Сообщение"
1924
 
1925
- #: inc/core/data.php:1609
1926
  msgid "Message for not logged users"
1927
  msgstr "Собщение для неавторизованных"
1928
 
1929
- #: inc/core/data.php:1614
1930
  msgid "Box color"
1931
  msgstr "Цвет блока"
1932
 
1933
- #: inc/core/data.php:1614
1934
  msgid "This color will applied only to box for not logged users"
1935
  msgstr ""
1936
  "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1937
 
1938
- #: inc/core/data.php:1617 inc/core/shortcodes.php:797
1939
  msgid "login"
1940
  msgstr "войдите"
1941
 
1942
- #: inc/core/data.php:1618
1943
  msgid "Login link text"
1944
  msgstr "Текст ссылки войти"
1945
 
1946
- #: inc/core/data.php:1618
1947
  msgid "Text for the login link"
1948
  msgstr "Текст ссылки ВОЙТИ"
1949
 
1950
- #: inc/core/data.php:1622
1951
  msgid "Login link url"
1952
  msgstr "Адрес ссылки войти"
1953
 
1954
- #: inc/core/data.php:1630
1955
  msgid "Content for logged members"
1956
  msgstr "Содержимое для авторизованых пользователей"
1957
 
1958
- #: inc/core/data.php:1631
1959
  msgid "Content for logged in members only"
1960
  msgstr "Ссодержимое для авторизованых"
1961
 
1962
- #: inc/core/data.php:1636
1963
  msgid "Guests"
1964
  msgstr "Гости"
1965
 
1966
- #: inc/core/data.php:1646
1967
  msgid "Content for guests"
1968
  msgstr "Содержимое для гостей"
1969
 
1970
- #: inc/core/data.php:1647
1971
  msgid "Content for guests only"
1972
  msgstr "Ссодержимое только для гостей"
1973
 
1974
- #: inc/core/data.php:1652
1975
  msgid "RSS Feed"
1976
  msgstr "RSS лента"
1977
 
1978
- #: inc/core/data.php:1660
1979
  msgid "Url to RSS-feed"
1980
  msgstr "Ссылка на RSS-ленту"
1981
 
1982
- #: inc/core/data.php:1668 inc/core/data.php:1855 inc/core/data.php:1974
1983
- #: inc/core/data.php:2112
1984
  msgid "Limit"
1985
  msgstr "Лимит"
1986
 
1987
- #: inc/core/data.php:1668
1988
  msgid "Number of items to show"
1989
  msgstr "Количество элементов для отображения"
1990
 
1991
- #: inc/core/data.php:1676
1992
  msgid "Feed grabber"
1993
  msgstr "Граббер новостных лент"
1994
 
1995
- #: inc/core/data.php:1681
1996
  msgid "Menu"
1997
  msgstr "Меню"
1998
 
1999
- #: inc/core/data.php:1688
2000
  msgid "Menu name"
2001
  msgstr "Имя меню"
2002
 
2003
- #: inc/core/data.php:1688
2004
  msgid "Custom menu name. Ex: Main menu"
2005
  msgstr "Имя произвольного меню. Например: Главное меню"
2006
 
2007
- #: inc/core/data.php:1696
2008
  msgid "Custom menu by name"
2009
  msgstr "Произвольное меню"
2010
 
2011
- #: inc/core/data.php:1701
2012
  msgid "Sub pages"
2013
  msgstr "Подстраницы"
2014
 
2015
- #: inc/core/data.php:1708 inc/core/data.php:1735
2016
  msgid "Depth"
2017
  msgstr "Глубина"
2018
 
2019
- #: inc/core/data.php:1709
2020
  msgid "Max depth level of children pages"
2021
  msgstr "Максимальная глубина дочерних страниц"
2022
 
2023
- #: inc/core/data.php:1714
2024
  msgid "Parent ID"
2025
  msgstr "ID родителя"
2026
 
2027
- #: inc/core/data.php:1715
2028
  msgid "ID of the parent page. Leave blank to use current page"
2029
  msgstr ""
2030
  "ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
2031
  "страницу"
2032
 
2033
- #: inc/core/data.php:1723
2034
  msgid "List of sub pages"
2035
  msgstr "Список дочерних страниц"
2036
 
2037
- #: inc/core/data.php:1728
2038
  msgid "Siblings"
2039
  msgstr "Соседние страницы"
2040
 
2041
- #: inc/core/data.php:1736
2042
  msgid "Max depth level"
2043
  msgstr "Максимальный уровень вложенности"
2044
 
2045
- #: inc/core/data.php:1744
2046
  msgid "List of cureent page siblings"
2047
  msgstr "Список страниц, соседних с текущей"
2048
 
2049
- #: inc/core/data.php:1749
2050
  msgid "Document"
2051
  msgstr "Документ"
2052
 
2053
- #: inc/core/data.php:1757
2054
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
2055
  msgstr ""
2056
  "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
2057
 
2058
- #: inc/core/data.php:1766
2059
  msgid "Viewer width"
2060
  msgstr "Ширина просмотрщика"
2061
 
2062
- #: inc/core/data.php:1775
2063
  msgid "Viewer height"
2064
  msgstr "Высота просмотрщика"
2065
 
2066
- #: inc/core/data.php:1781
2067
  msgid "Ignore width and height parameters and make viewer responsive"
2068
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
2069
 
2070
- #: inc/core/data.php:1789
2071
  msgid "Document viewer by Google"
2072
  msgstr "Просмотрщик документов от Google"
2073
 
2074
- #: inc/core/data.php:1794
2075
  msgid "Gmap"
2076
  msgstr "Google карта"
2077
 
2078
- #: inc/core/data.php:1805
2079
  msgid "Map width"
2080
  msgstr "Ширина карты"
2081
 
2082
- #: inc/core/data.php:1814
2083
  msgid "Map height"
2084
  msgstr "Высота карты"
2085
 
2086
- #: inc/core/data.php:1820
2087
  msgid "Ignore width and height parameters and make map responsive"
2088
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
2089
 
2090
- #: inc/core/data.php:1825
2091
  msgid "Marker"
2092
  msgstr "Маркер"
2093
 
2094
- #: inc/core/data.php:1826
2095
  msgid "Address for the marker. You can type it in any language"
2096
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
2097
 
2098
- #: inc/core/data.php:1834
2099
  msgid "Maps by Google"
2100
  msgstr "Карты от Google"
2101
 
2102
- #: inc/core/data.php:1839
2103
  msgid "Slider"
2104
  msgstr "Слайдер"
2105
 
2106
- #: inc/core/data.php:1846 inc/core/data.php:1965 inc/core/data.php:2103
2107
  msgid "Source"
2108
  msgstr "Источник"
2109
 
2110
- #: inc/core/data.php:1847 inc/core/data.php:1966 inc/core/data.php:2104
2111
  msgid ""
2112
  "Choose images source. You can use images from Media library or retrieve it "
2113
  "from posts (thumbnails) posted under specified blog category. You can also "
@@ -2118,7 +2122,7 @@ msgstr ""
2118
  "опубликованных в выбранной категории. Вы также можете выбрать произвольную "
2119
  "таксономию и её рубрики"
2120
 
2121
- #: inc/core/data.php:1856 inc/core/data.php:1975 inc/core/data.php:2113
2122
  msgid ""
2123
  "Maximum number of image source posts (for recent posts, category and custom "
2124
  "taxonomy)"
@@ -2126,203 +2130,203 @@ msgstr ""
2126
  "Максимальное кол-во записей с изображениями (для последних записей, "
2127
  "категорий и произвольных таксономий)"
2128
 
2129
- #: inc/core/data.php:1862 inc/core/data.php:1981 inc/core/data.php:2119
2130
  msgid "Full-size image"
2131
  msgstr "Полноразмерное изображение"
2132
 
2133
- #: inc/core/data.php:1864 inc/core/data.php:1983 inc/core/data.php:2121
2134
  msgid "Slide link (added in media editor)"
2135
  msgstr "Ссылка слайда (добавленная в медиа редакторе)"
2136
 
2137
- #: inc/core/data.php:1865 inc/core/data.php:1984 inc/core/data.php:2122
2138
  msgid "Attachment page"
2139
  msgstr "Страница медиа-файла"
2140
 
2141
- #: inc/core/data.php:1866 inc/core/data.php:1985 inc/core/data.php:2123
2142
  msgid "Post permalink"
2143
  msgstr "Ссылка записи"
2144
 
2145
- #: inc/core/data.php:1869 inc/core/data.php:1988 inc/core/data.php:2126
2146
  msgid "Links"
2147
  msgstr "Ссылки"
2148
 
2149
- #: inc/core/data.php:1870 inc/core/data.php:1989 inc/core/data.php:2127
2150
  msgid "Select which links will be used for images in this gallery"
2151
  msgstr "Выберите какие ссылки использовать для элементов этой галереи"
2152
 
2153
- #: inc/core/data.php:1875 inc/core/data.php:1994 inc/core/data.php:2132
2154
  msgid "Same window"
2155
  msgstr "То же окно"
2156
 
2157
- #: inc/core/data.php:1876 inc/core/data.php:1995 inc/core/data.php:2133
2158
  msgid "New window"
2159
  msgstr "Новое окно"
2160
 
2161
- #: inc/core/data.php:1879 inc/core/data.php:1998 inc/core/data.php:2136
2162
  msgid "Links target"
2163
  msgstr "Цель ссылок"
2164
 
2165
- #: inc/core/data.php:1880 inc/core/data.php:1999 inc/core/data.php:2137
2166
  msgid "Open links in"
2167
  msgstr "Открывать ссылки в"
2168
 
2169
- #: inc/core/data.php:1888
2170
  msgid "Slider width (in pixels)"
2171
  msgstr "Ширина слайдера (в пикселях)"
2172
 
2173
- #: inc/core/data.php:1896
2174
  msgid "Slider height (in pixels)"
2175
  msgstr "Высота слайдера (в пикселях)"
2176
 
2177
- #: inc/core/data.php:1902
2178
  msgid "Ignore width and height parameters and make slider responsive"
2179
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
2180
 
2181
- #: inc/core/data.php:1907 inc/core/data.php:2045 inc/core/data.php:2163
2182
  msgid "Show titles"
2183
  msgstr "Показывать заголовки"
2184
 
2185
- #: inc/core/data.php:1907
2186
  msgid "Display slide titles"
2187
  msgstr "Отображать заголовки слайдов"
2188
 
2189
- #: inc/core/data.php:1912
2190
  msgid "Is slider centered on the page"
2191
  msgstr "Слайдер выровнен по центру страницы"
2192
 
2193
- #: inc/core/data.php:1917 inc/core/data.php:2055
2194
  msgid "Arrows"
2195
  msgstr "Стрелки"
2196
 
2197
- #: inc/core/data.php:1917 inc/core/data.php:2055
2198
  msgid "Show left and right arrows"
2199
  msgstr "Показывать стрелки влево/вправо"
2200
 
2201
- #: inc/core/data.php:1922 inc/core/data.php:2060
2202
  msgid "Pagination"
2203
  msgstr "Страницы"
2204
 
2205
- #: inc/core/data.php:1923 inc/core/data.php:2061
2206
  msgid "Show pagination"
2207
  msgstr "Показывать страницы"
2208
 
2209
- #: inc/core/data.php:1927 inc/core/data.php:2065
2210
  msgid "Mouse wheel control"
2211
  msgstr "Управление колесом мыши"
2212
 
2213
- #: inc/core/data.php:1928
2214
  msgid "Allow to change slides with mouse wheel"
2215
  msgstr "Разрешить перелистывание слайдов колесом мышки"
2216
 
2217
- #: inc/core/data.php:1937
2218
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2219
  msgstr ""
2220
  "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
2221
  "отключить автовоспроизведение"
2222
 
2223
- #: inc/core/data.php:1945 inc/core/data.php:2083
2224
  msgid "Speed"
2225
  msgstr "Скорость"
2226
 
2227
- #: inc/core/data.php:1945 inc/core/data.php:2083
2228
  msgid "Specify animation speed"
2229
  msgstr "Укажите скорость анимации"
2230
 
2231
- #: inc/core/data.php:1953
2232
  msgid "Customizable image slider"
2233
  msgstr "Настраиваемый слайдер изображений"
2234
 
2235
- #: inc/core/data.php:1958
2236
  msgid "Carousel"
2237
  msgstr "Карусель"
2238
 
2239
- #: inc/core/data.php:2008
2240
  msgid "Carousel width (in pixels)"
2241
  msgstr "Ширина карусели (в пикселях)"
2242
 
2243
- #: inc/core/data.php:2017
2244
  msgid "Carousel height (in pixels)"
2245
  msgstr "Высота карусели (в пикселях)"
2246
 
2247
- #: inc/core/data.php:2023
2248
  msgid "Ignore width and height parameters and make carousel responsive"
2249
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
2250
 
2251
- #: inc/core/data.php:2031
2252
  msgid "Items to show"
2253
  msgstr "Количество элементов для отображения"
2254
 
2255
- #: inc/core/data.php:2032
2256
  msgid "How much carousel items is visible"
2257
  msgstr "Сколько элементов карусели видны постоянно"
2258
 
2259
- #: inc/core/data.php:2039
2260
  msgid "Scroll number"
2261
  msgstr "Кол-во прокручиваемых"
2262
 
2263
- #: inc/core/data.php:2040
2264
  msgid "How much items are scrolled in one transition"
2265
  msgstr "Сколько элементов карусели прокручивается за один переход"
2266
 
2267
- #: inc/core/data.php:2045
2268
  msgid "Display titles for each item"
2269
  msgstr "Показывать заголовки для каждого элемента карусели"
2270
 
2271
- #: inc/core/data.php:2050
2272
  msgid "Is carousel centered on the page"
2273
  msgstr "Карусель выровнена по центру страницы"
2274
 
2275
- #: inc/core/data.php:2066
2276
  msgid "Allow to rotate carousel with mouse wheel"
2277
  msgstr "Разрешить прокрутку карусели колесом мыши"
2278
 
2279
- #: inc/core/data.php:2075
2280
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2281
  msgstr ""
2282
  "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
2283
  "автовоспроизведение"
2284
 
2285
- #: inc/core/data.php:2091
2286
  msgid "Customizable image carousel"
2287
  msgstr "Настраиваемая карусель изображений"
2288
 
2289
- #: inc/core/data.php:2145
2290
  msgid "Single item width (in pixels)"
2291
  msgstr "Ширина одного изображения (в пикселях)"
2292
 
2293
- #: inc/core/data.php:2153
2294
  msgid "Single item height (in pixels)"
2295
  msgstr "Высота одного изображения (в пикселях)"
2296
 
2297
- #: inc/core/data.php:2158
2298
  msgid "Never"
2299
  msgstr "Никогда"
2300
 
2301
- #: inc/core/data.php:2159
2302
  msgid "On mouse over"
2303
  msgstr "При наведении мыши"
2304
 
2305
- #: inc/core/data.php:2160
2306
  msgid "Always"
2307
  msgstr "Всегда"
2308
 
2309
- #: inc/core/data.php:2164
2310
  msgid "Title display mode"
2311
  msgstr "Режим отображения заголовков"
2312
 
2313
- #: inc/core/data.php:2172
2314
  msgid "Customizable image gallery"
2315
  msgstr "Настраиваемая галерея изображений"
2316
 
2317
- #: inc/core/data.php:2177
2318
  msgid "Posts"
2319
  msgstr "Записи"
2320
 
2321
- #: inc/core/data.php:2182 inc/core/data.php:2609
2322
  msgid "Template"
2323
  msgstr "Шаблон"
2324
 
2325
- #: inc/core/data.php:2183
2326
  msgid ""
2327
  "<b>Do not change this field value if you do not understand description below."
2328
  "</b><br/>Relative path to the template file. Default templates is placed "
@@ -2345,55 +2349,55 @@ msgstr ""
2345
  "одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
2346
  "маркированный список с заголовками постов"
2347
 
2348
- #: inc/core/data.php:2187
2349
  msgid "Post ID's"
2350
  msgstr "ID постов"
2351
 
2352
- #: inc/core/data.php:2188
2353
  msgid "Enter comma separated ID's of the posts that you want to show"
2354
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
2355
 
2356
- #: inc/core/data.php:2196
2357
  msgid "Posts per page"
2358
  msgstr "Кол-во записей"
2359
 
2360
- #: inc/core/data.php:2197
2361
  msgid ""
2362
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2363
  msgstr ""
2364
  "Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
2365
  "отобразить все найденные записи"
2366
 
2367
- #: inc/core/data.php:2204
2368
  msgid "Post types"
2369
  msgstr "Типы постов"
2370
 
2371
- #: inc/core/data.php:2205
2372
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2373
  msgstr ""
2374
  "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
2375
 
2376
- #: inc/core/data.php:2211 inc/core/generator-views.php:123
2377
  msgid "Taxonomy"
2378
  msgstr "Таксономия"
2379
 
2380
- #: inc/core/data.php:2212
2381
  msgid "Select taxonomy to show posts from"
2382
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
2383
 
2384
- #: inc/core/data.php:2219
2385
  msgid "Terms"
2386
  msgstr "Категории (terms)"
2387
 
2388
- #: inc/core/data.php:2220
2389
  msgid "Select terms to show posts from"
2390
  msgstr "Выберите категории, из которых нужно показать записи"
2391
 
2392
- #: inc/core/data.php:2225
2393
  msgid "Taxonomy term operator"
2394
  msgstr "Оператор выбора категорий"
2395
 
2396
- #: inc/core/data.php:2226
2397
  msgid ""
2398
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2399
  "that is does not have any of selected terms<br/>AND - posts that have all "
@@ -2403,203 +2407,203 @@ msgstr ""
2403
  "будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
2404
  ">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
2405
 
2406
- #: inc/core/data.php:2233
2407
  msgid "Authors"
2408
  msgstr "Авторы"
2409
 
2410
- #: inc/core/data.php:2234
2411
  msgid "Choose the authors whose posts you want to show"
2412
  msgstr "Выберите авторов, чьи записи хотите показать"
2413
 
2414
- #: inc/core/data.php:2238
2415
  msgid "Meta key"
2416
  msgstr "Произвольное поле"
2417
 
2418
- #: inc/core/data.php:2239
2419
  msgid "Enter meta key name to show posts that have this key"
2420
  msgstr ""
2421
  "Введите оригинальное имя произвольного поля, чтобы показать все записи у "
2422
  "которых это поле задано"
2423
 
2424
- #: inc/core/data.php:2246
2425
  msgid "Offset"
2426
  msgstr "Смещение (offset)"
2427
 
2428
- #: inc/core/data.php:2247
2429
  msgid "Specify offset to start posts loop not from first post"
2430
  msgstr ""
2431
  "Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
2432
  "если указать 2, то будут показаны записи начиная со третьей"
2433
 
2434
- #: inc/core/data.php:2252
2435
  msgid "Descending"
2436
  msgstr "По убыванию"
2437
 
2438
- #: inc/core/data.php:2253
2439
  msgid "Ascending"
2440
  msgstr "По возрастанию"
2441
 
2442
- #: inc/core/data.php:2256
2443
  msgid "Order"
2444
  msgstr "Порядок"
2445
 
2446
- #: inc/core/data.php:2257
2447
  msgid "Posts order"
2448
  msgstr "Порядок сортировки записей"
2449
 
2450
- #: inc/core/data.php:2263 inc/core/data.php:2480 inc/core/data.php:2553
2451
- #: inc/core/data.php:2595
2452
  msgid "Post ID"
2453
  msgstr "ID записи"
2454
 
2455
- #: inc/core/data.php:2264 inc/core/data.php:2554
2456
  msgid "Post author"
2457
  msgstr "Автор записи"
2458
 
2459
- #: inc/core/data.php:2265 inc/core/data.php:2558
2460
  msgid "Post title"
2461
  msgstr "Заголовок записи"
2462
 
2463
- #: inc/core/data.php:2266
2464
  msgid "Post slug"
2465
  msgstr "Ссылка записи (slug)"
2466
 
2467
- #: inc/core/data.php:2267
2468
  msgid "Date"
2469
  msgstr "Дата"
2470
 
2471
- #: inc/core/data.php:2267
2472
  msgid "Last modified date"
2473
  msgstr "Дата изменения"
2474
 
2475
- #: inc/core/data.php:2268 inc/core/data.php:2278 inc/core/data.php:2567
2476
  msgid "Post parent"
2477
  msgstr "Родитель"
2478
 
2479
- #: inc/core/data.php:2269
2480
  msgid "Random"
2481
  msgstr "Случайно"
2482
 
2483
- #: inc/core/data.php:2269
2484
  msgid "Comments number"
2485
  msgstr "Кол-во комментариев"
2486
 
2487
- #: inc/core/data.php:2270 inc/core/data.php:2569
2488
  msgid "Menu order"
2489
  msgstr "Порядок меню"
2490
 
2491
- #: inc/core/data.php:2270
2492
  msgid "Meta key values"
2493
  msgstr "Значение произвольного поля"
2494
 
2495
- #: inc/core/data.php:2273
2496
  msgid "Order by"
2497
  msgstr "Сортировать по"
2498
 
2499
- #: inc/core/data.php:2274
2500
  msgid "Order posts by"
2501
  msgstr "Сортировать записи по следующему признаку"
2502
 
2503
- #: inc/core/data.php:2279
2504
  msgid "Show childrens of entered post (enter post ID)"
2505
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
2506
 
2507
- #: inc/core/data.php:2284
2508
  msgid "Published"
2509
  msgstr "Опубликован"
2510
 
2511
- #: inc/core/data.php:2285
2512
  msgid "Pending"
2513
  msgstr "Ожидает"
2514
 
2515
- #: inc/core/data.php:2286
2516
  msgid "Draft"
2517
  msgstr "Черновик"
2518
 
2519
- #: inc/core/data.php:2287
2520
  msgid "Auto-draft"
2521
  msgstr "Авто-черновик"
2522
 
2523
- #: inc/core/data.php:2288
2524
  msgid "Future post"
2525
  msgstr "Запланирован"
2526
 
2527
- #: inc/core/data.php:2289
2528
  msgid "Private post"
2529
  msgstr "Приватная запись"
2530
 
2531
- #: inc/core/data.php:2290
2532
  msgid "Inherit"
2533
  msgstr "Вложенный"
2534
 
2535
- #: inc/core/data.php:2291
2536
  msgid "Trashed"
2537
  msgstr "В корзине"
2538
 
2539
- #: inc/core/data.php:2292 inc/core/data.php:2376
2540
  msgid "Any"
2541
  msgstr "Любой"
2542
 
2543
- #: inc/core/data.php:2295 inc/core/data.php:2560
2544
  msgid "Post status"
2545
  msgstr "Статус записи"
2546
 
2547
- #: inc/core/data.php:2296
2548
  msgid "Show only posts with selected status"
2549
  msgstr "Показать только записи с выбранным статусом"
2550
 
2551
- #: inc/core/data.php:2301
2552
  msgid "Ignore sticky"
2553
  msgstr "Игнорировать прикрепленные"
2554
 
2555
- #: inc/core/data.php:2302
2556
  msgid "Select Yes to ignore posts that is sticked"
2557
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
2558
 
2559
- #: inc/core/data.php:2305
2560
  msgid "Custom posts query with customizable template"
2561
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
2562
 
2563
- #: inc/core/data.php:2310
2564
  msgid "Dummy text"
2565
  msgstr "Текст рыба"
2566
 
2567
- #: inc/core/data.php:2317
2568
  msgid "Paragraphs"
2569
  msgstr "Параграфы"
2570
 
2571
- #: inc/core/data.php:2318
2572
  msgid "Words"
2573
  msgstr "Слова"
2574
 
2575
- #: inc/core/data.php:2319
2576
  msgid "Bytes"
2577
  msgstr "Байты"
2578
 
2579
- #: inc/core/data.php:2322
2580
  msgid "What"
2581
  msgstr "Что"
2582
 
2583
- #: inc/core/data.php:2323
2584
  msgid "What to generate"
2585
  msgstr "Что генерировать"
2586
 
2587
- #: inc/core/data.php:2331
2588
  msgid "Amount"
2589
  msgstr "Количество"
2590
 
2591
- #: inc/core/data.php:2332
2592
  msgid ""
2593
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2594
  msgstr ""
2595
  "Какое количество (параграфов или слов) генерировать. Минимальное количество "
2596
  "слов - 5"
2597
 
2598
- #: inc/core/data.php:2337
2599
  msgid "Cache"
2600
  msgstr "Кеш"
2601
 
2602
- #: inc/core/data.php:2338
2603
  msgid ""
2604
  "Generated text will be cached. Be careful with this option. If you disable "
2605
  "it and insert many dummy_text shortcodes the page load time will be highly "
@@ -2609,111 +2613,111 @@ msgstr ""
2609
  "вы отключите её и вставите много таких шорткодов на странице, то время "
2610
  "загрузки страницы может сильно возрости"
2611
 
2612
- #: inc/core/data.php:2346
2613
  msgid "Text placeholder"
2614
  msgstr "Текст болванка"
2615
 
2616
- #: inc/core/data.php:2351 inc/core/shortcodes.php:1302
2617
  msgid "Dummy image"
2618
  msgstr "Изображение болванка"
2619
 
2620
- #: inc/core/data.php:2362
2621
  msgid "Image width"
2622
  msgstr "Ширина изображения"
2623
 
2624
- #: inc/core/data.php:2371
2625
  msgid "Image height"
2626
  msgstr "Высота изображения"
2627
 
2628
- #: inc/core/data.php:2377
2629
  msgid "Abstract"
2630
  msgstr "Абстрактное"
2631
 
2632
- #: inc/core/data.php:2378
2633
  msgid "Animals"
2634
  msgstr "Животные"
2635
 
2636
- #: inc/core/data.php:2379
2637
  msgid "Business"
2638
  msgstr "Бизнес"
2639
 
2640
- #: inc/core/data.php:2380
2641
  msgid "Cats"
2642
  msgstr "Котэ"
2643
 
2644
- #: inc/core/data.php:2381
2645
  msgid "City"
2646
  msgstr "Город"
2647
 
2648
- #: inc/core/data.php:2382
2649
  msgid "Food"
2650
  msgstr "Еда"
2651
 
2652
- #: inc/core/data.php:2383
2653
  msgid "Night life"
2654
  msgstr "Ночная жизнь"
2655
 
2656
- #: inc/core/data.php:2384
2657
  msgid "Fashion"
2658
  msgstr "Мода"
2659
 
2660
- #: inc/core/data.php:2385
2661
  msgid "People"
2662
  msgstr "Люди"
2663
 
2664
- #: inc/core/data.php:2386
2665
  msgid "Nature"
2666
  msgstr "Природа"
2667
 
2668
- #: inc/core/data.php:2387
2669
  msgid "Sports"
2670
  msgstr "Спорт"
2671
 
2672
- #: inc/core/data.php:2388
2673
  msgid "Technics"
2674
  msgstr "Техника"
2675
 
2676
- #: inc/core/data.php:2389
2677
  msgid "Transport"
2678
  msgstr "Транспорт"
2679
 
2680
- #: inc/core/data.php:2393
2681
  msgid "Select the theme for this image"
2682
  msgstr "Выберите тему изображений"
2683
 
2684
- #: inc/core/data.php:2401
2685
  msgid "Image placeholder with random image"
2686
  msgstr "Изображение болванка со случайным изображением"
2687
 
2688
- #: inc/core/data.php:2406 inc/core/data.php:2414
2689
  msgid "Animation"
2690
  msgstr "Анимация"
2691
 
2692
- #: inc/core/data.php:2415
2693
  msgid "Select animation type"
2694
  msgstr "Выберите тип анимации"
2695
 
2696
- #: inc/core/data.php:2423
2697
  msgid "Duration"
2698
  msgstr "Продолжительность"
2699
 
2700
- #: inc/core/data.php:2424
2701
  msgid "Animation duration (seconds)"
2702
  msgstr "Продолжительность анимации (секунды)"
2703
 
2704
- #: inc/core/data.php:2432
2705
  msgid "Delay"
2706
  msgstr "Задержка"
2707
 
2708
- #: inc/core/data.php:2433
2709
  msgid "Animation delay (seconds)"
2710
  msgstr "Задержка перед началом анимации (секунды)"
2711
 
2712
- #: inc/core/data.php:2438
2713
  msgid "Inline"
2714
  msgstr "Строковый"
2715
 
2716
- #: inc/core/data.php:2439
2717
  msgid ""
2718
  "This parameter determines what HTML tag will be used for animation wrapper. "
2719
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
@@ -2723,49 +2727,49 @@ msgstr ""
2723
  "Переключите этот параметр на ДА и будет использован тег span вместо div. "
2724
  "Данная опция полезна для анимации строковых жлементов, например кнопок"
2725
 
2726
- #: inc/core/data.php:2447
2727
  msgid "Animated content"
2728
  msgstr "Анимированное содержимое"
2729
 
2730
- #: inc/core/data.php:2448
2731
  msgid "Wrapper for animation. Any nested element will be animated"
2732
  msgstr ""
2733
  "Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
2734
  "анимирован"
2735
 
2736
- #: inc/core/data.php:2454
2737
  msgid "Meta"
2738
  msgstr "Мета"
2739
 
2740
- #: inc/core/data.php:2460
2741
  msgid "Key"
2742
  msgstr "Ключ"
2743
 
2744
- #: inc/core/data.php:2461
2745
  msgid "Meta key name"
2746
  msgstr "Имя произвольного поля"
2747
 
2748
- #: inc/core/data.php:2466 inc/core/data.php:2518 inc/core/data.php:2581
2749
  msgid "This text will be shown if data is not found"
2750
  msgstr "Этот текст будет показан если не будет найдено запрошенное значение"
2751
 
2752
- #: inc/core/data.php:2470 inc/core/data.php:2522 inc/core/data.php:2585
2753
  msgid "Before"
2754
  msgstr "Перед"
2755
 
2756
- #: inc/core/data.php:2471 inc/core/data.php:2523 inc/core/data.php:2586
2757
  msgid "This content will be shown before the value"
2758
  msgstr "Этот текст будет показан перед результатом"
2759
 
2760
- #: inc/core/data.php:2475 inc/core/data.php:2527 inc/core/data.php:2590
2761
  msgid "After"
2762
  msgstr "После"
2763
 
2764
- #: inc/core/data.php:2476 inc/core/data.php:2528 inc/core/data.php:2591
2765
  msgid "This content will be shown after the value"
2766
  msgstr "Этот текст будет показан после результата"
2767
 
2768
- #: inc/core/data.php:2481 inc/core/data.php:2596
2769
  msgid ""
2770
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2771
  "current post. Current post ID may not work in Live Preview mode"
@@ -2774,11 +2778,11 @@ msgstr ""
2774
  "использовать ID текущей записи. ID текущей записи может не работать в режиме "
2775
  "предпросмотра"
2776
 
2777
- #: inc/core/data.php:2485 inc/core/data.php:2537 inc/core/data.php:2600
2778
  msgid "Filter"
2779
  msgstr "Фильтр"
2780
 
2781
- #: inc/core/data.php:2486 inc/core/data.php:2538 inc/core/data.php:2601
2782
  msgid ""
2783
  "You can apply custom filter to the retrieved value. Enter here function "
2784
  "name. Your function must accept one argument and return modified value. "
@@ -2788,59 +2792,59 @@ msgstr ""
2788
  "здесь имя функции. Ваша функция должна принимать один аргумент и возвращать "
2789
  "измененное значение. Пример функции: "
2790
 
2791
- #: inc/core/data.php:2489
2792
  msgid "Post meta"
2793
  msgstr "Произвольное поле"
2794
 
2795
- #: inc/core/data.php:2494
2796
  msgid "User"
2797
  msgstr "Пользователь"
2798
 
2799
- #: inc/core/data.php:2501
2800
  msgid "Display name"
2801
  msgstr "Отображаемое имя"
2802
 
2803
- #: inc/core/data.php:2503
2804
  msgid "Login"
2805
  msgstr "Логин"
2806
 
2807
- #: inc/core/data.php:2504
2808
  msgid "Nice name"
2809
  msgstr "Красивое имя"
2810
 
2811
- #: inc/core/data.php:2505
2812
  msgid "Email"
2813
  msgstr "Email"
2814
 
2815
- #: inc/core/data.php:2506
2816
  msgid "URL"
2817
  msgstr "URL"
2818
 
2819
- #: inc/core/data.php:2507
2820
  msgid "Registered"
2821
  msgstr "Зарегистрирован"
2822
 
2823
- #: inc/core/data.php:2508
2824
  msgid "Activation key"
2825
  msgstr "Ключ активации"
2826
 
2827
- #: inc/core/data.php:2509
2828
  msgid "Status"
2829
  msgstr "Статус"
2830
 
2831
- #: inc/core/data.php:2512 inc/core/data.php:2575
2832
  msgid "Field"
2833
  msgstr "Поле"
2834
 
2835
- #: inc/core/data.php:2513
2836
  msgid "User data field name"
2837
  msgstr "Имя поля с информацией о пользователе"
2838
 
2839
- #: inc/core/data.php:2532
2840
  msgid "User ID"
2841
  msgstr "ID пользователя"
2842
 
2843
- #: inc/core/data.php:2533
2844
  msgid ""
2845
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2846
  "current user"
@@ -2848,75 +2852,75 @@ msgstr ""
2848
  "Вы можете указать ID любого пользователя. Оставьте это поле пустым, чтобы "
2849
  "использовать ID текущего пользователя"
2850
 
2851
- #: inc/core/data.php:2541
2852
  msgid "User data"
2853
  msgstr "Данные пользователя"
2854
 
2855
- #: inc/core/data.php:2546
2856
  msgid "Post"
2857
  msgstr "Запись"
2858
 
2859
- #: inc/core/data.php:2555 inc/core/data.php:2556
2860
  msgid "Post date"
2861
  msgstr "Дата записи"
2862
 
2863
- #: inc/core/data.php:2557
2864
  msgid "Post content"
2865
  msgstr "Содержимое записи"
2866
 
2867
- #: inc/core/data.php:2559
2868
  msgid "Post excerpt"
2869
  msgstr "Цитата записи"
2870
 
2871
- #: inc/core/data.php:2561
2872
  msgid "Comment status"
2873
  msgstr "Статус комментариев"
2874
 
2875
- #: inc/core/data.php:2562
2876
  msgid "Ping status"
2877
  msgstr "Статус пингов"
2878
 
2879
- #: inc/core/data.php:2563
2880
  msgid "Post name"
2881
  msgstr "Имя записи"
2882
 
2883
- #: inc/core/data.php:2564 inc/core/data.php:2565
2884
  msgid "Post modified"
2885
  msgstr "Дата изменения"
2886
 
2887
- #: inc/core/data.php:2566
2888
  msgid "Filtered post content"
2889
  msgstr "Фильтрованное содержимое записи"
2890
 
2891
- #: inc/core/data.php:2568
2892
  msgid "GUID"
2893
  msgstr "GUID"
2894
 
2895
- #: inc/core/data.php:2570
2896
  msgid "Post type"
2897
  msgstr "Тип записи"
2898
 
2899
- #: inc/core/data.php:2571
2900
  msgid "Post mime type"
2901
  msgstr "Типы файла записи (mime-type)"
2902
 
2903
- #: inc/core/data.php:2572
2904
  msgid "Comment count"
2905
  msgstr "Количество комментариев"
2906
 
2907
- #: inc/core/data.php:2576
2908
  msgid "Post data field name"
2909
  msgstr "Имя поля с информацией записи"
2910
 
2911
- #: inc/core/data.php:2604
2912
  msgid "Post data"
2913
  msgstr "Данные записи"
2914
 
2915
- #: inc/core/data.php:2615
2916
  msgid "Template name"
2917
  msgstr "Имя шаблона"
2918
 
2919
- #: inc/core/data.php:2616
2920
  #, php-format
2921
  msgid ""
2922
  "Use template file name (with optional .php extension). If you need to use "
@@ -2927,7 +2931,7 @@ msgstr ""
2927
  "обязательно). Если нужно использовать шаблоны из под-папки темы, используйте "
2928
  "относительный путь. Примеры значений: %s, %s, %s"
2929
 
2930
- #: inc/core/data.php:2619
2931
  msgid "Theme template"
2932
  msgstr "Шаблон темы"
2933
 
@@ -3101,7 +3105,7 @@ msgstr "Нажмите чтобы установить это значение"
3101
  msgid "Preview"
3102
  msgstr "Предпросмотр"
3103
 
3104
- #: inc/core/generator.php:203 inc/core/tools.php:882
3105
  msgid "Access denied"
3106
  msgstr "Доступ запрещен"
3107
 
@@ -3118,7 +3122,7 @@ msgid "Presets not found"
3118
  msgstr "Шаблоны не найдены"
3119
 
3120
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
3121
- #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:894
3122
  #: inc/core/widget.php:14 inc/core/widget.php:40
3123
  msgid "Shortcodes Ultimate"
3124
  msgstr "Шорткоды"
@@ -3195,7 +3199,7 @@ msgstr "Выберите глобальный скин для шорткодов
3195
  msgid "Custom CSS"
3196
  msgstr "Произвольный CSS"
3197
 
3198
- #: inc/core/load.php:113 inc/core/load.php:114
3199
  msgid "Examples"
3200
  msgstr "Примеры"
3201
 
@@ -3211,7 +3215,7 @@ msgstr "Владимир Анохин"
3211
  msgid "Supercharge your WordPress theme with mega pack of shortcodes"
3212
  msgstr "Суперзарядка для вашей WordPress-темы с помощью мега набора шорткодов"
3213
 
3214
- #: inc/core/load.php:217
3215
  msgid "Where to start?"
3216
  msgstr "С чего начать?"
3217
 
@@ -3298,19 +3302,19 @@ msgstr "ID пользователя указан неверно"
3298
  msgid "please specify template name"
3299
  msgstr "пожалуйста укажите имя шаблона"
3300
 
3301
- #: inc/core/tools.php:801
3302
  msgid "Example code does not found, please check it later"
3303
  msgstr "Код примера не найден, возвращайтесь позже"
3304
 
3305
- #: inc/core/tools.php:817
3306
  msgid "Get the code"
3307
  msgstr "Получить код"
3308
 
3309
- #: inc/core/tools.php:891
3310
  msgid "Slide link"
3311
  msgstr "Ссылка слайда"
3312
 
3313
- #: inc/core/tools.php:894
3314
  msgid ""
3315
  "Use this field to add custom links to slides used with Slider, Carousel and "
3316
  "Custom Gallery shortcodes"
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-20 15:13+0400\n"
6
+ "PO-Revision-Date: 2014-04-20 15:14+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
24
  msgid "A real swiss army knife for WordPress"
25
  msgstr "Настоящий швейцарский армейский нож для WordPress"
26
 
27
+ #: inc/core/admin-views.php:11 inc/core/load.php:229
28
  msgid "Project homepage"
29
  msgstr "Страница проекта"
30
 
32
  msgid "Documentation"
33
  msgstr "Документация"
34
 
35
+ #: inc/core/admin-views.php:13 inc/core/load.php:230
36
  msgid "Support forum"
37
  msgstr "Форум поддержки"
38
 
39
+ #: inc/core/admin-views.php:14 inc/core/load.php:231
40
  msgid "Changelog"
41
  msgstr "Список изменений"
42
 
266
  msgid "Content"
267
  msgstr "Содержимое"
268
 
269
+ #: inc/core/data.php:19 inc/core/data.php:827
270
  msgid "Box"
271
  msgstr "Блок"
272
 
274
  msgid "Media"
275
  msgstr "Медиа"
276
 
277
+ #: inc/core/data.php:21 inc/core/data.php:2097
278
  msgid "Gallery"
279
  msgstr "Галерея"
280
 
286
  msgid "Other"
287
  msgstr "Другое"
288
 
289
+ #: inc/core/data.php:32 inc/core/data.php:1862 inc/core/data.php:1981
290
+ #: inc/core/data.php:2119 inc/core/data.php:2263
291
  msgid "None"
292
  msgstr "Нет"
293
 
364
 
365
  #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:274
366
  #: inc/core/data.php:426 inc/core/data.php:456 inc/core/data.php:517
367
+ #: inc/core/data.php:684 inc/core/data.php:839 inc/core/data.php:1003
368
+ #: inc/core/data.php:2466 inc/core/data.php:2518 inc/core/data.php:2581
369
  msgid "Default"
370
  msgstr "По умолчанию"
371
 
372
  #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:279
373
+ #: inc/core/data.php:459 inc/core/data.php:523 inc/core/data.php:695
374
+ #: inc/core/data.php:846 inc/core/data.php:973
375
  msgid "Style"
376
  msgstr "Стиль"
377
 
385
  msgstr "Установить дополнительные стили"
386
 
387
  #: inc/core/data.php:148 inc/core/data.php:531 inc/core/data.php:610
388
+ #: inc/core/data.php:716
389
  msgid "Size"
390
  msgstr "Размер"
391
 
394
  msgstr "Выберите размер заголовка (в пикселях)"
395
 
396
  #: inc/core/data.php:154 inc/core/data.php:492 inc/core/data.php:553
397
+ #: inc/core/data.php:981
398
  msgid "Left"
399
  msgstr "Слева"
400
 
401
+ #: inc/core/data.php:155 inc/core/data.php:554 inc/core/data.php:1913
402
+ #: inc/core/data.php:2051
403
  msgid "Center"
404
  msgstr "По центру"
405
 
406
  #: inc/core/data.php:156 inc/core/data.php:493 inc/core/data.php:555
407
+ #: inc/core/data.php:982
408
  msgid "Right"
409
  msgstr "Справа"
410
 
429
  #: inc/core/data.php:381 inc/core/data.php:409 inc/core/data.php:439
430
  #: inc/core/data.php:475 inc/core/data.php:500 inc/core/data.php:536
431
  #: inc/core/data.php:563 inc/core/data.php:579 inc/core/data.php:621
432
+ #: inc/core/data.php:651 inc/core/data.php:773 inc/core/data.php:817
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
  #: inc/core/data.php:873 inc/core/data.php:910 inc/core/data.php:942
434
  #: inc/core/data.php:1044 inc/core/data.php:1060 inc/core/data.php:1112
435
  #: inc/core/data.php:1237 inc/core/data.php:1288 inc/core/data.php:1333
440
  #: inc/core/data.php:1831 inc/core/data.php:1950 inc/core/data.php:2088
441
  #: inc/core/data.php:2169 inc/core/data.php:2343 inc/core/data.php:2398
442
  #: inc/core/data.php:2444
443
+ msgid "Class"
444
+ msgstr "Класс"
445
+
446
+ #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
447
+ #: inc/core/data.php:311 inc/core/data.php:329 inc/core/data.php:358
448
+ #: inc/core/data.php:382 inc/core/data.php:410 inc/core/data.php:440
449
+ #: inc/core/data.php:476 inc/core/data.php:501 inc/core/data.php:537
450
+ #: inc/core/data.php:564 inc/core/data.php:580 inc/core/data.php:622
451
+ #: inc/core/data.php:652 inc/core/data.php:774 inc/core/data.php:818
452
+ #: inc/core/data.php:874 inc/core/data.php:911 inc/core/data.php:943
453
+ #: inc/core/data.php:1045 inc/core/data.php:1061 inc/core/data.php:1113
454
+ #: inc/core/data.php:1238 inc/core/data.php:1289 inc/core/data.php:1334
455
+ #: inc/core/data.php:1433 inc/core/data.php:1472 inc/core/data.php:1542
456
+ #: inc/core/data.php:1564 inc/core/data.php:1595 inc/core/data.php:1628
457
+ #: inc/core/data.php:1644 inc/core/data.php:1674 inc/core/data.php:1694
458
+ #: inc/core/data.php:1721 inc/core/data.php:1742 inc/core/data.php:1787
459
+ #: inc/core/data.php:1832 inc/core/data.php:1951 inc/core/data.php:2089
460
+ #: inc/core/data.php:2170 inc/core/data.php:2344 inc/core/data.php:2399
461
+ #: inc/core/data.php:2445
462
  msgid "Extra CSS class"
463
  msgstr "Дополнительный CSS класс"
464
 
516
  msgid "Tab name"
517
  msgstr "Имя вкладки"
518
 
519
+ #: inc/core/data.php:230 inc/core/data.php:263 inc/core/data.php:791
520
+ #: inc/core/data.php:834 inc/core/data.php:1500
521
  msgid "Title"
522
  msgstr "Заголовок"
523
 
640
  msgid "Folder 2"
641
  msgstr "Папка 2"
642
 
643
+ #: inc/core/data.php:300 inc/core/data.php:640 inc/core/data.php:746
644
+ #: inc/core/data.php:797
645
  msgid "Icon"
646
  msgstr "Иконка"
647
 
726
  msgid "Spacer"
727
  msgstr "Пробел"
728
 
729
+ #: inc/core/data.php:376 inc/core/data.php:1095 inc/core/data.php:1152
730
+ #: inc/core/data.php:1271 inc/core/data.php:1322 inc/core/data.php:1366
731
+ #: inc/core/data.php:1518 inc/core/data.php:1775 inc/core/data.php:1814
732
+ #: inc/core/data.php:1897 inc/core/data.php:2017 inc/core/data.php:2154
733
+ #: inc/core/data.php:2371
734
  msgid "Height"
735
  msgstr "Высота"
736
 
746
  msgid "Highlight"
747
  msgstr "Выделитель"
748
 
749
+ #: inc/core/data.php:398 inc/core/data.php:701 inc/core/data.php:891
750
  msgid "Background"
751
  msgstr "Фон"
752
 
754
  msgid "Highlighted text background color"
755
  msgstr "Цвет фона выделяемого текста"
756
 
757
+ #: inc/core/data.php:405 inc/core/data.php:707 inc/core/data.php:897
758
  msgid "Text color"
759
  msgstr "Цвет текста"
760
 
949
  msgstr ""
950
  "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
951
 
952
+ #: inc/core/data.php:616 inc/core/data.php:727
953
  msgid "Centered"
954
  msgstr "По центру"
955
 
977
  msgid "You can upload custom icon for this list or pick a built-in icon"
978
  msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
979
 
980
+ #: inc/core/data.php:646 inc/core/data.php:752 inc/core/data.php:803
981
  msgid "Icon color"
982
  msgstr "Цвет иконки"
983
 
984
+ #: inc/core/data.php:647 inc/core/data.php:753 inc/core/data.php:804
985
  msgid ""
986
  "This color will be applied to the selected icon. Does not works with "
987
  "uploaded icons"
1019
  msgid "Button link"
1020
  msgstr "Ссылка кнопки"
1021
 
1022
+ #: inc/core/data.php:674 inc/core/data.php:1585
1023
  msgid "Same tab"
1024
  msgstr "Та же вкладка"
1025
 
1026
+ #: inc/core/data.php:675 inc/core/data.php:1586
1027
  msgid "New tab"
1028
  msgstr "Новая вкладка"
1029
 
1030
+ #: inc/core/data.php:678 inc/core/data.php:1589
1031
  msgid "Target"
1032
  msgstr "Цель"
1033
 
1035
  msgid "Button link target"
1036
  msgstr "Цель ссылки кнопки"
1037
 
1038
+ #: inc/core/data.php:686
1039
+ msgid "Ghost"
1040
+ msgstr "Призрак"
1041
+
1042
+ #: inc/core/data.php:687 inc/core/data.php:840
1043
  msgid "Soft"
1044
  msgstr "Мягкий"
1045
 
1046
+ #: inc/core/data.php:688 inc/core/data.php:841
1047
  msgid "Glass"
1048
  msgstr "Стекло"
1049
 
1050
+ #: inc/core/data.php:689 inc/core/data.php:842
1051
  msgid "Bubbles"
1052
  msgstr "Пузыри"
1053
 
1054
+ #: inc/core/data.php:690 inc/core/data.php:843
1055
  msgid "Noise"
1056
  msgstr "Шум"
1057
 
1058
+ #: inc/core/data.php:691
1059
  msgid "Stroked"
1060
  msgstr "Прошитый"
1061
 
1062
+ #: inc/core/data.php:692
1063
  msgid "3D"
1064
  msgstr "3D"
1065
 
1066
+ #: inc/core/data.php:695
1067
  msgid "Button background style preset"
1068
  msgstr "Стиль фона кнопки"
1069
 
1070
+ #: inc/core/data.php:701
1071
  msgid "Button background color"
1072
  msgstr "Цвет фона кнопки"
1073
 
1074
+ #: inc/core/data.php:708
1075
  msgid "Button text color"
1076
  msgstr "Цвет текста кнопки"
1077
 
1078
+ #: inc/core/data.php:717
1079
  msgid "Button size"
1080
  msgstr "Размер кнопки"
1081
 
1082
+ #: inc/core/data.php:722
1083
  msgid "Fluid"
1084
  msgstr "Резиновая"
1085
 
1086
+ #: inc/core/data.php:722
1087
  msgid "Fluid buttons has 100% width"
1088
  msgstr "Резиновые кнопки имеют ширину 100%"
1089
 
1090
+ #: inc/core/data.php:727
1091
  msgid "Is button centered on the page"
1092
  msgstr "Кнопка выровнена по центру страницы"
1093
 
1094
+ #: inc/core/data.php:732
1095
  msgid "Auto"
1096
  msgstr "Авто"
1097
 
1098
+ #: inc/core/data.php:733
1099
  msgid "Round"
1100
  msgstr "Круглый"
1101
 
1102
+ #: inc/core/data.php:734
1103
  msgid "Square"
1104
  msgstr "Квадратный"
1105
 
1106
+ #: inc/core/data.php:740 inc/core/data.php:868 inc/core/data.php:906
1107
  msgid "Radius"
1108
  msgstr "Радиус"
1109
 
1110
+ #: inc/core/data.php:741
1111
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1112
  msgstr ""
1113
  "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
1114
 
1115
+ #: inc/core/data.php:747
1116
  msgid "You can upload custom icon for this button or pick a built-in icon"
1117
  msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
1118
 
1119
+ #: inc/core/data.php:758
1120
  msgid "Text shadow"
1121
  msgstr "Тень текста"
1122
 
1123
+ #: inc/core/data.php:759
1124
  msgid "Button text shadow"
1125
  msgstr "Тень текста на кнопке"
1126
 
1127
+ #: inc/core/data.php:763
1128
  msgid "Description"
1129
  msgstr "Описание"
1130
 
1131
+ #: inc/core/data.php:764
1132
  msgid ""
1133
  "Small description under button text. This option is incompatible with icon."
1134
  msgstr ""
1135
  "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
1136
  "кнопок."
1137
 
1138
+ #: inc/core/data.php:768
1139
  msgid "onClick"
1140
  msgstr "onClick"
1141
 
1142
+ #: inc/core/data.php:769
1143
  msgid "Advanced JavaScript code for onClick action"
1144
  msgstr "JavaScript код для атрибута onClick"
1145
 
1146
+ #: inc/core/data.php:777
1147
  msgid "Button text"
1148
  msgstr "Текст кнопки"
1149
 
1150
+ #: inc/core/data.php:778
1151
  msgid "Styled button"
1152
  msgstr "Стильная кнопка"
1153
 
1154
+ #: inc/core/data.php:784
1155
  msgid "Service"
1156
  msgstr "Услуга"
1157
 
1158
+ #: inc/core/data.php:790 inc/core/shortcodes.php:430
1159
  msgid "Service title"
1160
  msgstr "Название услуги"
1161
 
1162
+ #: inc/core/data.php:792
1163
  msgid "Service name"
1164
  msgstr "Название услуги"
1165
 
1166
+ #: inc/core/data.php:798
1167
  msgid "You can upload custom icon for this box"
1168
  msgstr "Вы можете загрузить свою иконку для этого блока"
1169
 
1170
+ #: inc/core/data.php:812
1171
  msgid "Icon size"
1172
  msgstr "Размер иконки"
1173
 
1174
+ #: inc/core/data.php:813
1175
  msgid "Size of the uploaded icon in pixels"
1176
  msgstr "Размер загруженной иконки в пикселях"
1177
 
1178
+ #: inc/core/data.php:821
1179
  msgid "Service description"
1180
  msgstr "Описание услуги"
1181
 
1182
+ #: inc/core/data.php:822
1183
  msgid "Service box with title"
1184
  msgstr "Блок услуга с заголовком"
1185
 
1186
+ #: inc/core/data.php:833
1187
  msgid "Box title"
1188
  msgstr "Заголовок блока"
1189
 
1190
+ #: inc/core/data.php:834
1191
  msgid "Text for the box title"
1192
  msgstr "Текст для заголовка блока"
1193
 
1194
+ #: inc/core/data.php:847
1195
  msgid "Box style preset"
1196
  msgstr "Стиль блока"
1197
 
1198
+ #: inc/core/data.php:853 inc/core/generator-views.php:99
1199
  msgid "Color"
1200
  msgstr "Цвет"
1201
 
1202
+ #: inc/core/data.php:854
1203
  msgid "Color for the box title and borders"
1204
  msgstr "Цвет заголовка блока и его рамки"
1205
 
1206
+ #: inc/core/data.php:860
1207
  msgid "Title text color"
1208
  msgstr "Цвет текста заголовка"
1209
 
1210
+ #: inc/core/data.php:860
1211
  msgid "Color for the box title text"
1212
  msgstr "Цвет текста в заголовке блока"
1213
 
1214
+ #: inc/core/data.php:869
1215
  msgid "Box corners radius"
1216
  msgstr "Радиус углов"
1217
 
1218
+ #: inc/core/data.php:877
1219
  msgid "Box content"
1220
  msgstr "Содержимое блока"
1221
 
1222
+ #: inc/core/data.php:878
1223
  msgid "Colored box with caption"
1224
  msgstr "Цветной блок с заголовком"
1225
 
1226
+ #: inc/core/data.php:883
1227
  msgid "Note"
1228
  msgstr "Заметка"
1229
 
1230
+ #: inc/core/data.php:891
1231
  msgid "Note background color"
1232
  msgstr "Цвет фона заметки"
1233
 
1234
+ #: inc/core/data.php:898
1235
  msgid "Note text color"
1236
  msgstr "Цвет текста заметки"
1237
 
1238
+ #: inc/core/data.php:906
1239
  msgid "Note corners radius"
1240
  msgstr "Радиус углов"
1241
 
1242
+ #: inc/core/data.php:914
1243
  msgid "Note text"
1244
  msgstr "Текст заметки"
1245
 
1246
+ #: inc/core/data.php:915
1247
  msgid "Colored box"
1248
  msgstr "Цветной блок"
1249
 
1250
+ #: inc/core/data.php:920 inc/core/data.php:1864 inc/core/data.php:1983
1251
+ #: inc/core/data.php:2121
1252
  msgid "Lightbox"
1253
  msgstr "Лайтбокс"
1254
 
1255
+ #: inc/core/data.php:927
1256
  msgid "Iframe"
1257
  msgstr "Фрейм (iframe)"
1258
 
1259
+ #: inc/core/data.php:928
1260
  msgid "Image"
1261
  msgstr "Изображение"
1262
 
1263
+ #: inc/core/data.php:929
1264
  msgid "Inline (html content)"
1265
  msgstr "HTML элемент"
1266
 
1267
+ #: inc/core/data.php:932
1268
  msgid "Content type"
1269
  msgstr "Тип содержимого"
1270
 
1271
+ #: inc/core/data.php:933
1272
  msgid "Select type of the lightbox window content"
1273
  msgstr "Выберите тип содержимого в окне лайтбокса"
1274
 
1275
+ #: inc/core/data.php:937
1276
  msgid "Content source"
1277
  msgstr "Источник содержимого"
1278
 
1279
+ #: inc/core/data.php:938
1280
  msgid ""
1281
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1282
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
1293
  "%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
1294
  "%value>#contact-form</b> - любой HTML элемент (html элемент)"
1295
 
1296
+ #: inc/core/data.php:946
1297
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1298
  msgstr ""
1299
  "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
1300
 
1301
+ #: inc/core/data.php:947
1302
  msgid "Lightbox window with custom content"
1303
  msgstr "Лайтбокс с произвольным содержимым"
1304
 
1305
+ #: inc/core/data.php:952
1306
  msgid "Tooltip"
1307
  msgstr "Подсказка"
1308
 
1309
+ #: inc/core/data.php:959
1310
  msgid "Basic: Light"
1311
  msgstr "Базовый: Светлый"
1312
 
1313
+ #: inc/core/data.php:960
1314
  msgid "Basic: Dark"
1315
  msgstr "Базовый: Темный"
1316
 
1317
+ #: inc/core/data.php:961
1318
  msgid "Basic: Yellow"
1319
  msgstr "Базовый: Желтый"
1320
 
1321
+ #: inc/core/data.php:962
1322
  msgid "Basic: Green"
1323
  msgstr "Базовый: Зеленый"
1324
 
1325
+ #: inc/core/data.php:963
1326
  msgid "Basic: Red"
1327
  msgstr "Базовый: Красный"
1328
 
1329
+ #: inc/core/data.php:964
1330
  msgid "Basic: Blue"
1331
  msgstr "Базовый: Голубой"
1332
 
1333
+ #: inc/core/data.php:965
1334
  msgid "Youtube"
1335
  msgstr "Youtube"
1336
 
1337
+ #: inc/core/data.php:966
1338
  msgid "Tipsy"
1339
  msgstr "Tipsy"
1340
 
1341
+ #: inc/core/data.php:967
1342
  msgid "Bootstrap"
1343
  msgstr "Bootstrap"
1344
 
1345
+ #: inc/core/data.php:968
1346
  msgid "jTools"
1347
  msgstr "jTools"
1348
 
1349
+ #: inc/core/data.php:969
1350
  msgid "Tipped"
1351
  msgstr "Tipped"
1352
 
1353
+ #: inc/core/data.php:970
1354
  msgid "Cluetip"
1355
  msgstr "Cluetip"
1356
 
1357
+ #: inc/core/data.php:974
1358
  msgid "Tooltip window style"
1359
  msgstr "Стиль окна подсказки"
1360
 
1361
+ #: inc/core/data.php:979
1362
  msgid "Top"
1363
  msgstr "Сверху"
1364
 
1365
+ #: inc/core/data.php:980
1366
  msgid "Bottom"
1367
  msgstr "Снизу"
1368
 
1369
+ #: inc/core/data.php:985
1370
  msgid "Position"
1371
  msgstr "Положение"
1372
 
1373
+ #: inc/core/data.php:986
1374
  msgid "Tooltip position"
1375
  msgstr "Положение всплывающей подсказки"
1376
 
1377
+ #: inc/core/data.php:991
1378
  msgid "Shadow"
1379
  msgstr "Тень"
1380
 
1381
+ #: inc/core/data.php:992
1382
  msgid ""
1383
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1384
  "blue, green etc."
1385
  msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
1386
 
1387
+ #: inc/core/data.php:997
1388
  msgid "Rounded corners"
1389
  msgstr "Скругление"
1390
 
1391
+ #: inc/core/data.php:998
1392
  msgid ""
1393
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1394
  "blue, green etc."
1396
  "Добавить скругленные уголки окну подсказки. Скругление работает только для "
1397
  "базовых стилей."
1398
 
1399
+ #: inc/core/data.php:1012
1400
  msgid "Font size"
1401
  msgstr "Размер шрифта"
1402
 
1403
+ #: inc/core/data.php:1013
1404
  msgid "Tooltip font size"
1405
  msgstr "Размер шрифта подсказки"
1406
 
1407
+ #: inc/core/data.php:1017
1408
  msgid "Tooltip title"
1409
  msgstr "Заголовок подсказки"
1410
 
1411
+ #: inc/core/data.php:1018
1412
  msgid ""
1413
  "Enter title for tooltip window. Leave this field empty to hide the title"
1414
  msgstr ""
1415
  "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
1416
  "заголовок"
1417
 
1418
+ #: inc/core/data.php:1021 inc/core/shortcodes.php:508
1419
  msgid "Tooltip text"
1420
  msgstr "Текст подсказки"
1421
 
1422
+ #: inc/core/data.php:1022
1423
  msgid "Tooltip content"
1424
  msgstr "Содержимое подсказки"
1425
 
1426
+ #: inc/core/data.php:1023
1427
  msgid "Enter tooltip content here"
1428
  msgstr "Введите сюда содержимое подсказки"
1429
 
1430
+ #: inc/core/data.php:1028
1431
  msgid "Show and hide on mouse hover"
1432
  msgstr "Показать и скрыть при наведении мыши"
1433
 
1434
+ #: inc/core/data.php:1029
1435
  msgid "Show and hide by mouse click"
1436
  msgstr "Показать и скрыть по клику мыши"
1437
 
1438
+ #: inc/core/data.php:1030
1439
  msgid "Always visible"
1440
  msgstr "Всегда видима"
1441
 
1442
+ #: inc/core/data.php:1033
1443
  msgid "Behavior"
1444
  msgstr "Поведение"
1445
 
1446
+ #: inc/core/data.php:1034
1447
  msgid "Select tooltip behavior"
1448
  msgstr "Выберите поведение подсказки"
1449
 
1450
+ #: inc/core/data.php:1039
1451
  msgid "Close button"
1452
  msgstr "Кнопка закрыть"
1453
 
1454
+ #: inc/core/data.php:1040
1455
  msgid "Show close button"
1456
  msgstr "Показывать кнопку закрыть"
1457
 
1458
+ #: inc/core/data.php:1048
1459
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1460
  msgstr ""
1461
  "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
1462
 
1463
+ #: inc/core/data.php:1049
1464
  msgid "Tooltip window with custom content"
1465
  msgstr "Всплывающая подсказка с произвольным содержимым"
1466
 
1467
+ #: inc/core/data.php:1054
1468
  msgid "Private"
1469
  msgstr "Заметка для авторов"
1470
 
1471
+ #: inc/core/data.php:1064
1472
  msgid "Private note text"
1473
  msgstr "Текст приватной заметки"
1474
 
1475
+ #: inc/core/data.php:1065
1476
  msgid "Private note for post authors"
1477
  msgstr "Приватный текст для других авторов"
1478
 
1479
+ #: inc/core/data.php:1070
1480
  msgid "YouTube"
1481
  msgstr "YouTube"
1482
 
1483
+ #: inc/core/data.php:1077 inc/core/data.php:1129 inc/core/data.php:1254
1484
+ #: inc/core/data.php:1304 inc/core/data.php:1348 inc/core/data.php:1660
1485
+ #: inc/core/data.php:1757
1486
  msgid "Url"
1487
  msgstr "Ссылка"
1488
 
1489
+ #: inc/core/data.php:1078 inc/core/data.php:1130
1490
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1491
  msgstr ""
1492
  "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1493
 
1494
+ #: inc/core/data.php:1086 inc/core/data.php:1143 inc/core/data.php:1262
1495
+ #: inc/core/data.php:1313 inc/core/data.php:1357 inc/core/data.php:1454
1496
+ #: inc/core/data.php:1509 inc/core/data.php:1766 inc/core/data.php:1805
1497
+ #: inc/core/data.php:1889 inc/core/data.php:2008 inc/core/data.php:2146
1498
+ #: inc/core/data.php:2362
1499
  msgid "Width"
1500
  msgstr "Ширина"
1501
 
1502
+ #: inc/core/data.php:1087 inc/core/data.php:1144 inc/core/data.php:1263
1503
+ #: inc/core/data.php:1314 inc/core/data.php:1358 inc/core/data.php:1510
1504
  msgid "Player width"
1505
  msgstr "Ширина плеера"
1506
 
1507
+ #: inc/core/data.php:1096 inc/core/data.php:1153 inc/core/data.php:1272
1508
+ #: inc/core/data.php:1323 inc/core/data.php:1367 inc/core/data.php:1519
1509
  msgid "Player height"
1510
  msgstr "Высота плеера"
1511
 
1512
+ #: inc/core/data.php:1101 inc/core/data.php:1158 inc/core/data.php:1277
1513
+ #: inc/core/data.php:1328 inc/core/data.php:1372 inc/core/data.php:1781
1514
+ #: inc/core/data.php:1820 inc/core/data.php:1902 inc/core/data.php:2023
1515
  msgid "Responsive"
1516
  msgstr "Отзывчивость (responsive)"
1517
 
1518
+ #: inc/core/data.php:1102 inc/core/data.php:1159 inc/core/data.php:1278
1519
+ #: inc/core/data.php:1329 inc/core/data.php:1373
1520
  msgid "Ignore width and height parameters and make player responsive"
1521
  msgstr ""
1522
  "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1523
 
1524
+ #: inc/core/data.php:1107 inc/core/data.php:1192 inc/core/data.php:1283
1525
+ #: inc/core/data.php:1378 inc/core/data.php:1460 inc/core/data.php:1530
1526
+ #: inc/core/data.php:1937 inc/core/data.php:2075
1527
  msgid "Autoplay"
1528
  msgstr "Автовоспроизведение"
1529
 
1530
+ #: inc/core/data.php:1108 inc/core/data.php:1193 inc/core/data.php:1284
1531
  msgid "Play video automatically when page is loaded"
1532
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1533
 
1534
+ #: inc/core/data.php:1116
1535
  msgid "YouTube video"
1536
  msgstr "Видео YouTube"
1537
 
1538
+ #: inc/core/data.php:1122
1539
  msgid "YouTube Advanced"
1540
  msgstr "YouTube продвинутый"
1541
 
1542
+ #: inc/core/data.php:1134
1543
  msgid "Playlist"
1544
  msgstr "Плейлист"
1545
 
1546
+ #: inc/core/data.php:1135
1547
  msgid ""
1548
  "Value is a comma-separated list of video IDs to play. If you specify a "
1549
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
1553
  "значение, то первым будет проиграно видео из параметра URL, а указанные "
1554
  "здесь видео будут проиграны после него"
1555
 
1556
+ #: inc/core/data.php:1164
1557
  msgid "0 - Hide controls"
1558
  msgstr "0 - Спрятать панель"
1559
 
1560
+ #: inc/core/data.php:1165
1561
  msgid "1 - Show controls"
1562
  msgstr "1 - Показать панель"
1563
 
1564
+ #: inc/core/data.php:1166
1565
  msgid "2 - Show controls when playback is started"
1566
  msgstr "2 - Показать панель при начале воспроизведения"
1567
 
1568
+ #: inc/core/data.php:1169 inc/core/data.php:1524
1569
  msgid "Controls"
1570
  msgstr "Элементы управления"
1571
 
1572
+ #: inc/core/data.php:1170
1573
  msgid "This parameter indicates whether the video player controls will display"
1574
  msgstr ""
1575
  "Этот параметр определяет как показывать панель управления воспроизведением"
1576
 
1577
+ #: inc/core/data.php:1175
1578
  msgid "0 - Do not hide controls"
1579
  msgstr "0 - Не прятать панель"
1580
 
1581
+ #: inc/core/data.php:1176
1582
  msgid "1 - Hide all controls on mouse out"
1583
  msgstr "1 - Спрятать панель при уходе мыши"
1584
 
1585
+ #: inc/core/data.php:1177
1586
  msgid "2 - Hide progress bar on mouse out"
1587
  msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
1588
 
1589
+ #: inc/core/data.php:1180
1590
  msgid "Autohide"
1591
  msgstr "Авто-скрытие"
1592
 
1593
+ #: inc/core/data.php:1181
1594
  msgid ""
1595
  "This parameter indicates whether the video controls will automatically hide "
1596
  "after a video begins playing"
1598
  "Этот параметр определяет как скрывать панель управления воспроизведением во "
1599
  "время проигрывания ролика"
1600
 
1601
+ #: inc/core/data.php:1186
1602
  msgid "Show title bar"
1603
  msgstr "Показывать заголовок"
1604
 
1605
+ #: inc/core/data.php:1187
1606
  msgid ""
1607
  "If you set the parameter value to NO, then the player will not display "
1608
  "information like the video title and uploader before the video starts "
1611
  "Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
1612
  "названием видео и имя автора видео"
1613
 
1614
+ #: inc/core/data.php:1198 inc/core/data.php:1466 inc/core/data.php:1536
1615
  msgid "Loop"
1616
  msgstr "Повтор"
1617
 
1618
+ #: inc/core/data.php:1199
1619
  msgid ""
1620
  "Setting of YES will cause the player to play the initial video again and "
1621
  "again"
1622
  msgstr "Видео будет снова проиграно по окнчании воспроизведения"
1623
 
1624
+ #: inc/core/data.php:1204
1625
  msgid "Related videos"
1626
  msgstr "Похожие видео"
1627
 
1628
+ #: inc/core/data.php:1205
1629
  msgid ""
1630
  "This parameter indicates whether the player should show related videos when "
1631
  "playback of the initial video ends"
1633
  "Этот параметр позволяет отключать показ похожих видео по окончании "
1634
  "воспроизведения"
1635
 
1636
+ #: inc/core/data.php:1210
1637
  msgid "Show full-screen button"
1638
  msgstr "Показывать кнопку полноэкранного режима"
1639
 
1640
+ #: inc/core/data.php:1211
1641
  msgid ""
1642
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1643
  msgstr ""
1644
  "Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
1645
 
1646
+ #: inc/core/data.php:1217
1647
  msgid ""
1648
  "This parameter lets you use a YouTube player that does not show a YouTube "
1649
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
1655
  "управления воспроизведением. Вместо он будет показан либо в панели заголовка "
1656
  "видео, либо как полупрозрачный над видео"
1657
 
1658
+ #: inc/core/data.php:1222
1659
  msgid "Dark theme"
1660
  msgstr "Темная тема"
1661
 
1662
+ #: inc/core/data.php:1223
1663
  msgid "Light theme"
1664
  msgstr "Светлая тема"
1665
 
1666
+ #: inc/core/data.php:1226 inc/core/data.php:2393
1667
  msgid "Theme"
1668
  msgstr "Тема"
1669
 
1670
+ #: inc/core/data.php:1227
1671
  msgid ""
1672
  "This parameter indicates whether the embedded player will display player "
1673
  "controls (like a play button or volume control) within a dark or light "
1674
  "control bar"
1675
  msgstr "Выберите тему для проигрывателя"
1676
 
1677
+ #: inc/core/data.php:1232
1678
  msgid "Force HTTPS"
1679
  msgstr "Принудительный HTTPS"
1680
 
1681
+ #: inc/core/data.php:1233
1682
  msgid "Use HTTPS in player iframe"
1683
  msgstr "Использовать протокол HTTPS во фрейме проигрывателя"
1684
 
1685
+ #: inc/core/data.php:1241
1686
  msgid "YouTube video player with advanced settings"
1687
  msgstr "YouTube видео плеер с расширенными настройками"
1688
 
1689
+ #: inc/core/data.php:1247
1690
  msgid "Vimeo"
1691
  msgstr "Vimeo"
1692
 
1693
+ #: inc/core/data.php:1254
1694
  msgid "Url of Vimeo page with video"
1695
  msgstr "Ссылка на страницу Vimeo с видео"
1696
 
1697
+ #: inc/core/data.php:1292
1698
  msgid "Vimeo video"
1699
  msgstr "Видео Vimeo"
1700
 
1701
+ #: inc/core/data.php:1298
1702
  msgid "Screenr"
1703
  msgstr "Screenr"
1704
 
1705
+ #: inc/core/data.php:1305
1706
  msgid "Url of Screenr page with video"
1707
  msgstr "Ссылка на страницу Screenr с видео"
1708
 
1709
+ #: inc/core/data.php:1337
1710
  msgid "Screenr video"
1711
  msgstr "Видео Screenr"
1712
 
1713
+ #: inc/core/data.php:1342
1714
  msgid "Dailymotion"
1715
  msgstr "Dailymotion"
1716
 
1717
+ #: inc/core/data.php:1349
1718
  msgid "Url of Dailymotion page with video"
1719
  msgstr "Ссылка на страницу Dailymotion с видео"
1720
 
1721
+ #: inc/core/data.php:1379
1722
  msgid ""
1723
  "Start the playback of the video automatically after the player load. May not "
1724
  "work on some mobile OS versions"
1726
  "Автоматически начать воспроизведение видео. Может не работать на некоторых "
1727
  "моильных ОС"
1728
 
1729
+ #: inc/core/data.php:1384
1730
  msgid "Background color"
1731
  msgstr "Цвет фона"
1732
 
1733
+ #: inc/core/data.php:1385
1734
  msgid "HTML color of the background of controls elements"
1735
  msgstr "HTML цвет фона элементов управления"
1736
 
1737
+ #: inc/core/data.php:1390
1738
  msgid "Foreground color"
1739
  msgstr "Цвет переднего плана"
1740
 
1741
+ #: inc/core/data.php:1391
1742
  msgid "HTML color of the foreground of controls elements"
1743
  msgstr "HTML цвет передней части элементов управления"
1744
 
1745
+ #: inc/core/data.php:1396
1746
  msgid "Highlight color"
1747
  msgstr "Цвет подсветки"
1748
 
1749
+ #: inc/core/data.php:1397
1750
  msgid "HTML color of the controls elements' highlights"
1751
  msgstr "HTML цвет подсветки элементов управления"
1752
 
1753
+ #: inc/core/data.php:1402
1754
  msgid "Show logo"
1755
  msgstr "Показать логотип"
1756
 
1757
+ #: inc/core/data.php:1403
1758
  msgid "Allows to hide or show the Dailymotion logo"
1759
  msgstr "Показать или нет лого Dailymotion"
1760
 
1761
+ #: inc/core/data.php:1415
1762
  msgid "Quality"
1763
  msgstr "Качество"
1764
 
1765
+ #: inc/core/data.php:1416
1766
  msgid "Determines the quality that must be played by default if available"
1767
  msgstr "Определите качество, которое нужно воспроизвести, если доступно"
1768
 
1769
+ #: inc/core/data.php:1421
1770
  msgid "Show related videos"
1771
  msgstr "Показать похожие видео"
1772
 
1773
+ #: inc/core/data.php:1422
1774
  msgid "Show related videos at the end of the video"
1775
  msgstr "Показать похожие видео в конце воспроизведения"
1776
 
1777
+ #: inc/core/data.php:1427
1778
  msgid "Show video info"
1779
  msgstr "Показывать инфо видео"
1780
 
1781
+ #: inc/core/data.php:1428
1782
  msgid "Show videos info (title/author) on the start screen"
1783
  msgstr "Показать информацию о видео (заголовок/автор) на начальном экране"
1784
 
1785
+ #: inc/core/data.php:1436
1786
  msgid "Dailymotion video"
1787
  msgstr "Видео Dailymotion"
1788
 
1789
+ #: inc/core/data.php:1441
1790
  msgid "Audio"
1791
  msgstr "Аудио"
1792
 
1793
+ #: inc/core/data.php:1448 inc/core/data.php:1488
1794
  msgid "File"
1795
  msgstr "Файл"
1796
 
1797
+ #: inc/core/data.php:1449
1798
  msgid "Audio file url. Supported formats: mp3, ogg"
1799
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1800
 
1801
+ #: inc/core/data.php:1455
1802
  msgid ""
1803
  "Player width. You can specify width in percents and player will be "
1804
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1807
  "отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
1808
  "%value>100&#37;</b>"
1809
 
1810
+ #: inc/core/data.php:1461 inc/core/data.php:1531
1811
  msgid "Play file automatically when page is loaded"
1812
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1813
 
1814
+ #: inc/core/data.php:1467 inc/core/data.php:1537
1815
  msgid "Repeat when playback is ended"
1816
  msgstr "Повторять, когда воспроизведение окночено"
1817
 
1818
+ #: inc/core/data.php:1475
1819
  msgid "Custom audio player"
1820
  msgstr "Настраиваемый аудио-плеер"
1821
 
1822
+ #: inc/core/data.php:1481
1823
  msgid "Video"
1824
  msgstr "Видео"
1825
 
1826
+ #: inc/core/data.php:1489
1827
  msgid "Url to mp4/flv video-file"
1828
  msgstr "Ссылка на mp4/flv видео-файл"
1829
 
1830
+ #: inc/core/data.php:1494
1831
  msgid "Poster"
1832
  msgstr "Постер"
1833
 
1834
+ #: inc/core/data.php:1495
1835
  msgid "Url to poster image, that will be shown before playback"
1836
  msgstr ""
1837
  "Ссылка на изображение постера. Изображение будет показано перед началом "
1838
  "воспроизведения"
1839
 
1840
+ #: inc/core/data.php:1501
1841
  msgid "Player title"
1842
  msgstr "Заголовок плеера"
1843
 
1844
+ #: inc/core/data.php:1525
1845
  msgid "Show player controls (play/pause etc.) or not"
1846
  msgstr ""
1847
  "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1848
 
1849
+ #: inc/core/data.php:1545
1850
  msgid "Custom video player"
1851
  msgstr "Настраиваемый видео-плеер"
1852
 
1853
+ #: inc/core/data.php:1551
1854
  msgid "Table"
1855
  msgstr "Таблица"
1856
 
1857
+ #: inc/core/data.php:1558
1858
  msgid "CSV file"
1859
  msgstr "CSV файл"
1860
 
1861
+ #: inc/core/data.php:1559
1862
  msgid "Upload CSV file if you want to create HTML-table from file"
1863
  msgstr ""
1864
  "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1865
 
1866
+ #: inc/core/data.php:1567
1867
  msgid ""
1868
  "<table>\n"
1869
  "<tr>\n"
1887
  "</tr>\n"
1888
  "</table>"
1889
 
1890
+ #: inc/core/data.php:1568
1891
  msgid "Styled table from HTML or CSV file"
1892
  msgstr "Стильная таблица из HTML или CSV файла"
1893
 
1894
+ #: inc/core/data.php:1573
1895
  msgid "Permalink"
1896
  msgstr "Постоянная ссылка"
1897
 
1898
+ #: inc/core/data.php:1579 inc/core/data.php:2503
1899
  msgid "ID"
1900
  msgstr "ID"
1901
 
1902
+ #: inc/core/data.php:1580
1903
  msgid "Post or page ID"
1904
  msgstr "ID записи или страницы"
1905
 
1906
+ #: inc/core/data.php:1590
1907
  msgid "Link target. blank - link will be opened in new window/tab"
1908
  msgstr ""
1909
  "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
1910
  "вкладке"
1911
 
1912
+ #: inc/core/data.php:1599
1913
  msgid "Permalink to specified post/page"
1914
  msgstr "Постоянная ссылка на страницу"
1915
 
1916
+ #: inc/core/data.php:1604
1917
  msgid "Members"
1918
  msgstr "Участники"
1919
 
1920
+ #: inc/core/data.php:1609 inc/core/shortcodes.php:794
1921
  msgid "This content is for registered users only. Please %login%."
1922
  msgstr ""
1923
  "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1924
 
1925
+ #: inc/core/data.php:1610
1926
  msgid "Message"
1927
  msgstr "Сообщение"
1928
 
1929
+ #: inc/core/data.php:1610
1930
  msgid "Message for not logged users"
1931
  msgstr "Собщение для неавторизованных"
1932
 
1933
+ #: inc/core/data.php:1615
1934
  msgid "Box color"
1935
  msgstr "Цвет блока"
1936
 
1937
+ #: inc/core/data.php:1615
1938
  msgid "This color will applied only to box for not logged users"
1939
  msgstr ""
1940
  "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1941
 
1942
+ #: inc/core/data.php:1618 inc/core/shortcodes.php:797
1943
  msgid "login"
1944
  msgstr "войдите"
1945
 
1946
+ #: inc/core/data.php:1619
1947
  msgid "Login link text"
1948
  msgstr "Текст ссылки войти"
1949
 
1950
+ #: inc/core/data.php:1619
1951
  msgid "Text for the login link"
1952
  msgstr "Текст ссылки ВОЙТИ"
1953
 
1954
+ #: inc/core/data.php:1623
1955
  msgid "Login link url"
1956
  msgstr "Адрес ссылки войти"
1957
 
1958
+ #: inc/core/data.php:1631
1959
  msgid "Content for logged members"
1960
  msgstr "Содержимое для авторизованых пользователей"
1961
 
1962
+ #: inc/core/data.php:1632
1963
  msgid "Content for logged in members only"
1964
  msgstr "Ссодержимое для авторизованых"
1965
 
1966
+ #: inc/core/data.php:1637
1967
  msgid "Guests"
1968
  msgstr "Гости"
1969
 
1970
+ #: inc/core/data.php:1647
1971
  msgid "Content for guests"
1972
  msgstr "Содержимое для гостей"
1973
 
1974
+ #: inc/core/data.php:1648
1975
  msgid "Content for guests only"
1976
  msgstr "Ссодержимое только для гостей"
1977
 
1978
+ #: inc/core/data.php:1653
1979
  msgid "RSS Feed"
1980
  msgstr "RSS лента"
1981
 
1982
+ #: inc/core/data.php:1661
1983
  msgid "Url to RSS-feed"
1984
  msgstr "Ссылка на RSS-ленту"
1985
 
1986
+ #: inc/core/data.php:1669 inc/core/data.php:1856 inc/core/data.php:1975
1987
+ #: inc/core/data.php:2113
1988
  msgid "Limit"
1989
  msgstr "Лимит"
1990
 
1991
+ #: inc/core/data.php:1669
1992
  msgid "Number of items to show"
1993
  msgstr "Количество элементов для отображения"
1994
 
1995
+ #: inc/core/data.php:1677
1996
  msgid "Feed grabber"
1997
  msgstr "Граббер новостных лент"
1998
 
1999
+ #: inc/core/data.php:1682
2000
  msgid "Menu"
2001
  msgstr "Меню"
2002
 
2003
+ #: inc/core/data.php:1689
2004
  msgid "Menu name"
2005
  msgstr "Имя меню"
2006
 
2007
+ #: inc/core/data.php:1689
2008
  msgid "Custom menu name. Ex: Main menu"
2009
  msgstr "Имя произвольного меню. Например: Главное меню"
2010
 
2011
+ #: inc/core/data.php:1697
2012
  msgid "Custom menu by name"
2013
  msgstr "Произвольное меню"
2014
 
2015
+ #: inc/core/data.php:1702
2016
  msgid "Sub pages"
2017
  msgstr "Подстраницы"
2018
 
2019
+ #: inc/core/data.php:1709 inc/core/data.php:1736
2020
  msgid "Depth"
2021
  msgstr "Глубина"
2022
 
2023
+ #: inc/core/data.php:1710
2024
  msgid "Max depth level of children pages"
2025
  msgstr "Максимальная глубина дочерних страниц"
2026
 
2027
+ #: inc/core/data.php:1715
2028
  msgid "Parent ID"
2029
  msgstr "ID родителя"
2030
 
2031
+ #: inc/core/data.php:1716
2032
  msgid "ID of the parent page. Leave blank to use current page"
2033
  msgstr ""
2034
  "ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
2035
  "страницу"
2036
 
2037
+ #: inc/core/data.php:1724
2038
  msgid "List of sub pages"
2039
  msgstr "Список дочерних страниц"
2040
 
2041
+ #: inc/core/data.php:1729
2042
  msgid "Siblings"
2043
  msgstr "Соседние страницы"
2044
 
2045
+ #: inc/core/data.php:1737
2046
  msgid "Max depth level"
2047
  msgstr "Максимальный уровень вложенности"
2048
 
2049
+ #: inc/core/data.php:1745
2050
  msgid "List of cureent page siblings"
2051
  msgstr "Список страниц, соседних с текущей"
2052
 
2053
+ #: inc/core/data.php:1750
2054
  msgid "Document"
2055
  msgstr "Документ"
2056
 
2057
+ #: inc/core/data.php:1758
2058
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
2059
  msgstr ""
2060
  "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
2061
 
2062
+ #: inc/core/data.php:1767
2063
  msgid "Viewer width"
2064
  msgstr "Ширина просмотрщика"
2065
 
2066
+ #: inc/core/data.php:1776
2067
  msgid "Viewer height"
2068
  msgstr "Высота просмотрщика"
2069
 
2070
+ #: inc/core/data.php:1782
2071
  msgid "Ignore width and height parameters and make viewer responsive"
2072
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
2073
 
2074
+ #: inc/core/data.php:1790
2075
  msgid "Document viewer by Google"
2076
  msgstr "Просмотрщик документов от Google"
2077
 
2078
+ #: inc/core/data.php:1795
2079
  msgid "Gmap"
2080
  msgstr "Google карта"
2081
 
2082
+ #: inc/core/data.php:1806
2083
  msgid "Map width"
2084
  msgstr "Ширина карты"
2085
 
2086
+ #: inc/core/data.php:1815
2087
  msgid "Map height"
2088
  msgstr "Высота карты"
2089
 
2090
+ #: inc/core/data.php:1821
2091
  msgid "Ignore width and height parameters and make map responsive"
2092
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
2093
 
2094
+ #: inc/core/data.php:1826
2095
  msgid "Marker"
2096
  msgstr "Маркер"
2097
 
2098
+ #: inc/core/data.php:1827
2099
  msgid "Address for the marker. You can type it in any language"
2100
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
2101
 
2102
+ #: inc/core/data.php:1835
2103
  msgid "Maps by Google"
2104
  msgstr "Карты от Google"
2105
 
2106
+ #: inc/core/data.php:1840
2107
  msgid "Slider"
2108
  msgstr "Слайдер"
2109
 
2110
+ #: inc/core/data.php:1847 inc/core/data.php:1966 inc/core/data.php:2104
2111
  msgid "Source"
2112
  msgstr "Источник"
2113
 
2114
+ #: inc/core/data.php:1848 inc/core/data.php:1967 inc/core/data.php:2105
2115
  msgid ""
2116
  "Choose images source. You can use images from Media library or retrieve it "
2117
  "from posts (thumbnails) posted under specified blog category. You can also "
2122
  "опубликованных в выбранной категории. Вы также можете выбрать произвольную "
2123
  "таксономию и её рубрики"
2124
 
2125
+ #: inc/core/data.php:1857 inc/core/data.php:1976 inc/core/data.php:2114
2126
  msgid ""
2127
  "Maximum number of image source posts (for recent posts, category and custom "
2128
  "taxonomy)"
2130
  "Максимальное кол-во записей с изображениями (для последних записей, "
2131
  "категорий и произвольных таксономий)"
2132
 
2133
+ #: inc/core/data.php:1863 inc/core/data.php:1982 inc/core/data.php:2120
2134
  msgid "Full-size image"
2135
  msgstr "Полноразмерное изображение"
2136
 
2137
+ #: inc/core/data.php:1865 inc/core/data.php:1984 inc/core/data.php:2122
2138
  msgid "Slide link (added in media editor)"
2139
  msgstr "Ссылка слайда (добавленная в медиа редакторе)"
2140
 
2141
+ #: inc/core/data.php:1866 inc/core/data.php:1985 inc/core/data.php:2123
2142
  msgid "Attachment page"
2143
  msgstr "Страница медиа-файла"
2144
 
2145
+ #: inc/core/data.php:1867 inc/core/data.php:1986 inc/core/data.php:2124
2146
  msgid "Post permalink"
2147
  msgstr "Ссылка записи"
2148
 
2149
+ #: inc/core/data.php:1870 inc/core/data.php:1989 inc/core/data.php:2127
2150
  msgid "Links"
2151
  msgstr "Ссылки"
2152
 
2153
+ #: inc/core/data.php:1871 inc/core/data.php:1990 inc/core/data.php:2128
2154
  msgid "Select which links will be used for images in this gallery"
2155
  msgstr "Выберите какие ссылки использовать для элементов этой галереи"
2156
 
2157
+ #: inc/core/data.php:1876 inc/core/data.php:1995 inc/core/data.php:2133
2158
  msgid "Same window"
2159
  msgstr "То же окно"
2160
 
2161
+ #: inc/core/data.php:1877 inc/core/data.php:1996 inc/core/data.php:2134
2162
  msgid "New window"
2163
  msgstr "Новое окно"
2164
 
2165
+ #: inc/core/data.php:1880 inc/core/data.php:1999 inc/core/data.php:2137
2166
  msgid "Links target"
2167
  msgstr "Цель ссылок"
2168
 
2169
+ #: inc/core/data.php:1881 inc/core/data.php:2000 inc/core/data.php:2138
2170
  msgid "Open links in"
2171
  msgstr "Открывать ссылки в"
2172
 
2173
+ #: inc/core/data.php:1889
2174
  msgid "Slider width (in pixels)"
2175
  msgstr "Ширина слайдера (в пикселях)"
2176
 
2177
+ #: inc/core/data.php:1897
2178
  msgid "Slider height (in pixels)"
2179
  msgstr "Высота слайдера (в пикселях)"
2180
 
2181
+ #: inc/core/data.php:1903
2182
  msgid "Ignore width and height parameters and make slider responsive"
2183
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
2184
 
2185
+ #: inc/core/data.php:1908 inc/core/data.php:2046 inc/core/data.php:2164
2186
  msgid "Show titles"
2187
  msgstr "Показывать заголовки"
2188
 
2189
+ #: inc/core/data.php:1908
2190
  msgid "Display slide titles"
2191
  msgstr "Отображать заголовки слайдов"
2192
 
2193
+ #: inc/core/data.php:1913
2194
  msgid "Is slider centered on the page"
2195
  msgstr "Слайдер выровнен по центру страницы"
2196
 
2197
+ #: inc/core/data.php:1918 inc/core/data.php:2056
2198
  msgid "Arrows"
2199
  msgstr "Стрелки"
2200
 
2201
+ #: inc/core/data.php:1918 inc/core/data.php:2056
2202
  msgid "Show left and right arrows"
2203
  msgstr "Показывать стрелки влево/вправо"
2204
 
2205
+ #: inc/core/data.php:1923 inc/core/data.php:2061
2206
  msgid "Pagination"
2207
  msgstr "Страницы"
2208
 
2209
+ #: inc/core/data.php:1924 inc/core/data.php:2062
2210
  msgid "Show pagination"
2211
  msgstr "Показывать страницы"
2212
 
2213
+ #: inc/core/data.php:1928 inc/core/data.php:2066
2214
  msgid "Mouse wheel control"
2215
  msgstr "Управление колесом мыши"
2216
 
2217
+ #: inc/core/data.php:1929
2218
  msgid "Allow to change slides with mouse wheel"
2219
  msgstr "Разрешить перелистывание слайдов колесом мышки"
2220
 
2221
+ #: inc/core/data.php:1938
2222
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2223
  msgstr ""
2224
  "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
2225
  "отключить автовоспроизведение"
2226
 
2227
+ #: inc/core/data.php:1946 inc/core/data.php:2084
2228
  msgid "Speed"
2229
  msgstr "Скорость"
2230
 
2231
+ #: inc/core/data.php:1946 inc/core/data.php:2084
2232
  msgid "Specify animation speed"
2233
  msgstr "Укажите скорость анимации"
2234
 
2235
+ #: inc/core/data.php:1954
2236
  msgid "Customizable image slider"
2237
  msgstr "Настраиваемый слайдер изображений"
2238
 
2239
+ #: inc/core/data.php:1959
2240
  msgid "Carousel"
2241
  msgstr "Карусель"
2242
 
2243
+ #: inc/core/data.php:2009
2244
  msgid "Carousel width (in pixels)"
2245
  msgstr "Ширина карусели (в пикселях)"
2246
 
2247
+ #: inc/core/data.php:2018
2248
  msgid "Carousel height (in pixels)"
2249
  msgstr "Высота карусели (в пикселях)"
2250
 
2251
+ #: inc/core/data.php:2024
2252
  msgid "Ignore width and height parameters and make carousel responsive"
2253
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
2254
 
2255
+ #: inc/core/data.php:2032
2256
  msgid "Items to show"
2257
  msgstr "Количество элементов для отображения"
2258
 
2259
+ #: inc/core/data.php:2033
2260
  msgid "How much carousel items is visible"
2261
  msgstr "Сколько элементов карусели видны постоянно"
2262
 
2263
+ #: inc/core/data.php:2040
2264
  msgid "Scroll number"
2265
  msgstr "Кол-во прокручиваемых"
2266
 
2267
+ #: inc/core/data.php:2041
2268
  msgid "How much items are scrolled in one transition"
2269
  msgstr "Сколько элементов карусели прокручивается за один переход"
2270
 
2271
+ #: inc/core/data.php:2046
2272
  msgid "Display titles for each item"
2273
  msgstr "Показывать заголовки для каждого элемента карусели"
2274
 
2275
+ #: inc/core/data.php:2051
2276
  msgid "Is carousel centered on the page"
2277
  msgstr "Карусель выровнена по центру страницы"
2278
 
2279
+ #: inc/core/data.php:2067
2280
  msgid "Allow to rotate carousel with mouse wheel"
2281
  msgstr "Разрешить прокрутку карусели колесом мыши"
2282
 
2283
+ #: inc/core/data.php:2076
2284
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2285
  msgstr ""
2286
  "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
2287
  "автовоспроизведение"
2288
 
2289
+ #: inc/core/data.php:2092
2290
  msgid "Customizable image carousel"
2291
  msgstr "Настраиваемая карусель изображений"
2292
 
2293
+ #: inc/core/data.php:2146
2294
  msgid "Single item width (in pixels)"
2295
  msgstr "Ширина одного изображения (в пикселях)"
2296
 
2297
+ #: inc/core/data.php:2154
2298
  msgid "Single item height (in pixels)"
2299
  msgstr "Высота одного изображения (в пикселях)"
2300
 
2301
+ #: inc/core/data.php:2159
2302
  msgid "Never"
2303
  msgstr "Никогда"
2304
 
2305
+ #: inc/core/data.php:2160
2306
  msgid "On mouse over"
2307
  msgstr "При наведении мыши"
2308
 
2309
+ #: inc/core/data.php:2161
2310
  msgid "Always"
2311
  msgstr "Всегда"
2312
 
2313
+ #: inc/core/data.php:2165
2314
  msgid "Title display mode"
2315
  msgstr "Режим отображения заголовков"
2316
 
2317
+ #: inc/core/data.php:2173
2318
  msgid "Customizable image gallery"
2319
  msgstr "Настраиваемая галерея изображений"
2320
 
2321
+ #: inc/core/data.php:2178
2322
  msgid "Posts"
2323
  msgstr "Записи"
2324
 
2325
+ #: inc/core/data.php:2183 inc/core/data.php:2610
2326
  msgid "Template"
2327
  msgstr "Шаблон"
2328
 
2329
+ #: inc/core/data.php:2184
2330
  msgid ""
2331
  "<b>Do not change this field value if you do not understand description below."
2332
  "</b><br/>Relative path to the template file. Default templates is placed "
2349
  "одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
2350
  "маркированный список с заголовками постов"
2351
 
2352
+ #: inc/core/data.php:2188
2353
  msgid "Post ID's"
2354
  msgstr "ID постов"
2355
 
2356
+ #: inc/core/data.php:2189
2357
  msgid "Enter comma separated ID's of the posts that you want to show"
2358
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
2359
 
2360
+ #: inc/core/data.php:2197
2361
  msgid "Posts per page"
2362
  msgstr "Кол-во записей"
2363
 
2364
+ #: inc/core/data.php:2198
2365
  msgid ""
2366
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2367
  msgstr ""
2368
  "Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
2369
  "отобразить все найденные записи"
2370
 
2371
+ #: inc/core/data.php:2205
2372
  msgid "Post types"
2373
  msgstr "Типы постов"
2374
 
2375
+ #: inc/core/data.php:2206
2376
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2377
  msgstr ""
2378
  "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
2379
 
2380
+ #: inc/core/data.php:2212 inc/core/generator-views.php:123
2381
  msgid "Taxonomy"
2382
  msgstr "Таксономия"
2383
 
2384
+ #: inc/core/data.php:2213
2385
  msgid "Select taxonomy to show posts from"
2386
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
2387
 
2388
+ #: inc/core/data.php:2220
2389
  msgid "Terms"
2390
  msgstr "Категории (terms)"
2391
 
2392
+ #: inc/core/data.php:2221
2393
  msgid "Select terms to show posts from"
2394
  msgstr "Выберите категории, из которых нужно показать записи"
2395
 
2396
+ #: inc/core/data.php:2226
2397
  msgid "Taxonomy term operator"
2398
  msgstr "Оператор выбора категорий"
2399
 
2400
+ #: inc/core/data.php:2227
2401
  msgid ""
2402
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2403
  "that is does not have any of selected terms<br/>AND - posts that have all "
2407
  "будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
2408
  ">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
2409
 
2410
+ #: inc/core/data.php:2234
2411
  msgid "Authors"
2412
  msgstr "Авторы"
2413
 
2414
+ #: inc/core/data.php:2235
2415
  msgid "Choose the authors whose posts you want to show"
2416
  msgstr "Выберите авторов, чьи записи хотите показать"
2417
 
2418
+ #: inc/core/data.php:2239
2419
  msgid "Meta key"
2420
  msgstr "Произвольное поле"
2421
 
2422
+ #: inc/core/data.php:2240
2423
  msgid "Enter meta key name to show posts that have this key"
2424
  msgstr ""
2425
  "Введите оригинальное имя произвольного поля, чтобы показать все записи у "
2426
  "которых это поле задано"
2427
 
2428
+ #: inc/core/data.php:2247
2429
  msgid "Offset"
2430
  msgstr "Смещение (offset)"
2431
 
2432
+ #: inc/core/data.php:2248
2433
  msgid "Specify offset to start posts loop not from first post"
2434
  msgstr ""
2435
  "Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
2436
  "если указать 2, то будут показаны записи начиная со третьей"
2437
 
2438
+ #: inc/core/data.php:2253
2439
  msgid "Descending"
2440
  msgstr "По убыванию"
2441
 
2442
+ #: inc/core/data.php:2254
2443
  msgid "Ascending"
2444
  msgstr "По возрастанию"
2445
 
2446
+ #: inc/core/data.php:2257
2447
  msgid "Order"
2448
  msgstr "Порядок"
2449
 
2450
+ #: inc/core/data.php:2258
2451
  msgid "Posts order"
2452
  msgstr "Порядок сортировки записей"
2453
 
2454
+ #: inc/core/data.php:2264 inc/core/data.php:2481 inc/core/data.php:2554
2455
+ #: inc/core/data.php:2596
2456
  msgid "Post ID"
2457
  msgstr "ID записи"
2458
 
2459
+ #: inc/core/data.php:2265 inc/core/data.php:2555
2460
  msgid "Post author"
2461
  msgstr "Автор записи"
2462
 
2463
+ #: inc/core/data.php:2266 inc/core/data.php:2559
2464
  msgid "Post title"
2465
  msgstr "Заголовок записи"
2466
 
2467
+ #: inc/core/data.php:2267
2468
  msgid "Post slug"
2469
  msgstr "Ссылка записи (slug)"
2470
 
2471
+ #: inc/core/data.php:2268
2472
  msgid "Date"
2473
  msgstr "Дата"
2474
 
2475
+ #: inc/core/data.php:2268
2476
  msgid "Last modified date"
2477
  msgstr "Дата изменения"
2478
 
2479
+ #: inc/core/data.php:2269 inc/core/data.php:2279 inc/core/data.php:2568
2480
  msgid "Post parent"
2481
  msgstr "Родитель"
2482
 
2483
+ #: inc/core/data.php:2270
2484
  msgid "Random"
2485
  msgstr "Случайно"
2486
 
2487
+ #: inc/core/data.php:2270
2488
  msgid "Comments number"
2489
  msgstr "Кол-во комментариев"
2490
 
2491
+ #: inc/core/data.php:2271 inc/core/data.php:2570
2492
  msgid "Menu order"
2493
  msgstr "Порядок меню"
2494
 
2495
+ #: inc/core/data.php:2271
2496
  msgid "Meta key values"
2497
  msgstr "Значение произвольного поля"
2498
 
2499
+ #: inc/core/data.php:2274
2500
  msgid "Order by"
2501
  msgstr "Сортировать по"
2502
 
2503
+ #: inc/core/data.php:2275
2504
  msgid "Order posts by"
2505
  msgstr "Сортировать записи по следующему признаку"
2506
 
2507
+ #: inc/core/data.php:2280
2508
  msgid "Show childrens of entered post (enter post ID)"
2509
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
2510
 
2511
+ #: inc/core/data.php:2285
2512
  msgid "Published"
2513
  msgstr "Опубликован"
2514
 
2515
+ #: inc/core/data.php:2286
2516
  msgid "Pending"
2517
  msgstr "Ожидает"
2518
 
2519
+ #: inc/core/data.php:2287
2520
  msgid "Draft"
2521
  msgstr "Черновик"
2522
 
2523
+ #: inc/core/data.php:2288
2524
  msgid "Auto-draft"
2525
  msgstr "Авто-черновик"
2526
 
2527
+ #: inc/core/data.php:2289
2528
  msgid "Future post"
2529
  msgstr "Запланирован"
2530
 
2531
+ #: inc/core/data.php:2290
2532
  msgid "Private post"
2533
  msgstr "Приватная запись"
2534
 
2535
+ #: inc/core/data.php:2291
2536
  msgid "Inherit"
2537
  msgstr "Вложенный"
2538
 
2539
+ #: inc/core/data.php:2292
2540
  msgid "Trashed"
2541
  msgstr "В корзине"
2542
 
2543
+ #: inc/core/data.php:2293 inc/core/data.php:2377
2544
  msgid "Any"
2545
  msgstr "Любой"
2546
 
2547
+ #: inc/core/data.php:2296 inc/core/data.php:2561
2548
  msgid "Post status"
2549
  msgstr "Статус записи"
2550
 
2551
+ #: inc/core/data.php:2297
2552
  msgid "Show only posts with selected status"
2553
  msgstr "Показать только записи с выбранным статусом"
2554
 
2555
+ #: inc/core/data.php:2302
2556
  msgid "Ignore sticky"
2557
  msgstr "Игнорировать прикрепленные"
2558
 
2559
+ #: inc/core/data.php:2303
2560
  msgid "Select Yes to ignore posts that is sticked"
2561
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
2562
 
2563
+ #: inc/core/data.php:2306
2564
  msgid "Custom posts query with customizable template"
2565
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
2566
 
2567
+ #: inc/core/data.php:2311
2568
  msgid "Dummy text"
2569
  msgstr "Текст рыба"
2570
 
2571
+ #: inc/core/data.php:2318
2572
  msgid "Paragraphs"
2573
  msgstr "Параграфы"
2574
 
2575
+ #: inc/core/data.php:2319
2576
  msgid "Words"
2577
  msgstr "Слова"
2578
 
2579
+ #: inc/core/data.php:2320
2580
  msgid "Bytes"
2581
  msgstr "Байты"
2582
 
2583
+ #: inc/core/data.php:2323
2584
  msgid "What"
2585
  msgstr "Что"
2586
 
2587
+ #: inc/core/data.php:2324
2588
  msgid "What to generate"
2589
  msgstr "Что генерировать"
2590
 
2591
+ #: inc/core/data.php:2332
2592
  msgid "Amount"
2593
  msgstr "Количество"
2594
 
2595
+ #: inc/core/data.php:2333
2596
  msgid ""
2597
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2598
  msgstr ""
2599
  "Какое количество (параграфов или слов) генерировать. Минимальное количество "
2600
  "слов - 5"
2601
 
2602
+ #: inc/core/data.php:2338
2603
  msgid "Cache"
2604
  msgstr "Кеш"
2605
 
2606
+ #: inc/core/data.php:2339
2607
  msgid ""
2608
  "Generated text will be cached. Be careful with this option. If you disable "
2609
  "it and insert many dummy_text shortcodes the page load time will be highly "
2613
  "вы отключите её и вставите много таких шорткодов на странице, то время "
2614
  "загрузки страницы может сильно возрости"
2615
 
2616
+ #: inc/core/data.php:2347
2617
  msgid "Text placeholder"
2618
  msgstr "Текст болванка"
2619
 
2620
+ #: inc/core/data.php:2352 inc/core/shortcodes.php:1302
2621
  msgid "Dummy image"
2622
  msgstr "Изображение болванка"
2623
 
2624
+ #: inc/core/data.php:2363
2625
  msgid "Image width"
2626
  msgstr "Ширина изображения"
2627
 
2628
+ #: inc/core/data.php:2372
2629
  msgid "Image height"
2630
  msgstr "Высота изображения"
2631
 
2632
+ #: inc/core/data.php:2378
2633
  msgid "Abstract"
2634
  msgstr "Абстрактное"
2635
 
2636
+ #: inc/core/data.php:2379
2637
  msgid "Animals"
2638
  msgstr "Животные"
2639
 
2640
+ #: inc/core/data.php:2380
2641
  msgid "Business"
2642
  msgstr "Бизнес"
2643
 
2644
+ #: inc/core/data.php:2381
2645
  msgid "Cats"
2646
  msgstr "Котэ"
2647
 
2648
+ #: inc/core/data.php:2382
2649
  msgid "City"
2650
  msgstr "Город"
2651
 
2652
+ #: inc/core/data.php:2383
2653
  msgid "Food"
2654
  msgstr "Еда"
2655
 
2656
+ #: inc/core/data.php:2384
2657
  msgid "Night life"
2658
  msgstr "Ночная жизнь"
2659
 
2660
+ #: inc/core/data.php:2385
2661
  msgid "Fashion"
2662
  msgstr "Мода"
2663
 
2664
+ #: inc/core/data.php:2386
2665
  msgid "People"
2666
  msgstr "Люди"
2667
 
2668
+ #: inc/core/data.php:2387
2669
  msgid "Nature"
2670
  msgstr "Природа"
2671
 
2672
+ #: inc/core/data.php:2388
2673
  msgid "Sports"
2674
  msgstr "Спорт"
2675
 
2676
+ #: inc/core/data.php:2389
2677
  msgid "Technics"
2678
  msgstr "Техника"
2679
 
2680
+ #: inc/core/data.php:2390
2681
  msgid "Transport"
2682
  msgstr "Транспорт"
2683
 
2684
+ #: inc/core/data.php:2394
2685
  msgid "Select the theme for this image"
2686
  msgstr "Выберите тему изображений"
2687
 
2688
+ #: inc/core/data.php:2402
2689
  msgid "Image placeholder with random image"
2690
  msgstr "Изображение болванка со случайным изображением"
2691
 
2692
+ #: inc/core/data.php:2407 inc/core/data.php:2415
2693
  msgid "Animation"
2694
  msgstr "Анимация"
2695
 
2696
+ #: inc/core/data.php:2416
2697
  msgid "Select animation type"
2698
  msgstr "Выберите тип анимации"
2699
 
2700
+ #: inc/core/data.php:2424
2701
  msgid "Duration"
2702
  msgstr "Продолжительность"
2703
 
2704
+ #: inc/core/data.php:2425
2705
  msgid "Animation duration (seconds)"
2706
  msgstr "Продолжительность анимации (секунды)"
2707
 
2708
+ #: inc/core/data.php:2433
2709
  msgid "Delay"
2710
  msgstr "Задержка"
2711
 
2712
+ #: inc/core/data.php:2434
2713
  msgid "Animation delay (seconds)"
2714
  msgstr "Задержка перед началом анимации (секунды)"
2715
 
2716
+ #: inc/core/data.php:2439
2717
  msgid "Inline"
2718
  msgstr "Строковый"
2719
 
2720
+ #: inc/core/data.php:2440
2721
  msgid ""
2722
  "This parameter determines what HTML tag will be used for animation wrapper. "
2723
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
2727
  "Переключите этот параметр на ДА и будет использован тег span вместо div. "
2728
  "Данная опция полезна для анимации строковых жлементов, например кнопок"
2729
 
2730
+ #: inc/core/data.php:2448
2731
  msgid "Animated content"
2732
  msgstr "Анимированное содержимое"
2733
 
2734
+ #: inc/core/data.php:2449
2735
  msgid "Wrapper for animation. Any nested element will be animated"
2736
  msgstr ""
2737
  "Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
2738
  "анимирован"
2739
 
2740
+ #: inc/core/data.php:2455
2741
  msgid "Meta"
2742
  msgstr "Мета"
2743
 
2744
+ #: inc/core/data.php:2461
2745
  msgid "Key"
2746
  msgstr "Ключ"
2747
 
2748
+ #: inc/core/data.php:2462
2749
  msgid "Meta key name"
2750
  msgstr "Имя произвольного поля"
2751
 
2752
+ #: inc/core/data.php:2467 inc/core/data.php:2519 inc/core/data.php:2582
2753
  msgid "This text will be shown if data is not found"
2754
  msgstr "Этот текст будет показан если не будет найдено запрошенное значение"
2755
 
2756
+ #: inc/core/data.php:2471 inc/core/data.php:2523 inc/core/data.php:2586
2757
  msgid "Before"
2758
  msgstr "Перед"
2759
 
2760
+ #: inc/core/data.php:2472 inc/core/data.php:2524 inc/core/data.php:2587
2761
  msgid "This content will be shown before the value"
2762
  msgstr "Этот текст будет показан перед результатом"
2763
 
2764
+ #: inc/core/data.php:2476 inc/core/data.php:2528 inc/core/data.php:2591
2765
  msgid "After"
2766
  msgstr "После"
2767
 
2768
+ #: inc/core/data.php:2477 inc/core/data.php:2529 inc/core/data.php:2592
2769
  msgid "This content will be shown after the value"
2770
  msgstr "Этот текст будет показан после результата"
2771
 
2772
+ #: inc/core/data.php:2482 inc/core/data.php:2597
2773
  msgid ""
2774
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2775
  "current post. Current post ID may not work in Live Preview mode"
2778
  "использовать ID текущей записи. ID текущей записи может не работать в режиме "
2779
  "предпросмотра"
2780
 
2781
+ #: inc/core/data.php:2486 inc/core/data.php:2538 inc/core/data.php:2601
2782
  msgid "Filter"
2783
  msgstr "Фильтр"
2784
 
2785
+ #: inc/core/data.php:2487 inc/core/data.php:2539 inc/core/data.php:2602
2786
  msgid ""
2787
  "You can apply custom filter to the retrieved value. Enter here function "
2788
  "name. Your function must accept one argument and return modified value. "
2792
  "здесь имя функции. Ваша функция должна принимать один аргумент и возвращать "
2793
  "измененное значение. Пример функции: "
2794
 
2795
+ #: inc/core/data.php:2490
2796
  msgid "Post meta"
2797
  msgstr "Произвольное поле"
2798
 
2799
+ #: inc/core/data.php:2495
2800
  msgid "User"
2801
  msgstr "Пользователь"
2802
 
2803
+ #: inc/core/data.php:2502
2804
  msgid "Display name"
2805
  msgstr "Отображаемое имя"
2806
 
2807
+ #: inc/core/data.php:2504
2808
  msgid "Login"
2809
  msgstr "Логин"
2810
 
2811
+ #: inc/core/data.php:2505
2812
  msgid "Nice name"
2813
  msgstr "Красивое имя"
2814
 
2815
+ #: inc/core/data.php:2506
2816
  msgid "Email"
2817
  msgstr "Email"
2818
 
2819
+ #: inc/core/data.php:2507
2820
  msgid "URL"
2821
  msgstr "URL"
2822
 
2823
+ #: inc/core/data.php:2508
2824
  msgid "Registered"
2825
  msgstr "Зарегистрирован"
2826
 
2827
+ #: inc/core/data.php:2509
2828
  msgid "Activation key"
2829
  msgstr "Ключ активации"
2830
 
2831
+ #: inc/core/data.php:2510
2832
  msgid "Status"
2833
  msgstr "Статус"
2834
 
2835
+ #: inc/core/data.php:2513 inc/core/data.php:2576
2836
  msgid "Field"
2837
  msgstr "Поле"
2838
 
2839
+ #: inc/core/data.php:2514
2840
  msgid "User data field name"
2841
  msgstr "Имя поля с информацией о пользователе"
2842
 
2843
+ #: inc/core/data.php:2533
2844
  msgid "User ID"
2845
  msgstr "ID пользователя"
2846
 
2847
+ #: inc/core/data.php:2534
2848
  msgid ""
2849
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2850
  "current user"
2852
  "Вы можете указать ID любого пользователя. Оставьте это поле пустым, чтобы "
2853
  "использовать ID текущего пользователя"
2854
 
2855
+ #: inc/core/data.php:2542
2856
  msgid "User data"
2857
  msgstr "Данные пользователя"
2858
 
2859
+ #: inc/core/data.php:2547
2860
  msgid "Post"
2861
  msgstr "Запись"
2862
 
2863
+ #: inc/core/data.php:2556 inc/core/data.php:2557
2864
  msgid "Post date"
2865
  msgstr "Дата записи"
2866
 
2867
+ #: inc/core/data.php:2558
2868
  msgid "Post content"
2869
  msgstr "Содержимое записи"
2870
 
2871
+ #: inc/core/data.php:2560
2872
  msgid "Post excerpt"
2873
  msgstr "Цитата записи"
2874
 
2875
+ #: inc/core/data.php:2562
2876
  msgid "Comment status"
2877
  msgstr "Статус комментариев"
2878
 
2879
+ #: inc/core/data.php:2563
2880
  msgid "Ping status"
2881
  msgstr "Статус пингов"
2882
 
2883
+ #: inc/core/data.php:2564
2884
  msgid "Post name"
2885
  msgstr "Имя записи"
2886
 
2887
+ #: inc/core/data.php:2565 inc/core/data.php:2566
2888
  msgid "Post modified"
2889
  msgstr "Дата изменения"
2890
 
2891
+ #: inc/core/data.php:2567
2892
  msgid "Filtered post content"
2893
  msgstr "Фильтрованное содержимое записи"
2894
 
2895
+ #: inc/core/data.php:2569
2896
  msgid "GUID"
2897
  msgstr "GUID"
2898
 
2899
+ #: inc/core/data.php:2571
2900
  msgid "Post type"
2901
  msgstr "Тип записи"
2902
 
2903
+ #: inc/core/data.php:2572
2904
  msgid "Post mime type"
2905
  msgstr "Типы файла записи (mime-type)"
2906
 
2907
+ #: inc/core/data.php:2573
2908
  msgid "Comment count"
2909
  msgstr "Количество комментариев"
2910
 
2911
+ #: inc/core/data.php:2577
2912
  msgid "Post data field name"
2913
  msgstr "Имя поля с информацией записи"
2914
 
2915
+ #: inc/core/data.php:2605
2916
  msgid "Post data"
2917
  msgstr "Данные записи"
2918
 
2919
+ #: inc/core/data.php:2616
2920
  msgid "Template name"
2921
  msgstr "Имя шаблона"
2922
 
2923
+ #: inc/core/data.php:2617
2924
  #, php-format
2925
  msgid ""
2926
  "Use template file name (with optional .php extension). If you need to use "
2931
  "обязательно). Если нужно использовать шаблоны из под-папки темы, используйте "
2932
  "относительный путь. Примеры значений: %s, %s, %s"
2933
 
2934
+ #: inc/core/data.php:2620
2935
  msgid "Theme template"
2936
  msgstr "Шаблон темы"
2937
 
3105
  msgid "Preview"
3106
  msgstr "Предпросмотр"
3107
 
3108
+ #: inc/core/generator.php:203 inc/core/tools.php:883
3109
  msgid "Access denied"
3110
  msgstr "Доступ запрещен"
3111
 
3122
  msgstr "Шаблоны не найдены"
3123
 
3124
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
3125
+ #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:895
3126
  #: inc/core/widget.php:14 inc/core/widget.php:40
3127
  msgid "Shortcodes Ultimate"
3128
  msgstr "Шорткоды"
3199
  msgid "Custom CSS"
3200
  msgstr "Произвольный CSS"
3201
 
3202
+ #: inc/core/load.php:113 inc/core/load.php:114 inc/core/load.php:217
3203
  msgid "Examples"
3204
  msgstr "Примеры"
3205
 
3215
  msgid "Supercharge your WordPress theme with mega pack of shortcodes"
3216
  msgstr "Суперзарядка для вашей WordPress-темы с помощью мега набора шорткодов"
3217
 
3218
+ #: inc/core/load.php:218
3219
  msgid "Where to start?"
3220
  msgstr "С чего начать?"
3221
 
3302
  msgid "please specify template name"
3303
  msgstr "пожалуйста укажите имя шаблона"
3304
 
3305
+ #: inc/core/tools.php:802
3306
  msgid "Example code does not found, please check it later"
3307
  msgstr "Код примера не найден, возвращайтесь позже"
3308
 
3309
+ #: inc/core/tools.php:818
3310
  msgid "Get the code"
3311
  msgstr "Получить код"
3312
 
3313
+ #: inc/core/tools.php:892
3314
  msgid "Slide link"
3315
  msgstr "Ссылка слайда"
3316
 
3317
+ #: inc/core/tools.php:895
3318
  msgid ""
3319
  "Use this field to add custom links to slides used with Slider, Carousel and "
3320
  "Custom Gallery shortcodes"
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: 2014-04-02 21:21+0400\n"
6
- "PO-Revision-Date: 2014-04-02 21:21+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: su\n"
@@ -24,7 +24,7 @@ msgstr ""
24
  msgid "A real swiss army knife for WordPress"
25
  msgstr ""
26
 
27
- #: inc/core/admin-views.php:11 inc/core/load.php:228
28
  msgid "Project homepage"
29
  msgstr ""
30
 
@@ -32,11 +32,11 @@ msgstr ""
32
  msgid "Documentation"
33
  msgstr ""
34
 
35
- #: inc/core/admin-views.php:13 inc/core/load.php:229
36
  msgid "Support forum"
37
  msgstr ""
38
 
39
- #: inc/core/admin-views.php:14 inc/core/load.php:230
40
  msgid "Changelog"
41
  msgstr ""
42
 
@@ -254,7 +254,7 @@ msgstr ""
254
  msgid "Content"
255
  msgstr ""
256
 
257
- #: inc/core/data.php:19 inc/core/data.php:826
258
  msgid "Box"
259
  msgstr ""
260
 
@@ -262,7 +262,7 @@ msgstr ""
262
  msgid "Media"
263
  msgstr ""
264
 
265
- #: inc/core/data.php:21 inc/core/data.php:2096
266
  msgid "Gallery"
267
  msgstr ""
268
 
@@ -274,8 +274,8 @@ msgstr ""
274
  msgid "Other"
275
  msgstr ""
276
 
277
- #: inc/core/data.php:32 inc/core/data.php:1861 inc/core/data.php:1980
278
- #: inc/core/data.php:2118 inc/core/data.php:2262
279
  msgid "None"
280
  msgstr ""
281
 
@@ -350,14 +350,14 @@ msgstr ""
350
 
351
  #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:274
352
  #: inc/core/data.php:426 inc/core/data.php:456 inc/core/data.php:517
353
- #: inc/core/data.php:684 inc/core/data.php:838 inc/core/data.php:1002
354
- #: inc/core/data.php:2465 inc/core/data.php:2517 inc/core/data.php:2580
355
  msgid "Default"
356
  msgstr ""
357
 
358
  #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:279
359
- #: inc/core/data.php:459 inc/core/data.php:523 inc/core/data.php:694
360
- #: inc/core/data.php:845 inc/core/data.php:972
361
  msgid "Style"
362
  msgstr ""
363
 
@@ -371,7 +371,7 @@ msgid "Install additional styles"
371
  msgstr ""
372
 
373
  #: inc/core/data.php:148 inc/core/data.php:531 inc/core/data.php:610
374
- #: inc/core/data.php:715
375
  msgid "Size"
376
  msgstr ""
377
 
@@ -380,17 +380,17 @@ msgid "Select heading size (pixels)"
380
  msgstr ""
381
 
382
  #: inc/core/data.php:154 inc/core/data.php:492 inc/core/data.php:553
383
- #: inc/core/data.php:980
384
  msgid "Left"
385
  msgstr ""
386
 
387
- #: inc/core/data.php:155 inc/core/data.php:554 inc/core/data.php:1912
388
- #: inc/core/data.php:2050
389
  msgid "Center"
390
  msgstr ""
391
 
392
  #: inc/core/data.php:156 inc/core/data.php:493 inc/core/data.php:555
393
- #: inc/core/data.php:981
394
  msgid "Right"
395
  msgstr ""
396
 
@@ -415,26 +415,7 @@ msgstr ""
415
  #: inc/core/data.php:381 inc/core/data.php:409 inc/core/data.php:439
416
  #: inc/core/data.php:475 inc/core/data.php:500 inc/core/data.php:536
417
  #: inc/core/data.php:563 inc/core/data.php:579 inc/core/data.php:621
418
- #: inc/core/data.php:651 inc/core/data.php:772 inc/core/data.php:816
419
- #: inc/core/data.php:872 inc/core/data.php:909 inc/core/data.php:941
420
- #: inc/core/data.php:1043 inc/core/data.php:1059 inc/core/data.php:1111
421
- #: inc/core/data.php:1236 inc/core/data.php:1287 inc/core/data.php:1332
422
- #: inc/core/data.php:1431 inc/core/data.php:1470 inc/core/data.php:1540
423
- #: inc/core/data.php:1562 inc/core/data.php:1593 inc/core/data.php:1626
424
- #: inc/core/data.php:1642 inc/core/data.php:1672 inc/core/data.php:1692
425
- #: inc/core/data.php:1719 inc/core/data.php:1740 inc/core/data.php:1785
426
- #: inc/core/data.php:1830 inc/core/data.php:1949 inc/core/data.php:2087
427
- #: inc/core/data.php:2168 inc/core/data.php:2342 inc/core/data.php:2397
428
- #: inc/core/data.php:2443
429
- msgid "Class"
430
- msgstr ""
431
-
432
- #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
433
- #: inc/core/data.php:311 inc/core/data.php:329 inc/core/data.php:358
434
- #: inc/core/data.php:382 inc/core/data.php:410 inc/core/data.php:440
435
- #: inc/core/data.php:476 inc/core/data.php:501 inc/core/data.php:537
436
- #: inc/core/data.php:564 inc/core/data.php:580 inc/core/data.php:622
437
- #: inc/core/data.php:652 inc/core/data.php:773 inc/core/data.php:817
438
  #: inc/core/data.php:873 inc/core/data.php:910 inc/core/data.php:942
439
  #: inc/core/data.php:1044 inc/core/data.php:1060 inc/core/data.php:1112
440
  #: inc/core/data.php:1237 inc/core/data.php:1288 inc/core/data.php:1333
@@ -445,6 +426,25 @@ msgstr ""
445
  #: inc/core/data.php:1831 inc/core/data.php:1950 inc/core/data.php:2088
446
  #: inc/core/data.php:2169 inc/core/data.php:2343 inc/core/data.php:2398
447
  #: inc/core/data.php:2444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
  msgid "Extra CSS class"
449
  msgstr ""
450
 
@@ -499,8 +499,8 @@ msgstr ""
499
  msgid "Tab name"
500
  msgstr ""
501
 
502
- #: inc/core/data.php:230 inc/core/data.php:263 inc/core/data.php:790
503
- #: inc/core/data.php:833 inc/core/data.php:1499
504
  msgid "Title"
505
  msgstr ""
506
 
@@ -619,8 +619,8 @@ msgstr ""
619
  msgid "Folder 2"
620
  msgstr ""
621
 
622
- #: inc/core/data.php:300 inc/core/data.php:640 inc/core/data.php:745
623
- #: inc/core/data.php:796
624
  msgid "Icon"
625
  msgstr ""
626
 
@@ -696,11 +696,11 @@ msgstr ""
696
  msgid "Spacer"
697
  msgstr ""
698
 
699
- #: inc/core/data.php:376 inc/core/data.php:1094 inc/core/data.php:1151
700
- #: inc/core/data.php:1270 inc/core/data.php:1321 inc/core/data.php:1365
701
- #: inc/core/data.php:1517 inc/core/data.php:1774 inc/core/data.php:1813
702
- #: inc/core/data.php:1896 inc/core/data.php:2016 inc/core/data.php:2153
703
- #: inc/core/data.php:2370
704
  msgid "Height"
705
  msgstr ""
706
 
@@ -716,7 +716,7 @@ msgstr ""
716
  msgid "Highlight"
717
  msgstr ""
718
 
719
- #: inc/core/data.php:398 inc/core/data.php:700 inc/core/data.php:890
720
  msgid "Background"
721
  msgstr ""
722
 
@@ -724,7 +724,7 @@ msgstr ""
724
  msgid "Highlighted text background color"
725
  msgstr ""
726
 
727
- #: inc/core/data.php:405 inc/core/data.php:706 inc/core/data.php:896
728
  msgid "Text color"
729
  msgstr ""
730
 
@@ -915,7 +915,7 @@ msgstr ""
915
  msgid "Select column width. This width will be calculated depend page width"
916
  msgstr ""
917
 
918
- #: inc/core/data.php:616 inc/core/data.php:726
919
  msgid "Centered"
920
  msgstr ""
921
 
@@ -943,11 +943,11 @@ msgstr ""
943
  msgid "You can upload custom icon for this list or pick a built-in icon"
944
  msgstr ""
945
 
946
- #: inc/core/data.php:646 inc/core/data.php:751 inc/core/data.php:802
947
  msgid "Icon color"
948
  msgstr ""
949
 
950
- #: inc/core/data.php:647 inc/core/data.php:752 inc/core/data.php:803
951
  msgid ""
952
  "This color will be applied to the selected icon. Does not works with "
953
  "uploaded icons"
@@ -978,15 +978,15 @@ msgstr ""
978
  msgid "Button link"
979
  msgstr ""
980
 
981
- #: inc/core/data.php:674 inc/core/data.php:1584
982
  msgid "Same tab"
983
  msgstr ""
984
 
985
- #: inc/core/data.php:675 inc/core/data.php:1585
986
  msgid "New tab"
987
  msgstr ""
988
 
989
- #: inc/core/data.php:678 inc/core/data.php:1588
990
  msgid "Target"
991
  msgstr ""
992
 
@@ -994,241 +994,245 @@ msgstr ""
994
  msgid "Button link target"
995
  msgstr ""
996
 
997
- #: inc/core/data.php:686 inc/core/data.php:839
998
- msgid "Soft"
999
  msgstr ""
1000
 
1001
  #: inc/core/data.php:687 inc/core/data.php:840
1002
- msgid "Glass"
1003
  msgstr ""
1004
 
1005
  #: inc/core/data.php:688 inc/core/data.php:841
1006
- msgid "Bubbles"
1007
  msgstr ""
1008
 
1009
  #: inc/core/data.php:689 inc/core/data.php:842
 
 
 
 
1010
  msgid "Noise"
1011
  msgstr ""
1012
 
1013
- #: inc/core/data.php:690
1014
  msgid "Stroked"
1015
  msgstr ""
1016
 
1017
- #: inc/core/data.php:691
1018
  msgid "3D"
1019
  msgstr ""
1020
 
1021
- #: inc/core/data.php:694
1022
  msgid "Button background style preset"
1023
  msgstr ""
1024
 
1025
- #: inc/core/data.php:700
1026
  msgid "Button background color"
1027
  msgstr ""
1028
 
1029
- #: inc/core/data.php:707
1030
  msgid "Button text color"
1031
  msgstr ""
1032
 
1033
- #: inc/core/data.php:716
1034
  msgid "Button size"
1035
  msgstr ""
1036
 
1037
- #: inc/core/data.php:721
1038
  msgid "Fluid"
1039
  msgstr ""
1040
 
1041
- #: inc/core/data.php:721
1042
  msgid "Fluid buttons has 100% width"
1043
  msgstr ""
1044
 
1045
- #: inc/core/data.php:726
1046
  msgid "Is button centered on the page"
1047
  msgstr ""
1048
 
1049
- #: inc/core/data.php:731
1050
  msgid "Auto"
1051
  msgstr ""
1052
 
1053
- #: inc/core/data.php:732
1054
  msgid "Round"
1055
  msgstr ""
1056
 
1057
- #: inc/core/data.php:733
1058
  msgid "Square"
1059
  msgstr ""
1060
 
1061
- #: inc/core/data.php:739 inc/core/data.php:867 inc/core/data.php:905
1062
  msgid "Radius"
1063
  msgstr ""
1064
 
1065
- #: inc/core/data.php:740
1066
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1067
  msgstr ""
1068
 
1069
- #: inc/core/data.php:746
1070
  msgid "You can upload custom icon for this button or pick a built-in icon"
1071
  msgstr ""
1072
 
1073
- #: inc/core/data.php:757
1074
  msgid "Text shadow"
1075
  msgstr ""
1076
 
1077
- #: inc/core/data.php:758
1078
  msgid "Button text shadow"
1079
  msgstr ""
1080
 
1081
- #: inc/core/data.php:762
1082
  msgid "Description"
1083
  msgstr ""
1084
 
1085
- #: inc/core/data.php:763
1086
  msgid ""
1087
  "Small description under button text. This option is incompatible with icon."
1088
  msgstr ""
1089
 
1090
- #: inc/core/data.php:767
1091
  msgid "onClick"
1092
  msgstr ""
1093
 
1094
- #: inc/core/data.php:768
1095
  msgid "Advanced JavaScript code for onClick action"
1096
  msgstr ""
1097
 
1098
- #: inc/core/data.php:776
1099
  msgid "Button text"
1100
  msgstr ""
1101
 
1102
- #: inc/core/data.php:777
1103
  msgid "Styled button"
1104
  msgstr ""
1105
 
1106
- #: inc/core/data.php:783
1107
  msgid "Service"
1108
  msgstr ""
1109
 
1110
- #: inc/core/data.php:789 inc/core/shortcodes.php:430
1111
  msgid "Service title"
1112
  msgstr ""
1113
 
1114
- #: inc/core/data.php:791
1115
  msgid "Service name"
1116
  msgstr ""
1117
 
1118
- #: inc/core/data.php:797
1119
  msgid "You can upload custom icon for this box"
1120
  msgstr ""
1121
 
1122
- #: inc/core/data.php:811
1123
  msgid "Icon size"
1124
  msgstr ""
1125
 
1126
- #: inc/core/data.php:812
1127
  msgid "Size of the uploaded icon in pixels"
1128
  msgstr ""
1129
 
1130
- #: inc/core/data.php:820
1131
  msgid "Service description"
1132
  msgstr ""
1133
 
1134
- #: inc/core/data.php:821
1135
  msgid "Service box with title"
1136
  msgstr ""
1137
 
1138
- #: inc/core/data.php:832
1139
  msgid "Box title"
1140
  msgstr ""
1141
 
1142
- #: inc/core/data.php:833
1143
  msgid "Text for the box title"
1144
  msgstr ""
1145
 
1146
- #: inc/core/data.php:846
1147
  msgid "Box style preset"
1148
  msgstr ""
1149
 
1150
- #: inc/core/data.php:852 inc/core/generator-views.php:99
1151
  msgid "Color"
1152
  msgstr ""
1153
 
1154
- #: inc/core/data.php:853
1155
  msgid "Color for the box title and borders"
1156
  msgstr ""
1157
 
1158
- #: inc/core/data.php:859
1159
  msgid "Title text color"
1160
  msgstr ""
1161
 
1162
- #: inc/core/data.php:859
1163
  msgid "Color for the box title text"
1164
  msgstr ""
1165
 
1166
- #: inc/core/data.php:868
1167
  msgid "Box corners radius"
1168
  msgstr ""
1169
 
1170
- #: inc/core/data.php:876
1171
  msgid "Box content"
1172
  msgstr ""
1173
 
1174
- #: inc/core/data.php:877
1175
  msgid "Colored box with caption"
1176
  msgstr ""
1177
 
1178
- #: inc/core/data.php:882
1179
  msgid "Note"
1180
  msgstr ""
1181
 
1182
- #: inc/core/data.php:890
1183
  msgid "Note background color"
1184
  msgstr ""
1185
 
1186
- #: inc/core/data.php:897
1187
  msgid "Note text color"
1188
  msgstr ""
1189
 
1190
- #: inc/core/data.php:905
1191
  msgid "Note corners radius"
1192
  msgstr ""
1193
 
1194
- #: inc/core/data.php:913
1195
  msgid "Note text"
1196
  msgstr ""
1197
 
1198
- #: inc/core/data.php:914
1199
  msgid "Colored box"
1200
  msgstr ""
1201
 
1202
- #: inc/core/data.php:919 inc/core/data.php:1863 inc/core/data.php:1982
1203
- #: inc/core/data.php:2120
1204
  msgid "Lightbox"
1205
  msgstr ""
1206
 
1207
- #: inc/core/data.php:926
1208
  msgid "Iframe"
1209
  msgstr ""
1210
 
1211
- #: inc/core/data.php:927
1212
  msgid "Image"
1213
  msgstr ""
1214
 
1215
- #: inc/core/data.php:928
1216
  msgid "Inline (html content)"
1217
  msgstr ""
1218
 
1219
- #: inc/core/data.php:931
1220
  msgid "Content type"
1221
  msgstr ""
1222
 
1223
- #: inc/core/data.php:932
1224
  msgid "Select type of the lightbox window content"
1225
  msgstr ""
1226
 
1227
- #: inc/core/data.php:936
1228
  msgid "Content source"
1229
  msgstr ""
1230
 
1231
- #: inc/core/data.php:937
1232
  msgid ""
1233
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1234
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
@@ -1238,338 +1242,338 @@ msgid ""
1238
  "(iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1239
  msgstr ""
1240
 
1241
- #: inc/core/data.php:945
1242
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1243
  msgstr ""
1244
 
1245
- #: inc/core/data.php:946
1246
  msgid "Lightbox window with custom content"
1247
  msgstr ""
1248
 
1249
- #: inc/core/data.php:951
1250
  msgid "Tooltip"
1251
  msgstr ""
1252
 
1253
- #: inc/core/data.php:958
1254
  msgid "Basic: Light"
1255
  msgstr ""
1256
 
1257
- #: inc/core/data.php:959
1258
  msgid "Basic: Dark"
1259
  msgstr ""
1260
 
1261
- #: inc/core/data.php:960
1262
  msgid "Basic: Yellow"
1263
  msgstr ""
1264
 
1265
- #: inc/core/data.php:961
1266
  msgid "Basic: Green"
1267
  msgstr ""
1268
 
1269
- #: inc/core/data.php:962
1270
  msgid "Basic: Red"
1271
  msgstr ""
1272
 
1273
- #: inc/core/data.php:963
1274
  msgid "Basic: Blue"
1275
  msgstr ""
1276
 
1277
- #: inc/core/data.php:964
1278
  msgid "Youtube"
1279
  msgstr ""
1280
 
1281
- #: inc/core/data.php:965
1282
  msgid "Tipsy"
1283
  msgstr ""
1284
 
1285
- #: inc/core/data.php:966
1286
  msgid "Bootstrap"
1287
  msgstr ""
1288
 
1289
- #: inc/core/data.php:967
1290
  msgid "jTools"
1291
  msgstr ""
1292
 
1293
- #: inc/core/data.php:968
1294
  msgid "Tipped"
1295
  msgstr ""
1296
 
1297
- #: inc/core/data.php:969
1298
  msgid "Cluetip"
1299
  msgstr ""
1300
 
1301
- #: inc/core/data.php:973
1302
  msgid "Tooltip window style"
1303
  msgstr ""
1304
 
1305
- #: inc/core/data.php:978
1306
  msgid "Top"
1307
  msgstr ""
1308
 
1309
- #: inc/core/data.php:979
1310
  msgid "Bottom"
1311
  msgstr ""
1312
 
1313
- #: inc/core/data.php:984
1314
  msgid "Position"
1315
  msgstr ""
1316
 
1317
- #: inc/core/data.php:985
1318
  msgid "Tooltip position"
1319
  msgstr ""
1320
 
1321
- #: inc/core/data.php:990
1322
  msgid "Shadow"
1323
  msgstr ""
1324
 
1325
- #: inc/core/data.php:991
1326
  msgid ""
1327
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1328
  "blue, green etc."
1329
  msgstr ""
1330
 
1331
- #: inc/core/data.php:996
1332
  msgid "Rounded corners"
1333
  msgstr ""
1334
 
1335
- #: inc/core/data.php:997
1336
  msgid ""
1337
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1338
  "blue, green etc."
1339
  msgstr ""
1340
 
1341
- #: inc/core/data.php:1011
1342
  msgid "Font size"
1343
  msgstr ""
1344
 
1345
- #: inc/core/data.php:1012
1346
  msgid "Tooltip font size"
1347
  msgstr ""
1348
 
1349
- #: inc/core/data.php:1016
1350
  msgid "Tooltip title"
1351
  msgstr ""
1352
 
1353
- #: inc/core/data.php:1017
1354
  msgid ""
1355
  "Enter title for tooltip window. Leave this field empty to hide the title"
1356
  msgstr ""
1357
 
1358
- #: inc/core/data.php:1020 inc/core/shortcodes.php:508
1359
  msgid "Tooltip text"
1360
  msgstr ""
1361
 
1362
- #: inc/core/data.php:1021
1363
  msgid "Tooltip content"
1364
  msgstr ""
1365
 
1366
- #: inc/core/data.php:1022
1367
  msgid "Enter tooltip content here"
1368
  msgstr ""
1369
 
1370
- #: inc/core/data.php:1027
1371
  msgid "Show and hide on mouse hover"
1372
  msgstr ""
1373
 
1374
- #: inc/core/data.php:1028
1375
  msgid "Show and hide by mouse click"
1376
  msgstr ""
1377
 
1378
- #: inc/core/data.php:1029
1379
  msgid "Always visible"
1380
  msgstr ""
1381
 
1382
- #: inc/core/data.php:1032
1383
  msgid "Behavior"
1384
  msgstr ""
1385
 
1386
- #: inc/core/data.php:1033
1387
  msgid "Select tooltip behavior"
1388
  msgstr ""
1389
 
1390
- #: inc/core/data.php:1038
1391
  msgid "Close button"
1392
  msgstr ""
1393
 
1394
- #: inc/core/data.php:1039
1395
  msgid "Show close button"
1396
  msgstr ""
1397
 
1398
- #: inc/core/data.php:1047
1399
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1400
  msgstr ""
1401
 
1402
- #: inc/core/data.php:1048
1403
  msgid "Tooltip window with custom content"
1404
  msgstr ""
1405
 
1406
- #: inc/core/data.php:1053
1407
  msgid "Private"
1408
  msgstr ""
1409
 
1410
- #: inc/core/data.php:1063
1411
  msgid "Private note text"
1412
  msgstr ""
1413
 
1414
- #: inc/core/data.php:1064
1415
  msgid "Private note for post authors"
1416
  msgstr ""
1417
 
1418
- #: inc/core/data.php:1069
1419
  msgid "YouTube"
1420
  msgstr ""
1421
 
1422
- #: inc/core/data.php:1076 inc/core/data.php:1128 inc/core/data.php:1253
1423
- #: inc/core/data.php:1303 inc/core/data.php:1347 inc/core/data.php:1659
1424
- #: inc/core/data.php:1756
1425
  msgid "Url"
1426
  msgstr ""
1427
 
1428
- #: inc/core/data.php:1077 inc/core/data.php:1129
1429
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1430
  msgstr ""
1431
 
1432
- #: inc/core/data.php:1085 inc/core/data.php:1142 inc/core/data.php:1261
1433
- #: inc/core/data.php:1312 inc/core/data.php:1356 inc/core/data.php:1453
1434
- #: inc/core/data.php:1508 inc/core/data.php:1765 inc/core/data.php:1804
1435
- #: inc/core/data.php:1888 inc/core/data.php:2007 inc/core/data.php:2145
1436
- #: inc/core/data.php:2361
1437
  msgid "Width"
1438
  msgstr ""
1439
 
1440
- #: inc/core/data.php:1086 inc/core/data.php:1143 inc/core/data.php:1262
1441
- #: inc/core/data.php:1313 inc/core/data.php:1357 inc/core/data.php:1509
1442
  msgid "Player width"
1443
  msgstr ""
1444
 
1445
- #: inc/core/data.php:1095 inc/core/data.php:1152 inc/core/data.php:1271
1446
- #: inc/core/data.php:1322 inc/core/data.php:1366 inc/core/data.php:1518
1447
  msgid "Player height"
1448
  msgstr ""
1449
 
1450
- #: inc/core/data.php:1100 inc/core/data.php:1157 inc/core/data.php:1276
1451
- #: inc/core/data.php:1327 inc/core/data.php:1371 inc/core/data.php:1780
1452
- #: inc/core/data.php:1819 inc/core/data.php:1901 inc/core/data.php:2022
1453
  msgid "Responsive"
1454
  msgstr ""
1455
 
1456
- #: inc/core/data.php:1101 inc/core/data.php:1158 inc/core/data.php:1277
1457
- #: inc/core/data.php:1328 inc/core/data.php:1372
1458
  msgid "Ignore width and height parameters and make player responsive"
1459
  msgstr ""
1460
 
1461
- #: inc/core/data.php:1106 inc/core/data.php:1191 inc/core/data.php:1282
1462
- #: inc/core/data.php:1377 inc/core/data.php:1459 inc/core/data.php:1529
1463
- #: inc/core/data.php:1936 inc/core/data.php:2074
1464
  msgid "Autoplay"
1465
  msgstr ""
1466
 
1467
- #: inc/core/data.php:1107 inc/core/data.php:1192 inc/core/data.php:1283
1468
  msgid "Play video automatically when page is loaded"
1469
  msgstr ""
1470
 
1471
- #: inc/core/data.php:1115
1472
  msgid "YouTube video"
1473
  msgstr ""
1474
 
1475
- #: inc/core/data.php:1121
1476
  msgid "YouTube Advanced"
1477
  msgstr ""
1478
 
1479
- #: inc/core/data.php:1133
1480
  msgid "Playlist"
1481
  msgstr ""
1482
 
1483
- #: inc/core/data.php:1134
1484
  msgid ""
1485
  "Value is a comma-separated list of video IDs to play. If you specify a "
1486
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
1487
  "path, and the videos specified in the playlist parameter will play thereafter"
1488
  msgstr ""
1489
 
1490
- #: inc/core/data.php:1163
1491
  msgid "0 - Hide controls"
1492
  msgstr ""
1493
 
1494
- #: inc/core/data.php:1164
1495
  msgid "1 - Show controls"
1496
  msgstr ""
1497
 
1498
- #: inc/core/data.php:1165
1499
  msgid "2 - Show controls when playback is started"
1500
  msgstr ""
1501
 
1502
- #: inc/core/data.php:1168 inc/core/data.php:1523
1503
  msgid "Controls"
1504
  msgstr ""
1505
 
1506
- #: inc/core/data.php:1169
1507
  msgid "This parameter indicates whether the video player controls will display"
1508
  msgstr ""
1509
 
1510
- #: inc/core/data.php:1174
1511
  msgid "0 - Do not hide controls"
1512
  msgstr ""
1513
 
1514
- #: inc/core/data.php:1175
1515
  msgid "1 - Hide all controls on mouse out"
1516
  msgstr ""
1517
 
1518
- #: inc/core/data.php:1176
1519
  msgid "2 - Hide progress bar on mouse out"
1520
  msgstr ""
1521
 
1522
- #: inc/core/data.php:1179
1523
  msgid "Autohide"
1524
  msgstr ""
1525
 
1526
- #: inc/core/data.php:1180
1527
  msgid ""
1528
  "This parameter indicates whether the video controls will automatically hide "
1529
  "after a video begins playing"
1530
  msgstr ""
1531
 
1532
- #: inc/core/data.php:1185
1533
  msgid "Show title bar"
1534
  msgstr ""
1535
 
1536
- #: inc/core/data.php:1186
1537
  msgid ""
1538
  "If you set the parameter value to NO, then the player will not display "
1539
  "information like the video title and uploader before the video starts "
1540
  "playing."
1541
  msgstr ""
1542
 
1543
- #: inc/core/data.php:1197 inc/core/data.php:1465 inc/core/data.php:1535
1544
  msgid "Loop"
1545
  msgstr ""
1546
 
1547
- #: inc/core/data.php:1198
1548
  msgid ""
1549
  "Setting of YES will cause the player to play the initial video again and "
1550
  "again"
1551
  msgstr ""
1552
 
1553
- #: inc/core/data.php:1203
1554
  msgid "Related videos"
1555
  msgstr ""
1556
 
1557
- #: inc/core/data.php:1204
1558
  msgid ""
1559
  "This parameter indicates whether the player should show related videos when "
1560
  "playback of the initial video ends"
1561
  msgstr ""
1562
 
1563
- #: inc/core/data.php:1209
1564
  msgid "Show full-screen button"
1565
  msgstr ""
1566
 
1567
- #: inc/core/data.php:1210
1568
  msgid ""
1569
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1570
  msgstr ""
1571
 
1572
- #: inc/core/data.php:1216
1573
  msgid ""
1574
  "This parameter lets you use a YouTube player that does not show a YouTube "
1575
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
@@ -1578,206 +1582,206 @@ msgid ""
1578
  "mouse pointer hovers over the player"
1579
  msgstr ""
1580
 
1581
- #: inc/core/data.php:1221
1582
  msgid "Dark theme"
1583
  msgstr ""
1584
 
1585
- #: inc/core/data.php:1222
1586
  msgid "Light theme"
1587
  msgstr ""
1588
 
1589
- #: inc/core/data.php:1225 inc/core/data.php:2392
1590
  msgid "Theme"
1591
  msgstr ""
1592
 
1593
- #: inc/core/data.php:1226
1594
  msgid ""
1595
  "This parameter indicates whether the embedded player will display player "
1596
  "controls (like a play button or volume control) within a dark or light "
1597
  "control bar"
1598
  msgstr ""
1599
 
1600
- #: inc/core/data.php:1231
1601
  msgid "Force HTTPS"
1602
  msgstr ""
1603
 
1604
- #: inc/core/data.php:1232
1605
  msgid "Use HTTPS in player iframe"
1606
  msgstr ""
1607
 
1608
- #: inc/core/data.php:1240
1609
  msgid "YouTube video player with advanced settings"
1610
  msgstr ""
1611
 
1612
- #: inc/core/data.php:1246
1613
  msgid "Vimeo"
1614
  msgstr ""
1615
 
1616
- #: inc/core/data.php:1253
1617
  msgid "Url of Vimeo page with video"
1618
  msgstr ""
1619
 
1620
- #: inc/core/data.php:1291
1621
  msgid "Vimeo video"
1622
  msgstr ""
1623
 
1624
- #: inc/core/data.php:1297
1625
  msgid "Screenr"
1626
  msgstr ""
1627
 
1628
- #: inc/core/data.php:1304
1629
  msgid "Url of Screenr page with video"
1630
  msgstr ""
1631
 
1632
- #: inc/core/data.php:1336
1633
  msgid "Screenr video"
1634
  msgstr ""
1635
 
1636
- #: inc/core/data.php:1341
1637
  msgid "Dailymotion"
1638
  msgstr ""
1639
 
1640
- #: inc/core/data.php:1348
1641
  msgid "Url of Dailymotion page with video"
1642
  msgstr ""
1643
 
1644
- #: inc/core/data.php:1378
1645
  msgid ""
1646
  "Start the playback of the video automatically after the player load. May not "
1647
  "work on some mobile OS versions"
1648
  msgstr ""
1649
 
1650
- #: inc/core/data.php:1383
1651
  msgid "Background color"
1652
  msgstr ""
1653
 
1654
- #: inc/core/data.php:1384
1655
  msgid "HTML color of the background of controls elements"
1656
  msgstr ""
1657
 
1658
- #: inc/core/data.php:1389
1659
  msgid "Foreground color"
1660
  msgstr ""
1661
 
1662
- #: inc/core/data.php:1390
1663
  msgid "HTML color of the foreground of controls elements"
1664
  msgstr ""
1665
 
1666
- #: inc/core/data.php:1395
1667
  msgid "Highlight color"
1668
  msgstr ""
1669
 
1670
- #: inc/core/data.php:1396
1671
  msgid "HTML color of the controls elements' highlights"
1672
  msgstr ""
1673
 
1674
- #: inc/core/data.php:1401
1675
  msgid "Show logo"
1676
  msgstr ""
1677
 
1678
- #: inc/core/data.php:1402
1679
  msgid "Allows to hide or show the Dailymotion logo"
1680
  msgstr ""
1681
 
1682
- #: inc/core/data.php:1414
1683
  msgid "Quality"
1684
  msgstr ""
1685
 
1686
- #: inc/core/data.php:1415
1687
  msgid "Determines the quality that must be played by default if available"
1688
  msgstr ""
1689
 
1690
- #: inc/core/data.php:1420
1691
  msgid "Show related videos"
1692
  msgstr ""
1693
 
1694
- #: inc/core/data.php:1421
1695
  msgid "Show related videos at the end of the video"
1696
  msgstr ""
1697
 
1698
- #: inc/core/data.php:1426
1699
  msgid "Show video info"
1700
  msgstr ""
1701
 
1702
- #: inc/core/data.php:1427
1703
  msgid "Show videos info (title/author) on the start screen"
1704
  msgstr ""
1705
 
1706
- #: inc/core/data.php:1435
1707
  msgid "Dailymotion video"
1708
  msgstr ""
1709
 
1710
- #: inc/core/data.php:1440
1711
  msgid "Audio"
1712
  msgstr ""
1713
 
1714
- #: inc/core/data.php:1447 inc/core/data.php:1487
1715
  msgid "File"
1716
  msgstr ""
1717
 
1718
- #: inc/core/data.php:1448
1719
  msgid "Audio file url. Supported formats: mp3, ogg"
1720
  msgstr ""
1721
 
1722
- #: inc/core/data.php:1454
1723
  msgid ""
1724
  "Player width. You can specify width in percents and player will be "
1725
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1726
  msgstr ""
1727
 
1728
- #: inc/core/data.php:1460 inc/core/data.php:1530
1729
  msgid "Play file automatically when page is loaded"
1730
  msgstr ""
1731
 
1732
- #: inc/core/data.php:1466 inc/core/data.php:1536
1733
  msgid "Repeat when playback is ended"
1734
  msgstr ""
1735
 
1736
- #: inc/core/data.php:1474
1737
  msgid "Custom audio player"
1738
  msgstr ""
1739
 
1740
- #: inc/core/data.php:1480
1741
  msgid "Video"
1742
  msgstr ""
1743
 
1744
- #: inc/core/data.php:1488
1745
  msgid "Url to mp4/flv video-file"
1746
  msgstr ""
1747
 
1748
- #: inc/core/data.php:1493
1749
  msgid "Poster"
1750
  msgstr ""
1751
 
1752
- #: inc/core/data.php:1494
1753
  msgid "Url to poster image, that will be shown before playback"
1754
  msgstr ""
1755
 
1756
- #: inc/core/data.php:1500
1757
  msgid "Player title"
1758
  msgstr ""
1759
 
1760
- #: inc/core/data.php:1524
1761
  msgid "Show player controls (play/pause etc.) or not"
1762
  msgstr ""
1763
 
1764
- #: inc/core/data.php:1544
1765
  msgid "Custom video player"
1766
  msgstr ""
1767
 
1768
- #: inc/core/data.php:1550
1769
  msgid "Table"
1770
  msgstr ""
1771
 
1772
- #: inc/core/data.php:1557
1773
  msgid "CSV file"
1774
  msgstr ""
1775
 
1776
- #: inc/core/data.php:1558
1777
  msgid "Upload CSV file if you want to create HTML-table from file"
1778
  msgstr ""
1779
 
1780
- #: inc/core/data.php:1566
1781
  msgid ""
1782
  "<table>\n"
1783
  "<tr>\n"
@@ -1791,429 +1795,429 @@ msgid ""
1791
  "</table>"
1792
  msgstr ""
1793
 
1794
- #: inc/core/data.php:1567
1795
  msgid "Styled table from HTML or CSV file"
1796
  msgstr ""
1797
 
1798
- #: inc/core/data.php:1572
1799
  msgid "Permalink"
1800
  msgstr ""
1801
 
1802
- #: inc/core/data.php:1578 inc/core/data.php:2502
1803
  msgid "ID"
1804
  msgstr ""
1805
 
1806
- #: inc/core/data.php:1579
1807
  msgid "Post or page ID"
1808
  msgstr ""
1809
 
1810
- #: inc/core/data.php:1589
1811
  msgid "Link target. blank - link will be opened in new window/tab"
1812
  msgstr ""
1813
 
1814
- #: inc/core/data.php:1598
1815
  msgid "Permalink to specified post/page"
1816
  msgstr ""
1817
 
1818
- #: inc/core/data.php:1603
1819
  msgid "Members"
1820
  msgstr ""
1821
 
1822
- #: inc/core/data.php:1608 inc/core/shortcodes.php:794
1823
  msgid "This content is for registered users only. Please %login%."
1824
  msgstr ""
1825
 
1826
- #: inc/core/data.php:1609
1827
  msgid "Message"
1828
  msgstr ""
1829
 
1830
- #: inc/core/data.php:1609
1831
  msgid "Message for not logged users"
1832
  msgstr ""
1833
 
1834
- #: inc/core/data.php:1614
1835
  msgid "Box color"
1836
  msgstr ""
1837
 
1838
- #: inc/core/data.php:1614
1839
  msgid "This color will applied only to box for not logged users"
1840
  msgstr ""
1841
 
1842
- #: inc/core/data.php:1617 inc/core/shortcodes.php:797
1843
  msgid "login"
1844
  msgstr ""
1845
 
1846
- #: inc/core/data.php:1618
1847
  msgid "Login link text"
1848
  msgstr ""
1849
 
1850
- #: inc/core/data.php:1618
1851
  msgid "Text for the login link"
1852
  msgstr ""
1853
 
1854
- #: inc/core/data.php:1622
1855
  msgid "Login link url"
1856
  msgstr ""
1857
 
1858
- #: inc/core/data.php:1630
1859
  msgid "Content for logged members"
1860
  msgstr ""
1861
 
1862
- #: inc/core/data.php:1631
1863
  msgid "Content for logged in members only"
1864
  msgstr ""
1865
 
1866
- #: inc/core/data.php:1636
1867
  msgid "Guests"
1868
  msgstr ""
1869
 
1870
- #: inc/core/data.php:1646
1871
  msgid "Content for guests"
1872
  msgstr ""
1873
 
1874
- #: inc/core/data.php:1647
1875
  msgid "Content for guests only"
1876
  msgstr ""
1877
 
1878
- #: inc/core/data.php:1652
1879
  msgid "RSS Feed"
1880
  msgstr ""
1881
 
1882
- #: inc/core/data.php:1660
1883
  msgid "Url to RSS-feed"
1884
  msgstr ""
1885
 
1886
- #: inc/core/data.php:1668 inc/core/data.php:1855 inc/core/data.php:1974
1887
- #: inc/core/data.php:2112
1888
  msgid "Limit"
1889
  msgstr ""
1890
 
1891
- #: inc/core/data.php:1668
1892
  msgid "Number of items to show"
1893
  msgstr ""
1894
 
1895
- #: inc/core/data.php:1676
1896
  msgid "Feed grabber"
1897
  msgstr ""
1898
 
1899
- #: inc/core/data.php:1681
1900
  msgid "Menu"
1901
  msgstr ""
1902
 
1903
- #: inc/core/data.php:1688
1904
  msgid "Menu name"
1905
  msgstr ""
1906
 
1907
- #: inc/core/data.php:1688
1908
  msgid "Custom menu name. Ex: Main menu"
1909
  msgstr ""
1910
 
1911
- #: inc/core/data.php:1696
1912
  msgid "Custom menu by name"
1913
  msgstr ""
1914
 
1915
- #: inc/core/data.php:1701
1916
  msgid "Sub pages"
1917
  msgstr ""
1918
 
1919
- #: inc/core/data.php:1708 inc/core/data.php:1735
1920
  msgid "Depth"
1921
  msgstr ""
1922
 
1923
- #: inc/core/data.php:1709
1924
  msgid "Max depth level of children pages"
1925
  msgstr ""
1926
 
1927
- #: inc/core/data.php:1714
1928
  msgid "Parent ID"
1929
  msgstr ""
1930
 
1931
- #: inc/core/data.php:1715
1932
  msgid "ID of the parent page. Leave blank to use current page"
1933
  msgstr ""
1934
 
1935
- #: inc/core/data.php:1723
1936
  msgid "List of sub pages"
1937
  msgstr ""
1938
 
1939
- #: inc/core/data.php:1728
1940
  msgid "Siblings"
1941
  msgstr ""
1942
 
1943
- #: inc/core/data.php:1736
1944
  msgid "Max depth level"
1945
  msgstr ""
1946
 
1947
- #: inc/core/data.php:1744
1948
  msgid "List of cureent page siblings"
1949
  msgstr ""
1950
 
1951
- #: inc/core/data.php:1749
1952
  msgid "Document"
1953
  msgstr ""
1954
 
1955
- #: inc/core/data.php:1757
1956
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1957
  msgstr ""
1958
 
1959
- #: inc/core/data.php:1766
1960
  msgid "Viewer width"
1961
  msgstr ""
1962
 
1963
- #: inc/core/data.php:1775
1964
  msgid "Viewer height"
1965
  msgstr ""
1966
 
1967
- #: inc/core/data.php:1781
1968
  msgid "Ignore width and height parameters and make viewer responsive"
1969
  msgstr ""
1970
 
1971
- #: inc/core/data.php:1789
1972
  msgid "Document viewer by Google"
1973
  msgstr ""
1974
 
1975
- #: inc/core/data.php:1794
1976
  msgid "Gmap"
1977
  msgstr ""
1978
 
1979
- #: inc/core/data.php:1805
1980
  msgid "Map width"
1981
  msgstr ""
1982
 
1983
- #: inc/core/data.php:1814
1984
  msgid "Map height"
1985
  msgstr ""
1986
 
1987
- #: inc/core/data.php:1820
1988
  msgid "Ignore width and height parameters and make map responsive"
1989
  msgstr ""
1990
 
1991
- #: inc/core/data.php:1825
1992
  msgid "Marker"
1993
  msgstr ""
1994
 
1995
- #: inc/core/data.php:1826
1996
  msgid "Address for the marker. You can type it in any language"
1997
  msgstr ""
1998
 
1999
- #: inc/core/data.php:1834
2000
  msgid "Maps by Google"
2001
  msgstr ""
2002
 
2003
- #: inc/core/data.php:1839
2004
  msgid "Slider"
2005
  msgstr ""
2006
 
2007
- #: inc/core/data.php:1846 inc/core/data.php:1965 inc/core/data.php:2103
2008
  msgid "Source"
2009
  msgstr ""
2010
 
2011
- #: inc/core/data.php:1847 inc/core/data.php:1966 inc/core/data.php:2104
2012
  msgid ""
2013
  "Choose images source. You can use images from Media library or retrieve it "
2014
  "from posts (thumbnails) posted under specified blog category. You can also "
2015
  "pick any custom taxonomy"
2016
  msgstr ""
2017
 
2018
- #: inc/core/data.php:1856 inc/core/data.php:1975 inc/core/data.php:2113
2019
  msgid ""
2020
  "Maximum number of image source posts (for recent posts, category and custom "
2021
  "taxonomy)"
2022
  msgstr ""
2023
 
2024
- #: inc/core/data.php:1862 inc/core/data.php:1981 inc/core/data.php:2119
2025
  msgid "Full-size image"
2026
  msgstr ""
2027
 
2028
- #: inc/core/data.php:1864 inc/core/data.php:1983 inc/core/data.php:2121
2029
  msgid "Slide link (added in media editor)"
2030
  msgstr ""
2031
 
2032
- #: inc/core/data.php:1865 inc/core/data.php:1984 inc/core/data.php:2122
2033
  msgid "Attachment page"
2034
  msgstr ""
2035
 
2036
- #: inc/core/data.php:1866 inc/core/data.php:1985 inc/core/data.php:2123
2037
  msgid "Post permalink"
2038
  msgstr ""
2039
 
2040
- #: inc/core/data.php:1869 inc/core/data.php:1988 inc/core/data.php:2126
2041
  msgid "Links"
2042
  msgstr ""
2043
 
2044
- #: inc/core/data.php:1870 inc/core/data.php:1989 inc/core/data.php:2127
2045
  msgid "Select which links will be used for images in this gallery"
2046
  msgstr ""
2047
 
2048
- #: inc/core/data.php:1875 inc/core/data.php:1994 inc/core/data.php:2132
2049
  msgid "Same window"
2050
  msgstr ""
2051
 
2052
- #: inc/core/data.php:1876 inc/core/data.php:1995 inc/core/data.php:2133
2053
  msgid "New window"
2054
  msgstr ""
2055
 
2056
- #: inc/core/data.php:1879 inc/core/data.php:1998 inc/core/data.php:2136
2057
  msgid "Links target"
2058
  msgstr ""
2059
 
2060
- #: inc/core/data.php:1880 inc/core/data.php:1999 inc/core/data.php:2137
2061
  msgid "Open links in"
2062
  msgstr ""
2063
 
2064
- #: inc/core/data.php:1888
2065
  msgid "Slider width (in pixels)"
2066
  msgstr ""
2067
 
2068
- #: inc/core/data.php:1896
2069
  msgid "Slider height (in pixels)"
2070
  msgstr ""
2071
 
2072
- #: inc/core/data.php:1902
2073
  msgid "Ignore width and height parameters and make slider responsive"
2074
  msgstr ""
2075
 
2076
- #: inc/core/data.php:1907 inc/core/data.php:2045 inc/core/data.php:2163
2077
  msgid "Show titles"
2078
  msgstr ""
2079
 
2080
- #: inc/core/data.php:1907
2081
  msgid "Display slide titles"
2082
  msgstr ""
2083
 
2084
- #: inc/core/data.php:1912
2085
  msgid "Is slider centered on the page"
2086
  msgstr ""
2087
 
2088
- #: inc/core/data.php:1917 inc/core/data.php:2055
2089
  msgid "Arrows"
2090
  msgstr ""
2091
 
2092
- #: inc/core/data.php:1917 inc/core/data.php:2055
2093
  msgid "Show left and right arrows"
2094
  msgstr ""
2095
 
2096
- #: inc/core/data.php:1922 inc/core/data.php:2060
2097
  msgid "Pagination"
2098
  msgstr ""
2099
 
2100
- #: inc/core/data.php:1923 inc/core/data.php:2061
2101
  msgid "Show pagination"
2102
  msgstr ""
2103
 
2104
- #: inc/core/data.php:1927 inc/core/data.php:2065
2105
  msgid "Mouse wheel control"
2106
  msgstr ""
2107
 
2108
- #: inc/core/data.php:1928
2109
  msgid "Allow to change slides with mouse wheel"
2110
  msgstr ""
2111
 
2112
- #: inc/core/data.php:1937
2113
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2114
  msgstr ""
2115
 
2116
- #: inc/core/data.php:1945 inc/core/data.php:2083
2117
  msgid "Speed"
2118
  msgstr ""
2119
 
2120
- #: inc/core/data.php:1945 inc/core/data.php:2083
2121
  msgid "Specify animation speed"
2122
  msgstr ""
2123
 
2124
- #: inc/core/data.php:1953
2125
  msgid "Customizable image slider"
2126
  msgstr ""
2127
 
2128
- #: inc/core/data.php:1958
2129
  msgid "Carousel"
2130
  msgstr ""
2131
 
2132
- #: inc/core/data.php:2008
2133
  msgid "Carousel width (in pixels)"
2134
  msgstr ""
2135
 
2136
- #: inc/core/data.php:2017
2137
  msgid "Carousel height (in pixels)"
2138
  msgstr ""
2139
 
2140
- #: inc/core/data.php:2023
2141
  msgid "Ignore width and height parameters and make carousel responsive"
2142
  msgstr ""
2143
 
2144
- #: inc/core/data.php:2031
2145
  msgid "Items to show"
2146
  msgstr ""
2147
 
2148
- #: inc/core/data.php:2032
2149
  msgid "How much carousel items is visible"
2150
  msgstr ""
2151
 
2152
- #: inc/core/data.php:2039
2153
  msgid "Scroll number"
2154
  msgstr ""
2155
 
2156
- #: inc/core/data.php:2040
2157
  msgid "How much items are scrolled in one transition"
2158
  msgstr ""
2159
 
2160
- #: inc/core/data.php:2045
2161
  msgid "Display titles for each item"
2162
  msgstr ""
2163
 
2164
- #: inc/core/data.php:2050
2165
  msgid "Is carousel centered on the page"
2166
  msgstr ""
2167
 
2168
- #: inc/core/data.php:2066
2169
  msgid "Allow to rotate carousel with mouse wheel"
2170
  msgstr ""
2171
 
2172
- #: inc/core/data.php:2075
2173
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2174
  msgstr ""
2175
 
2176
- #: inc/core/data.php:2091
2177
  msgid "Customizable image carousel"
2178
  msgstr ""
2179
 
2180
- #: inc/core/data.php:2145
2181
  msgid "Single item width (in pixels)"
2182
  msgstr ""
2183
 
2184
- #: inc/core/data.php:2153
2185
  msgid "Single item height (in pixels)"
2186
  msgstr ""
2187
 
2188
- #: inc/core/data.php:2158
2189
  msgid "Never"
2190
  msgstr ""
2191
 
2192
- #: inc/core/data.php:2159
2193
  msgid "On mouse over"
2194
  msgstr ""
2195
 
2196
- #: inc/core/data.php:2160
2197
  msgid "Always"
2198
  msgstr ""
2199
 
2200
- #: inc/core/data.php:2164
2201
  msgid "Title display mode"
2202
  msgstr ""
2203
 
2204
- #: inc/core/data.php:2172
2205
  msgid "Customizable image gallery"
2206
  msgstr ""
2207
 
2208
- #: inc/core/data.php:2177
2209
  msgid "Posts"
2210
  msgstr ""
2211
 
2212
- #: inc/core/data.php:2182 inc/core/data.php:2609
2213
  msgid "Template"
2214
  msgstr ""
2215
 
2216
- #: inc/core/data.php:2183
2217
  msgid ""
2218
  "<b>Do not change this field value if you do not understand description below."
2219
  "</b><br/>Relative path to the template file. Default templates is placed "
@@ -2226,550 +2230,550 @@ msgid ""
2226
  "%value>templates/list-loop.php</b> - unordered list with posts titles"
2227
  msgstr ""
2228
 
2229
- #: inc/core/data.php:2187
2230
  msgid "Post ID's"
2231
  msgstr ""
2232
 
2233
- #: inc/core/data.php:2188
2234
  msgid "Enter comma separated ID's of the posts that you want to show"
2235
  msgstr ""
2236
 
2237
- #: inc/core/data.php:2196
2238
  msgid "Posts per page"
2239
  msgstr ""
2240
 
2241
- #: inc/core/data.php:2197
2242
  msgid ""
2243
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2244
  msgstr ""
2245
 
2246
- #: inc/core/data.php:2204
2247
  msgid "Post types"
2248
  msgstr ""
2249
 
2250
- #: inc/core/data.php:2205
2251
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2252
  msgstr ""
2253
 
2254
- #: inc/core/data.php:2211 inc/core/generator-views.php:123
2255
  msgid "Taxonomy"
2256
  msgstr ""
2257
 
2258
- #: inc/core/data.php:2212
2259
  msgid "Select taxonomy to show posts from"
2260
  msgstr ""
2261
 
2262
- #: inc/core/data.php:2219
2263
  msgid "Terms"
2264
  msgstr ""
2265
 
2266
- #: inc/core/data.php:2220
2267
  msgid "Select terms to show posts from"
2268
  msgstr ""
2269
 
2270
- #: inc/core/data.php:2225
2271
  msgid "Taxonomy term operator"
2272
  msgstr ""
2273
 
2274
- #: inc/core/data.php:2226
2275
  msgid ""
2276
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2277
  "that is does not have any of selected terms<br/>AND - posts that have all "
2278
  "selected terms"
2279
  msgstr ""
2280
 
2281
- #: inc/core/data.php:2233
2282
  msgid "Authors"
2283
  msgstr ""
2284
 
2285
- #: inc/core/data.php:2234
2286
  msgid "Choose the authors whose posts you want to show"
2287
  msgstr ""
2288
 
2289
- #: inc/core/data.php:2238
2290
  msgid "Meta key"
2291
  msgstr ""
2292
 
2293
- #: inc/core/data.php:2239
2294
  msgid "Enter meta key name to show posts that have this key"
2295
  msgstr ""
2296
 
2297
- #: inc/core/data.php:2246
2298
  msgid "Offset"
2299
  msgstr ""
2300
 
2301
- #: inc/core/data.php:2247
2302
  msgid "Specify offset to start posts loop not from first post"
2303
  msgstr ""
2304
 
2305
- #: inc/core/data.php:2252
2306
  msgid "Descending"
2307
  msgstr ""
2308
 
2309
- #: inc/core/data.php:2253
2310
  msgid "Ascending"
2311
  msgstr ""
2312
 
2313
- #: inc/core/data.php:2256
2314
  msgid "Order"
2315
  msgstr ""
2316
 
2317
- #: inc/core/data.php:2257
2318
  msgid "Posts order"
2319
  msgstr ""
2320
 
2321
- #: inc/core/data.php:2263 inc/core/data.php:2480 inc/core/data.php:2553
2322
- #: inc/core/data.php:2595
2323
  msgid "Post ID"
2324
  msgstr ""
2325
 
2326
- #: inc/core/data.php:2264 inc/core/data.php:2554
2327
  msgid "Post author"
2328
  msgstr ""
2329
 
2330
- #: inc/core/data.php:2265 inc/core/data.php:2558
2331
  msgid "Post title"
2332
  msgstr ""
2333
 
2334
- #: inc/core/data.php:2266
2335
  msgid "Post slug"
2336
  msgstr ""
2337
 
2338
- #: inc/core/data.php:2267
2339
  msgid "Date"
2340
  msgstr ""
2341
 
2342
- #: inc/core/data.php:2267
2343
  msgid "Last modified date"
2344
  msgstr ""
2345
 
2346
- #: inc/core/data.php:2268 inc/core/data.php:2278 inc/core/data.php:2567
2347
  msgid "Post parent"
2348
  msgstr ""
2349
 
2350
- #: inc/core/data.php:2269
2351
  msgid "Random"
2352
  msgstr ""
2353
 
2354
- #: inc/core/data.php:2269
2355
  msgid "Comments number"
2356
  msgstr ""
2357
 
2358
- #: inc/core/data.php:2270 inc/core/data.php:2569
2359
  msgid "Menu order"
2360
  msgstr ""
2361
 
2362
- #: inc/core/data.php:2270
2363
  msgid "Meta key values"
2364
  msgstr ""
2365
 
2366
- #: inc/core/data.php:2273
2367
  msgid "Order by"
2368
  msgstr ""
2369
 
2370
- #: inc/core/data.php:2274
2371
  msgid "Order posts by"
2372
  msgstr ""
2373
 
2374
- #: inc/core/data.php:2279
2375
  msgid "Show childrens of entered post (enter post ID)"
2376
  msgstr ""
2377
 
2378
- #: inc/core/data.php:2284
2379
  msgid "Published"
2380
  msgstr ""
2381
 
2382
- #: inc/core/data.php:2285
2383
  msgid "Pending"
2384
  msgstr ""
2385
 
2386
- #: inc/core/data.php:2286
2387
  msgid "Draft"
2388
  msgstr ""
2389
 
2390
- #: inc/core/data.php:2287
2391
  msgid "Auto-draft"
2392
  msgstr ""
2393
 
2394
- #: inc/core/data.php:2288
2395
  msgid "Future post"
2396
  msgstr ""
2397
 
2398
- #: inc/core/data.php:2289
2399
  msgid "Private post"
2400
  msgstr ""
2401
 
2402
- #: inc/core/data.php:2290
2403
  msgid "Inherit"
2404
  msgstr ""
2405
 
2406
- #: inc/core/data.php:2291
2407
  msgid "Trashed"
2408
  msgstr ""
2409
 
2410
- #: inc/core/data.php:2292 inc/core/data.php:2376
2411
  msgid "Any"
2412
  msgstr ""
2413
 
2414
- #: inc/core/data.php:2295 inc/core/data.php:2560
2415
  msgid "Post status"
2416
  msgstr ""
2417
 
2418
- #: inc/core/data.php:2296
2419
  msgid "Show only posts with selected status"
2420
  msgstr ""
2421
 
2422
- #: inc/core/data.php:2301
2423
  msgid "Ignore sticky"
2424
  msgstr ""
2425
 
2426
- #: inc/core/data.php:2302
2427
  msgid "Select Yes to ignore posts that is sticked"
2428
  msgstr ""
2429
 
2430
- #: inc/core/data.php:2305
2431
  msgid "Custom posts query with customizable template"
2432
  msgstr ""
2433
 
2434
- #: inc/core/data.php:2310
2435
  msgid "Dummy text"
2436
  msgstr ""
2437
 
2438
- #: inc/core/data.php:2317
2439
  msgid "Paragraphs"
2440
  msgstr ""
2441
 
2442
- #: inc/core/data.php:2318
2443
  msgid "Words"
2444
  msgstr ""
2445
 
2446
- #: inc/core/data.php:2319
2447
  msgid "Bytes"
2448
  msgstr ""
2449
 
2450
- #: inc/core/data.php:2322
2451
  msgid "What"
2452
  msgstr ""
2453
 
2454
- #: inc/core/data.php:2323
2455
  msgid "What to generate"
2456
  msgstr ""
2457
 
2458
- #: inc/core/data.php:2331
2459
  msgid "Amount"
2460
  msgstr ""
2461
 
2462
- #: inc/core/data.php:2332
2463
  msgid ""
2464
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2465
  msgstr ""
2466
 
2467
- #: inc/core/data.php:2337
2468
  msgid "Cache"
2469
  msgstr ""
2470
 
2471
- #: inc/core/data.php:2338
2472
  msgid ""
2473
  "Generated text will be cached. Be careful with this option. If you disable "
2474
  "it and insert many dummy_text shortcodes the page load time will be highly "
2475
  "increased"
2476
  msgstr ""
2477
 
2478
- #: inc/core/data.php:2346
2479
  msgid "Text placeholder"
2480
  msgstr ""
2481
 
2482
- #: inc/core/data.php:2351 inc/core/shortcodes.php:1302
2483
  msgid "Dummy image"
2484
  msgstr ""
2485
 
2486
- #: inc/core/data.php:2362
2487
  msgid "Image width"
2488
  msgstr ""
2489
 
2490
- #: inc/core/data.php:2371
2491
  msgid "Image height"
2492
  msgstr ""
2493
 
2494
- #: inc/core/data.php:2377
2495
  msgid "Abstract"
2496
  msgstr ""
2497
 
2498
- #: inc/core/data.php:2378
2499
  msgid "Animals"
2500
  msgstr ""
2501
 
2502
- #: inc/core/data.php:2379
2503
  msgid "Business"
2504
  msgstr ""
2505
 
2506
- #: inc/core/data.php:2380
2507
  msgid "Cats"
2508
  msgstr ""
2509
 
2510
- #: inc/core/data.php:2381
2511
  msgid "City"
2512
  msgstr ""
2513
 
2514
- #: inc/core/data.php:2382
2515
  msgid "Food"
2516
  msgstr ""
2517
 
2518
- #: inc/core/data.php:2383
2519
  msgid "Night life"
2520
  msgstr ""
2521
 
2522
- #: inc/core/data.php:2384
2523
  msgid "Fashion"
2524
  msgstr ""
2525
 
2526
- #: inc/core/data.php:2385
2527
  msgid "People"
2528
  msgstr ""
2529
 
2530
- #: inc/core/data.php:2386
2531
  msgid "Nature"
2532
  msgstr ""
2533
 
2534
- #: inc/core/data.php:2387
2535
  msgid "Sports"
2536
  msgstr ""
2537
 
2538
- #: inc/core/data.php:2388
2539
  msgid "Technics"
2540
  msgstr ""
2541
 
2542
- #: inc/core/data.php:2389
2543
  msgid "Transport"
2544
  msgstr ""
2545
 
2546
- #: inc/core/data.php:2393
2547
  msgid "Select the theme for this image"
2548
  msgstr ""
2549
 
2550
- #: inc/core/data.php:2401
2551
  msgid "Image placeholder with random image"
2552
  msgstr ""
2553
 
2554
- #: inc/core/data.php:2406 inc/core/data.php:2414
2555
  msgid "Animation"
2556
  msgstr ""
2557
 
2558
- #: inc/core/data.php:2415
2559
  msgid "Select animation type"
2560
  msgstr ""
2561
 
2562
- #: inc/core/data.php:2423
2563
  msgid "Duration"
2564
  msgstr ""
2565
 
2566
- #: inc/core/data.php:2424
2567
  msgid "Animation duration (seconds)"
2568
  msgstr ""
2569
 
2570
- #: inc/core/data.php:2432
2571
  msgid "Delay"
2572
  msgstr ""
2573
 
2574
- #: inc/core/data.php:2433
2575
  msgid "Animation delay (seconds)"
2576
  msgstr ""
2577
 
2578
- #: inc/core/data.php:2438
2579
  msgid "Inline"
2580
  msgstr ""
2581
 
2582
- #: inc/core/data.php:2439
2583
  msgid ""
2584
  "This parameter determines what HTML tag will be used for animation wrapper. "
2585
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
2586
  "of DIV. Useful for inline animations, like buttons"
2587
  msgstr ""
2588
 
2589
- #: inc/core/data.php:2447
2590
  msgid "Animated content"
2591
  msgstr ""
2592
 
2593
- #: inc/core/data.php:2448
2594
  msgid "Wrapper for animation. Any nested element will be animated"
2595
  msgstr ""
2596
 
2597
- #: inc/core/data.php:2454
2598
  msgid "Meta"
2599
  msgstr ""
2600
 
2601
- #: inc/core/data.php:2460
2602
  msgid "Key"
2603
  msgstr ""
2604
 
2605
- #: inc/core/data.php:2461
2606
  msgid "Meta key name"
2607
  msgstr ""
2608
 
2609
- #: inc/core/data.php:2466 inc/core/data.php:2518 inc/core/data.php:2581
2610
  msgid "This text will be shown if data is not found"
2611
  msgstr ""
2612
 
2613
- #: inc/core/data.php:2470 inc/core/data.php:2522 inc/core/data.php:2585
2614
  msgid "Before"
2615
  msgstr ""
2616
 
2617
- #: inc/core/data.php:2471 inc/core/data.php:2523 inc/core/data.php:2586
2618
  msgid "This content will be shown before the value"
2619
  msgstr ""
2620
 
2621
- #: inc/core/data.php:2475 inc/core/data.php:2527 inc/core/data.php:2590
2622
  msgid "After"
2623
  msgstr ""
2624
 
2625
- #: inc/core/data.php:2476 inc/core/data.php:2528 inc/core/data.php:2591
2626
  msgid "This content will be shown after the value"
2627
  msgstr ""
2628
 
2629
- #: inc/core/data.php:2481 inc/core/data.php:2596
2630
  msgid ""
2631
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2632
  "current post. Current post ID may not work in Live Preview mode"
2633
  msgstr ""
2634
 
2635
- #: inc/core/data.php:2485 inc/core/data.php:2537 inc/core/data.php:2600
2636
  msgid "Filter"
2637
  msgstr ""
2638
 
2639
- #: inc/core/data.php:2486 inc/core/data.php:2538 inc/core/data.php:2601
2640
  msgid ""
2641
  "You can apply custom filter to the retrieved value. Enter here function "
2642
  "name. Your function must accept one argument and return modified value. "
2643
  "Example function: "
2644
  msgstr ""
2645
 
2646
- #: inc/core/data.php:2489
2647
  msgid "Post meta"
2648
  msgstr ""
2649
 
2650
- #: inc/core/data.php:2494
2651
  msgid "User"
2652
  msgstr ""
2653
 
2654
- #: inc/core/data.php:2501
2655
  msgid "Display name"
2656
  msgstr ""
2657
 
2658
- #: inc/core/data.php:2503
2659
  msgid "Login"
2660
  msgstr ""
2661
 
2662
- #: inc/core/data.php:2504
2663
  msgid "Nice name"
2664
  msgstr ""
2665
 
2666
- #: inc/core/data.php:2505
2667
  msgid "Email"
2668
  msgstr ""
2669
 
2670
- #: inc/core/data.php:2506
2671
  msgid "URL"
2672
  msgstr ""
2673
 
2674
- #: inc/core/data.php:2507
2675
  msgid "Registered"
2676
  msgstr ""
2677
 
2678
- #: inc/core/data.php:2508
2679
  msgid "Activation key"
2680
  msgstr ""
2681
 
2682
- #: inc/core/data.php:2509
2683
  msgid "Status"
2684
  msgstr ""
2685
 
2686
- #: inc/core/data.php:2512 inc/core/data.php:2575
2687
  msgid "Field"
2688
  msgstr ""
2689
 
2690
- #: inc/core/data.php:2513
2691
  msgid "User data field name"
2692
  msgstr ""
2693
 
2694
- #: inc/core/data.php:2532
2695
  msgid "User ID"
2696
  msgstr ""
2697
 
2698
- #: inc/core/data.php:2533
2699
  msgid ""
2700
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2701
  "current user"
2702
  msgstr ""
2703
 
2704
- #: inc/core/data.php:2541
2705
  msgid "User data"
2706
  msgstr ""
2707
 
2708
- #: inc/core/data.php:2546
2709
  msgid "Post"
2710
  msgstr ""
2711
 
2712
- #: inc/core/data.php:2555 inc/core/data.php:2556
2713
  msgid "Post date"
2714
  msgstr ""
2715
 
2716
- #: inc/core/data.php:2557
2717
  msgid "Post content"
2718
  msgstr ""
2719
 
2720
- #: inc/core/data.php:2559
2721
  msgid "Post excerpt"
2722
  msgstr ""
2723
 
2724
- #: inc/core/data.php:2561
2725
  msgid "Comment status"
2726
  msgstr ""
2727
 
2728
- #: inc/core/data.php:2562
2729
  msgid "Ping status"
2730
  msgstr ""
2731
 
2732
- #: inc/core/data.php:2563
2733
  msgid "Post name"
2734
  msgstr ""
2735
 
2736
- #: inc/core/data.php:2564 inc/core/data.php:2565
2737
  msgid "Post modified"
2738
  msgstr ""
2739
 
2740
- #: inc/core/data.php:2566
2741
  msgid "Filtered post content"
2742
  msgstr ""
2743
 
2744
- #: inc/core/data.php:2568
2745
  msgid "GUID"
2746
  msgstr ""
2747
 
2748
- #: inc/core/data.php:2570
2749
  msgid "Post type"
2750
  msgstr ""
2751
 
2752
- #: inc/core/data.php:2571
2753
  msgid "Post mime type"
2754
  msgstr ""
2755
 
2756
- #: inc/core/data.php:2572
2757
  msgid "Comment count"
2758
  msgstr ""
2759
 
2760
- #: inc/core/data.php:2576
2761
  msgid "Post data field name"
2762
  msgstr ""
2763
 
2764
- #: inc/core/data.php:2604
2765
  msgid "Post data"
2766
  msgstr ""
2767
 
2768
- #: inc/core/data.php:2615
2769
  msgid "Template name"
2770
  msgstr ""
2771
 
2772
- #: inc/core/data.php:2616
2773
  #, php-format
2774
  msgid ""
2775
  "Use template file name (with optional .php extension). If you need to use "
@@ -2777,7 +2781,7 @@ msgid ""
2777
  "%s"
2778
  msgstr ""
2779
 
2780
- #: inc/core/data.php:2619
2781
  msgid "Theme template"
2782
  msgstr ""
2783
 
@@ -2945,7 +2949,7 @@ msgstr ""
2945
  msgid "Preview"
2946
  msgstr ""
2947
 
2948
- #: inc/core/generator.php:203 inc/core/tools.php:882
2949
  msgid "Access denied"
2950
  msgstr ""
2951
 
@@ -2962,7 +2966,7 @@ msgid "Presets not found"
2962
  msgstr ""
2963
 
2964
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
2965
- #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:894
2966
  #: inc/core/widget.php:14 inc/core/widget.php:40
2967
  msgid "Shortcodes Ultimate"
2968
  msgstr ""
@@ -3029,7 +3033,7 @@ msgstr ""
3029
  msgid "Custom CSS"
3030
  msgstr ""
3031
 
3032
- #: inc/core/load.php:113 inc/core/load.php:114
3033
  msgid "Examples"
3034
  msgstr ""
3035
 
@@ -3045,7 +3049,7 @@ msgstr ""
3045
  msgid "Supercharge your WordPress theme with mega pack of shortcodes"
3046
  msgstr ""
3047
 
3048
- #: inc/core/load.php:217
3049
  msgid "Where to start?"
3050
  msgstr ""
3051
 
@@ -3123,19 +3127,19 @@ msgstr ""
3123
  msgid "please specify template name"
3124
  msgstr ""
3125
 
3126
- #: inc/core/tools.php:801
3127
  msgid "Example code does not found, please check it later"
3128
  msgstr ""
3129
 
3130
- #: inc/core/tools.php:817
3131
  msgid "Get the code"
3132
  msgstr ""
3133
 
3134
- #: inc/core/tools.php:891
3135
  msgid "Slide link"
3136
  msgstr ""
3137
 
3138
- #: inc/core/tools.php:894
3139
  msgid ""
3140
  "Use this field to add custom links to slides used with Slider, Carousel and "
3141
  "Custom Gallery shortcodes"
2
  msgstr ""
3
  "Project-Id-Version: Shortcodes Ultimate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-20 15:14+0400\n"
6
+ "PO-Revision-Date: 2014-04-20 15:14+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: su\n"
24
  msgid "A real swiss army knife for WordPress"
25
  msgstr ""
26
 
27
+ #: inc/core/admin-views.php:11 inc/core/load.php:229
28
  msgid "Project homepage"
29
  msgstr ""
30
 
32
  msgid "Documentation"
33
  msgstr ""
34
 
35
+ #: inc/core/admin-views.php:13 inc/core/load.php:230
36
  msgid "Support forum"
37
  msgstr ""
38
 
39
+ #: inc/core/admin-views.php:14 inc/core/load.php:231
40
  msgid "Changelog"
41
  msgstr ""
42
 
254
  msgid "Content"
255
  msgstr ""
256
 
257
+ #: inc/core/data.php:19 inc/core/data.php:827
258
  msgid "Box"
259
  msgstr ""
260
 
262
  msgid "Media"
263
  msgstr ""
264
 
265
+ #: inc/core/data.php:21 inc/core/data.php:2097
266
  msgid "Gallery"
267
  msgstr ""
268
 
274
  msgid "Other"
275
  msgstr ""
276
 
277
+ #: inc/core/data.php:32 inc/core/data.php:1862 inc/core/data.php:1981
278
+ #: inc/core/data.php:2119 inc/core/data.php:2263
279
  msgid "None"
280
  msgstr ""
281
 
350
 
351
  #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:274
352
  #: inc/core/data.php:426 inc/core/data.php:456 inc/core/data.php:517
353
+ #: inc/core/data.php:684 inc/core/data.php:839 inc/core/data.php:1003
354
+ #: inc/core/data.php:2466 inc/core/data.php:2518 inc/core/data.php:2581
355
  msgid "Default"
356
  msgstr ""
357
 
358
  #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:279
359
+ #: inc/core/data.php:459 inc/core/data.php:523 inc/core/data.php:695
360
+ #: inc/core/data.php:846 inc/core/data.php:973
361
  msgid "Style"
362
  msgstr ""
363
 
371
  msgstr ""
372
 
373
  #: inc/core/data.php:148 inc/core/data.php:531 inc/core/data.php:610
374
+ #: inc/core/data.php:716
375
  msgid "Size"
376
  msgstr ""
377
 
380
  msgstr ""
381
 
382
  #: inc/core/data.php:154 inc/core/data.php:492 inc/core/data.php:553
383
+ #: inc/core/data.php:981
384
  msgid "Left"
385
  msgstr ""
386
 
387
+ #: inc/core/data.php:155 inc/core/data.php:554 inc/core/data.php:1913
388
+ #: inc/core/data.php:2051
389
  msgid "Center"
390
  msgstr ""
391
 
392
  #: inc/core/data.php:156 inc/core/data.php:493 inc/core/data.php:555
393
+ #: inc/core/data.php:982
394
  msgid "Right"
395
  msgstr ""
396
 
415
  #: inc/core/data.php:381 inc/core/data.php:409 inc/core/data.php:439
416
  #: inc/core/data.php:475 inc/core/data.php:500 inc/core/data.php:536
417
  #: inc/core/data.php:563 inc/core/data.php:579 inc/core/data.php:621
418
+ #: inc/core/data.php:651 inc/core/data.php:773 inc/core/data.php:817
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  #: inc/core/data.php:873 inc/core/data.php:910 inc/core/data.php:942
420
  #: inc/core/data.php:1044 inc/core/data.php:1060 inc/core/data.php:1112
421
  #: inc/core/data.php:1237 inc/core/data.php:1288 inc/core/data.php:1333
426
  #: inc/core/data.php:1831 inc/core/data.php:1950 inc/core/data.php:2088
427
  #: inc/core/data.php:2169 inc/core/data.php:2343 inc/core/data.php:2398
428
  #: inc/core/data.php:2444
429
+ msgid "Class"
430
+ msgstr ""
431
+
432
+ #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
433
+ #: inc/core/data.php:311 inc/core/data.php:329 inc/core/data.php:358
434
+ #: inc/core/data.php:382 inc/core/data.php:410 inc/core/data.php:440
435
+ #: inc/core/data.php:476 inc/core/data.php:501 inc/core/data.php:537
436
+ #: inc/core/data.php:564 inc/core/data.php:580 inc/core/data.php:622
437
+ #: inc/core/data.php:652 inc/core/data.php:774 inc/core/data.php:818
438
+ #: inc/core/data.php:874 inc/core/data.php:911 inc/core/data.php:943
439
+ #: inc/core/data.php:1045 inc/core/data.php:1061 inc/core/data.php:1113
440
+ #: inc/core/data.php:1238 inc/core/data.php:1289 inc/core/data.php:1334
441
+ #: inc/core/data.php:1433 inc/core/data.php:1472 inc/core/data.php:1542
442
+ #: inc/core/data.php:1564 inc/core/data.php:1595 inc/core/data.php:1628
443
+ #: inc/core/data.php:1644 inc/core/data.php:1674 inc/core/data.php:1694
444
+ #: inc/core/data.php:1721 inc/core/data.php:1742 inc/core/data.php:1787
445
+ #: inc/core/data.php:1832 inc/core/data.php:1951 inc/core/data.php:2089
446
+ #: inc/core/data.php:2170 inc/core/data.php:2344 inc/core/data.php:2399
447
+ #: inc/core/data.php:2445
448
  msgid "Extra CSS class"
449
  msgstr ""
450
 
499
  msgid "Tab name"
500
  msgstr ""
501
 
502
+ #: inc/core/data.php:230 inc/core/data.php:263 inc/core/data.php:791
503
+ #: inc/core/data.php:834 inc/core/data.php:1500
504
  msgid "Title"
505
  msgstr ""
506
 
619
  msgid "Folder 2"
620
  msgstr ""
621
 
622
+ #: inc/core/data.php:300 inc/core/data.php:640 inc/core/data.php:746
623
+ #: inc/core/data.php:797
624
  msgid "Icon"
625
  msgstr ""
626
 
696
  msgid "Spacer"
697
  msgstr ""
698
 
699
+ #: inc/core/data.php:376 inc/core/data.php:1095 inc/core/data.php:1152
700
+ #: inc/core/data.php:1271 inc/core/data.php:1322 inc/core/data.php:1366
701
+ #: inc/core/data.php:1518 inc/core/data.php:1775 inc/core/data.php:1814
702
+ #: inc/core/data.php:1897 inc/core/data.php:2017 inc/core/data.php:2154
703
+ #: inc/core/data.php:2371
704
  msgid "Height"
705
  msgstr ""
706
 
716
  msgid "Highlight"
717
  msgstr ""
718
 
719
+ #: inc/core/data.php:398 inc/core/data.php:701 inc/core/data.php:891
720
  msgid "Background"
721
  msgstr ""
722
 
724
  msgid "Highlighted text background color"
725
  msgstr ""
726
 
727
+ #: inc/core/data.php:405 inc/core/data.php:707 inc/core/data.php:897
728
  msgid "Text color"
729
  msgstr ""
730
 
915
  msgid "Select column width. This width will be calculated depend page width"
916
  msgstr ""
917
 
918
+ #: inc/core/data.php:616 inc/core/data.php:727
919
  msgid "Centered"
920
  msgstr ""
921
 
943
  msgid "You can upload custom icon for this list or pick a built-in icon"
944
  msgstr ""
945
 
946
+ #: inc/core/data.php:646 inc/core/data.php:752 inc/core/data.php:803
947
  msgid "Icon color"
948
  msgstr ""
949
 
950
+ #: inc/core/data.php:647 inc/core/data.php:753 inc/core/data.php:804
951
  msgid ""
952
  "This color will be applied to the selected icon. Does not works with "
953
  "uploaded icons"
978
  msgid "Button link"
979
  msgstr ""
980
 
981
+ #: inc/core/data.php:674 inc/core/data.php:1585
982
  msgid "Same tab"
983
  msgstr ""
984
 
985
+ #: inc/core/data.php:675 inc/core/data.php:1586
986
  msgid "New tab"
987
  msgstr ""
988
 
989
+ #: inc/core/data.php:678 inc/core/data.php:1589
990
  msgid "Target"
991
  msgstr ""
992
 
994
  msgid "Button link target"
995
  msgstr ""
996
 
997
+ #: inc/core/data.php:686
998
+ msgid "Ghost"
999
  msgstr ""
1000
 
1001
  #: inc/core/data.php:687 inc/core/data.php:840
1002
+ msgid "Soft"
1003
  msgstr ""
1004
 
1005
  #: inc/core/data.php:688 inc/core/data.php:841
1006
+ msgid "Glass"
1007
  msgstr ""
1008
 
1009
  #: inc/core/data.php:689 inc/core/data.php:842
1010
+ msgid "Bubbles"
1011
+ msgstr ""
1012
+
1013
+ #: inc/core/data.php:690 inc/core/data.php:843
1014
  msgid "Noise"
1015
  msgstr ""
1016
 
1017
+ #: inc/core/data.php:691
1018
  msgid "Stroked"
1019
  msgstr ""
1020
 
1021
+ #: inc/core/data.php:692
1022
  msgid "3D"
1023
  msgstr ""
1024
 
1025
+ #: inc/core/data.php:695
1026
  msgid "Button background style preset"
1027
  msgstr ""
1028
 
1029
+ #: inc/core/data.php:701
1030
  msgid "Button background color"
1031
  msgstr ""
1032
 
1033
+ #: inc/core/data.php:708
1034
  msgid "Button text color"
1035
  msgstr ""
1036
 
1037
+ #: inc/core/data.php:717
1038
  msgid "Button size"
1039
  msgstr ""
1040
 
1041
+ #: inc/core/data.php:722
1042
  msgid "Fluid"
1043
  msgstr ""
1044
 
1045
+ #: inc/core/data.php:722
1046
  msgid "Fluid buttons has 100% width"
1047
  msgstr ""
1048
 
1049
+ #: inc/core/data.php:727
1050
  msgid "Is button centered on the page"
1051
  msgstr ""
1052
 
1053
+ #: inc/core/data.php:732
1054
  msgid "Auto"
1055
  msgstr ""
1056
 
1057
+ #: inc/core/data.php:733
1058
  msgid "Round"
1059
  msgstr ""
1060
 
1061
+ #: inc/core/data.php:734
1062
  msgid "Square"
1063
  msgstr ""
1064
 
1065
+ #: inc/core/data.php:740 inc/core/data.php:868 inc/core/data.php:906
1066
  msgid "Radius"
1067
  msgstr ""
1068
 
1069
+ #: inc/core/data.php:741
1070
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1071
  msgstr ""
1072
 
1073
+ #: inc/core/data.php:747
1074
  msgid "You can upload custom icon for this button or pick a built-in icon"
1075
  msgstr ""
1076
 
1077
+ #: inc/core/data.php:758
1078
  msgid "Text shadow"
1079
  msgstr ""
1080
 
1081
+ #: inc/core/data.php:759
1082
  msgid "Button text shadow"
1083
  msgstr ""
1084
 
1085
+ #: inc/core/data.php:763
1086
  msgid "Description"
1087
  msgstr ""
1088
 
1089
+ #: inc/core/data.php:764
1090
  msgid ""
1091
  "Small description under button text. This option is incompatible with icon."
1092
  msgstr ""
1093
 
1094
+ #: inc/core/data.php:768
1095
  msgid "onClick"
1096
  msgstr ""
1097
 
1098
+ #: inc/core/data.php:769
1099
  msgid "Advanced JavaScript code for onClick action"
1100
  msgstr ""
1101
 
1102
+ #: inc/core/data.php:777
1103
  msgid "Button text"
1104
  msgstr ""
1105
 
1106
+ #: inc/core/data.php:778
1107
  msgid "Styled button"
1108
  msgstr ""
1109
 
1110
+ #: inc/core/data.php:784
1111
  msgid "Service"
1112
  msgstr ""
1113
 
1114
+ #: inc/core/data.php:790 inc/core/shortcodes.php:430
1115
  msgid "Service title"
1116
  msgstr ""
1117
 
1118
+ #: inc/core/data.php:792
1119
  msgid "Service name"
1120
  msgstr ""
1121
 
1122
+ #: inc/core/data.php:798
1123
  msgid "You can upload custom icon for this box"
1124
  msgstr ""
1125
 
1126
+ #: inc/core/data.php:812
1127
  msgid "Icon size"
1128
  msgstr ""
1129
 
1130
+ #: inc/core/data.php:813
1131
  msgid "Size of the uploaded icon in pixels"
1132
  msgstr ""
1133
 
1134
+ #: inc/core/data.php:821
1135
  msgid "Service description"
1136
  msgstr ""
1137
 
1138
+ #: inc/core/data.php:822
1139
  msgid "Service box with title"
1140
  msgstr ""
1141
 
1142
+ #: inc/core/data.php:833
1143
  msgid "Box title"
1144
  msgstr ""
1145
 
1146
+ #: inc/core/data.php:834
1147
  msgid "Text for the box title"
1148
  msgstr ""
1149
 
1150
+ #: inc/core/data.php:847
1151
  msgid "Box style preset"
1152
  msgstr ""
1153
 
1154
+ #: inc/core/data.php:853 inc/core/generator-views.php:99
1155
  msgid "Color"
1156
  msgstr ""
1157
 
1158
+ #: inc/core/data.php:854
1159
  msgid "Color for the box title and borders"
1160
  msgstr ""
1161
 
1162
+ #: inc/core/data.php:860
1163
  msgid "Title text color"
1164
  msgstr ""
1165
 
1166
+ #: inc/core/data.php:860
1167
  msgid "Color for the box title text"
1168
  msgstr ""
1169
 
1170
+ #: inc/core/data.php:869
1171
  msgid "Box corners radius"
1172
  msgstr ""
1173
 
1174
+ #: inc/core/data.php:877
1175
  msgid "Box content"
1176
  msgstr ""
1177
 
1178
+ #: inc/core/data.php:878
1179
  msgid "Colored box with caption"
1180
  msgstr ""
1181
 
1182
+ #: inc/core/data.php:883
1183
  msgid "Note"
1184
  msgstr ""
1185
 
1186
+ #: inc/core/data.php:891
1187
  msgid "Note background color"
1188
  msgstr ""
1189
 
1190
+ #: inc/core/data.php:898
1191
  msgid "Note text color"
1192
  msgstr ""
1193
 
1194
+ #: inc/core/data.php:906
1195
  msgid "Note corners radius"
1196
  msgstr ""
1197
 
1198
+ #: inc/core/data.php:914
1199
  msgid "Note text"
1200
  msgstr ""
1201
 
1202
+ #: inc/core/data.php:915
1203
  msgid "Colored box"
1204
  msgstr ""
1205
 
1206
+ #: inc/core/data.php:920 inc/core/data.php:1864 inc/core/data.php:1983
1207
+ #: inc/core/data.php:2121
1208
  msgid "Lightbox"
1209
  msgstr ""
1210
 
1211
+ #: inc/core/data.php:927
1212
  msgid "Iframe"
1213
  msgstr ""
1214
 
1215
+ #: inc/core/data.php:928
1216
  msgid "Image"
1217
  msgstr ""
1218
 
1219
+ #: inc/core/data.php:929
1220
  msgid "Inline (html content)"
1221
  msgstr ""
1222
 
1223
+ #: inc/core/data.php:932
1224
  msgid "Content type"
1225
  msgstr ""
1226
 
1227
+ #: inc/core/data.php:933
1228
  msgid "Select type of the lightbox window content"
1229
  msgstr ""
1230
 
1231
+ #: inc/core/data.php:937
1232
  msgid "Content source"
1233
  msgstr ""
1234
 
1235
+ #: inc/core/data.php:938
1236
  msgid ""
1237
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1238
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
1242
  "(iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1243
  msgstr ""
1244
 
1245
+ #: inc/core/data.php:946
1246
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1247
  msgstr ""
1248
 
1249
+ #: inc/core/data.php:947
1250
  msgid "Lightbox window with custom content"
1251
  msgstr ""
1252
 
1253
+ #: inc/core/data.php:952
1254
  msgid "Tooltip"
1255
  msgstr ""
1256
 
1257
+ #: inc/core/data.php:959
1258
  msgid "Basic: Light"
1259
  msgstr ""
1260
 
1261
+ #: inc/core/data.php:960
1262
  msgid "Basic: Dark"
1263
  msgstr ""
1264
 
1265
+ #: inc/core/data.php:961
1266
  msgid "Basic: Yellow"
1267
  msgstr ""
1268
 
1269
+ #: inc/core/data.php:962
1270
  msgid "Basic: Green"
1271
  msgstr ""
1272
 
1273
+ #: inc/core/data.php:963
1274
  msgid "Basic: Red"
1275
  msgstr ""
1276
 
1277
+ #: inc/core/data.php:964
1278
  msgid "Basic: Blue"
1279
  msgstr ""
1280
 
1281
+ #: inc/core/data.php:965
1282
  msgid "Youtube"
1283
  msgstr ""
1284
 
1285
+ #: inc/core/data.php:966
1286
  msgid "Tipsy"
1287
  msgstr ""
1288
 
1289
+ #: inc/core/data.php:967
1290
  msgid "Bootstrap"
1291
  msgstr ""
1292
 
1293
+ #: inc/core/data.php:968
1294
  msgid "jTools"
1295
  msgstr ""
1296
 
1297
+ #: inc/core/data.php:969
1298
  msgid "Tipped"
1299
  msgstr ""
1300
 
1301
+ #: inc/core/data.php:970
1302
  msgid "Cluetip"
1303
  msgstr ""
1304
 
1305
+ #: inc/core/data.php:974
1306
  msgid "Tooltip window style"
1307
  msgstr ""
1308
 
1309
+ #: inc/core/data.php:979
1310
  msgid "Top"
1311
  msgstr ""
1312
 
1313
+ #: inc/core/data.php:980
1314
  msgid "Bottom"
1315
  msgstr ""
1316
 
1317
+ #: inc/core/data.php:985
1318
  msgid "Position"
1319
  msgstr ""
1320
 
1321
+ #: inc/core/data.php:986
1322
  msgid "Tooltip position"
1323
  msgstr ""
1324
 
1325
+ #: inc/core/data.php:991
1326
  msgid "Shadow"
1327
  msgstr ""
1328
 
1329
+ #: inc/core/data.php:992
1330
  msgid ""
1331
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1332
  "blue, green etc."
1333
  msgstr ""
1334
 
1335
+ #: inc/core/data.php:997
1336
  msgid "Rounded corners"
1337
  msgstr ""
1338
 
1339
+ #: inc/core/data.php:998
1340
  msgid ""
1341
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1342
  "blue, green etc."
1343
  msgstr ""
1344
 
1345
+ #: inc/core/data.php:1012
1346
  msgid "Font size"
1347
  msgstr ""
1348
 
1349
+ #: inc/core/data.php:1013
1350
  msgid "Tooltip font size"
1351
  msgstr ""
1352
 
1353
+ #: inc/core/data.php:1017
1354
  msgid "Tooltip title"
1355
  msgstr ""
1356
 
1357
+ #: inc/core/data.php:1018
1358
  msgid ""
1359
  "Enter title for tooltip window. Leave this field empty to hide the title"
1360
  msgstr ""
1361
 
1362
+ #: inc/core/data.php:1021 inc/core/shortcodes.php:508
1363
  msgid "Tooltip text"
1364
  msgstr ""
1365
 
1366
+ #: inc/core/data.php:1022
1367
  msgid "Tooltip content"
1368
  msgstr ""
1369
 
1370
+ #: inc/core/data.php:1023
1371
  msgid "Enter tooltip content here"
1372
  msgstr ""
1373
 
1374
+ #: inc/core/data.php:1028
1375
  msgid "Show and hide on mouse hover"
1376
  msgstr ""
1377
 
1378
+ #: inc/core/data.php:1029
1379
  msgid "Show and hide by mouse click"
1380
  msgstr ""
1381
 
1382
+ #: inc/core/data.php:1030
1383
  msgid "Always visible"
1384
  msgstr ""
1385
 
1386
+ #: inc/core/data.php:1033
1387
  msgid "Behavior"
1388
  msgstr ""
1389
 
1390
+ #: inc/core/data.php:1034
1391
  msgid "Select tooltip behavior"
1392
  msgstr ""
1393
 
1394
+ #: inc/core/data.php:1039
1395
  msgid "Close button"
1396
  msgstr ""
1397
 
1398
+ #: inc/core/data.php:1040
1399
  msgid "Show close button"
1400
  msgstr ""
1401
 
1402
+ #: inc/core/data.php:1048
1403
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1404
  msgstr ""
1405
 
1406
+ #: inc/core/data.php:1049
1407
  msgid "Tooltip window with custom content"
1408
  msgstr ""
1409
 
1410
+ #: inc/core/data.php:1054
1411
  msgid "Private"
1412
  msgstr ""
1413
 
1414
+ #: inc/core/data.php:1064
1415
  msgid "Private note text"
1416
  msgstr ""
1417
 
1418
+ #: inc/core/data.php:1065
1419
  msgid "Private note for post authors"
1420
  msgstr ""
1421
 
1422
+ #: inc/core/data.php:1070
1423
  msgid "YouTube"
1424
  msgstr ""
1425
 
1426
+ #: inc/core/data.php:1077 inc/core/data.php:1129 inc/core/data.php:1254
1427
+ #: inc/core/data.php:1304 inc/core/data.php:1348 inc/core/data.php:1660
1428
+ #: inc/core/data.php:1757
1429
  msgid "Url"
1430
  msgstr ""
1431
 
1432
+ #: inc/core/data.php:1078 inc/core/data.php:1130
1433
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1434
  msgstr ""
1435
 
1436
+ #: inc/core/data.php:1086 inc/core/data.php:1143 inc/core/data.php:1262
1437
+ #: inc/core/data.php:1313 inc/core/data.php:1357 inc/core/data.php:1454
1438
+ #: inc/core/data.php:1509 inc/core/data.php:1766 inc/core/data.php:1805
1439
+ #: inc/core/data.php:1889 inc/core/data.php:2008 inc/core/data.php:2146
1440
+ #: inc/core/data.php:2362
1441
  msgid "Width"
1442
  msgstr ""
1443
 
1444
+ #: inc/core/data.php:1087 inc/core/data.php:1144 inc/core/data.php:1263
1445
+ #: inc/core/data.php:1314 inc/core/data.php:1358 inc/core/data.php:1510
1446
  msgid "Player width"
1447
  msgstr ""
1448
 
1449
+ #: inc/core/data.php:1096 inc/core/data.php:1153 inc/core/data.php:1272
1450
+ #: inc/core/data.php:1323 inc/core/data.php:1367 inc/core/data.php:1519
1451
  msgid "Player height"
1452
  msgstr ""
1453
 
1454
+ #: inc/core/data.php:1101 inc/core/data.php:1158 inc/core/data.php:1277
1455
+ #: inc/core/data.php:1328 inc/core/data.php:1372 inc/core/data.php:1781
1456
+ #: inc/core/data.php:1820 inc/core/data.php:1902 inc/core/data.php:2023
1457
  msgid "Responsive"
1458
  msgstr ""
1459
 
1460
+ #: inc/core/data.php:1102 inc/core/data.php:1159 inc/core/data.php:1278
1461
+ #: inc/core/data.php:1329 inc/core/data.php:1373
1462
  msgid "Ignore width and height parameters and make player responsive"
1463
  msgstr ""
1464
 
1465
+ #: inc/core/data.php:1107 inc/core/data.php:1192 inc/core/data.php:1283
1466
+ #: inc/core/data.php:1378 inc/core/data.php:1460 inc/core/data.php:1530
1467
+ #: inc/core/data.php:1937 inc/core/data.php:2075
1468
  msgid "Autoplay"
1469
  msgstr ""
1470
 
1471
+ #: inc/core/data.php:1108 inc/core/data.php:1193 inc/core/data.php:1284
1472
  msgid "Play video automatically when page is loaded"
1473
  msgstr ""
1474
 
1475
+ #: inc/core/data.php:1116
1476
  msgid "YouTube video"
1477
  msgstr ""
1478
 
1479
+ #: inc/core/data.php:1122
1480
  msgid "YouTube Advanced"
1481
  msgstr ""
1482
 
1483
+ #: inc/core/data.php:1134
1484
  msgid "Playlist"
1485
  msgstr ""
1486
 
1487
+ #: inc/core/data.php:1135
1488
  msgid ""
1489
  "Value is a comma-separated list of video IDs to play. If you specify a "
1490
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
1491
  "path, and the videos specified in the playlist parameter will play thereafter"
1492
  msgstr ""
1493
 
1494
+ #: inc/core/data.php:1164
1495
  msgid "0 - Hide controls"
1496
  msgstr ""
1497
 
1498
+ #: inc/core/data.php:1165
1499
  msgid "1 - Show controls"
1500
  msgstr ""
1501
 
1502
+ #: inc/core/data.php:1166
1503
  msgid "2 - Show controls when playback is started"
1504
  msgstr ""
1505
 
1506
+ #: inc/core/data.php:1169 inc/core/data.php:1524
1507
  msgid "Controls"
1508
  msgstr ""
1509
 
1510
+ #: inc/core/data.php:1170
1511
  msgid "This parameter indicates whether the video player controls will display"
1512
  msgstr ""
1513
 
1514
+ #: inc/core/data.php:1175
1515
  msgid "0 - Do not hide controls"
1516
  msgstr ""
1517
 
1518
+ #: inc/core/data.php:1176
1519
  msgid "1 - Hide all controls on mouse out"
1520
  msgstr ""
1521
 
1522
+ #: inc/core/data.php:1177
1523
  msgid "2 - Hide progress bar on mouse out"
1524
  msgstr ""
1525
 
1526
+ #: inc/core/data.php:1180
1527
  msgid "Autohide"
1528
  msgstr ""
1529
 
1530
+ #: inc/core/data.php:1181
1531
  msgid ""
1532
  "This parameter indicates whether the video controls will automatically hide "
1533
  "after a video begins playing"
1534
  msgstr ""
1535
 
1536
+ #: inc/core/data.php:1186
1537
  msgid "Show title bar"
1538
  msgstr ""
1539
 
1540
+ #: inc/core/data.php:1187
1541
  msgid ""
1542
  "If you set the parameter value to NO, then the player will not display "
1543
  "information like the video title and uploader before the video starts "
1544
  "playing."
1545
  msgstr ""
1546
 
1547
+ #: inc/core/data.php:1198 inc/core/data.php:1466 inc/core/data.php:1536
1548
  msgid "Loop"
1549
  msgstr ""
1550
 
1551
+ #: inc/core/data.php:1199
1552
  msgid ""
1553
  "Setting of YES will cause the player to play the initial video again and "
1554
  "again"
1555
  msgstr ""
1556
 
1557
+ #: inc/core/data.php:1204
1558
  msgid "Related videos"
1559
  msgstr ""
1560
 
1561
+ #: inc/core/data.php:1205
1562
  msgid ""
1563
  "This parameter indicates whether the player should show related videos when "
1564
  "playback of the initial video ends"
1565
  msgstr ""
1566
 
1567
+ #: inc/core/data.php:1210
1568
  msgid "Show full-screen button"
1569
  msgstr ""
1570
 
1571
+ #: inc/core/data.php:1211
1572
  msgid ""
1573
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1574
  msgstr ""
1575
 
1576
+ #: inc/core/data.php:1217
1577
  msgid ""
1578
  "This parameter lets you use a YouTube player that does not show a YouTube "
1579
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
1582
  "mouse pointer hovers over the player"
1583
  msgstr ""
1584
 
1585
+ #: inc/core/data.php:1222
1586
  msgid "Dark theme"
1587
  msgstr ""
1588
 
1589
+ #: inc/core/data.php:1223
1590
  msgid "Light theme"
1591
  msgstr ""
1592
 
1593
+ #: inc/core/data.php:1226 inc/core/data.php:2393
1594
  msgid "Theme"
1595
  msgstr ""
1596
 
1597
+ #: inc/core/data.php:1227
1598
  msgid ""
1599
  "This parameter indicates whether the embedded player will display player "
1600
  "controls (like a play button or volume control) within a dark or light "
1601
  "control bar"
1602
  msgstr ""
1603
 
1604
+ #: inc/core/data.php:1232
1605
  msgid "Force HTTPS"
1606
  msgstr ""
1607
 
1608
+ #: inc/core/data.php:1233
1609
  msgid "Use HTTPS in player iframe"
1610
  msgstr ""
1611
 
1612
+ #: inc/core/data.php:1241
1613
  msgid "YouTube video player with advanced settings"
1614
  msgstr ""
1615
 
1616
+ #: inc/core/data.php:1247
1617
  msgid "Vimeo"
1618
  msgstr ""
1619
 
1620
+ #: inc/core/data.php:1254
1621
  msgid "Url of Vimeo page with video"
1622
  msgstr ""
1623
 
1624
+ #: inc/core/data.php:1292
1625
  msgid "Vimeo video"
1626
  msgstr ""
1627
 
1628
+ #: inc/core/data.php:1298
1629
  msgid "Screenr"
1630
  msgstr ""
1631
 
1632
+ #: inc/core/data.php:1305
1633
  msgid "Url of Screenr page with video"
1634
  msgstr ""
1635
 
1636
+ #: inc/core/data.php:1337
1637
  msgid "Screenr video"
1638
  msgstr ""
1639
 
1640
+ #: inc/core/data.php:1342
1641
  msgid "Dailymotion"
1642
  msgstr ""
1643
 
1644
+ #: inc/core/data.php:1349
1645
  msgid "Url of Dailymotion page with video"
1646
  msgstr ""
1647
 
1648
+ #: inc/core/data.php:1379
1649
  msgid ""
1650
  "Start the playback of the video automatically after the player load. May not "
1651
  "work on some mobile OS versions"
1652
  msgstr ""
1653
 
1654
+ #: inc/core/data.php:1384
1655
  msgid "Background color"
1656
  msgstr ""
1657
 
1658
+ #: inc/core/data.php:1385
1659
  msgid "HTML color of the background of controls elements"
1660
  msgstr ""
1661
 
1662
+ #: inc/core/data.php:1390
1663
  msgid "Foreground color"
1664
  msgstr ""
1665
 
1666
+ #: inc/core/data.php:1391
1667
  msgid "HTML color of the foreground of controls elements"
1668
  msgstr ""
1669
 
1670
+ #: inc/core/data.php:1396
1671
  msgid "Highlight color"
1672
  msgstr ""
1673
 
1674
+ #: inc/core/data.php:1397
1675
  msgid "HTML color of the controls elements' highlights"
1676
  msgstr ""
1677
 
1678
+ #: inc/core/data.php:1402
1679
  msgid "Show logo"
1680
  msgstr ""
1681
 
1682
+ #: inc/core/data.php:1403
1683
  msgid "Allows to hide or show the Dailymotion logo"
1684
  msgstr ""
1685
 
1686
+ #: inc/core/data.php:1415
1687
  msgid "Quality"
1688
  msgstr ""
1689
 
1690
+ #: inc/core/data.php:1416
1691
  msgid "Determines the quality that must be played by default if available"
1692
  msgstr ""
1693
 
1694
+ #: inc/core/data.php:1421
1695
  msgid "Show related videos"
1696
  msgstr ""
1697
 
1698
+ #: inc/core/data.php:1422
1699
  msgid "Show related videos at the end of the video"
1700
  msgstr ""
1701
 
1702
+ #: inc/core/data.php:1427
1703
  msgid "Show video info"
1704
  msgstr ""
1705
 
1706
+ #: inc/core/data.php:1428
1707
  msgid "Show videos info (title/author) on the start screen"
1708
  msgstr ""
1709
 
1710
+ #: inc/core/data.php:1436
1711
  msgid "Dailymotion video"
1712
  msgstr ""
1713
 
1714
+ #: inc/core/data.php:1441
1715
  msgid "Audio"
1716
  msgstr ""
1717
 
1718
+ #: inc/core/data.php:1448 inc/core/data.php:1488
1719
  msgid "File"
1720
  msgstr ""
1721
 
1722
+ #: inc/core/data.php:1449
1723
  msgid "Audio file url. Supported formats: mp3, ogg"
1724
  msgstr ""
1725
 
1726
+ #: inc/core/data.php:1455
1727
  msgid ""
1728
  "Player width. You can specify width in percents and player will be "
1729
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1730
  msgstr ""
1731
 
1732
+ #: inc/core/data.php:1461 inc/core/data.php:1531
1733
  msgid "Play file automatically when page is loaded"
1734
  msgstr ""
1735
 
1736
+ #: inc/core/data.php:1467 inc/core/data.php:1537
1737
  msgid "Repeat when playback is ended"
1738
  msgstr ""
1739
 
1740
+ #: inc/core/data.php:1475
1741
  msgid "Custom audio player"
1742
  msgstr ""
1743
 
1744
+ #: inc/core/data.php:1481
1745
  msgid "Video"
1746
  msgstr ""
1747
 
1748
+ #: inc/core/data.php:1489
1749
  msgid "Url to mp4/flv video-file"
1750
  msgstr ""
1751
 
1752
+ #: inc/core/data.php:1494
1753
  msgid "Poster"
1754
  msgstr ""
1755
 
1756
+ #: inc/core/data.php:1495
1757
  msgid "Url to poster image, that will be shown before playback"
1758
  msgstr ""
1759
 
1760
+ #: inc/core/data.php:1501
1761
  msgid "Player title"
1762
  msgstr ""
1763
 
1764
+ #: inc/core/data.php:1525
1765
  msgid "Show player controls (play/pause etc.) or not"
1766
  msgstr ""
1767
 
1768
+ #: inc/core/data.php:1545
1769
  msgid "Custom video player"
1770
  msgstr ""
1771
 
1772
+ #: inc/core/data.php:1551
1773
  msgid "Table"
1774
  msgstr ""
1775
 
1776
+ #: inc/core/data.php:1558
1777
  msgid "CSV file"
1778
  msgstr ""
1779
 
1780
+ #: inc/core/data.php:1559
1781
  msgid "Upload CSV file if you want to create HTML-table from file"
1782
  msgstr ""
1783
 
1784
+ #: inc/core/data.php:1567
1785
  msgid ""
1786
  "<table>\n"
1787
  "<tr>\n"
1795
  "</table>"
1796
  msgstr ""
1797
 
1798
+ #: inc/core/data.php:1568
1799
  msgid "Styled table from HTML or CSV file"
1800
  msgstr ""
1801
 
1802
+ #: inc/core/data.php:1573
1803
  msgid "Permalink"
1804
  msgstr ""
1805
 
1806
+ #: inc/core/data.php:1579 inc/core/data.php:2503
1807
  msgid "ID"
1808
  msgstr ""
1809
 
1810
+ #: inc/core/data.php:1580
1811
  msgid "Post or page ID"
1812
  msgstr ""
1813
 
1814
+ #: inc/core/data.php:1590
1815
  msgid "Link target. blank - link will be opened in new window/tab"
1816
  msgstr ""
1817
 
1818
+ #: inc/core/data.php:1599
1819
  msgid "Permalink to specified post/page"
1820
  msgstr ""
1821
 
1822
+ #: inc/core/data.php:1604
1823
  msgid "Members"
1824
  msgstr ""
1825
 
1826
+ #: inc/core/data.php:1609 inc/core/shortcodes.php:794
1827
  msgid "This content is for registered users only. Please %login%."
1828
  msgstr ""
1829
 
1830
+ #: inc/core/data.php:1610
1831
  msgid "Message"
1832
  msgstr ""
1833
 
1834
+ #: inc/core/data.php:1610
1835
  msgid "Message for not logged users"
1836
  msgstr ""
1837
 
1838
+ #: inc/core/data.php:1615
1839
  msgid "Box color"
1840
  msgstr ""
1841
 
1842
+ #: inc/core/data.php:1615
1843
  msgid "This color will applied only to box for not logged users"
1844
  msgstr ""
1845
 
1846
+ #: inc/core/data.php:1618 inc/core/shortcodes.php:797
1847
  msgid "login"
1848
  msgstr ""
1849
 
1850
+ #: inc/core/data.php:1619
1851
  msgid "Login link text"
1852
  msgstr ""
1853
 
1854
+ #: inc/core/data.php:1619
1855
  msgid "Text for the login link"
1856
  msgstr ""
1857
 
1858
+ #: inc/core/data.php:1623
1859
  msgid "Login link url"
1860
  msgstr ""
1861
 
1862
+ #: inc/core/data.php:1631
1863
  msgid "Content for logged members"
1864
  msgstr ""
1865
 
1866
+ #: inc/core/data.php:1632
1867
  msgid "Content for logged in members only"
1868
  msgstr ""
1869
 
1870
+ #: inc/core/data.php:1637
1871
  msgid "Guests"
1872
  msgstr ""
1873
 
1874
+ #: inc/core/data.php:1647
1875
  msgid "Content for guests"
1876
  msgstr ""
1877
 
1878
+ #: inc/core/data.php:1648
1879
  msgid "Content for guests only"
1880
  msgstr ""
1881
 
1882
+ #: inc/core/data.php:1653
1883
  msgid "RSS Feed"
1884
  msgstr ""
1885
 
1886
+ #: inc/core/data.php:1661
1887
  msgid "Url to RSS-feed"
1888
  msgstr ""
1889
 
1890
+ #: inc/core/data.php:1669 inc/core/data.php:1856 inc/core/data.php:1975
1891
+ #: inc/core/data.php:2113
1892
  msgid "Limit"
1893
  msgstr ""
1894
 
1895
+ #: inc/core/data.php:1669
1896
  msgid "Number of items to show"
1897
  msgstr ""
1898
 
1899
+ #: inc/core/data.php:1677
1900
  msgid "Feed grabber"
1901
  msgstr ""
1902
 
1903
+ #: inc/core/data.php:1682
1904
  msgid "Menu"
1905
  msgstr ""
1906
 
1907
+ #: inc/core/data.php:1689
1908
  msgid "Menu name"
1909
  msgstr ""
1910
 
1911
+ #: inc/core/data.php:1689
1912
  msgid "Custom menu name. Ex: Main menu"
1913
  msgstr ""
1914
 
1915
+ #: inc/core/data.php:1697
1916
  msgid "Custom menu by name"
1917
  msgstr ""
1918
 
1919
+ #: inc/core/data.php:1702
1920
  msgid "Sub pages"
1921
  msgstr ""
1922
 
1923
+ #: inc/core/data.php:1709 inc/core/data.php:1736
1924
  msgid "Depth"
1925
  msgstr ""
1926
 
1927
+ #: inc/core/data.php:1710
1928
  msgid "Max depth level of children pages"
1929
  msgstr ""
1930
 
1931
+ #: inc/core/data.php:1715
1932
  msgid "Parent ID"
1933
  msgstr ""
1934
 
1935
+ #: inc/core/data.php:1716
1936
  msgid "ID of the parent page. Leave blank to use current page"
1937
  msgstr ""
1938
 
1939
+ #: inc/core/data.php:1724
1940
  msgid "List of sub pages"
1941
  msgstr ""
1942
 
1943
+ #: inc/core/data.php:1729
1944
  msgid "Siblings"
1945
  msgstr ""
1946
 
1947
+ #: inc/core/data.php:1737
1948
  msgid "Max depth level"
1949
  msgstr ""
1950
 
1951
+ #: inc/core/data.php:1745
1952
  msgid "List of cureent page siblings"
1953
  msgstr ""
1954
 
1955
+ #: inc/core/data.php:1750
1956
  msgid "Document"
1957
  msgstr ""
1958
 
1959
+ #: inc/core/data.php:1758
1960
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1961
  msgstr ""
1962
 
1963
+ #: inc/core/data.php:1767
1964
  msgid "Viewer width"
1965
  msgstr ""
1966
 
1967
+ #: inc/core/data.php:1776
1968
  msgid "Viewer height"
1969
  msgstr ""
1970
 
1971
+ #: inc/core/data.php:1782
1972
  msgid "Ignore width and height parameters and make viewer responsive"
1973
  msgstr ""
1974
 
1975
+ #: inc/core/data.php:1790
1976
  msgid "Document viewer by Google"
1977
  msgstr ""
1978
 
1979
+ #: inc/core/data.php:1795
1980
  msgid "Gmap"
1981
  msgstr ""
1982
 
1983
+ #: inc/core/data.php:1806
1984
  msgid "Map width"
1985
  msgstr ""
1986
 
1987
+ #: inc/core/data.php:1815
1988
  msgid "Map height"
1989
  msgstr ""
1990
 
1991
+ #: inc/core/data.php:1821
1992
  msgid "Ignore width and height parameters and make map responsive"
1993
  msgstr ""
1994
 
1995
+ #: inc/core/data.php:1826
1996
  msgid "Marker"
1997
  msgstr ""
1998
 
1999
+ #: inc/core/data.php:1827
2000
  msgid "Address for the marker. You can type it in any language"
2001
  msgstr ""
2002
 
2003
+ #: inc/core/data.php:1835
2004
  msgid "Maps by Google"
2005
  msgstr ""
2006
 
2007
+ #: inc/core/data.php:1840
2008
  msgid "Slider"
2009
  msgstr ""
2010
 
2011
+ #: inc/core/data.php:1847 inc/core/data.php:1966 inc/core/data.php:2104
2012
  msgid "Source"
2013
  msgstr ""
2014
 
2015
+ #: inc/core/data.php:1848 inc/core/data.php:1967 inc/core/data.php:2105
2016
  msgid ""
2017
  "Choose images source. You can use images from Media library or retrieve it "
2018
  "from posts (thumbnails) posted under specified blog category. You can also "
2019
  "pick any custom taxonomy"
2020
  msgstr ""
2021
 
2022
+ #: inc/core/data.php:1857 inc/core/data.php:1976 inc/core/data.php:2114
2023
  msgid ""
2024
  "Maximum number of image source posts (for recent posts, category and custom "
2025
  "taxonomy)"
2026
  msgstr ""
2027
 
2028
+ #: inc/core/data.php:1863 inc/core/data.php:1982 inc/core/data.php:2120
2029
  msgid "Full-size image"
2030
  msgstr ""
2031
 
2032
+ #: inc/core/data.php:1865 inc/core/data.php:1984 inc/core/data.php:2122
2033
  msgid "Slide link (added in media editor)"
2034
  msgstr ""
2035
 
2036
+ #: inc/core/data.php:1866 inc/core/data.php:1985 inc/core/data.php:2123
2037
  msgid "Attachment page"
2038
  msgstr ""
2039
 
2040
+ #: inc/core/data.php:1867 inc/core/data.php:1986 inc/core/data.php:2124
2041
  msgid "Post permalink"
2042
  msgstr ""
2043
 
2044
+ #: inc/core/data.php:1870 inc/core/data.php:1989 inc/core/data.php:2127
2045
  msgid "Links"
2046
  msgstr ""
2047
 
2048
+ #: inc/core/data.php:1871 inc/core/data.php:1990 inc/core/data.php:2128
2049
  msgid "Select which links will be used for images in this gallery"
2050
  msgstr ""
2051
 
2052
+ #: inc/core/data.php:1876 inc/core/data.php:1995 inc/core/data.php:2133
2053
  msgid "Same window"
2054
  msgstr ""
2055
 
2056
+ #: inc/core/data.php:1877 inc/core/data.php:1996 inc/core/data.php:2134
2057
  msgid "New window"
2058
  msgstr ""
2059
 
2060
+ #: inc/core/data.php:1880 inc/core/data.php:1999 inc/core/data.php:2137
2061
  msgid "Links target"
2062
  msgstr ""
2063
 
2064
+ #: inc/core/data.php:1881 inc/core/data.php:2000 inc/core/data.php:2138
2065
  msgid "Open links in"
2066
  msgstr ""
2067
 
2068
+ #: inc/core/data.php:1889
2069
  msgid "Slider width (in pixels)"
2070
  msgstr ""
2071
 
2072
+ #: inc/core/data.php:1897
2073
  msgid "Slider height (in pixels)"
2074
  msgstr ""
2075
 
2076
+ #: inc/core/data.php:1903
2077
  msgid "Ignore width and height parameters and make slider responsive"
2078
  msgstr ""
2079
 
2080
+ #: inc/core/data.php:1908 inc/core/data.php:2046 inc/core/data.php:2164
2081
  msgid "Show titles"
2082
  msgstr ""
2083
 
2084
+ #: inc/core/data.php:1908
2085
  msgid "Display slide titles"
2086
  msgstr ""
2087
 
2088
+ #: inc/core/data.php:1913
2089
  msgid "Is slider centered on the page"
2090
  msgstr ""
2091
 
2092
+ #: inc/core/data.php:1918 inc/core/data.php:2056
2093
  msgid "Arrows"
2094
  msgstr ""
2095
 
2096
+ #: inc/core/data.php:1918 inc/core/data.php:2056
2097
  msgid "Show left and right arrows"
2098
  msgstr ""
2099
 
2100
+ #: inc/core/data.php:1923 inc/core/data.php:2061
2101
  msgid "Pagination"
2102
  msgstr ""
2103
 
2104
+ #: inc/core/data.php:1924 inc/core/data.php:2062
2105
  msgid "Show pagination"
2106
  msgstr ""
2107
 
2108
+ #: inc/core/data.php:1928 inc/core/data.php:2066
2109
  msgid "Mouse wheel control"
2110
  msgstr ""
2111
 
2112
+ #: inc/core/data.php:1929
2113
  msgid "Allow to change slides with mouse wheel"
2114
  msgstr ""
2115
 
2116
+ #: inc/core/data.php:1938
2117
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2118
  msgstr ""
2119
 
2120
+ #: inc/core/data.php:1946 inc/core/data.php:2084
2121
  msgid "Speed"
2122
  msgstr ""
2123
 
2124
+ #: inc/core/data.php:1946 inc/core/data.php:2084
2125
  msgid "Specify animation speed"
2126
  msgstr ""
2127
 
2128
+ #: inc/core/data.php:1954
2129
  msgid "Customizable image slider"
2130
  msgstr ""
2131
 
2132
+ #: inc/core/data.php:1959
2133
  msgid "Carousel"
2134
  msgstr ""
2135
 
2136
+ #: inc/core/data.php:2009
2137
  msgid "Carousel width (in pixels)"
2138
  msgstr ""
2139
 
2140
+ #: inc/core/data.php:2018
2141
  msgid "Carousel height (in pixels)"
2142
  msgstr ""
2143
 
2144
+ #: inc/core/data.php:2024
2145
  msgid "Ignore width and height parameters and make carousel responsive"
2146
  msgstr ""
2147
 
2148
+ #: inc/core/data.php:2032
2149
  msgid "Items to show"
2150
  msgstr ""
2151
 
2152
+ #: inc/core/data.php:2033
2153
  msgid "How much carousel items is visible"
2154
  msgstr ""
2155
 
2156
+ #: inc/core/data.php:2040
2157
  msgid "Scroll number"
2158
  msgstr ""
2159
 
2160
+ #: inc/core/data.php:2041
2161
  msgid "How much items are scrolled in one transition"
2162
  msgstr ""
2163
 
2164
+ #: inc/core/data.php:2046
2165
  msgid "Display titles for each item"
2166
  msgstr ""
2167
 
2168
+ #: inc/core/data.php:2051
2169
  msgid "Is carousel centered on the page"
2170
  msgstr ""
2171
 
2172
+ #: inc/core/data.php:2067
2173
  msgid "Allow to rotate carousel with mouse wheel"
2174
  msgstr ""
2175
 
2176
+ #: inc/core/data.php:2076
2177
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2178
  msgstr ""
2179
 
2180
+ #: inc/core/data.php:2092
2181
  msgid "Customizable image carousel"
2182
  msgstr ""
2183
 
2184
+ #: inc/core/data.php:2146
2185
  msgid "Single item width (in pixels)"
2186
  msgstr ""
2187
 
2188
+ #: inc/core/data.php:2154
2189
  msgid "Single item height (in pixels)"
2190
  msgstr ""
2191
 
2192
+ #: inc/core/data.php:2159
2193
  msgid "Never"
2194
  msgstr ""
2195
 
2196
+ #: inc/core/data.php:2160
2197
  msgid "On mouse over"
2198
  msgstr ""
2199
 
2200
+ #: inc/core/data.php:2161
2201
  msgid "Always"
2202
  msgstr ""
2203
 
2204
+ #: inc/core/data.php:2165
2205
  msgid "Title display mode"
2206
  msgstr ""
2207
 
2208
+ #: inc/core/data.php:2173
2209
  msgid "Customizable image gallery"
2210
  msgstr ""
2211
 
2212
+ #: inc/core/data.php:2178
2213
  msgid "Posts"
2214
  msgstr ""
2215
 
2216
+ #: inc/core/data.php:2183 inc/core/data.php:2610
2217
  msgid "Template"
2218
  msgstr ""
2219
 
2220
+ #: inc/core/data.php:2184
2221
  msgid ""
2222
  "<b>Do not change this field value if you do not understand description below."
2223
  "</b><br/>Relative path to the template file. Default templates is placed "
2230
  "%value>templates/list-loop.php</b> - unordered list with posts titles"
2231
  msgstr ""
2232
 
2233
+ #: inc/core/data.php:2188
2234
  msgid "Post ID's"
2235
  msgstr ""
2236
 
2237
+ #: inc/core/data.php:2189
2238
  msgid "Enter comma separated ID's of the posts that you want to show"
2239
  msgstr ""
2240
 
2241
+ #: inc/core/data.php:2197
2242
  msgid "Posts per page"
2243
  msgstr ""
2244
 
2245
+ #: inc/core/data.php:2198
2246
  msgid ""
2247
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2248
  msgstr ""
2249
 
2250
+ #: inc/core/data.php:2205
2251
  msgid "Post types"
2252
  msgstr ""
2253
 
2254
+ #: inc/core/data.php:2206
2255
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2256
  msgstr ""
2257
 
2258
+ #: inc/core/data.php:2212 inc/core/generator-views.php:123
2259
  msgid "Taxonomy"
2260
  msgstr ""
2261
 
2262
+ #: inc/core/data.php:2213
2263
  msgid "Select taxonomy to show posts from"
2264
  msgstr ""
2265
 
2266
+ #: inc/core/data.php:2220
2267
  msgid "Terms"
2268
  msgstr ""
2269
 
2270
+ #: inc/core/data.php:2221
2271
  msgid "Select terms to show posts from"
2272
  msgstr ""
2273
 
2274
+ #: inc/core/data.php:2226
2275
  msgid "Taxonomy term operator"
2276
  msgstr ""
2277
 
2278
+ #: inc/core/data.php:2227
2279
  msgid ""
2280
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2281
  "that is does not have any of selected terms<br/>AND - posts that have all "
2282
  "selected terms"
2283
  msgstr ""
2284
 
2285
+ #: inc/core/data.php:2234
2286
  msgid "Authors"
2287
  msgstr ""
2288
 
2289
+ #: inc/core/data.php:2235
2290
  msgid "Choose the authors whose posts you want to show"
2291
  msgstr ""
2292
 
2293
+ #: inc/core/data.php:2239
2294
  msgid "Meta key"
2295
  msgstr ""
2296
 
2297
+ #: inc/core/data.php:2240
2298
  msgid "Enter meta key name to show posts that have this key"
2299
  msgstr ""
2300
 
2301
+ #: inc/core/data.php:2247
2302
  msgid "Offset"
2303
  msgstr ""
2304
 
2305
+ #: inc/core/data.php:2248
2306
  msgid "Specify offset to start posts loop not from first post"
2307
  msgstr ""
2308
 
2309
+ #: inc/core/data.php:2253
2310
  msgid "Descending"
2311
  msgstr ""
2312
 
2313
+ #: inc/core/data.php:2254
2314
  msgid "Ascending"
2315
  msgstr ""
2316
 
2317
+ #: inc/core/data.php:2257
2318
  msgid "Order"
2319
  msgstr ""
2320
 
2321
+ #: inc/core/data.php:2258
2322
  msgid "Posts order"
2323
  msgstr ""
2324
 
2325
+ #: inc/core/data.php:2264 inc/core/data.php:2481 inc/core/data.php:2554
2326
+ #: inc/core/data.php:2596
2327
  msgid "Post ID"
2328
  msgstr ""
2329
 
2330
+ #: inc/core/data.php:2265 inc/core/data.php:2555
2331
  msgid "Post author"
2332
  msgstr ""
2333
 
2334
+ #: inc/core/data.php:2266 inc/core/data.php:2559
2335
  msgid "Post title"
2336
  msgstr ""
2337
 
2338
+ #: inc/core/data.php:2267
2339
  msgid "Post slug"
2340
  msgstr ""
2341
 
2342
+ #: inc/core/data.php:2268
2343
  msgid "Date"
2344
  msgstr ""
2345
 
2346
+ #: inc/core/data.php:2268
2347
  msgid "Last modified date"
2348
  msgstr ""
2349
 
2350
+ #: inc/core/data.php:2269 inc/core/data.php:2279 inc/core/data.php:2568
2351
  msgid "Post parent"
2352
  msgstr ""
2353
 
2354
+ #: inc/core/data.php:2270
2355
  msgid "Random"
2356
  msgstr ""
2357
 
2358
+ #: inc/core/data.php:2270
2359
  msgid "Comments number"
2360
  msgstr ""
2361
 
2362
+ #: inc/core/data.php:2271 inc/core/data.php:2570
2363
  msgid "Menu order"
2364
  msgstr ""
2365
 
2366
+ #: inc/core/data.php:2271
2367
  msgid "Meta key values"
2368
  msgstr ""
2369
 
2370
+ #: inc/core/data.php:2274
2371
  msgid "Order by"
2372
  msgstr ""
2373
 
2374
+ #: inc/core/data.php:2275
2375
  msgid "Order posts by"
2376
  msgstr ""
2377
 
2378
+ #: inc/core/data.php:2280
2379
  msgid "Show childrens of entered post (enter post ID)"
2380
  msgstr ""
2381
 
2382
+ #: inc/core/data.php:2285
2383
  msgid "Published"
2384
  msgstr ""
2385
 
2386
+ #: inc/core/data.php:2286
2387
  msgid "Pending"
2388
  msgstr ""
2389
 
2390
+ #: inc/core/data.php:2287
2391
  msgid "Draft"
2392
  msgstr ""
2393
 
2394
+ #: inc/core/data.php:2288
2395
  msgid "Auto-draft"
2396
  msgstr ""
2397
 
2398
+ #: inc/core/data.php:2289
2399
  msgid "Future post"
2400
  msgstr ""
2401
 
2402
+ #: inc/core/data.php:2290
2403
  msgid "Private post"
2404
  msgstr ""
2405
 
2406
+ #: inc/core/data.php:2291
2407
  msgid "Inherit"
2408
  msgstr ""
2409
 
2410
+ #: inc/core/data.php:2292
2411
  msgid "Trashed"
2412
  msgstr ""
2413
 
2414
+ #: inc/core/data.php:2293 inc/core/data.php:2377
2415
  msgid "Any"
2416
  msgstr ""
2417
 
2418
+ #: inc/core/data.php:2296 inc/core/data.php:2561
2419
  msgid "Post status"
2420
  msgstr ""
2421
 
2422
+ #: inc/core/data.php:2297
2423
  msgid "Show only posts with selected status"
2424
  msgstr ""
2425
 
2426
+ #: inc/core/data.php:2302
2427
  msgid "Ignore sticky"
2428
  msgstr ""
2429
 
2430
+ #: inc/core/data.php:2303
2431
  msgid "Select Yes to ignore posts that is sticked"
2432
  msgstr ""
2433
 
2434
+ #: inc/core/data.php:2306
2435
  msgid "Custom posts query with customizable template"
2436
  msgstr ""
2437
 
2438
+ #: inc/core/data.php:2311
2439
  msgid "Dummy text"
2440
  msgstr ""
2441
 
2442
+ #: inc/core/data.php:2318
2443
  msgid "Paragraphs"
2444
  msgstr ""
2445
 
2446
+ #: inc/core/data.php:2319
2447
  msgid "Words"
2448
  msgstr ""
2449
 
2450
+ #: inc/core/data.php:2320
2451
  msgid "Bytes"
2452
  msgstr ""
2453
 
2454
+ #: inc/core/data.php:2323
2455
  msgid "What"
2456
  msgstr ""
2457
 
2458
+ #: inc/core/data.php:2324
2459
  msgid "What to generate"
2460
  msgstr ""
2461
 
2462
+ #: inc/core/data.php:2332
2463
  msgid "Amount"
2464
  msgstr ""
2465
 
2466
+ #: inc/core/data.php:2333
2467
  msgid ""
2468
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2469
  msgstr ""
2470
 
2471
+ #: inc/core/data.php:2338
2472
  msgid "Cache"
2473
  msgstr ""
2474
 
2475
+ #: inc/core/data.php:2339
2476
  msgid ""
2477
  "Generated text will be cached. Be careful with this option. If you disable "
2478
  "it and insert many dummy_text shortcodes the page load time will be highly "
2479
  "increased"
2480
  msgstr ""
2481
 
2482
+ #: inc/core/data.php:2347
2483
  msgid "Text placeholder"
2484
  msgstr ""
2485
 
2486
+ #: inc/core/data.php:2352 inc/core/shortcodes.php:1302
2487
  msgid "Dummy image"
2488
  msgstr ""
2489
 
2490
+ #: inc/core/data.php:2363
2491
  msgid "Image width"
2492
  msgstr ""
2493
 
2494
+ #: inc/core/data.php:2372
2495
  msgid "Image height"
2496
  msgstr ""
2497
 
2498
+ #: inc/core/data.php:2378
2499
  msgid "Abstract"
2500
  msgstr ""
2501
 
2502
+ #: inc/core/data.php:2379
2503
  msgid "Animals"
2504
  msgstr ""
2505
 
2506
+ #: inc/core/data.php:2380
2507
  msgid "Business"
2508
  msgstr ""
2509
 
2510
+ #: inc/core/data.php:2381
2511
  msgid "Cats"
2512
  msgstr ""
2513
 
2514
+ #: inc/core/data.php:2382
2515
  msgid "City"
2516
  msgstr ""
2517
 
2518
+ #: inc/core/data.php:2383
2519
  msgid "Food"
2520
  msgstr ""
2521
 
2522
+ #: inc/core/data.php:2384
2523
  msgid "Night life"
2524
  msgstr ""
2525
 
2526
+ #: inc/core/data.php:2385
2527
  msgid "Fashion"
2528
  msgstr ""
2529
 
2530
+ #: inc/core/data.php:2386
2531
  msgid "People"
2532
  msgstr ""
2533
 
2534
+ #: inc/core/data.php:2387
2535
  msgid "Nature"
2536
  msgstr ""
2537
 
2538
+ #: inc/core/data.php:2388
2539
  msgid "Sports"
2540
  msgstr ""
2541
 
2542
+ #: inc/core/data.php:2389
2543
  msgid "Technics"
2544
  msgstr ""
2545
 
2546
+ #: inc/core/data.php:2390
2547
  msgid "Transport"
2548
  msgstr ""
2549
 
2550
+ #: inc/core/data.php:2394
2551
  msgid "Select the theme for this image"
2552
  msgstr ""
2553
 
2554
+ #: inc/core/data.php:2402
2555
  msgid "Image placeholder with random image"
2556
  msgstr ""
2557
 
2558
+ #: inc/core/data.php:2407 inc/core/data.php:2415
2559
  msgid "Animation"
2560
  msgstr ""
2561
 
2562
+ #: inc/core/data.php:2416
2563
  msgid "Select animation type"
2564
  msgstr ""
2565
 
2566
+ #: inc/core/data.php:2424
2567
  msgid "Duration"
2568
  msgstr ""
2569
 
2570
+ #: inc/core/data.php:2425
2571
  msgid "Animation duration (seconds)"
2572
  msgstr ""
2573
 
2574
+ #: inc/core/data.php:2433
2575
  msgid "Delay"
2576
  msgstr ""
2577
 
2578
+ #: inc/core/data.php:2434
2579
  msgid "Animation delay (seconds)"
2580
  msgstr ""
2581
 
2582
+ #: inc/core/data.php:2439
2583
  msgid "Inline"
2584
  msgstr ""
2585
 
2586
+ #: inc/core/data.php:2440
2587
  msgid ""
2588
  "This parameter determines what HTML tag will be used for animation wrapper. "
2589
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
2590
  "of DIV. Useful for inline animations, like buttons"
2591
  msgstr ""
2592
 
2593
+ #: inc/core/data.php:2448
2594
  msgid "Animated content"
2595
  msgstr ""
2596
 
2597
+ #: inc/core/data.php:2449
2598
  msgid "Wrapper for animation. Any nested element will be animated"
2599
  msgstr ""
2600
 
2601
+ #: inc/core/data.php:2455
2602
  msgid "Meta"
2603
  msgstr ""
2604
 
2605
+ #: inc/core/data.php:2461
2606
  msgid "Key"
2607
  msgstr ""
2608
 
2609
+ #: inc/core/data.php:2462
2610
  msgid "Meta key name"
2611
  msgstr ""
2612
 
2613
+ #: inc/core/data.php:2467 inc/core/data.php:2519 inc/core/data.php:2582
2614
  msgid "This text will be shown if data is not found"
2615
  msgstr ""
2616
 
2617
+ #: inc/core/data.php:2471 inc/core/data.php:2523 inc/core/data.php:2586
2618
  msgid "Before"
2619
  msgstr ""
2620
 
2621
+ #: inc/core/data.php:2472 inc/core/data.php:2524 inc/core/data.php:2587
2622
  msgid "This content will be shown before the value"
2623
  msgstr ""
2624
 
2625
+ #: inc/core/data.php:2476 inc/core/data.php:2528 inc/core/data.php:2591
2626
  msgid "After"
2627
  msgstr ""
2628
 
2629
+ #: inc/core/data.php:2477 inc/core/data.php:2529 inc/core/data.php:2592
2630
  msgid "This content will be shown after the value"
2631
  msgstr ""
2632
 
2633
+ #: inc/core/data.php:2482 inc/core/data.php:2597
2634
  msgid ""
2635
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2636
  "current post. Current post ID may not work in Live Preview mode"
2637
  msgstr ""
2638
 
2639
+ #: inc/core/data.php:2486 inc/core/data.php:2538 inc/core/data.php:2601
2640
  msgid "Filter"
2641
  msgstr ""
2642
 
2643
+ #: inc/core/data.php:2487 inc/core/data.php:2539 inc/core/data.php:2602
2644
  msgid ""
2645
  "You can apply custom filter to the retrieved value. Enter here function "
2646
  "name. Your function must accept one argument and return modified value. "
2647
  "Example function: "
2648
  msgstr ""
2649
 
2650
+ #: inc/core/data.php:2490
2651
  msgid "Post meta"
2652
  msgstr ""
2653
 
2654
+ #: inc/core/data.php:2495
2655
  msgid "User"
2656
  msgstr ""
2657
 
2658
+ #: inc/core/data.php:2502
2659
  msgid "Display name"
2660
  msgstr ""
2661
 
2662
+ #: inc/core/data.php:2504
2663
  msgid "Login"
2664
  msgstr ""
2665
 
2666
+ #: inc/core/data.php:2505
2667
  msgid "Nice name"
2668
  msgstr ""
2669
 
2670
+ #: inc/core/data.php:2506
2671
  msgid "Email"
2672
  msgstr ""
2673
 
2674
+ #: inc/core/data.php:2507
2675
  msgid "URL"
2676
  msgstr ""
2677
 
2678
+ #: inc/core/data.php:2508
2679
  msgid "Registered"
2680
  msgstr ""
2681
 
2682
+ #: inc/core/data.php:2509
2683
  msgid "Activation key"
2684
  msgstr ""
2685
 
2686
+ #: inc/core/data.php:2510
2687
  msgid "Status"
2688
  msgstr ""
2689
 
2690
+ #: inc/core/data.php:2513 inc/core/data.php:2576
2691
  msgid "Field"
2692
  msgstr ""
2693
 
2694
+ #: inc/core/data.php:2514
2695
  msgid "User data field name"
2696
  msgstr ""
2697
 
2698
+ #: inc/core/data.php:2533
2699
  msgid "User ID"
2700
  msgstr ""
2701
 
2702
+ #: inc/core/data.php:2534
2703
  msgid ""
2704
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2705
  "current user"
2706
  msgstr ""
2707
 
2708
+ #: inc/core/data.php:2542
2709
  msgid "User data"
2710
  msgstr ""
2711
 
2712
+ #: inc/core/data.php:2547
2713
  msgid "Post"
2714
  msgstr ""
2715
 
2716
+ #: inc/core/data.php:2556 inc/core/data.php:2557
2717
  msgid "Post date"
2718
  msgstr ""
2719
 
2720
+ #: inc/core/data.php:2558
2721
  msgid "Post content"
2722
  msgstr ""
2723
 
2724
+ #: inc/core/data.php:2560
2725
  msgid "Post excerpt"
2726
  msgstr ""
2727
 
2728
+ #: inc/core/data.php:2562
2729
  msgid "Comment status"
2730
  msgstr ""
2731
 
2732
+ #: inc/core/data.php:2563
2733
  msgid "Ping status"
2734
  msgstr ""
2735
 
2736
+ #: inc/core/data.php:2564
2737
  msgid "Post name"
2738
  msgstr ""
2739
 
2740
+ #: inc/core/data.php:2565 inc/core/data.php:2566
2741
  msgid "Post modified"
2742
  msgstr ""
2743
 
2744
+ #: inc/core/data.php:2567
2745
  msgid "Filtered post content"
2746
  msgstr ""
2747
 
2748
+ #: inc/core/data.php:2569
2749
  msgid "GUID"
2750
  msgstr ""
2751
 
2752
+ #: inc/core/data.php:2571
2753
  msgid "Post type"
2754
  msgstr ""
2755
 
2756
+ #: inc/core/data.php:2572
2757
  msgid "Post mime type"
2758
  msgstr ""
2759
 
2760
+ #: inc/core/data.php:2573
2761
  msgid "Comment count"
2762
  msgstr ""
2763
 
2764
+ #: inc/core/data.php:2577
2765
  msgid "Post data field name"
2766
  msgstr ""
2767
 
2768
+ #: inc/core/data.php:2605
2769
  msgid "Post data"
2770
  msgstr ""
2771
 
2772
+ #: inc/core/data.php:2616
2773
  msgid "Template name"
2774
  msgstr ""
2775
 
2776
+ #: inc/core/data.php:2617
2777
  #, php-format
2778
  msgid ""
2779
  "Use template file name (with optional .php extension). If you need to use "
2781
  "%s"
2782
  msgstr ""
2783
 
2784
+ #: inc/core/data.php:2620
2785
  msgid "Theme template"
2786
  msgstr ""
2787
 
2949
  msgid "Preview"
2950
  msgstr ""
2951
 
2952
+ #: inc/core/generator.php:203 inc/core/tools.php:883
2953
  msgid "Access denied"
2954
  msgstr ""
2955
 
2966
  msgstr ""
2967
 
2968
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
2969
+ #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:895
2970
  #: inc/core/widget.php:14 inc/core/widget.php:40
2971
  msgid "Shortcodes Ultimate"
2972
  msgstr ""
3033
  msgid "Custom CSS"
3034
  msgstr ""
3035
 
3036
+ #: inc/core/load.php:113 inc/core/load.php:114 inc/core/load.php:217
3037
  msgid "Examples"
3038
  msgstr ""
3039
 
3049
  msgid "Supercharge your WordPress theme with mega pack of shortcodes"
3050
  msgstr ""
3051
 
3052
+ #: inc/core/load.php:218
3053
  msgid "Where to start?"
3054
  msgstr ""
3055
 
3127
  msgid "please specify template name"
3128
  msgstr ""
3129
 
3130
+ #: inc/core/tools.php:802
3131
  msgid "Example code does not found, please check it later"
3132
  msgstr ""
3133
 
3134
+ #: inc/core/tools.php:818
3135
  msgid "Get the code"
3136
  msgstr ""
3137
 
3138
+ #: inc/core/tools.php:892
3139
  msgid "Slide link"
3140
  msgstr ""
3141
 
3142
+ #: inc/core/tools.php:895
3143
  msgid ""
3144
  "Use this field to add custom links to slides used with Slider, Carousel and "
3145
  "Custom Gallery shortcodes"
readme.txt CHANGED
@@ -106,13 +106,17 @@ Upgrade normally
106
 
107
  == Changelog ==
108
 
 
 
 
 
109
  = 4.7.1 =
110
- * Slovak language
111
  * New shortcode [dailymotion]
112
  * YouTube (advanced) can now use https protocol
113
  * Additional help notes in Shortcode Generator
 
114
 
115
- = 4.7.0 =
116
  * Long-awaited feature: slider, carousel and custom_gallery links can now be open with lightbox
117
  * Long-awaited feature: custom links in slider, carousel and custom_gallery shortcodes
118
  * Fixed https bug in FontAwesome enqueue
106
 
107
  == Changelog ==
108
 
109
+ = 4.7.2 =
110
+ * New Ghost style for [button]
111
+ * Minor UI fixes (for WP 3.9+)
112
+
113
  = 4.7.1 =
 
114
  * New shortcode [dailymotion]
115
  * YouTube (advanced) can now use https protocol
116
  * Additional help notes in Shortcode Generator
117
+ * Slovak language
118
 
119
+ = 4.7 =
120
  * Long-awaited feature: slider, carousel and custom_gallery links can now be open with lightbox
121
  * Long-awaited feature: custom links in slider, carousel and custom_gallery shortcodes
122
  * Fixed https bug in FontAwesome enqueue
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.7.1
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Supercharge your WordPress theme with mega pack of shortcodes
@@ -11,9 +11,9 @@
11
  License: GPL
12
  */
13
 
14
- // Define plugin file constants
15
  define( 'SU_PLUGIN_FILE', __FILE__ );
16
- define( 'SU_PLUGIN_VERSION', '4.7.1' );
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.7.2
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Supercharge your WordPress theme with mega pack of shortcodes
11
  License: GPL
12
  */
13
 
14
+ // Define plugin constants
15
  define( 'SU_PLUGIN_FILE', __FILE__ );
16
+ define( 'SU_PLUGIN_VERSION', '4.7.2' );
17
  define( 'SU_ENABLE_CACHE', true );
18
 
19
  // Includes