Shortcodes Ultimate - Version 4.1.7

Version Description

  • Fixed [button wide=yes]
  • Fixed media query for [column]
  • Added new attr [column center=yes]
  • Improved js code for spoilers and tabs
  • Improved js code for generator
Download this release

Release Info

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

Code changes from version 4.1.6 to 4.1.7

assets/css/box-shortcodes.css CHANGED
@@ -74,7 +74,7 @@
74
  /* Spoiler
75
  ---------------------------------------------------------------*/
76
 
77
- .su-spoiler { margin-bottom: 1.5em; }
78
  .su-spoiler .su-spoiler:last-child { margin-bottom: 0; }
79
  .su-spoiler-title {
80
  position: relative;
@@ -96,6 +96,7 @@
96
  border: none;
97
  opacity: 0;
98
  }
 
99
  .su-spoiler-style-default > .su-spoiler-title {
100
  min-height: 16px;
101
  padding: 4px 0 4px 24px;
@@ -120,6 +121,7 @@
120
  color: #333;
121
  }
122
  .su-spoiler-style-fancy {
 
123
  background: #fff;
124
  border: 1px solid #ccc;
125
  -webkit-border-radius: 10px;
@@ -159,6 +161,7 @@
159
  color: #333;
160
  }
161
  .su-spoiler-style-simple {
 
162
  border-top: 1px solid #ccc;
163
  border-bottom: 1px solid #ccc;
164
  }
@@ -177,6 +180,46 @@
177
  background: #fff;
178
  color: #333;
179
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
 
181
  /* Quote
182
  ---------------------------------------------------------------*/
@@ -260,6 +303,11 @@
260
  .su-column-last { margin-right: 0; }
261
  .su-row .su-column { margin: 0 0 1em 4%; }
262
  .su-row .su-column:first-child { margin-left: 0; }
 
 
 
 
 
263
  .su-column img,
264
  .su-column iframe,
265
  .su-column object,
@@ -284,7 +332,7 @@
284
  .su-column {
285
  width: 100% !important;
286
  float: none !important;
287
- margin: 0 0 1em 0;
288
  }
289
  }
290
 
74
  /* Spoiler
75
  ---------------------------------------------------------------*/
76
 
77
+ .su-spoiler {}
78
  .su-spoiler .su-spoiler:last-child { margin-bottom: 0; }
79
  .su-spoiler-title {
80
  position: relative;
96
  border: none;
97
  opacity: 0;
98
  }
99
+ .su-spoiler-style-default { margin-bottom: 1.5em; }
100
  .su-spoiler-style-default > .su-spoiler-title {
101
  min-height: 16px;
102
  padding: 4px 0 4px 24px;
121
  color: #333;
122
  }
123
  .su-spoiler-style-fancy {
124
+ margin-bottom: 1.5em;
125
  background: #fff;
126
  border: 1px solid #ccc;
127
  -webkit-border-radius: 10px;
161
  color: #333;
162
  }
163
  .su-spoiler-style-simple {
164
+ margin-bottom: 1.5em;
165
  border-top: 1px solid #ccc;
166
  border-bottom: 1px solid #ccc;
167
  }
180
  background: #fff;
181
  color: #333;
182
  }
183
+ /*.su-spoiler-style-fancy {
184
+ margin-bottom: 1.5em;
185
+ background: #fff;
186
+ border: 1px solid #ccc;
187
+ -webkit-border-radius: 10px;
188
+ -moz-border-radius: 10px;
189
+ border-radius: 10px;
190
+ }
191
+ .su-spoiler-style-fancy > .su-spoiler-title {
192
+ min-height: 20px;
193
+ padding: 7px 7px 7px 36px;
194
+ border-bottom: 1px solid #ccc;
195
+ -webkit-border-radius: 10px;
196
+ -moz-border-radius: 10px;
197
+ border-radius: 10px;
198
+ background: #f0f0f0;
199
+ color: #333;
200
+ font-weight: bold;
201
+ font-size: 0.9em;
202
+ line-height: 20px;
203
+ }
204
+ .su-spoiler-style-fancy.su-spoiler-closed > .su-spoiler-title { border: none; }
205
+ .su-spoiler-style-fancy > .su-spoiler-title > .su-spoiler-icon {
206
+ position: absolute;
207
+ top: 10px;
208
+ left: 10px;
209
+ display: block;
210
+ width: 16px;
211
+ height: 16px;
212
+ background: 0 -16px url('../images/spoiler.png') no-repeat;
213
+ }
214
+ .su-spoiler-style-fancy.su-spoiler-closed > .su-spoiler-title > .su-spoiler-icon { background: 0 0 url('../images/spoiler.png') no-repeat; }
215
+ .su-spoiler-style-fancy > .su-spoiler-content {
216
+ padding: 1em;
217
+ -webkit-border-radius: 10px;
218
+ -moz-border-radius: 10px;
219
+ border-radius: 10px;
220
+ background: #fff;
221
+ color: #333;
222
+ }*/
223
 
224
  /* Quote
225
  ---------------------------------------------------------------*/
303
  .su-column-last { margin-right: 0; }
304
  .su-row .su-column { margin: 0 0 1em 4%; }
305
  .su-row .su-column:first-child { margin-left: 0; }
306
+ .su-column-centered {
307
+ float: none !important;
308
+ margin-left: auto !important;
309
+ margin-right: auto !important;
310
+ }
311
  .su-column img,
312
  .su-column iframe,
313
  .su-column object,
332
  .su-column {
333
  width: 100% !important;
334
  float: none !important;
335
+ margin: 0 0 1em 0 !important;
336
  }
337
  }
338
 
assets/css/content-shortcodes.css CHANGED
@@ -225,7 +225,7 @@
225
  -moz-transition: all .2s;
226
  -webkit-transition: all .2s;
227
  }
228
- .su-button..su-button-wide { display: block !important; }
229
  .su-button-center { text-align: center; }
230
  .su-button span {
231
  display: block !important;
225
  -moz-transition: all .2s;
226
  -webkit-transition: all .2s;
227
  }
228
+ .su-button-wide { display: block !important; }
229
  .su-button-center { text-align: center; }
230
  .su-button span {
231
  display: block !important;
assets/js/generator.js CHANGED
@@ -8,14 +8,9 @@ jQuery(document).ready(function ($) {
8
  $choices = $('#su-generator-choices'),
9
  $choice = $choices.find('span'),
10
  $settings = $('#su-generator-settings'),
11
- $button = $('.su-generator-button'),
12
- $cancel = $('.su-generator-cancel'),
13
- $insert = $('#su-generator-insert'),
14
  $prefix = $('#su-compatibility-mode-prefix'),
15
- $another = $('#su-generator-select-another'),
16
  $result = $('#su-generator-result'),
17
  $selected = $('#su-generator-selected'),
18
- $preview_link = $('#su-generator-preview-link'),
19
  mce_selection = '';
20
 
21
  // Apply qTip to choices
@@ -33,7 +28,7 @@ jQuery(document).ready(function ($) {
33
  });
34
 
35
  // Generator button
36
- $button.live('click', function (e) {
37
  e.preventDefault();
38
  // Save the target
39
  window.su_generator_target = $(this).data('target');
@@ -97,8 +92,8 @@ jQuery(document).ready(function ($) {
97
  e.preventDefault();
98
  });
99
 
100
- // Select another shortcode link
101
- $another.live('click', function (e) {
102
  // Clear search field
103
  $search.val('');
104
  // Hide settings
@@ -118,7 +113,7 @@ jQuery(document).ready(function ($) {
118
  });
119
 
120
  // Generator close button
121
- $cancel.live('click', function (e) {
122
  // Close popup
123
  $.magnificPopup.close();
124
  // Prevent default action
@@ -330,7 +325,7 @@ jQuery(document).ready(function ($) {
330
  });
331
 
332
  // Insert shortcode
333
- $insert.live('click', function (e) {
334
  // Prepare data
335
  var shortcode = su_generator_parse();
336
  if (typeof window.su_generator_target !== 'undefined' && window.su_generator_target !== 'content') {
@@ -350,7 +345,7 @@ jQuery(document).ready(function ($) {
350
  });
351
 
352
  // Preview shortcode
353
- $preview_link.live('click', function (e) {
354
  // Prepare data
355
  var $button = $(this);
356
  // Update link text
8
  $choices = $('#su-generator-choices'),
9
  $choice = $choices.find('span'),
10
  $settings = $('#su-generator-settings'),
 
 
 
11
  $prefix = $('#su-compatibility-mode-prefix'),
 
12
  $result = $('#su-generator-result'),
13
  $selected = $('#su-generator-selected'),
 
14
  mce_selection = '';
15
 
16
  // Apply qTip to choices
28
  });
29
 
30
  // Generator button
31
+ $('body').on('click', '.su-generator-button', function (e) {
32
  e.preventDefault();
33
  // Save the target
34
  window.su_generator_target = $(this).data('target');
92
  e.preventDefault();
93
  });
94
 
95
+ // Go to home link
96
+ $('#su-generator').on('click', '.su-generator-home', function (e) {
97
  // Clear search field
98
  $search.val('');
99
  // Hide settings
113
  });
114
 
115
  // Generator close button
116
+ $('#su-generator').on('click', '.su-generator-close', function (e) {
117
  // Close popup
118
  $.magnificPopup.close();
119
  // Prevent default action
325
  });
326
 
327
  // Insert shortcode
328
+ $('#su-generator').on('click', '.su-generator-insert', function (e) {
329
  // Prepare data
330
  var shortcode = su_generator_parse();
331
  if (typeof window.su_generator_target !== 'undefined' && window.su_generator_target !== 'content') {
345
  });
346
 
347
  // Preview shortcode
348
+ $('#su-generator').on('click', '.su-generator-toggle-preview', function (e) {
349
  // Prepare data
350
  var $button = $(this);
351
  // Update link text
assets/js/other-shortcodes.js CHANGED
@@ -1,47 +1,42 @@
1
  jQuery(document).ready(function ($) {
2
 
3
- function init_live() {
4
- // Spoiler
5
- $('.su-spoiler-title').live('click', function (e) {
6
- var $title = $(this),
7
- $spoiler = $title.parent(),
8
- bar = ($('#wpadminbar').length > 0) ? 28 : 0;
9
- // Open/close spoiler
10
- $spoiler.toggleClass('su-spoiler-closed');
11
- // Close other spoilers in accordion
12
- $spoiler.parent('.su-accordion').children('.su-spoiler').not($spoiler).addClass('su-spoiler-closed');
13
- // Scroll in spoiler in accordion
14
- if ($(window).scrollTop() > $title.offset().top) $(window).scrollTop($title.offset().top - $title.height() - bar);
15
- e.preventDefault();
16
- });
17
- // Tabs
18
- $('.su-tabs-nav span').live('click', function (e) {
19
- var $tab = $(this),
20
- index = $tab.index(),
21
- is_disabled = $tab.hasClass('su-tabs-disabled'),
22
- $tabs = $tab.parent('.su-tabs-nav').children('span'),
23
- $panes = $tab.parents('.su-tabs').find('.su-tabs-pane'),
24
- $gmaps = $panes.eq(index).find('.su-gmap:not(.su-gmap-reloaded)');
25
- // Check tab is not disabled
26
- if (is_disabled) return false;
27
- // Hide all panes, show selected pane
28
- $panes.hide().eq(index).show();
29
- // Disable all tabs, enable selected tab
30
- $tabs.removeClass('su-tabs-current').eq(index).addClass('su-tabs-current');
31
- // Reload gmaps
32
- if ($gmaps.length > 0) $gmaps.each(function () {
33
- var $iframe = $(this).find('iframe:first');
34
- $(this).addClass('su-gmap-reloaded');
35
- $iframe.attr('src', $iframe.attr('src'));
36
- });
37
- // Set height for vertical tabs
38
- tabs_height();
39
- e.preventDefault();
40
  });
41
- $('body').addClass('su-other-shortcodes-live');
42
- } // function init_live()
43
-
44
- if (!$('body').hasClass('su-other-shortcodes-live')) init_live();
45
 
46
  // Activate tabs
47
  $('.su-tabs').each(function () {
@@ -52,7 +47,7 @@ jQuery(document).ready(function ($) {
52
 
53
  // Lightbox
54
  $('.su-lightbox').each(function () {
55
- $(this).live('click', function (e) {
56
  e.preventDefault();
57
  e.stopPropagation();
58
  if ($(this).parent().attr('id') === 'su-generator-preview') $(this).html(su_other_shortcodes.no_preview);
@@ -98,7 +93,7 @@ jQuery(document).ready(function ($) {
98
  if (data.behavior === 'click') {
99
  config.show = 'click';
100
  config.hide = 'click';
101
- $tt.live('click', function (e) {
102
  e.preventDefault();
103
  e.stopPropagation();
104
  });
@@ -128,4 +123,6 @@ jQuery(document).ready(function ($) {
128
  $panes.css('height', 'auto').css('height', $tabs.height());
129
  });
130
  }
 
 
131
  });
1
  jQuery(document).ready(function ($) {
2
 
3
+ // Spoiler
4
+ $('body:not(.su-other-shortcodes-loaded)').on('click', '.su-spoiler-title', function (e) {
5
+ var $title = $(this),
6
+ $spoiler = $title.parent(),
7
+ bar = ($('#wpadminbar').length > 0) ? 28 : 0;
8
+ // Open/close spoiler
9
+ $spoiler.toggleClass('su-spoiler-closed');
10
+ // Close other spoilers in accordion
11
+ $spoiler.parent('.su-accordion').children('.su-spoiler').not($spoiler).addClass('su-spoiler-closed');
12
+ // Scroll in spoiler in accordion
13
+ if ($(window).scrollTop() > $title.offset().top) $(window).scrollTop($title.offset().top - $title.height() - bar);
14
+ e.preventDefault();
15
+ });
16
+ // Tabs
17
+ $('body:not(.su-other-shortcodes-loaded)').on('click', '.su-tabs-nav span', function (e) {
18
+ var $tab = $(this),
19
+ index = $tab.index(),
20
+ is_disabled = $tab.hasClass('su-tabs-disabled'),
21
+ $tabs = $tab.parent('.su-tabs-nav').children('span'),
22
+ $panes = $tab.parents('.su-tabs').find('.su-tabs-pane'),
23
+ $gmaps = $panes.eq(index).find('.su-gmap:not(.su-gmap-reloaded)');
24
+ // Check tab is not disabled
25
+ if (is_disabled) return false;
26
+ // Hide all panes, show selected pane
27
+ $panes.hide().eq(index).show();
28
+ // Disable all tabs, enable selected tab
29
+ $tabs.removeClass('su-tabs-current').eq(index).addClass('su-tabs-current');
30
+ // Reload gmaps
31
+ if ($gmaps.length > 0) $gmaps.each(function () {
32
+ var $iframe = $(this).find('iframe:first');
33
+ $(this).addClass('su-gmap-reloaded');
34
+ $iframe.attr('src', $iframe.attr('src'));
 
 
 
 
 
35
  });
36
+ // Set height for vertical tabs
37
+ tabs_height();
38
+ e.preventDefault();
39
+ });
40
 
41
  // Activate tabs
42
  $('.su-tabs').each(function () {
47
 
48
  // Lightbox
49
  $('.su-lightbox').each(function () {
50
+ $(this).on('click', function (e) {
51
  e.preventDefault();
52
  e.stopPropagation();
53
  if ($(this).parent().attr('id') === 'su-generator-preview') $(this).html(su_other_shortcodes.no_preview);
93
  if (data.behavior === 'click') {
94
  config.show = 'click';
95
  config.hide = 'click';
96
+ $tt.on('click', function (e) {
97
  e.preventDefault();
98
  e.stopPropagation();
99
  });
123
  $panes.css('height', 'auto').css('height', $tabs.height());
124
  });
125
  }
126
+
127
+ $('body').addClass('su-other-shortcodes-loaded');
128
  });
inc/core/class.data.php CHANGED
@@ -444,6 +444,12 @@ class Shortcodes_Ultimate_Data {
444
  'name' => __( 'Size', 'su' ),
445
  'desc' => __( 'Select column width. This width will be calculated depend page width', 'su' )
446
  ),
 
 
 
 
 
 
447
  'class' => array(
448
  'default' => '',
449
  'name' => __( 'Class', 'su' ),
444
  'name' => __( 'Size', 'su' ),
445
  'desc' => __( 'Select column width. This width will be calculated depend page width', 'su' )
446
  ),
447
+ 'center' => array(
448
+ 'type' => 'switch',
449
+ 'default' => 'no',
450
+ 'name' => __( 'Centered', 'su' ),
451
+ 'desc' => __( 'Is this column centered on the page', 'su' )
452
+ ),
453
  'class' => array(
454
  'default' => '',
455
  'name' => __( 'Class', 'su' ),
inc/core/class.generator.php CHANGED
@@ -144,13 +144,13 @@ class Shortcodes_Ultimate_Generator {
144
  $skip = ( $shult->get_option( 'skip' ) === 'on' ) ? ' su-generator-skip' : '';
145
  // Prepare actions
146
  $actions = apply_filters( 'su/generator/actions', array(
147
- 'insert' => '<a href="#" class="button button-primary button-large" id="su-generator-insert">' . __( 'Insert shortcode', 'su' ) . '</a>',
148
- 'preview' => '<a href="#" class="button button-large" id="su-generator-preview-link">' . __( 'Live preview', 'su' ) . '</a>',
149
- 'close' => '<a href="#" class="button alignright button-large su-generator-cancel">' . __( 'Close window', 'su' ) . '</a>'
150
  ) );
151
  // Shortcode header
152
  $return = '<div id="su-generator-breadcrumbs">';
153
- $return .= apply_filters( 'su/generator/breadcrumbs', '<a href="#" id="su-generator-select-another" title="' . __( 'Click to return to the shortcodes list', 'su' ) . '">' . __( 'All shortcodes', 'su' ) . '</a> &rarr; <span>' . $shortcode['name'] . '</span> <small class="alignright">' . $shortcode['desc'] . '</small><div class="su-generator-clear"></div>' );
154
  $return .= '</div>';
155
  // Shortcode has atts
156
  if ( count( $shortcode['atts'] ) && $shortcode['atts'] ) {
144
  $skip = ( $shult->get_option( 'skip' ) === 'on' ) ? ' su-generator-skip' : '';
145
  // Prepare actions
146
  $actions = apply_filters( 'su/generator/actions', array(
147
+ 'insert' => '<a href="javascript:void(0);" class="button button-primary button-large su-generator-insert">' . __( 'Insert shortcode', 'su' ) . '</a>',
148
+ 'preview' => '<a href="javascript:void(0);" class="button button-large su-generator-toggle-preview">' . __( 'Live preview', 'su' ) . '</a>',
149
+ 'close' => '<a href="javascript:void(0);" class="button alignright button-large su-generator-close">' . __( 'Close window', 'su' ) . '</a>'
150
  ) );
151
  // Shortcode header
152
  $return = '<div id="su-generator-breadcrumbs">';
153
+ $return .= apply_filters( 'su/generator/breadcrumbs', '<a href="javascript:void(0);" class="su-generator-home" title="' . __( 'Click to return to the shortcodes list', 'su' ) . '">' . __( 'All shortcodes', 'su' ) . '</a> &rarr; <span>' . $shortcode['name'] . '</span> <small class="alignright">' . $shortcode['desc'] . '</small><div class="su-generator-clear"></div>' );
154
  $return .= '</div>';
155
  // Shortcode has atts
156
  if ( count( $shortcode['atts'] ) && $shortcode['atts'] ) {
inc/core/shortcodes.php CHANGED
@@ -282,11 +282,13 @@ function su_row_shortcode( $atts = null, $content = null ) {
282
  */
283
  function su_column_shortcode( $atts, $content = null ) {
284
  $atts = shortcode_atts( array(
285
- 'size' => '1/2',
286
- 'last' => null,
287
- 'class' => ''
 
288
  ), $atts );
289
  if ( $atts['last'] !== null && $atts['last'] == '1' ) $atts['class'] .= ' su-column-last';
 
290
  su_query_asset( 'css', 'su-box-shortcodes' );
291
  return '<div class="su-column su-column-size-' . str_replace( '/', '-', $atts['size'] ) . su_ecssc( $atts ) . '"><div class="su-column-inner">' . su_do_shortcode( $content, 'c' ) . '</div></div>';
292
  }
282
  */
283
  function su_column_shortcode( $atts, $content = null ) {
284
  $atts = shortcode_atts( array(
285
+ 'size' => '1/2',
286
+ 'center' => 'no',
287
+ 'last' => null,
288
+ 'class' => ''
289
  ), $atts );
290
  if ( $atts['last'] !== null && $atts['last'] == '1' ) $atts['class'] .= ' su-column-last';
291
+ if ( $atts['center'] === 'yes' ) $atts['class'] .= ' su-column-centered';
292
  su_query_asset( 'css', 'su-box-shortcodes' );
293
  return '<div class="su-column su-column-size-' . str_replace( '/', '-', $atts['size'] ) . su_ecssc( $atts ) . '"><div class="su-column-inner">' . su_do_shortcode( $content, 'c' ) . '</div></div>';
294
  }
inc/core/tools.php CHANGED
@@ -369,7 +369,7 @@ function su_get_terms( $taxonomy ) {
369
  * @return string
370
  */
371
  function su_ecssc( $atts ) {
372
- return ( $atts['class'] ) ? ' ' . $atts['class'] : '';
373
  }
374
 
375
  /**
369
  * @return string
370
  */
371
  function su_ecssc( $atts ) {
372
+ return ( $atts['class'] ) ? ' ' . trim( $atts['class'] ) : '';
373
  }
374
 
375
  /**
languages/su-ru_RU.mo CHANGED
Binary file
languages/su-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-01 23:50+0300\n"
6
- "PO-Revision-Date: 2013-10-01 23:50+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -22,9 +22,9 @@ msgstr "Заголовок 2"
22
  #: inc/core/class.data.php:158
23
  #: inc/core/class.data.php:276
24
  #: inc/core/class.data.php:356
25
- #: inc/core/class.data.php:517
26
- #: inc/core/class.data.php:654
27
- #: inc/core/class.data.php:813
28
  msgid "Default"
29
  msgstr "По умолчанию"
30
 
@@ -35,10 +35,10 @@ msgstr "Маленький"
35
  #: inc/example-addon.php:49
36
  #: inc/core/class.data.php:163
37
  #: inc/core/class.data.php:362
38
- #: inc/core/class.data.php:481
39
- #: inc/core/class.data.php:527
40
- #: inc/core/class.data.php:661
41
- #: inc/core/class.data.php:783
42
  msgid "Style"
43
  msgstr "Стиль"
44
 
@@ -68,7 +68,7 @@ msgid "Content"
68
  msgstr "Содержимое"
69
 
70
  #: inc/core/class.data.php:36
71
- #: inc/core/class.data.php:642
72
  msgid "Box"
73
  msgstr "Блок"
74
 
@@ -77,10 +77,10 @@ msgid "Media"
77
  msgstr "Медиа"
78
 
79
  #: inc/core/class.data.php:38
80
- #: inc/core/class.data.php:1413
81
- #: inc/core/class.data.php:1503
82
- #: inc/core/class.data.php:1603
83
  #: inc/core/class.data.php:1609
 
84
  msgid "Gallery"
85
  msgstr "Галерея"
86
 
@@ -95,7 +95,7 @@ msgstr "Заголовок"
95
  #: inc/core/class.data.php:60
96
  #: inc/core/class.data.php:367
97
  #: inc/core/class.data.php:444
98
- #: inc/core/class.data.php:545
99
  msgid "Size"
100
  msgstr "Размер"
101
 
@@ -105,21 +105,21 @@ msgstr "Выберите размер заголовка"
105
 
106
  #: inc/core/class.data.php:65
107
  #: inc/core/class.data.php:332
108
- #: inc/core/class.data.php:587
109
- #: inc/core/class.data.php:791
110
  msgid "Left"
111
  msgstr "Слева"
112
 
113
  #: inc/core/class.data.php:66
114
- #: inc/core/class.data.php:1446
115
- #: inc/core/class.data.php:1552
116
  msgid "Center"
117
  msgstr "По центру"
118
 
119
  #: inc/core/class.data.php:67
120
  #: inc/core/class.data.php:333
121
- #: inc/core/class.data.php:585
122
- #: inc/core/class.data.php:792
123
  msgid "Right"
124
  msgstr "Справа"
125
 
@@ -147,33 +147,33 @@ msgstr "Выравнивание текста в заголовке"
147
  #: inc/core/class.data.php:371
148
  #: inc/core/class.data.php:397
149
  #: inc/core/class.data.php:413
150
- #: inc/core/class.data.php:449
151
- #: inc/core/class.data.php:485
152
- #: inc/core/class.data.php:600
153
- #: inc/core/class.data.php:634
154
- #: inc/core/class.data.php:686
155
- #: inc/core/class.data.php:721
156
- #: inc/core/class.data.php:752
157
- #: inc/core/class.data.php:854
158
- #: inc/core/class.data.php:870
159
- #: inc/core/class.data.php:922
160
- #: inc/core/class.data.php:971
161
- #: inc/core/class.data.php:1013
162
- #: inc/core/class.data.php:1051
163
- #: inc/core/class.data.php:1120
164
- #: inc/core/class.data.php:1141
165
- #: inc/core/class.data.php:1172
166
- #: inc/core/class.data.php:1205
167
- #: inc/core/class.data.php:1221
168
- #: inc/core/class.data.php:1246
169
- #: inc/core/class.data.php:1265
170
- #: inc/core/class.data.php:1291
171
- #: inc/core/class.data.php:1311
172
- #: inc/core/class.data.php:1355
173
- #: inc/core/class.data.php:1399
174
- #: inc/core/class.data.php:1489
175
- #: inc/core/class.data.php:1595
176
- #: inc/core/class.data.php:1646
177
  msgid "Class"
178
  msgstr "Класс"
179
 
@@ -191,33 +191,33 @@ msgstr "Класс"
191
  #: inc/core/class.data.php:372
192
  #: inc/core/class.data.php:398
193
  #: inc/core/class.data.php:414
194
- #: inc/core/class.data.php:450
195
- #: inc/core/class.data.php:486
196
- #: inc/core/class.data.php:601
197
- #: inc/core/class.data.php:635
198
- #: inc/core/class.data.php:687
199
- #: inc/core/class.data.php:722
200
- #: inc/core/class.data.php:753
201
- #: inc/core/class.data.php:855
202
- #: inc/core/class.data.php:871
203
- #: inc/core/class.data.php:923
204
- #: inc/core/class.data.php:972
205
- #: inc/core/class.data.php:1014
206
- #: inc/core/class.data.php:1052
207
- #: inc/core/class.data.php:1121
208
- #: inc/core/class.data.php:1142
209
- #: inc/core/class.data.php:1173
210
- #: inc/core/class.data.php:1206
211
- #: inc/core/class.data.php:1222
212
- #: inc/core/class.data.php:1247
213
- #: inc/core/class.data.php:1266
214
- #: inc/core/class.data.php:1292
215
- #: inc/core/class.data.php:1312
216
- #: inc/core/class.data.php:1356
217
- #: inc/core/class.data.php:1400
218
- #: inc/core/class.data.php:1490
219
- #: inc/core/class.data.php:1596
220
- #: inc/core/class.data.php:1647
221
  msgid "Extra CSS class"
222
  msgstr "Дополнительный CSS класс"
223
 
@@ -273,9 +273,9 @@ msgstr "Имя вкладки"
273
 
274
  #: inc/core/class.data.php:120
275
  #: inc/core/class.data.php:147
276
- #: inc/core/class.data.php:616
277
- #: inc/core/class.data.php:649
278
- #: inc/core/class.data.php:1079
279
  msgid "Title"
280
  msgstr "Заголовок"
281
 
@@ -393,15 +393,15 @@ msgid "Spacer"
393
  msgstr "Пробел"
394
 
395
  #: inc/core/class.data.php:228
396
- #: inc/core/class.data.php:905
397
- #: inc/core/class.data.php:954
398
- #: inc/core/class.data.php:1002
399
- #: inc/core/class.data.php:1097
400
- #: inc/core/class.data.php:1344
401
- #: inc/core/class.data.php:1382
402
- #: inc/core/class.data.php:1430
403
- #: inc/core/class.data.php:1520
404
- #: inc/core/class.data.php:1626
405
  msgid "Height"
406
  msgstr "Высота"
407
 
@@ -418,8 +418,8 @@ msgid "Highlight"
418
  msgstr "Выделитель"
419
 
420
  #: inc/core/class.data.php:249
421
- #: inc/core/class.data.php:533
422
- #: inc/core/class.data.php:704
423
  msgid "Background"
424
  msgstr "Фон"
425
 
@@ -428,8 +428,8 @@ msgid "Highlighted text background color"
428
  msgstr "Цвет фона выделяемого текста"
429
 
430
  #: inc/core/class.data.php:256
431
- #: inc/core/class.data.php:539
432
- #: inc/core/class.data.php:710
433
  msgid "Text color"
434
  msgstr "Цвет текста"
435
 
@@ -520,12 +520,12 @@ msgid "Dropcap"
520
  msgstr "Буквица"
521
 
522
  #: inc/core/class.data.php:357
523
- #: inc/core/class.data.php:518
524
  msgid "Flat"
525
  msgstr "Плоский"
526
 
527
  #: inc/core/class.data.php:358
528
- #: inc/core/class.data.php:574
529
  msgid "Light"
530
  msgstr "Светлый"
531
 
@@ -627,88 +627,97 @@ msgstr "Пять шестых"
627
  msgid "Select column width. This width will be calculated depend page width"
628
  msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
629
 
630
- #: inc/core/class.data.php:453
 
 
 
 
 
 
 
 
 
631
  msgid "Column content"
632
  msgstr "Содержимое колонки"
633
 
634
- #: inc/core/class.data.php:453
635
  msgid "Flexible and responsive columns"
636
  msgstr "Резновые колонки"
637
 
638
- #: inc/core/class.data.php:457
639
  msgid "List"
640
  msgstr "Список"
641
 
642
- #: inc/core/class.data.php:464
643
  msgid "Star"
644
  msgstr "Звезда"
645
 
646
- #: inc/core/class.data.php:465
647
  msgid "Arrow"
648
  msgstr "Стрелка"
649
 
650
- #: inc/core/class.data.php:466
651
  msgid "Check"
652
  msgstr "Отметка"
653
 
654
- #: inc/core/class.data.php:467
655
  msgid "Cross"
656
  msgstr "Крестик"
657
 
658
- #: inc/core/class.data.php:468
659
  msgid "Thumbs up"
660
  msgstr "Палец вверх"
661
 
662
- #: inc/core/class.data.php:469
663
- #: inc/core/class.data.php:501
664
  msgid "Link"
665
  msgstr "Ссылка"
666
 
667
- #: inc/core/class.data.php:470
668
  msgid "Gear"
669
  msgstr "Шестеренка"
670
 
671
- #: inc/core/class.data.php:471
672
  msgid "Time"
673
  msgstr "Время"
674
 
675
- #: inc/core/class.data.php:472
676
- #: inc/core/class.data.php:696
677
  msgid "Note"
678
  msgstr "Заметка"
679
 
680
- #: inc/core/class.data.php:473
681
  msgid "Plus"
682
  msgstr "Плюс"
683
 
684
- #: inc/core/class.data.php:474
685
  msgid "Guard"
686
  msgstr "Защита"
687
 
688
- #: inc/core/class.data.php:475
689
  msgid "Event"
690
  msgstr "Событие"
691
 
692
- #: inc/core/class.data.php:476
693
  msgid "Idea"
694
  msgstr "Идя"
695
 
696
- #: inc/core/class.data.php:477
697
  #: inc/core/class.generator.php:88
698
  #: inc/core/class.shortcodes-ultimate.php:115
699
  #: inc/vendor/class.sunrise-framework.php:281
700
  msgid "Settings"
701
  msgstr "Настройки"
702
 
703
- #: inc/core/class.data.php:478
704
  msgid "Twitter"
705
  msgstr "Твиттер"
706
 
707
- #: inc/core/class.data.php:481
708
  msgid "List items style/icons"
709
  msgstr "Стиль/иконка элементов списка"
710
 
711
- #: inc/core/class.data.php:490
712
  msgid ""
713
  "<ul>\n"
714
  "<li>List item</li>\n"
@@ -722,655 +731,651 @@ msgstr ""
722
  "<li>Элемент списка</li>\n"
723
  "</ul>"
724
 
725
- #: inc/core/class.data.php:490
726
  msgid "Styled unordered list"
727
  msgstr "Стильный неупорядоченный список"
728
 
729
- #: inc/core/class.data.php:494
730
  msgid "Button"
731
  msgstr "Кнопка"
732
 
733
- #: inc/core/class.data.php:502
734
  msgid "Button link"
735
  msgstr "Ссылка кнопки"
736
 
737
- #: inc/core/class.data.php:507
738
- #: inc/core/class.data.php:1163
739
  msgid "Same tab"
740
  msgstr "Та же вкладка"
741
 
742
- #: inc/core/class.data.php:508
743
- #: inc/core/class.data.php:1164
744
  msgid "New tab"
745
  msgstr "Новая вкладка"
746
 
747
- #: inc/core/class.data.php:511
748
- #: inc/core/class.data.php:1167
749
  msgid "Target"
750
  msgstr "Цель"
751
 
752
- #: inc/core/class.data.php:512
753
  msgid "Button link target"
754
  msgstr "Цель ссылки кнопки"
755
 
756
- #: inc/core/class.data.php:519
757
- #: inc/core/class.data.php:655
758
  msgid "Soft"
759
  msgstr "Мягкий"
760
 
761
- #: inc/core/class.data.php:520
762
- #: inc/core/class.data.php:656
763
  msgid "Glass"
764
  msgstr "Стекло"
765
 
766
- #: inc/core/class.data.php:521
767
- #: inc/core/class.data.php:657
768
  msgid "Bubbles"
769
  msgstr "Пузыри"
770
 
771
- #: inc/core/class.data.php:522
772
- #: inc/core/class.data.php:658
773
  msgid "Noise"
774
  msgstr "Шум"
775
 
776
- #: inc/core/class.data.php:523
777
  msgid "Stroked"
778
  msgstr "Прошитый"
779
 
780
- #: inc/core/class.data.php:524
781
  msgid "3D"
782
  msgstr "3D"
783
 
784
- #: inc/core/class.data.php:527
785
  msgid "Button background style preset"
786
  msgstr "Стиль фона кнопки"
787
 
788
- #: inc/core/class.data.php:533
789
  msgid "Button background color"
790
  msgstr "Цвет фона кнопки"
791
 
792
- #: inc/core/class.data.php:540
793
  msgid "Button text color"
794
  msgstr "Цвет текста кнопки"
795
 
796
- #: inc/core/class.data.php:546
797
  msgid "Button size"
798
  msgstr "Размер кнопки"
799
 
800
- #: inc/core/class.data.php:551
801
  msgid "Fluid"
802
  msgstr "Резиновая"
803
 
804
- #: inc/core/class.data.php:551
805
  msgid "Fluid buttons has 100% width"
806
  msgstr "Резиновые кнопки имеют ширину 100%"
807
 
808
- #: inc/core/class.data.php:556
809
- msgid "Centered"
810
- msgstr "По центру"
811
-
812
- #: inc/core/class.data.php:556
813
  msgid "Is button centered on the page"
814
  msgstr "Кнопка выровнена по центру страницы"
815
 
816
- #: inc/core/class.data.php:562
817
- #: inc/core/class.data.php:681
818
- #: inc/core/class.data.php:717
819
  msgid "Radius"
820
  msgstr "Радиус"
821
 
822
- #: inc/core/class.data.php:563
823
  msgid "Radius of button corners. Auto-radius calculation based on button size"
824
  msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
825
 
826
- #: inc/core/class.data.php:568
827
- #: inc/core/class.data.php:622
828
  msgid "Icon"
829
  msgstr "Иконка"
830
 
831
- #: inc/core/class.data.php:569
832
  msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
833
  msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
834
 
835
- #: inc/core/class.data.php:575
836
  msgid "Dark"
837
  msgstr "Темный"
838
 
839
- #: inc/core/class.data.php:578
840
  msgid "Text shadow color"
841
  msgstr "Цвет тени текста"
842
 
843
- #: inc/core/class.data.php:578
844
  msgid "Color of button text shadow"
845
  msgstr "Цвет тени текста кнопки"
846
 
847
- #: inc/core/class.data.php:583
848
- #: inc/core/class.data.php:1738
849
  msgid "None"
850
  msgstr "Нет"
851
 
852
- #: inc/core/class.data.php:584
853
- #: inc/core/class.data.php:789
854
  msgid "Top"
855
  msgstr "Сверху"
856
 
857
- #: inc/core/class.data.php:586
858
- #: inc/core/class.data.php:790
859
  msgid "Bottom"
860
  msgstr "Снизу"
861
 
862
- #: inc/core/class.data.php:588
863
  msgid "Top right"
864
  msgstr "Сверху справа"
865
 
866
- #: inc/core/class.data.php:589
867
  msgid "Top left"
868
  msgstr "Сверху слева"
869
 
870
- #: inc/core/class.data.php:589
871
  msgid "Bottom right"
872
  msgstr "Снизу справа"
873
 
874
- #: inc/core/class.data.php:589
875
  msgid "Bottom left"
876
  msgstr "Снизу слева"
877
 
878
- #: inc/core/class.data.php:591
879
  msgid "Text shadow position"
880
  msgstr "Положение тени текста"
881
 
882
- #: inc/core/class.data.php:591
883
  msgid "Position of button text shadow"
884
  msgstr "Положение тени текста кнопки"
885
 
886
- #: inc/core/class.data.php:595
887
  msgid "Description"
888
  msgstr "Описание"
889
 
890
- #: inc/core/class.data.php:596
891
  msgid "Small description under button text. This option is incompatible with icon."
892
  msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
893
 
894
- #: inc/core/class.data.php:604
895
  msgid "Button text"
896
  msgstr "Текст кнопки"
897
 
898
- #: inc/core/class.data.php:605
899
  msgid "Styled button"
900
  msgstr "Стильная кнопка"
901
 
902
- #: inc/core/class.data.php:609
903
  msgid "Service"
904
  msgstr "Услуга"
905
 
906
- #: inc/core/class.data.php:615
907
- #: inc/core/shortcodes.php:464
908
  msgid "Service title"
909
  msgstr "Название услуги"
910
 
911
- #: inc/core/class.data.php:617
912
  msgid "Service name"
913
  msgstr "Название услуги"
914
 
915
- #: inc/core/class.data.php:623
916
  msgid "You can upload custom icon for this box"
917
  msgstr "Вы можете загрузить свою иконку для этого блока"
918
 
919
- #: inc/core/class.data.php:629
920
  msgid "Icon size"
921
  msgstr "Размер иконки"
922
 
923
- #: inc/core/class.data.php:630
924
  msgid "Size of the uploaded icon in pixels"
925
  msgstr "Размер загруженной иконки в пикселях"
926
 
927
- #: inc/core/class.data.php:638
928
  msgid "Service description"
929
  msgstr "Описание услуги"
930
 
931
- #: inc/core/class.data.php:638
932
  msgid "Service box with title"
933
  msgstr "Блок услуга с заголовком"
934
 
935
- #: inc/core/class.data.php:648
936
  msgid "Box title"
937
  msgstr "Заголовок блока"
938
 
939
- #: inc/core/class.data.php:649
940
  msgid "Text for the box title"
941
  msgstr "Текст для заголовка блока"
942
 
943
- #: inc/core/class.data.php:662
944
  msgid "Box style preset"
945
  msgstr "Стиль блока"
946
 
947
- #: inc/core/class.data.php:668
948
  msgid "Color"
949
  msgstr "Цвет"
950
 
951
- #: inc/core/class.data.php:669
952
  msgid "Color for the box title and borders"
953
  msgstr "Цвет заголовка блока и его рамки"
954
 
955
- #: inc/core/class.data.php:675
956
  msgid "Title text color"
957
  msgstr "Цвет текста заголовка"
958
 
959
- #: inc/core/class.data.php:675
960
  msgid "Color for the box title text"
961
  msgstr "Цвет текста в заголовке блока"
962
 
963
- #: inc/core/class.data.php:682
964
  msgid "Box corners radius"
965
  msgstr "Радиус углов"
966
 
967
- #: inc/core/class.data.php:691
968
  msgid "Box content"
969
  msgstr "Содержимое блока"
970
 
971
- #: inc/core/class.data.php:692
972
  msgid "Colored box with caption"
973
  msgstr "Цветной блок с заголовком"
974
 
975
- #: inc/core/class.data.php:704
976
  msgid "Note background color"
977
  msgstr "Цвет фона заметки"
978
 
979
- #: inc/core/class.data.php:711
980
  msgid "Note text color"
981
  msgstr "Цвет текста заметки"
982
 
983
- #: inc/core/class.data.php:717
984
  msgid "Note corners radius"
985
  msgstr "Радиус углов"
986
 
987
- #: inc/core/class.data.php:725
988
  msgid "Note text"
989
  msgstr "Текст заметки"
990
 
991
- #: inc/core/class.data.php:726
992
  msgid "Colored box"
993
  msgstr "Цветной блок"
994
 
995
- #: inc/core/class.data.php:730
996
  msgid "Lightbox"
997
  msgstr "Лайтбокс"
998
 
999
- #: inc/core/class.data.php:737
1000
  msgid "Iframe"
1001
  msgstr "Фрейм (iframe)"
1002
 
1003
- #: inc/core/class.data.php:738
1004
  msgid "Image"
1005
  msgstr "Изображение"
1006
 
1007
- #: inc/core/class.data.php:739
1008
  msgid "Inline (html content)"
1009
  msgstr "HTML элемент"
1010
 
1011
- #: inc/core/class.data.php:742
1012
  msgid "Content type"
1013
  msgstr "Тип содержимого"
1014
 
1015
- #: inc/core/class.data.php:743
1016
  msgid "Select type of the lightbox window content"
1017
  msgstr "Выберите тип содержимого в окне лайтбокса"
1018
 
1019
- #: inc/core/class.data.php:747
1020
  msgid "Content source"
1021
  msgstr "Источник содержимого"
1022
 
1023
- #: inc/core/class.data.php:748
1024
  msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1025
  msgstr "Вставьте URL или CSS селектор. Используйте URL для типов содержимого Фрейм (iframe) и Изображение. Используйте CSS селектор для содержимого типа HTML элемент.<br />Примеры значений:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube видео (фрейм)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - загруженное изображение (изображение)<br /><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b%value>#contact-form</b> - любой HTML элемент (html элемент)"
1026
 
1027
- #: inc/core/class.data.php:757
1028
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1029
  msgstr "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
1030
 
1031
- #: inc/core/class.data.php:758
1032
  msgid "Lightbox window with custom content"
1033
  msgstr "Лайтбокс с произвольным содержимым"
1034
 
1035
- #: inc/core/class.data.php:762
1036
  msgid "Tooltip"
1037
  msgstr "Подсказка"
1038
 
1039
- #: inc/core/class.data.php:769
1040
  msgid "Basic: Light"
1041
  msgstr "Базовый: Светлый"
1042
 
1043
- #: inc/core/class.data.php:770
1044
  msgid "Basic: Dark"
1045
  msgstr "Базовый: Темный"
1046
 
1047
- #: inc/core/class.data.php:771
1048
  msgid "Basic: Yellow"
1049
  msgstr "Базовый: Желтый"
1050
 
1051
- #: inc/core/class.data.php:772
1052
  msgid "Basic: Green"
1053
  msgstr "Базовый: Зеленый"
1054
 
1055
- #: inc/core/class.data.php:773
1056
  msgid "Basic: Red"
1057
  msgstr "Базовый: Красный"
1058
 
1059
- #: inc/core/class.data.php:774
1060
  msgid "Basic: Blue"
1061
  msgstr "Базовый: Голубой"
1062
 
1063
- #: inc/core/class.data.php:775
1064
  msgid "Youtube"
1065
  msgstr "Youtube"
1066
 
1067
- #: inc/core/class.data.php:776
1068
  msgid "Tipsy"
1069
  msgstr "Tipsy"
1070
 
1071
- #: inc/core/class.data.php:777
1072
  msgid "Bootstrap"
1073
  msgstr "Bootstrap"
1074
 
1075
- #: inc/core/class.data.php:778
1076
  msgid "jTools"
1077
  msgstr "jTools"
1078
 
1079
- #: inc/core/class.data.php:779
1080
  msgid "Tipped"
1081
  msgstr "Tipped"
1082
 
1083
- #: inc/core/class.data.php:780
1084
  msgid "Cluetip"
1085
  msgstr "Cluetip"
1086
 
1087
- #: inc/core/class.data.php:784
1088
  msgid "Tooltip window style"
1089
  msgstr "Стиль окна подсказки"
1090
 
1091
- #: inc/core/class.data.php:795
1092
  msgid "Position"
1093
  msgstr "Положение"
1094
 
1095
- #: inc/core/class.data.php:796
1096
  msgid "Tooltip position"
1097
  msgstr "Положение всплывающей подсказки"
1098
 
1099
- #: inc/core/class.data.php:801
1100
  msgid "Shadow"
1101
  msgstr "Тень"
1102
 
1103
- #: inc/core/class.data.php:802
1104
  msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
1105
  msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
1106
 
1107
- #: inc/core/class.data.php:807
1108
  msgid "Rounded corners"
1109
  msgstr "Скругление"
1110
 
1111
- #: inc/core/class.data.php:808
1112
  msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
1113
  msgstr "Добавить скругленные уголки окну подсказки. Скругление работает только для базовых стилей."
1114
 
1115
- #: inc/core/class.data.php:822
1116
  msgid "Font size"
1117
  msgstr "Размер шрифта"
1118
 
1119
- #: inc/core/class.data.php:823
1120
  msgid "Tooltip font size"
1121
  msgstr "Размер шрифта подсказки"
1122
 
1123
- #: inc/core/class.data.php:827
1124
  msgid "Tooltip title"
1125
  msgstr "Заголовок подсказки"
1126
 
1127
- #: inc/core/class.data.php:828
1128
  msgid "Enter title for tooltip window. Leave this field empty to hide the title"
1129
  msgstr "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть заголовок"
1130
 
1131
- #: inc/core/class.data.php:831
1132
- #: inc/core/shortcodes.php:573
1133
  msgid "Tooltip text"
1134
  msgstr "Текст подсказки"
1135
 
1136
- #: inc/core/class.data.php:832
1137
  msgid "Tooltip content"
1138
  msgstr "Содержимое подсказки"
1139
 
1140
- #: inc/core/class.data.php:833
1141
  msgid "Enter tooltip content here"
1142
  msgstr "Введите сюда содержимое подсказки"
1143
 
1144
- #: inc/core/class.data.php:838
1145
  msgid "Show and hide on mouse hover"
1146
  msgstr "Показать и скрыть при наведении мыши"
1147
 
1148
- #: inc/core/class.data.php:839
1149
  msgid "Show and hide by mouse click"
1150
  msgstr "Показать и скрыть по клику мыши"
1151
 
1152
- #: inc/core/class.data.php:840
1153
  msgid "Always visible"
1154
  msgstr "Всегда видима"
1155
 
1156
- #: inc/core/class.data.php:843
1157
  msgid "Behavior"
1158
  msgstr "Поведение"
1159
 
1160
- #: inc/core/class.data.php:844
1161
  msgid "Select tooltip behavior"
1162
  msgstr "Выберите поведение подсказки"
1163
 
1164
- #: inc/core/class.data.php:849
1165
  msgid "Close button"
1166
  msgstr "Кнопка закрыть"
1167
 
1168
- #: inc/core/class.data.php:850
1169
  msgid "Show close button"
1170
  msgstr "Показывать кнопку закрыть"
1171
 
1172
- #: inc/core/class.data.php:859
1173
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1174
  msgstr "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
1175
 
1176
- #: inc/core/class.data.php:860
1177
  msgid "Tooltip window with custom content"
1178
  msgstr "Всплывающая подсказка с произвольным содержимым"
1179
 
1180
- #: inc/core/class.data.php:864
1181
  msgid "Private"
1182
  msgstr "Заметка для авторов"
1183
 
1184
- #: inc/core/class.data.php:875
1185
  msgid "Private note text"
1186
  msgstr "Текст приватной заметки"
1187
 
1188
- #: inc/core/class.data.php:876
1189
  msgid "Private note for post authors"
1190
  msgstr "Приватный текст для других авторов"
1191
 
1192
- #: inc/core/class.data.php:880
1193
  msgid "YouTube"
1194
  msgstr "YouTube"
1195
 
1196
- #: inc/core/class.data.php:887
1197
- #: inc/core/class.data.php:937
1198
- #: inc/core/class.data.php:985
1199
- #: inc/core/class.data.php:1236
1200
- #: inc/core/class.data.php:1326
1201
  msgid "Url"
1202
  msgstr "Ссылка"
1203
 
1204
- #: inc/core/class.data.php:888
1205
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1206
  msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1207
 
1208
- #: inc/core/class.data.php:896
1209
- #: inc/core/class.data.php:945
1210
- #: inc/core/class.data.php:993
1211
- #: inc/core/class.data.php:1034
1212
- #: inc/core/class.data.php:1088
1213
- #: inc/core/class.data.php:1335
1214
- #: inc/core/class.data.php:1373
1215
- #: inc/core/class.data.php:1422
1216
- #: inc/core/class.data.php:1512
1217
- #: inc/core/class.data.php:1618
1218
  msgid "Width"
1219
  msgstr "Ширина"
1220
 
1221
- #: inc/core/class.data.php:897
1222
- #: inc/core/class.data.php:946
1223
- #: inc/core/class.data.php:994
1224
- #: inc/core/class.data.php:1089
1225
  msgid "Player width"
1226
  msgstr "Ширина плеера"
1227
 
1228
- #: inc/core/class.data.php:906
1229
- #: inc/core/class.data.php:955
1230
- #: inc/core/class.data.php:1003
1231
- #: inc/core/class.data.php:1098
1232
  msgid "Player height"
1233
  msgstr "Высота плеера"
1234
 
1235
- #: inc/core/class.data.php:911
1236
- #: inc/core/class.data.php:960
1237
- #: inc/core/class.data.php:1008
1238
- #: inc/core/class.data.php:1350
1239
- #: inc/core/class.data.php:1388
1240
- #: inc/core/class.data.php:1435
1241
- #: inc/core/class.data.php:1525
1242
  msgid "Responsive"
1243
  msgstr "Отзывчивость (responsive)"
1244
 
1245
- #: inc/core/class.data.php:912
1246
- #: inc/core/class.data.php:961
1247
- #: inc/core/class.data.php:1009
1248
  msgid "Ignore width and height parameters and make player responsive"
1249
  msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1250
 
1251
- #: inc/core/class.data.php:917
1252
- #: inc/core/class.data.php:966
1253
- #: inc/core/class.data.php:1040
1254
- #: inc/core/class.data.php:1109
1255
- #: inc/core/class.data.php:1470
1256
- #: inc/core/class.data.php:1576
1257
  msgid "Autoplay"
1258
  msgstr "Автовоспроизведение"
1259
 
1260
- #: inc/core/class.data.php:918
1261
- #: inc/core/class.data.php:967
1262
  msgid "Play video automatically when page is loaded"
1263
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1264
 
1265
- #: inc/core/class.data.php:926
1266
  msgid "YouTube video"
1267
  msgstr "Видео YouTube"
1268
 
1269
- #: inc/core/class.data.php:930
1270
  msgid "Vimeo"
1271
  msgstr "Vimeo"
1272
 
1273
- #: inc/core/class.data.php:937
1274
  msgid "Url of Vimeo page with video"
1275
  msgstr "Ссылка на страницу Vimeo с видео"
1276
 
1277
- #: inc/core/class.data.php:975
1278
  msgid "Vimeo video"
1279
  msgstr "Видео Vimeo"
1280
 
1281
- #: inc/core/class.data.php:979
1282
  msgid "Screenr"
1283
  msgstr "Screenr"
1284
 
1285
- #: inc/core/class.data.php:985
1286
  msgid "Url of Screenr page with video"
1287
  msgstr "Ссылка на страницу Screenr с видео"
1288
 
1289
- #: inc/core/class.data.php:1017
1290
  msgid "Screenr video"
1291
  msgstr "Видео Screenr"
1292
 
1293
- #: inc/core/class.data.php:1021
1294
  msgid "Audio"
1295
  msgstr "Аудио"
1296
 
1297
- #: inc/core/class.data.php:1028
1298
- #: inc/core/class.data.php:1067
1299
  msgid "File"
1300
  msgstr "Файл"
1301
 
1302
- #: inc/core/class.data.php:1029
1303
  msgid "Audio file url. Supported formats: mp3, ogg"
1304
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1305
 
1306
- #: inc/core/class.data.php:1035
1307
  msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1308
  msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100&#37;</b>"
1309
 
1310
- #: inc/core/class.data.php:1041
1311
- #: inc/core/class.data.php:1110
1312
  msgid "Play file automatically when page is loaded"
1313
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1314
 
1315
- #: inc/core/class.data.php:1046
1316
- #: inc/core/class.data.php:1115
1317
  msgid "Loop"
1318
  msgstr "Повтор"
1319
 
1320
- #: inc/core/class.data.php:1047
1321
- #: inc/core/class.data.php:1116
1322
  msgid "Repeat when playback is ended"
1323
  msgstr "Повторять, когда воспроизведение окночено"
1324
 
1325
- #: inc/core/class.data.php:1056
1326
  msgid "Custom audio player"
1327
  msgstr "Настраиваемый аудио-плеер"
1328
 
1329
- #: inc/core/class.data.php:1060
1330
  msgid "Video"
1331
  msgstr "Видео"
1332
 
1333
- #: inc/core/class.data.php:1068
1334
  msgid "Url to mp4/flv video-file"
1335
  msgstr "Ссылка на mp4/flv видео-файл"
1336
 
1337
- #: inc/core/class.data.php:1073
1338
  msgid "Poster"
1339
  msgstr "Постер"
1340
 
1341
- #: inc/core/class.data.php:1074
1342
  msgid "Url to poster image, that will be shown before playback"
1343
  msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
1344
 
1345
- #: inc/core/class.data.php:1080
1346
  msgid "Player title"
1347
  msgstr "Заголовок плеера"
1348
 
1349
- #: inc/core/class.data.php:1103
1350
  msgid "Controls"
1351
  msgstr "Элементы управления"
1352
 
1353
- #: inc/core/class.data.php:1104
1354
  msgid "Show player controls (play/pause etc.) or not"
1355
  msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1356
 
1357
- #: inc/core/class.data.php:1125
1358
  msgid "Custom video player"
1359
  msgstr "Настраиваемый видео-плеер"
1360
 
1361
- #: inc/core/class.data.php:1129
1362
  msgid "Table"
1363
  msgstr "Таблица"
1364
 
1365
- #: inc/core/class.data.php:1136
1366
  msgid "CSV file"
1367
  msgstr "CSV файл"
1368
 
1369
- #: inc/core/class.data.php:1137
1370
  msgid "Upload CSV file if you want to create HTML-table from file"
1371
  msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1372
 
1373
- #: inc/core/class.data.php:1146
1374
  msgid ""
1375
  "<table>\n"
1376
  "<tr>\n"
@@ -1394,614 +1399,614 @@ msgstr ""
1394
  "</tr>\n"
1395
  "</table>"
1396
 
1397
- #: inc/core/class.data.php:1147
1398
  msgid "Styled table from HTML or CSV file"
1399
  msgstr "Стильная таблица из HTML или CSV файла"
1400
 
1401
- #: inc/core/class.data.php:1151
1402
  msgid "Permalink"
1403
  msgstr "Постоянная ссылка"
1404
 
1405
- #: inc/core/class.data.php:1157
1406
  msgid "ID"
1407
  msgstr "ID"
1408
 
1409
- #: inc/core/class.data.php:1158
1410
  msgid "Post or page ID"
1411
  msgstr "ID записи или страницы"
1412
 
1413
- #: inc/core/class.data.php:1168
1414
  msgid "Link target. blank - link will be opened in new window/tab"
1415
  msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
1416
 
1417
- #: inc/core/class.data.php:1178
1418
  msgid "Permalink to specified post/page"
1419
  msgstr "Постоянная ссылка на страницу"
1420
 
1421
- #: inc/core/class.data.php:1182
1422
  msgid "Members"
1423
  msgstr "Участники"
1424
 
1425
- #: inc/core/class.data.php:1187
1426
- #: inc/core/shortcodes.php:872
1427
  msgid "This content is for registered users only. Please %login%."
1428
  msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1429
 
1430
- #: inc/core/class.data.php:1188
1431
  msgid "Message"
1432
  msgstr "Сообщение"
1433
 
1434
- #: inc/core/class.data.php:1188
1435
  msgid "Message for not logged users"
1436
  msgstr "Собщение для неавторизованных"
1437
 
1438
- #: inc/core/class.data.php:1193
1439
  msgid "Box color"
1440
  msgstr "Цвет блока"
1441
 
1442
- #: inc/core/class.data.php:1193
1443
  msgid "This color will applied only to box for not logged users"
1444
  msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1445
 
1446
- #: inc/core/class.data.php:1196
1447
- #: inc/core/shortcodes.php:875
1448
  msgid "login"
1449
  msgstr "войдите"
1450
 
1451
- #: inc/core/class.data.php:1197
1452
  msgid "Login link text"
1453
  msgstr "Текст ссылки войти"
1454
 
1455
- #: inc/core/class.data.php:1197
1456
  msgid "Text for the login link"
1457
  msgstr "Текст ссылки ВОЙТИ"
1458
 
1459
- #: inc/core/class.data.php:1201
1460
  msgid "Login link url"
1461
  msgstr "Адрес ссылки войти"
1462
 
1463
- #: inc/core/class.data.php:1210
1464
  msgid "Content for logged members"
1465
  msgstr "Содержимое для авторизованых пользователей"
1466
 
1467
- #: inc/core/class.data.php:1211
1468
  msgid "Content for logged in members only"
1469
  msgstr "Ссодержимое для авторизованых"
1470
 
1471
- #: inc/core/class.data.php:1215
1472
  msgid "Guests"
1473
  msgstr "Гости"
1474
 
1475
- #: inc/core/class.data.php:1225
1476
  msgid "Content for guests"
1477
  msgstr "Содержимое для гостей"
1478
 
1479
- #: inc/core/class.data.php:1225
1480
  msgid "Content for guests only"
1481
  msgstr "Ссодержимое только для гостей"
1482
 
1483
- #: inc/core/class.data.php:1229
1484
  msgid "RSS Feed"
1485
  msgstr "RSS лента"
1486
 
1487
- #: inc/core/class.data.php:1237
1488
  msgid "Url to RSS-feed"
1489
  msgstr "Ссылка на RSS-ленту"
1490
 
1491
- #: inc/core/class.data.php:1242
1492
  msgid "Limit"
1493
  msgstr "Лимит"
1494
 
1495
- #: inc/core/class.data.php:1242
1496
  msgid "Number of items to show"
1497
  msgstr "Количество элементов для отображения"
1498
 
1499
- #: inc/core/class.data.php:1250
1500
  msgid "Feed grabber"
1501
  msgstr "Граббер новостных лент"
1502
 
1503
- #: inc/core/class.data.php:1254
1504
  msgid "Menu"
1505
  msgstr "Меню"
1506
 
1507
- #: inc/core/class.data.php:1261
1508
  msgid "Menu name"
1509
  msgstr "Имя меню"
1510
 
1511
- #: inc/core/class.data.php:1261
1512
  msgid "Custom menu name. Ex: Main menu"
1513
  msgstr "Имя произвольного меню. Например: Главное меню"
1514
 
1515
- #: inc/core/class.data.php:1269
1516
  msgid "Custom menu by name"
1517
  msgstr "Произвольное меню"
1518
 
1519
- #: inc/core/class.data.php:1273
1520
  msgid "Sub pages"
1521
  msgstr "Подстраницы"
1522
 
1523
- #: inc/core/class.data.php:1280
1524
- #: inc/core/class.data.php:1306
1525
  msgid "Depth"
1526
  msgstr "Глубина"
1527
 
1528
- #: inc/core/class.data.php:1281
1529
  msgid "Max depth level of children pages"
1530
  msgstr "Максимальная глубина дочерних страниц"
1531
 
1532
- #: inc/core/class.data.php:1286
1533
  msgid "Parent ID"
1534
  msgstr "ID родителя"
1535
 
1536
- #: inc/core/class.data.php:1287
1537
  msgid "ID of the parent page. Leave blank to use current page"
1538
  msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
1539
 
1540
- #: inc/core/class.data.php:1295
1541
  msgid "List of sub pages"
1542
  msgstr "Список дочерних страниц"
1543
 
1544
- #: inc/core/class.data.php:1299
1545
  msgid "Siblings"
1546
  msgstr "Соседние страницы"
1547
 
1548
- #: inc/core/class.data.php:1307
1549
  msgid "Max depth level"
1550
  msgstr "Максимальный уровень вложенности"
1551
 
1552
- #: inc/core/class.data.php:1315
1553
  msgid "List of cureent page siblings"
1554
  msgstr "Список страниц, соседних с текущей"
1555
 
1556
- #: inc/core/class.data.php:1319
1557
  msgid "Document"
1558
  msgstr "Документ"
1559
 
1560
- #: inc/core/class.data.php:1327
1561
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1562
  msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
1563
 
1564
- #: inc/core/class.data.php:1336
1565
  msgid "Viewer width"
1566
  msgstr "Ширина просмотрщика"
1567
 
1568
- #: inc/core/class.data.php:1345
1569
  msgid "Viewer height"
1570
  msgstr "Высота просмотрщика"
1571
 
1572
- #: inc/core/class.data.php:1351
1573
  msgid "Ignore width and height parameters and make viewer responsive"
1574
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
1575
 
1576
- #: inc/core/class.data.php:1359
1577
  msgid "Document viewer by Google"
1578
  msgstr "Просмотрщик документов от Google"
1579
 
1580
- #: inc/core/class.data.php:1363
1581
  msgid "Gmap"
1582
  msgstr "Google карта"
1583
 
1584
- #: inc/core/class.data.php:1374
1585
  msgid "Map width"
1586
  msgstr "Ширина карты"
1587
 
1588
- #: inc/core/class.data.php:1383
1589
  msgid "Map height"
1590
  msgstr "Высота карты"
1591
 
1592
- #: inc/core/class.data.php:1389
1593
  msgid "Ignore width and height parameters and make map responsive"
1594
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
1595
 
1596
- #: inc/core/class.data.php:1394
1597
  msgid "Marker"
1598
  msgstr "Маркер"
1599
 
1600
- #: inc/core/class.data.php:1395
1601
  msgid "Address for the marker. You can type it in any language"
1602
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
1603
 
1604
- #: inc/core/class.data.php:1403
1605
  msgid "Maps by Google"
1606
  msgstr "Карты от Google"
1607
 
1608
- #: inc/core/class.data.php:1407
1609
  msgid "Slider"
1610
  msgstr "Слайдер"
1611
 
1612
- #: inc/core/class.data.php:1414
1613
  msgid "Choose source gallery, that will be used for this slider"
1614
  msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
1615
 
1616
- #: inc/core/class.data.php:1422
1617
  msgid "Slider width (in pixels)"
1618
  msgstr "Ширина слайдера (в пикселях)"
1619
 
1620
- #: inc/core/class.data.php:1430
1621
  msgid "Slider height (in pixels)"
1622
  msgstr "Высота слайдера (в пикселях)"
1623
 
1624
- #: inc/core/class.data.php:1436
1625
  msgid "Ignore width and height parameters and make slider responsive"
1626
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
1627
 
1628
- #: inc/core/class.data.php:1441
1629
- #: inc/core/class.data.php:1547
1630
- #: inc/core/class.data.php:1636
1631
  msgid "Show titles"
1632
  msgstr "Показывать заголовки"
1633
 
1634
- #: inc/core/class.data.php:1441
1635
  msgid "Display slide titles"
1636
  msgstr "Отображать заголовки слайдов"
1637
 
1638
- #: inc/core/class.data.php:1446
1639
  msgid "Is slider centered on the page"
1640
  msgstr "Слайдер выровнен по центру страницы"
1641
 
1642
- #: inc/core/class.data.php:1451
1643
- #: inc/core/class.data.php:1557
1644
  msgid "Arrows"
1645
  msgstr "Стрелки"
1646
 
1647
- #: inc/core/class.data.php:1451
1648
- #: inc/core/class.data.php:1557
1649
  msgid "Show left and right arrows"
1650
  msgstr "Показывать стрелки влево/вправо"
1651
 
1652
- #: inc/core/class.data.php:1456
1653
- #: inc/core/class.data.php:1562
1654
  msgid "Pagination"
1655
  msgstr "Страницы"
1656
 
1657
- #: inc/core/class.data.php:1457
1658
- #: inc/core/class.data.php:1563
1659
  msgid "Show pagination"
1660
  msgstr "Показывать страницы"
1661
 
1662
- #: inc/core/class.data.php:1461
1663
- #: inc/core/class.data.php:1567
1664
  msgid "Mouse wheel control"
1665
  msgstr "Управление колесом мыши"
1666
 
1667
- #: inc/core/class.data.php:1462
1668
  msgid "Allow to change slides with mouse wheel"
1669
  msgstr "Разрешить перелистывание слайдов колесом мышки"
1670
 
1671
- #: inc/core/class.data.php:1471
1672
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
1673
  msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
1674
 
1675
- #: inc/core/class.data.php:1479
1676
- #: inc/core/class.data.php:1585
1677
  msgid "Speed"
1678
  msgstr "Скорость"
1679
 
1680
- #: inc/core/class.data.php:1479
1681
- #: inc/core/class.data.php:1585
1682
  msgid "Specify animation speed"
1683
  msgstr "Укажите скорость анимации"
1684
 
1685
- #: inc/core/class.data.php:1484
1686
- #: inc/core/class.data.php:1590
1687
- #: inc/core/class.data.php:1642
1688
  msgid "Links target"
1689
  msgstr "Цель ссылок"
1690
 
1691
- #: inc/core/class.data.php:1485
1692
  msgid "Open slides links in new window/tab"
1693
  msgstr "Открывать ссылки слайдов в новом окне или вкладке"
1694
 
1695
- #: inc/core/class.data.php:1493
1696
  msgid "Customizable image slider"
1697
  msgstr "Настраиваемый слайдер изображений"
1698
 
1699
- #: inc/core/class.data.php:1497
1700
  msgid "Carousel"
1701
  msgstr "Карусель"
1702
 
1703
- #: inc/core/class.data.php:1504
1704
  msgid "Choose source gallery, that will be used for this carousel"
1705
  msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
1706
 
1707
- #: inc/core/class.data.php:1512
1708
  msgid "Carousel width (in pixels)"
1709
  msgstr "Ширина карусели (в пикселях)"
1710
 
1711
- #: inc/core/class.data.php:1520
1712
  msgid "Carousel height (in pixels)"
1713
  msgstr "Высота карусели (в пикселях)"
1714
 
1715
- #: inc/core/class.data.php:1526
1716
  msgid "Ignore width and height parameters and make carousel responsive"
1717
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
1718
 
1719
- #: inc/core/class.data.php:1533
1720
  msgid "Items to show"
1721
  msgstr "Количество элементов для отображения"
1722
 
1723
- #: inc/core/class.data.php:1534
1724
  msgid "How much carousel items is visible"
1725
  msgstr "Сколько элементов карусели видны постоянно"
1726
 
1727
- #: inc/core/class.data.php:1541
1728
  msgid "Scroll number"
1729
  msgstr "Кол-во прокручиваемых"
1730
 
1731
- #: inc/core/class.data.php:1542
1732
  msgid "How much items are scrolled in one transition"
1733
  msgstr "Сколько элементов карусели прокручивается за один переход"
1734
 
1735
- #: inc/core/class.data.php:1547
1736
  msgid "Display titles for each item"
1737
  msgstr "Показывать заголовки для каждого элемента карусели"
1738
 
1739
- #: inc/core/class.data.php:1552
1740
  msgid "Is carousel centered on the page"
1741
  msgstr "Карусель выровнена по центру страницы"
1742
 
1743
- #: inc/core/class.data.php:1568
1744
  msgid "Allow to rotate carousel with mouse wheel"
1745
  msgstr "Разрешить прокрутку карусели колесом мыши"
1746
 
1747
- #: inc/core/class.data.php:1577
1748
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
1749
  msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
1750
 
1751
- #: inc/core/class.data.php:1591
1752
  msgid "Open carousel links in new window/tab"
1753
  msgstr "Открывать ссылки карусели в новом окне или вкладке"
1754
 
1755
- #: inc/core/class.data.php:1599
1756
  msgid "Customizable image carousel"
1757
  msgstr "Настраиваемая карусель изображений"
1758
 
1759
- #: inc/core/class.data.php:1610
1760
  msgid "Choose source gallery, that will be used for this shortcode"
1761
  msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
1762
 
1763
- #: inc/core/class.data.php:1618
1764
  msgid "Single item width (in pixels)"
1765
  msgstr "Ширина одного изображения (в пикселях)"
1766
 
1767
- #: inc/core/class.data.php:1626
1768
  msgid "Single item height (in pixels)"
1769
  msgstr "Высота одного изображения (в пикселях)"
1770
 
1771
- #: inc/core/class.data.php:1631
1772
  msgid "Never"
1773
  msgstr "Никогда"
1774
 
1775
- #: inc/core/class.data.php:1632
1776
  msgid "On mouse over"
1777
  msgstr "При наведении мыши"
1778
 
1779
- #: inc/core/class.data.php:1633
1780
  msgid "Always"
1781
  msgstr "Всегда"
1782
 
1783
- #: inc/core/class.data.php:1637
1784
  msgid "Title display mode"
1785
  msgstr "Режим отображения заголовков"
1786
 
1787
- #: inc/core/class.data.php:1642
1788
  msgid "Open links in new window/tab"
1789
  msgstr "Открывать ссылки в новом окне или вкладке"
1790
 
1791
- #: inc/core/class.data.php:1650
1792
  msgid "Customizable image gallery"
1793
  msgstr "Настраиваемая галерея изображений"
1794
 
1795
- #: inc/core/class.data.php:1654
1796
  msgid "Posts"
1797
  msgstr "Записи"
1798
 
1799
- #: inc/core/class.data.php:1659
1800
  msgid "Template"
1801
  msgstr "Шаблон"
1802
 
1803
- #: inc/core/class.data.php:1660
1804
  msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
1805
  msgstr "<b>Не изменяйте значение этого поля, если вы не понимаете описания ниже.</b><br/>Относительный путь к файлу шаблона. Шаблоны по умолчанию расположены в папке с плагином (папка templates). Вы можете скопировать шаблоны в папку со своей темой и изменить как вам угодно. Вы можете использовать следующие шаблоны, которые уже поставляются с плагином и находятся в его папке:<br/><b%value>templates/default-loop.php</b> - обычный цикл постов<br/><b%value>templates/teaser-loop.php</b> - цикл постов в виде тизеров, изображения + заголовки<br/><b%value>templates/single-post.php</b> - шаблон одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - маркированный список с заголовками постов"
1806
 
1807
- #: inc/core/class.data.php:1664
1808
  msgid "Post ID's"
1809
  msgstr "ID постов"
1810
 
1811
- #: inc/core/class.data.php:1665
1812
  msgid "Enter comma separated ID's of the posts that you want to show"
1813
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
1814
 
1815
- #: inc/core/class.data.php:1673
1816
  msgid "Posts per page"
1817
  msgstr "Кол-во записей"
1818
 
1819
- #: inc/core/class.data.php:1674
1820
  msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
1821
  msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
1822
 
1823
- #: inc/core/class.data.php:1681
1824
  msgid "Post types"
1825
  msgstr "Типы постов"
1826
 
1827
- #: inc/core/class.data.php:1682
1828
  msgid "Select post types. Hold Ctrl key to select multiple post types"
1829
  msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
1830
 
1831
- #: inc/core/class.data.php:1688
1832
  msgid "Taxonomy"
1833
  msgstr "Таксономия"
1834
 
1835
- #: inc/core/class.data.php:1689
1836
  msgid "Select taxonomy to show posts from"
1837
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
1838
 
1839
- #: inc/core/class.data.php:1696
1840
  msgid "Terms"
1841
  msgstr "Категории (terms)"
1842
 
1843
- #: inc/core/class.data.php:1696
1844
  msgid "Select terms to show posts from"
1845
  msgstr "Выберите категории, из которых нужно показать записи"
1846
 
1847
- #: inc/core/class.data.php:1701
1848
  msgid "Taxonomy term operator"
1849
  msgstr "Оператор выбора категорий"
1850
 
1851
- #: inc/core/class.data.php:1702
1852
  msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
1853
  msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
1854
 
1855
- #: inc/core/class.data.php:1709
1856
  msgid "Authors"
1857
  msgstr "Авторы"
1858
 
1859
- #: inc/core/class.data.php:1710
1860
  msgid "Choose the authors whose posts you want to show"
1861
  msgstr "Выберите авторов, чьи записи хотите показать"
1862
 
1863
- #: inc/core/class.data.php:1714
1864
  msgid "Meta key"
1865
  msgstr "Произвольное поле"
1866
 
1867
- #: inc/core/class.data.php:1715
1868
  msgid "Enter meta key name to show posts that have this key"
1869
  msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
1870
 
1871
- #: inc/core/class.data.php:1722
1872
  msgid "Offset"
1873
  msgstr "Смещение (offset)"
1874
 
1875
- #: inc/core/class.data.php:1723
1876
  msgid "Specify offset to start posts loop not from first post"
1877
  msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
1878
 
1879
- #: inc/core/class.data.php:1728
1880
  msgid "Descending"
1881
  msgstr "По убыванию"
1882
 
1883
- #: inc/core/class.data.php:1729
1884
  msgid "Ascending"
1885
  msgstr "По возрастанию"
1886
 
1887
- #: inc/core/class.data.php:1732
1888
  msgid "Order"
1889
  msgstr "Порядок"
1890
 
1891
- #: inc/core/class.data.php:1733
1892
  msgid "Posts order"
1893
  msgstr "Порядок сортировки записей"
1894
 
1895
- #: inc/core/class.data.php:1739
1896
  msgid "Post ID"
1897
  msgstr "ID записи"
1898
 
1899
- #: inc/core/class.data.php:1740
1900
  msgid "Post author"
1901
  msgstr "Автор записи"
1902
 
1903
- #: inc/core/class.data.php:1741
1904
  msgid "Post title"
1905
  msgstr "Заголовок записи"
1906
 
1907
- #: inc/core/class.data.php:1742
1908
  msgid "Post slug"
1909
  msgstr "Ссылка записи (slug)"
1910
 
1911
- #: inc/core/class.data.php:1743
1912
  msgid "Date"
1913
  msgstr "Дата"
1914
 
1915
- #: inc/core/class.data.php:1743
1916
  msgid "Last modified date"
1917
  msgstr "Дата изменения"
1918
 
1919
- #: inc/core/class.data.php:1744
1920
- #: inc/core/class.data.php:1754
1921
  msgid "Post parent"
1922
  msgstr "Родитель"
1923
 
1924
- #: inc/core/class.data.php:1745
1925
  msgid "Random"
1926
  msgstr "Случайно"
1927
 
1928
- #: inc/core/class.data.php:1745
1929
  msgid "Comments number"
1930
  msgstr "Кол-во комментариев"
1931
 
1932
- #: inc/core/class.data.php:1746
1933
  msgid "Menu order"
1934
  msgstr "Порядок меню"
1935
 
1936
- #: inc/core/class.data.php:1746
1937
  msgid "Meta key values"
1938
  msgstr "Значение произвольного поля"
1939
 
1940
- #: inc/core/class.data.php:1749
1941
  msgid "Order by"
1942
  msgstr "Сортировать по"
1943
 
1944
- #: inc/core/class.data.php:1750
1945
  msgid "Order posts by"
1946
  msgstr "Сортировать записи по следующему признаку"
1947
 
1948
- #: inc/core/class.data.php:1755
1949
  msgid "Show childrens of entered post (enter post ID)"
1950
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
1951
 
1952
- #: inc/core/class.data.php:1760
1953
  msgid "Published"
1954
  msgstr "Опубликован"
1955
 
1956
- #: inc/core/class.data.php:1761
1957
  msgid "Pending"
1958
  msgstr "Ожидает"
1959
 
1960
- #: inc/core/class.data.php:1762
1961
  msgid "Draft"
1962
  msgstr "Черновик"
1963
 
1964
- #: inc/core/class.data.php:1763
1965
  msgid "Auto-draft"
1966
  msgstr "Авто-черновик"
1967
 
1968
- #: inc/core/class.data.php:1764
1969
  msgid "Future post"
1970
  msgstr "Запланирован"
1971
 
1972
- #: inc/core/class.data.php:1765
1973
  msgid "Private post"
1974
  msgstr "Приватная запись"
1975
 
1976
- #: inc/core/class.data.php:1766
1977
  msgid "Inherit"
1978
  msgstr "Вложенный"
1979
 
1980
- #: inc/core/class.data.php:1767
1981
  msgid "Trashed"
1982
  msgstr "В корзине"
1983
 
1984
- #: inc/core/class.data.php:1768
1985
  msgid "Any"
1986
  msgstr "Любой"
1987
 
1988
- #: inc/core/class.data.php:1771
1989
  msgid "Post status"
1990
  msgstr "Статус записи"
1991
 
1992
- #: inc/core/class.data.php:1772
1993
  msgid "Show only posts with selected status"
1994
  msgstr "Показать только записи с выбранным статусом"
1995
 
1996
- #: inc/core/class.data.php:1777
1997
  msgid "Ignore sticky"
1998
  msgstr "Игнорировать прикрепленные"
1999
 
2000
- #: inc/core/class.data.php:1778
2001
  msgid "Select Yes to ignore posts that is sticked"
2002
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
2003
 
2004
- #: inc/core/class.data.php:1782
2005
  msgid "Custom posts query with customizable template"
2006
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
2007
 
@@ -2248,29 +2253,29 @@ msgstr "Специальный виджет для вставки шорткод
2248
  msgid "Title:"
2249
  msgstr "Заголовок:"
2250
 
2251
- #: inc/core/shortcodes.php:483
2252
  msgid "This is box title"
2253
  msgstr "Заголовок блока"
2254
 
2255
- #: inc/core/shortcodes.php:663
2256
- #: inc/core/shortcodes.php:696
2257
- #: inc/core/shortcodes.php:730
2258
- #: inc/core/shortcodes.php:764
2259
- #: inc/core/shortcodes.php:804
2260
  msgid "please specify correct url"
2261
  msgstr "пожалуйста укажите корректную ссылку"
2262
 
2263
- #: inc/core/shortcodes.php:1006
2264
  msgid "This menu doesn't exists, or has no elements"
2265
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
2266
 
2267
- #: inc/core/shortcodes.php:1094
2268
- #: inc/core/shortcodes.php:1180
2269
- #: inc/core/shortcodes.php:1249
2270
  msgid "images not found"
2271
  msgstr "изображения не найдены"
2272
 
2273
- #: inc/core/shortcodes.php:1447
2274
  msgid "template not found"
2275
  msgstr "шаблон не найден"
2276
 
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-02 03:32+0300\n"
6
+ "PO-Revision-Date: 2013-10-02 03:32+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
22
  #: inc/core/class.data.php:158
23
  #: inc/core/class.data.php:276
24
  #: inc/core/class.data.php:356
25
+ #: inc/core/class.data.php:523
26
+ #: inc/core/class.data.php:660
27
+ #: inc/core/class.data.php:819
28
  msgid "Default"
29
  msgstr "По умолчанию"
30
 
35
  #: inc/example-addon.php:49
36
  #: inc/core/class.data.php:163
37
  #: inc/core/class.data.php:362
38
+ #: inc/core/class.data.php:487
39
+ #: inc/core/class.data.php:533
40
+ #: inc/core/class.data.php:667
41
+ #: inc/core/class.data.php:789
42
  msgid "Style"
43
  msgstr "Стиль"
44
 
68
  msgstr "Содержимое"
69
 
70
  #: inc/core/class.data.php:36
71
+ #: inc/core/class.data.php:648
72
  msgid "Box"
73
  msgstr "Блок"
74
 
77
  msgstr "Медиа"
78
 
79
  #: inc/core/class.data.php:38
80
+ #: inc/core/class.data.php:1419
81
+ #: inc/core/class.data.php:1509
 
82
  #: inc/core/class.data.php:1609
83
+ #: inc/core/class.data.php:1615
84
  msgid "Gallery"
85
  msgstr "Галерея"
86
 
95
  #: inc/core/class.data.php:60
96
  #: inc/core/class.data.php:367
97
  #: inc/core/class.data.php:444
98
+ #: inc/core/class.data.php:551
99
  msgid "Size"
100
  msgstr "Размер"
101
 
105
 
106
  #: inc/core/class.data.php:65
107
  #: inc/core/class.data.php:332
108
+ #: inc/core/class.data.php:593
109
+ #: inc/core/class.data.php:797
110
  msgid "Left"
111
  msgstr "Слева"
112
 
113
  #: inc/core/class.data.php:66
114
+ #: inc/core/class.data.php:1452
115
+ #: inc/core/class.data.php:1558
116
  msgid "Center"
117
  msgstr "По центру"
118
 
119
  #: inc/core/class.data.php:67
120
  #: inc/core/class.data.php:333
121
+ #: inc/core/class.data.php:591
122
+ #: inc/core/class.data.php:798
123
  msgid "Right"
124
  msgstr "Справа"
125
 
147
  #: inc/core/class.data.php:371
148
  #: inc/core/class.data.php:397
149
  #: inc/core/class.data.php:413
150
+ #: inc/core/class.data.php:455
151
+ #: inc/core/class.data.php:491
152
+ #: inc/core/class.data.php:606
153
+ #: inc/core/class.data.php:640
154
+ #: inc/core/class.data.php:692
155
+ #: inc/core/class.data.php:727
156
+ #: inc/core/class.data.php:758
157
+ #: inc/core/class.data.php:860
158
+ #: inc/core/class.data.php:876
159
+ #: inc/core/class.data.php:928
160
+ #: inc/core/class.data.php:977
161
+ #: inc/core/class.data.php:1019
162
+ #: inc/core/class.data.php:1057
163
+ #: inc/core/class.data.php:1126
164
+ #: inc/core/class.data.php:1147
165
+ #: inc/core/class.data.php:1178
166
+ #: inc/core/class.data.php:1211
167
+ #: inc/core/class.data.php:1227
168
+ #: inc/core/class.data.php:1252
169
+ #: inc/core/class.data.php:1271
170
+ #: inc/core/class.data.php:1297
171
+ #: inc/core/class.data.php:1317
172
+ #: inc/core/class.data.php:1361
173
+ #: inc/core/class.data.php:1405
174
+ #: inc/core/class.data.php:1495
175
+ #: inc/core/class.data.php:1601
176
+ #: inc/core/class.data.php:1652
177
  msgid "Class"
178
  msgstr "Класс"
179
 
191
  #: inc/core/class.data.php:372
192
  #: inc/core/class.data.php:398
193
  #: inc/core/class.data.php:414
194
+ #: inc/core/class.data.php:456
195
+ #: inc/core/class.data.php:492
196
+ #: inc/core/class.data.php:607
197
+ #: inc/core/class.data.php:641
198
+ #: inc/core/class.data.php:693
199
+ #: inc/core/class.data.php:728
200
+ #: inc/core/class.data.php:759
201
+ #: inc/core/class.data.php:861
202
+ #: inc/core/class.data.php:877
203
+ #: inc/core/class.data.php:929
204
+ #: inc/core/class.data.php:978
205
+ #: inc/core/class.data.php:1020
206
+ #: inc/core/class.data.php:1058
207
+ #: inc/core/class.data.php:1127
208
+ #: inc/core/class.data.php:1148
209
+ #: inc/core/class.data.php:1179
210
+ #: inc/core/class.data.php:1212
211
+ #: inc/core/class.data.php:1228
212
+ #: inc/core/class.data.php:1253
213
+ #: inc/core/class.data.php:1272
214
+ #: inc/core/class.data.php:1298
215
+ #: inc/core/class.data.php:1318
216
+ #: inc/core/class.data.php:1362
217
+ #: inc/core/class.data.php:1406
218
+ #: inc/core/class.data.php:1496
219
+ #: inc/core/class.data.php:1602
220
+ #: inc/core/class.data.php:1653
221
  msgid "Extra CSS class"
222
  msgstr "Дополнительный CSS класс"
223
 
273
 
274
  #: inc/core/class.data.php:120
275
  #: inc/core/class.data.php:147
276
+ #: inc/core/class.data.php:622
277
+ #: inc/core/class.data.php:655
278
+ #: inc/core/class.data.php:1085
279
  msgid "Title"
280
  msgstr "Заголовок"
281
 
393
  msgstr "Пробел"
394
 
395
  #: inc/core/class.data.php:228
396
+ #: inc/core/class.data.php:911
397
+ #: inc/core/class.data.php:960
398
+ #: inc/core/class.data.php:1008
399
+ #: inc/core/class.data.php:1103
400
+ #: inc/core/class.data.php:1350
401
+ #: inc/core/class.data.php:1388
402
+ #: inc/core/class.data.php:1436
403
+ #: inc/core/class.data.php:1526
404
+ #: inc/core/class.data.php:1632
405
  msgid "Height"
406
  msgstr "Высота"
407
 
418
  msgstr "Выделитель"
419
 
420
  #: inc/core/class.data.php:249
421
+ #: inc/core/class.data.php:539
422
+ #: inc/core/class.data.php:710
423
  msgid "Background"
424
  msgstr "Фон"
425
 
428
  msgstr "Цвет фона выделяемого текста"
429
 
430
  #: inc/core/class.data.php:256
431
+ #: inc/core/class.data.php:545
432
+ #: inc/core/class.data.php:716
433
  msgid "Text color"
434
  msgstr "Цвет текста"
435
 
520
  msgstr "Буквица"
521
 
522
  #: inc/core/class.data.php:357
523
+ #: inc/core/class.data.php:524
524
  msgid "Flat"
525
  msgstr "Плоский"
526
 
527
  #: inc/core/class.data.php:358
528
+ #: inc/core/class.data.php:580
529
  msgid "Light"
530
  msgstr "Светлый"
531
 
627
  msgid "Select column width. This width will be calculated depend page width"
628
  msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
629
 
630
+ #: inc/core/class.data.php:450
631
+ #: inc/core/class.data.php:562
632
+ msgid "Centered"
633
+ msgstr "По центру"
634
+
635
+ #: inc/core/class.data.php:451
636
+ msgid "Is this column centered on the page"
637
+ msgstr "Колонка выровнена по центру страницы"
638
+
639
+ #: inc/core/class.data.php:459
640
  msgid "Column content"
641
  msgstr "Содержимое колонки"
642
 
643
+ #: inc/core/class.data.php:459
644
  msgid "Flexible and responsive columns"
645
  msgstr "Резновые колонки"
646
 
647
+ #: inc/core/class.data.php:463
648
  msgid "List"
649
  msgstr "Список"
650
 
651
+ #: inc/core/class.data.php:470
652
  msgid "Star"
653
  msgstr "Звезда"
654
 
655
+ #: inc/core/class.data.php:471
656
  msgid "Arrow"
657
  msgstr "Стрелка"
658
 
659
+ #: inc/core/class.data.php:472
660
  msgid "Check"
661
  msgstr "Отметка"
662
 
663
+ #: inc/core/class.data.php:473
664
  msgid "Cross"
665
  msgstr "Крестик"
666
 
667
+ #: inc/core/class.data.php:474
668
  msgid "Thumbs up"
669
  msgstr "Палец вверх"
670
 
671
+ #: inc/core/class.data.php:475
672
+ #: inc/core/class.data.php:507
673
  msgid "Link"
674
  msgstr "Ссылка"
675
 
676
+ #: inc/core/class.data.php:476
677
  msgid "Gear"
678
  msgstr "Шестеренка"
679
 
680
+ #: inc/core/class.data.php:477
681
  msgid "Time"
682
  msgstr "Время"
683
 
684
+ #: inc/core/class.data.php:478
685
+ #: inc/core/class.data.php:702
686
  msgid "Note"
687
  msgstr "Заметка"
688
 
689
+ #: inc/core/class.data.php:479
690
  msgid "Plus"
691
  msgstr "Плюс"
692
 
693
+ #: inc/core/class.data.php:480
694
  msgid "Guard"
695
  msgstr "Защита"
696
 
697
+ #: inc/core/class.data.php:481
698
  msgid "Event"
699
  msgstr "Событие"
700
 
701
+ #: inc/core/class.data.php:482
702
  msgid "Idea"
703
  msgstr "Идя"
704
 
705
+ #: inc/core/class.data.php:483
706
  #: inc/core/class.generator.php:88
707
  #: inc/core/class.shortcodes-ultimate.php:115
708
  #: inc/vendor/class.sunrise-framework.php:281
709
  msgid "Settings"
710
  msgstr "Настройки"
711
 
712
+ #: inc/core/class.data.php:484
713
  msgid "Twitter"
714
  msgstr "Твиттер"
715
 
716
+ #: inc/core/class.data.php:487
717
  msgid "List items style/icons"
718
  msgstr "Стиль/иконка элементов списка"
719
 
720
+ #: inc/core/class.data.php:496
721
  msgid ""
722
  "<ul>\n"
723
  "<li>List item</li>\n"
731
  "<li>Элемент списка</li>\n"
732
  "</ul>"
733
 
734
+ #: inc/core/class.data.php:496
735
  msgid "Styled unordered list"
736
  msgstr "Стильный неупорядоченный список"
737
 
738
+ #: inc/core/class.data.php:500
739
  msgid "Button"
740
  msgstr "Кнопка"
741
 
742
+ #: inc/core/class.data.php:508
743
  msgid "Button link"
744
  msgstr "Ссылка кнопки"
745
 
746
+ #: inc/core/class.data.php:513
747
+ #: inc/core/class.data.php:1169
748
  msgid "Same tab"
749
  msgstr "Та же вкладка"
750
 
751
+ #: inc/core/class.data.php:514
752
+ #: inc/core/class.data.php:1170
753
  msgid "New tab"
754
  msgstr "Новая вкладка"
755
 
756
+ #: inc/core/class.data.php:517
757
+ #: inc/core/class.data.php:1173
758
  msgid "Target"
759
  msgstr "Цель"
760
 
761
+ #: inc/core/class.data.php:518
762
  msgid "Button link target"
763
  msgstr "Цель ссылки кнопки"
764
 
765
+ #: inc/core/class.data.php:525
766
+ #: inc/core/class.data.php:661
767
  msgid "Soft"
768
  msgstr "Мягкий"
769
 
770
+ #: inc/core/class.data.php:526
771
+ #: inc/core/class.data.php:662
772
  msgid "Glass"
773
  msgstr "Стекло"
774
 
775
+ #: inc/core/class.data.php:527
776
+ #: inc/core/class.data.php:663
777
  msgid "Bubbles"
778
  msgstr "Пузыри"
779
 
780
+ #: inc/core/class.data.php:528
781
+ #: inc/core/class.data.php:664
782
  msgid "Noise"
783
  msgstr "Шум"
784
 
785
+ #: inc/core/class.data.php:529
786
  msgid "Stroked"
787
  msgstr "Прошитый"
788
 
789
+ #: inc/core/class.data.php:530
790
  msgid "3D"
791
  msgstr "3D"
792
 
793
+ #: inc/core/class.data.php:533
794
  msgid "Button background style preset"
795
  msgstr "Стиль фона кнопки"
796
 
797
+ #: inc/core/class.data.php:539
798
  msgid "Button background color"
799
  msgstr "Цвет фона кнопки"
800
 
801
+ #: inc/core/class.data.php:546
802
  msgid "Button text color"
803
  msgstr "Цвет текста кнопки"
804
 
805
+ #: inc/core/class.data.php:552
806
  msgid "Button size"
807
  msgstr "Размер кнопки"
808
 
809
+ #: inc/core/class.data.php:557
810
  msgid "Fluid"
811
  msgstr "Резиновая"
812
 
813
+ #: inc/core/class.data.php:557
814
  msgid "Fluid buttons has 100% width"
815
  msgstr "Резиновые кнопки имеют ширину 100%"
816
 
817
+ #: inc/core/class.data.php:562
 
 
 
 
818
  msgid "Is button centered on the page"
819
  msgstr "Кнопка выровнена по центру страницы"
820
 
821
+ #: inc/core/class.data.php:568
822
+ #: inc/core/class.data.php:687
823
+ #: inc/core/class.data.php:723
824
  msgid "Radius"
825
  msgstr "Радиус"
826
 
827
+ #: inc/core/class.data.php:569
828
  msgid "Radius of button corners. Auto-radius calculation based on button size"
829
  msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
830
 
831
+ #: inc/core/class.data.php:574
832
+ #: inc/core/class.data.php:628
833
  msgid "Icon"
834
  msgstr "Иконка"
835
 
836
+ #: inc/core/class.data.php:575
837
  msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
838
  msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
839
 
840
+ #: inc/core/class.data.php:581
841
  msgid "Dark"
842
  msgstr "Темный"
843
 
844
+ #: inc/core/class.data.php:584
845
  msgid "Text shadow color"
846
  msgstr "Цвет тени текста"
847
 
848
+ #: inc/core/class.data.php:584
849
  msgid "Color of button text shadow"
850
  msgstr "Цвет тени текста кнопки"
851
 
852
+ #: inc/core/class.data.php:589
853
+ #: inc/core/class.data.php:1744
854
  msgid "None"
855
  msgstr "Нет"
856
 
857
+ #: inc/core/class.data.php:590
858
+ #: inc/core/class.data.php:795
859
  msgid "Top"
860
  msgstr "Сверху"
861
 
862
+ #: inc/core/class.data.php:592
863
+ #: inc/core/class.data.php:796
864
  msgid "Bottom"
865
  msgstr "Снизу"
866
 
867
+ #: inc/core/class.data.php:594
868
  msgid "Top right"
869
  msgstr "Сверху справа"
870
 
871
+ #: inc/core/class.data.php:595
872
  msgid "Top left"
873
  msgstr "Сверху слева"
874
 
875
+ #: inc/core/class.data.php:595
876
  msgid "Bottom right"
877
  msgstr "Снизу справа"
878
 
879
+ #: inc/core/class.data.php:595
880
  msgid "Bottom left"
881
  msgstr "Снизу слева"
882
 
883
+ #: inc/core/class.data.php:597
884
  msgid "Text shadow position"
885
  msgstr "Положение тени текста"
886
 
887
+ #: inc/core/class.data.php:597
888
  msgid "Position of button text shadow"
889
  msgstr "Положение тени текста кнопки"
890
 
891
+ #: inc/core/class.data.php:601
892
  msgid "Description"
893
  msgstr "Описание"
894
 
895
+ #: inc/core/class.data.php:602
896
  msgid "Small description under button text. This option is incompatible with icon."
897
  msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
898
 
899
+ #: inc/core/class.data.php:610
900
  msgid "Button text"
901
  msgstr "Текст кнопки"
902
 
903
+ #: inc/core/class.data.php:611
904
  msgid "Styled button"
905
  msgstr "Стильная кнопка"
906
 
907
+ #: inc/core/class.data.php:615
908
  msgid "Service"
909
  msgstr "Услуга"
910
 
911
+ #: inc/core/class.data.php:621
912
+ #: inc/core/shortcodes.php:466
913
  msgid "Service title"
914
  msgstr "Название услуги"
915
 
916
+ #: inc/core/class.data.php:623
917
  msgid "Service name"
918
  msgstr "Название услуги"
919
 
920
+ #: inc/core/class.data.php:629
921
  msgid "You can upload custom icon for this box"
922
  msgstr "Вы можете загрузить свою иконку для этого блока"
923
 
924
+ #: inc/core/class.data.php:635
925
  msgid "Icon size"
926
  msgstr "Размер иконки"
927
 
928
+ #: inc/core/class.data.php:636
929
  msgid "Size of the uploaded icon in pixels"
930
  msgstr "Размер загруженной иконки в пикселях"
931
 
932
+ #: inc/core/class.data.php:644
933
  msgid "Service description"
934
  msgstr "Описание услуги"
935
 
936
+ #: inc/core/class.data.php:644
937
  msgid "Service box with title"
938
  msgstr "Блок услуга с заголовком"
939
 
940
+ #: inc/core/class.data.php:654
941
  msgid "Box title"
942
  msgstr "Заголовок блока"
943
 
944
+ #: inc/core/class.data.php:655
945
  msgid "Text for the box title"
946
  msgstr "Текст для заголовка блока"
947
 
948
+ #: inc/core/class.data.php:668
949
  msgid "Box style preset"
950
  msgstr "Стиль блока"
951
 
952
+ #: inc/core/class.data.php:674
953
  msgid "Color"
954
  msgstr "Цвет"
955
 
956
+ #: inc/core/class.data.php:675
957
  msgid "Color for the box title and borders"
958
  msgstr "Цвет заголовка блока и его рамки"
959
 
960
+ #: inc/core/class.data.php:681
961
  msgid "Title text color"
962
  msgstr "Цвет текста заголовка"
963
 
964
+ #: inc/core/class.data.php:681
965
  msgid "Color for the box title text"
966
  msgstr "Цвет текста в заголовке блока"
967
 
968
+ #: inc/core/class.data.php:688
969
  msgid "Box corners radius"
970
  msgstr "Радиус углов"
971
 
972
+ #: inc/core/class.data.php:697
973
  msgid "Box content"
974
  msgstr "Содержимое блока"
975
 
976
+ #: inc/core/class.data.php:698
977
  msgid "Colored box with caption"
978
  msgstr "Цветной блок с заголовком"
979
 
980
+ #: inc/core/class.data.php:710
981
  msgid "Note background color"
982
  msgstr "Цвет фона заметки"
983
 
984
+ #: inc/core/class.data.php:717
985
  msgid "Note text color"
986
  msgstr "Цвет текста заметки"
987
 
988
+ #: inc/core/class.data.php:723
989
  msgid "Note corners radius"
990
  msgstr "Радиус углов"
991
 
992
+ #: inc/core/class.data.php:731
993
  msgid "Note text"
994
  msgstr "Текст заметки"
995
 
996
+ #: inc/core/class.data.php:732
997
  msgid "Colored box"
998
  msgstr "Цветной блок"
999
 
1000
+ #: inc/core/class.data.php:736
1001
  msgid "Lightbox"
1002
  msgstr "Лайтбокс"
1003
 
1004
+ #: inc/core/class.data.php:743
1005
  msgid "Iframe"
1006
  msgstr "Фрейм (iframe)"
1007
 
1008
+ #: inc/core/class.data.php:744
1009
  msgid "Image"
1010
  msgstr "Изображение"
1011
 
1012
+ #: inc/core/class.data.php:745
1013
  msgid "Inline (html content)"
1014
  msgstr "HTML элемент"
1015
 
1016
+ #: inc/core/class.data.php:748
1017
  msgid "Content type"
1018
  msgstr "Тип содержимого"
1019
 
1020
+ #: inc/core/class.data.php:749
1021
  msgid "Select type of the lightbox window content"
1022
  msgstr "Выберите тип содержимого в окне лайтбокса"
1023
 
1024
+ #: inc/core/class.data.php:753
1025
  msgid "Content source"
1026
  msgstr "Источник содержимого"
1027
 
1028
+ #: inc/core/class.data.php:754
1029
  msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1030
  msgstr "Вставьте URL или CSS селектор. Используйте URL для типов содержимого Фрейм (iframe) и Изображение. Используйте CSS селектор для содержимого типа HTML элемент.<br />Примеры значений:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube видео (фрейм)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - загруженное изображение (изображение)<br /><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b%value>#contact-form</b> - любой HTML элемент (html элемент)"
1031
 
1032
+ #: inc/core/class.data.php:763
1033
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1034
  msgstr "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
1035
 
1036
+ #: inc/core/class.data.php:764
1037
  msgid "Lightbox window with custom content"
1038
  msgstr "Лайтбокс с произвольным содержимым"
1039
 
1040
+ #: inc/core/class.data.php:768
1041
  msgid "Tooltip"
1042
  msgstr "Подсказка"
1043
 
1044
+ #: inc/core/class.data.php:775
1045
  msgid "Basic: Light"
1046
  msgstr "Базовый: Светлый"
1047
 
1048
+ #: inc/core/class.data.php:776
1049
  msgid "Basic: Dark"
1050
  msgstr "Базовый: Темный"
1051
 
1052
+ #: inc/core/class.data.php:777
1053
  msgid "Basic: Yellow"
1054
  msgstr "Базовый: Желтый"
1055
 
1056
+ #: inc/core/class.data.php:778
1057
  msgid "Basic: Green"
1058
  msgstr "Базовый: Зеленый"
1059
 
1060
+ #: inc/core/class.data.php:779
1061
  msgid "Basic: Red"
1062
  msgstr "Базовый: Красный"
1063
 
1064
+ #: inc/core/class.data.php:780
1065
  msgid "Basic: Blue"
1066
  msgstr "Базовый: Голубой"
1067
 
1068
+ #: inc/core/class.data.php:781
1069
  msgid "Youtube"
1070
  msgstr "Youtube"
1071
 
1072
+ #: inc/core/class.data.php:782
1073
  msgid "Tipsy"
1074
  msgstr "Tipsy"
1075
 
1076
+ #: inc/core/class.data.php:783
1077
  msgid "Bootstrap"
1078
  msgstr "Bootstrap"
1079
 
1080
+ #: inc/core/class.data.php:784
1081
  msgid "jTools"
1082
  msgstr "jTools"
1083
 
1084
+ #: inc/core/class.data.php:785
1085
  msgid "Tipped"
1086
  msgstr "Tipped"
1087
 
1088
+ #: inc/core/class.data.php:786
1089
  msgid "Cluetip"
1090
  msgstr "Cluetip"
1091
 
1092
+ #: inc/core/class.data.php:790
1093
  msgid "Tooltip window style"
1094
  msgstr "Стиль окна подсказки"
1095
 
1096
+ #: inc/core/class.data.php:801
1097
  msgid "Position"
1098
  msgstr "Положение"
1099
 
1100
+ #: inc/core/class.data.php:802
1101
  msgid "Tooltip position"
1102
  msgstr "Положение всплывающей подсказки"
1103
 
1104
+ #: inc/core/class.data.php:807
1105
  msgid "Shadow"
1106
  msgstr "Тень"
1107
 
1108
+ #: inc/core/class.data.php:808
1109
  msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
1110
  msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
1111
 
1112
+ #: inc/core/class.data.php:813
1113
  msgid "Rounded corners"
1114
  msgstr "Скругление"
1115
 
1116
+ #: inc/core/class.data.php:814
1117
  msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
1118
  msgstr "Добавить скругленные уголки окну подсказки. Скругление работает только для базовых стилей."
1119
 
1120
+ #: inc/core/class.data.php:828
1121
  msgid "Font size"
1122
  msgstr "Размер шрифта"
1123
 
1124
+ #: inc/core/class.data.php:829
1125
  msgid "Tooltip font size"
1126
  msgstr "Размер шрифта подсказки"
1127
 
1128
+ #: inc/core/class.data.php:833
1129
  msgid "Tooltip title"
1130
  msgstr "Заголовок подсказки"
1131
 
1132
+ #: inc/core/class.data.php:834
1133
  msgid "Enter title for tooltip window. Leave this field empty to hide the title"
1134
  msgstr "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть заголовок"
1135
 
1136
+ #: inc/core/class.data.php:837
1137
+ #: inc/core/shortcodes.php:575
1138
  msgid "Tooltip text"
1139
  msgstr "Текст подсказки"
1140
 
1141
+ #: inc/core/class.data.php:838
1142
  msgid "Tooltip content"
1143
  msgstr "Содержимое подсказки"
1144
 
1145
+ #: inc/core/class.data.php:839
1146
  msgid "Enter tooltip content here"
1147
  msgstr "Введите сюда содержимое подсказки"
1148
 
1149
+ #: inc/core/class.data.php:844
1150
  msgid "Show and hide on mouse hover"
1151
  msgstr "Показать и скрыть при наведении мыши"
1152
 
1153
+ #: inc/core/class.data.php:845
1154
  msgid "Show and hide by mouse click"
1155
  msgstr "Показать и скрыть по клику мыши"
1156
 
1157
+ #: inc/core/class.data.php:846
1158
  msgid "Always visible"
1159
  msgstr "Всегда видима"
1160
 
1161
+ #: inc/core/class.data.php:849
1162
  msgid "Behavior"
1163
  msgstr "Поведение"
1164
 
1165
+ #: inc/core/class.data.php:850
1166
  msgid "Select tooltip behavior"
1167
  msgstr "Выберите поведение подсказки"
1168
 
1169
+ #: inc/core/class.data.php:855
1170
  msgid "Close button"
1171
  msgstr "Кнопка закрыть"
1172
 
1173
+ #: inc/core/class.data.php:856
1174
  msgid "Show close button"
1175
  msgstr "Показывать кнопку закрыть"
1176
 
1177
+ #: inc/core/class.data.php:865
1178
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1179
  msgstr "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
1180
 
1181
+ #: inc/core/class.data.php:866
1182
  msgid "Tooltip window with custom content"
1183
  msgstr "Всплывающая подсказка с произвольным содержимым"
1184
 
1185
+ #: inc/core/class.data.php:870
1186
  msgid "Private"
1187
  msgstr "Заметка для авторов"
1188
 
1189
+ #: inc/core/class.data.php:881
1190
  msgid "Private note text"
1191
  msgstr "Текст приватной заметки"
1192
 
1193
+ #: inc/core/class.data.php:882
1194
  msgid "Private note for post authors"
1195
  msgstr "Приватный текст для других авторов"
1196
 
1197
+ #: inc/core/class.data.php:886
1198
  msgid "YouTube"
1199
  msgstr "YouTube"
1200
 
1201
+ #: inc/core/class.data.php:893
1202
+ #: inc/core/class.data.php:943
1203
+ #: inc/core/class.data.php:991
1204
+ #: inc/core/class.data.php:1242
1205
+ #: inc/core/class.data.php:1332
1206
  msgid "Url"
1207
  msgstr "Ссылка"
1208
 
1209
+ #: inc/core/class.data.php:894
1210
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1211
  msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1212
 
1213
+ #: inc/core/class.data.php:902
1214
+ #: inc/core/class.data.php:951
1215
+ #: inc/core/class.data.php:999
1216
+ #: inc/core/class.data.php:1040
1217
+ #: inc/core/class.data.php:1094
1218
+ #: inc/core/class.data.php:1341
1219
+ #: inc/core/class.data.php:1379
1220
+ #: inc/core/class.data.php:1428
1221
+ #: inc/core/class.data.php:1518
1222
+ #: inc/core/class.data.php:1624
1223
  msgid "Width"
1224
  msgstr "Ширина"
1225
 
1226
+ #: inc/core/class.data.php:903
1227
+ #: inc/core/class.data.php:952
1228
+ #: inc/core/class.data.php:1000
1229
+ #: inc/core/class.data.php:1095
1230
  msgid "Player width"
1231
  msgstr "Ширина плеера"
1232
 
1233
+ #: inc/core/class.data.php:912
1234
+ #: inc/core/class.data.php:961
1235
+ #: inc/core/class.data.php:1009
1236
+ #: inc/core/class.data.php:1104
1237
  msgid "Player height"
1238
  msgstr "Высота плеера"
1239
 
1240
+ #: inc/core/class.data.php:917
1241
+ #: inc/core/class.data.php:966
1242
+ #: inc/core/class.data.php:1014
1243
+ #: inc/core/class.data.php:1356
1244
+ #: inc/core/class.data.php:1394
1245
+ #: inc/core/class.data.php:1441
1246
+ #: inc/core/class.data.php:1531
1247
  msgid "Responsive"
1248
  msgstr "Отзывчивость (responsive)"
1249
 
1250
+ #: inc/core/class.data.php:918
1251
+ #: inc/core/class.data.php:967
1252
+ #: inc/core/class.data.php:1015
1253
  msgid "Ignore width and height parameters and make player responsive"
1254
  msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1255
 
1256
+ #: inc/core/class.data.php:923
1257
+ #: inc/core/class.data.php:972
1258
+ #: inc/core/class.data.php:1046
1259
+ #: inc/core/class.data.php:1115
1260
+ #: inc/core/class.data.php:1476
1261
+ #: inc/core/class.data.php:1582
1262
  msgid "Autoplay"
1263
  msgstr "Автовоспроизведение"
1264
 
1265
+ #: inc/core/class.data.php:924
1266
+ #: inc/core/class.data.php:973
1267
  msgid "Play video automatically when page is loaded"
1268
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1269
 
1270
+ #: inc/core/class.data.php:932
1271
  msgid "YouTube video"
1272
  msgstr "Видео YouTube"
1273
 
1274
+ #: inc/core/class.data.php:936
1275
  msgid "Vimeo"
1276
  msgstr "Vimeo"
1277
 
1278
+ #: inc/core/class.data.php:943
1279
  msgid "Url of Vimeo page with video"
1280
  msgstr "Ссылка на страницу Vimeo с видео"
1281
 
1282
+ #: inc/core/class.data.php:981
1283
  msgid "Vimeo video"
1284
  msgstr "Видео Vimeo"
1285
 
1286
+ #: inc/core/class.data.php:985
1287
  msgid "Screenr"
1288
  msgstr "Screenr"
1289
 
1290
+ #: inc/core/class.data.php:991
1291
  msgid "Url of Screenr page with video"
1292
  msgstr "Ссылка на страницу Screenr с видео"
1293
 
1294
+ #: inc/core/class.data.php:1023
1295
  msgid "Screenr video"
1296
  msgstr "Видео Screenr"
1297
 
1298
+ #: inc/core/class.data.php:1027
1299
  msgid "Audio"
1300
  msgstr "Аудио"
1301
 
1302
+ #: inc/core/class.data.php:1034
1303
+ #: inc/core/class.data.php:1073
1304
  msgid "File"
1305
  msgstr "Файл"
1306
 
1307
+ #: inc/core/class.data.php:1035
1308
  msgid "Audio file url. Supported formats: mp3, ogg"
1309
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1310
 
1311
+ #: inc/core/class.data.php:1041
1312
  msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1313
  msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100&#37;</b>"
1314
 
1315
+ #: inc/core/class.data.php:1047
1316
+ #: inc/core/class.data.php:1116
1317
  msgid "Play file automatically when page is loaded"
1318
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1319
 
1320
+ #: inc/core/class.data.php:1052
1321
+ #: inc/core/class.data.php:1121
1322
  msgid "Loop"
1323
  msgstr "Повтор"
1324
 
1325
+ #: inc/core/class.data.php:1053
1326
+ #: inc/core/class.data.php:1122
1327
  msgid "Repeat when playback is ended"
1328
  msgstr "Повторять, когда воспроизведение окночено"
1329
 
1330
+ #: inc/core/class.data.php:1062
1331
  msgid "Custom audio player"
1332
  msgstr "Настраиваемый аудио-плеер"
1333
 
1334
+ #: inc/core/class.data.php:1066
1335
  msgid "Video"
1336
  msgstr "Видео"
1337
 
1338
+ #: inc/core/class.data.php:1074
1339
  msgid "Url to mp4/flv video-file"
1340
  msgstr "Ссылка на mp4/flv видео-файл"
1341
 
1342
+ #: inc/core/class.data.php:1079
1343
  msgid "Poster"
1344
  msgstr "Постер"
1345
 
1346
+ #: inc/core/class.data.php:1080
1347
  msgid "Url to poster image, that will be shown before playback"
1348
  msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
1349
 
1350
+ #: inc/core/class.data.php:1086
1351
  msgid "Player title"
1352
  msgstr "Заголовок плеера"
1353
 
1354
+ #: inc/core/class.data.php:1109
1355
  msgid "Controls"
1356
  msgstr "Элементы управления"
1357
 
1358
+ #: inc/core/class.data.php:1110
1359
  msgid "Show player controls (play/pause etc.) or not"
1360
  msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1361
 
1362
+ #: inc/core/class.data.php:1131
1363
  msgid "Custom video player"
1364
  msgstr "Настраиваемый видео-плеер"
1365
 
1366
+ #: inc/core/class.data.php:1135
1367
  msgid "Table"
1368
  msgstr "Таблица"
1369
 
1370
+ #: inc/core/class.data.php:1142
1371
  msgid "CSV file"
1372
  msgstr "CSV файл"
1373
 
1374
+ #: inc/core/class.data.php:1143
1375
  msgid "Upload CSV file if you want to create HTML-table from file"
1376
  msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1377
 
1378
+ #: inc/core/class.data.php:1152
1379
  msgid ""
1380
  "<table>\n"
1381
  "<tr>\n"
1399
  "</tr>\n"
1400
  "</table>"
1401
 
1402
+ #: inc/core/class.data.php:1153
1403
  msgid "Styled table from HTML or CSV file"
1404
  msgstr "Стильная таблица из HTML или CSV файла"
1405
 
1406
+ #: inc/core/class.data.php:1157
1407
  msgid "Permalink"
1408
  msgstr "Постоянная ссылка"
1409
 
1410
+ #: inc/core/class.data.php:1163
1411
  msgid "ID"
1412
  msgstr "ID"
1413
 
1414
+ #: inc/core/class.data.php:1164
1415
  msgid "Post or page ID"
1416
  msgstr "ID записи или страницы"
1417
 
1418
+ #: inc/core/class.data.php:1174
1419
  msgid "Link target. blank - link will be opened in new window/tab"
1420
  msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
1421
 
1422
+ #: inc/core/class.data.php:1184
1423
  msgid "Permalink to specified post/page"
1424
  msgstr "Постоянная ссылка на страницу"
1425
 
1426
+ #: inc/core/class.data.php:1188
1427
  msgid "Members"
1428
  msgstr "Участники"
1429
 
1430
+ #: inc/core/class.data.php:1193
1431
+ #: inc/core/shortcodes.php:874
1432
  msgid "This content is for registered users only. Please %login%."
1433
  msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1434
 
1435
+ #: inc/core/class.data.php:1194
1436
  msgid "Message"
1437
  msgstr "Сообщение"
1438
 
1439
+ #: inc/core/class.data.php:1194
1440
  msgid "Message for not logged users"
1441
  msgstr "Собщение для неавторизованных"
1442
 
1443
+ #: inc/core/class.data.php:1199
1444
  msgid "Box color"
1445
  msgstr "Цвет блока"
1446
 
1447
+ #: inc/core/class.data.php:1199
1448
  msgid "This color will applied only to box for not logged users"
1449
  msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1450
 
1451
+ #: inc/core/class.data.php:1202
1452
+ #: inc/core/shortcodes.php:877
1453
  msgid "login"
1454
  msgstr "войдите"
1455
 
1456
+ #: inc/core/class.data.php:1203
1457
  msgid "Login link text"
1458
  msgstr "Текст ссылки войти"
1459
 
1460
+ #: inc/core/class.data.php:1203
1461
  msgid "Text for the login link"
1462
  msgstr "Текст ссылки ВОЙТИ"
1463
 
1464
+ #: inc/core/class.data.php:1207
1465
  msgid "Login link url"
1466
  msgstr "Адрес ссылки войти"
1467
 
1468
+ #: inc/core/class.data.php:1216
1469
  msgid "Content for logged members"
1470
  msgstr "Содержимое для авторизованых пользователей"
1471
 
1472
+ #: inc/core/class.data.php:1217
1473
  msgid "Content for logged in members only"
1474
  msgstr "Ссодержимое для авторизованых"
1475
 
1476
+ #: inc/core/class.data.php:1221
1477
  msgid "Guests"
1478
  msgstr "Гости"
1479
 
1480
+ #: inc/core/class.data.php:1231
1481
  msgid "Content for guests"
1482
  msgstr "Содержимое для гостей"
1483
 
1484
+ #: inc/core/class.data.php:1231
1485
  msgid "Content for guests only"
1486
  msgstr "Ссодержимое только для гостей"
1487
 
1488
+ #: inc/core/class.data.php:1235
1489
  msgid "RSS Feed"
1490
  msgstr "RSS лента"
1491
 
1492
+ #: inc/core/class.data.php:1243
1493
  msgid "Url to RSS-feed"
1494
  msgstr "Ссылка на RSS-ленту"
1495
 
1496
+ #: inc/core/class.data.php:1248
1497
  msgid "Limit"
1498
  msgstr "Лимит"
1499
 
1500
+ #: inc/core/class.data.php:1248
1501
  msgid "Number of items to show"
1502
  msgstr "Количество элементов для отображения"
1503
 
1504
+ #: inc/core/class.data.php:1256
1505
  msgid "Feed grabber"
1506
  msgstr "Граббер новостных лент"
1507
 
1508
+ #: inc/core/class.data.php:1260
1509
  msgid "Menu"
1510
  msgstr "Меню"
1511
 
1512
+ #: inc/core/class.data.php:1267
1513
  msgid "Menu name"
1514
  msgstr "Имя меню"
1515
 
1516
+ #: inc/core/class.data.php:1267
1517
  msgid "Custom menu name. Ex: Main menu"
1518
  msgstr "Имя произвольного меню. Например: Главное меню"
1519
 
1520
+ #: inc/core/class.data.php:1275
1521
  msgid "Custom menu by name"
1522
  msgstr "Произвольное меню"
1523
 
1524
+ #: inc/core/class.data.php:1279
1525
  msgid "Sub pages"
1526
  msgstr "Подстраницы"
1527
 
1528
+ #: inc/core/class.data.php:1286
1529
+ #: inc/core/class.data.php:1312
1530
  msgid "Depth"
1531
  msgstr "Глубина"
1532
 
1533
+ #: inc/core/class.data.php:1287
1534
  msgid "Max depth level of children pages"
1535
  msgstr "Максимальная глубина дочерних страниц"
1536
 
1537
+ #: inc/core/class.data.php:1292
1538
  msgid "Parent ID"
1539
  msgstr "ID родителя"
1540
 
1541
+ #: inc/core/class.data.php:1293
1542
  msgid "ID of the parent page. Leave blank to use current page"
1543
  msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
1544
 
1545
+ #: inc/core/class.data.php:1301
1546
  msgid "List of sub pages"
1547
  msgstr "Список дочерних страниц"
1548
 
1549
+ #: inc/core/class.data.php:1305
1550
  msgid "Siblings"
1551
  msgstr "Соседние страницы"
1552
 
1553
+ #: inc/core/class.data.php:1313
1554
  msgid "Max depth level"
1555
  msgstr "Максимальный уровень вложенности"
1556
 
1557
+ #: inc/core/class.data.php:1321
1558
  msgid "List of cureent page siblings"
1559
  msgstr "Список страниц, соседних с текущей"
1560
 
1561
+ #: inc/core/class.data.php:1325
1562
  msgid "Document"
1563
  msgstr "Документ"
1564
 
1565
+ #: inc/core/class.data.php:1333
1566
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1567
  msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
1568
 
1569
+ #: inc/core/class.data.php:1342
1570
  msgid "Viewer width"
1571
  msgstr "Ширина просмотрщика"
1572
 
1573
+ #: inc/core/class.data.php:1351
1574
  msgid "Viewer height"
1575
  msgstr "Высота просмотрщика"
1576
 
1577
+ #: inc/core/class.data.php:1357
1578
  msgid "Ignore width and height parameters and make viewer responsive"
1579
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
1580
 
1581
+ #: inc/core/class.data.php:1365
1582
  msgid "Document viewer by Google"
1583
  msgstr "Просмотрщик документов от Google"
1584
 
1585
+ #: inc/core/class.data.php:1369
1586
  msgid "Gmap"
1587
  msgstr "Google карта"
1588
 
1589
+ #: inc/core/class.data.php:1380
1590
  msgid "Map width"
1591
  msgstr "Ширина карты"
1592
 
1593
+ #: inc/core/class.data.php:1389
1594
  msgid "Map height"
1595
  msgstr "Высота карты"
1596
 
1597
+ #: inc/core/class.data.php:1395
1598
  msgid "Ignore width and height parameters and make map responsive"
1599
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
1600
 
1601
+ #: inc/core/class.data.php:1400
1602
  msgid "Marker"
1603
  msgstr "Маркер"
1604
 
1605
+ #: inc/core/class.data.php:1401
1606
  msgid "Address for the marker. You can type it in any language"
1607
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
1608
 
1609
+ #: inc/core/class.data.php:1409
1610
  msgid "Maps by Google"
1611
  msgstr "Карты от Google"
1612
 
1613
+ #: inc/core/class.data.php:1413
1614
  msgid "Slider"
1615
  msgstr "Слайдер"
1616
 
1617
+ #: inc/core/class.data.php:1420
1618
  msgid "Choose source gallery, that will be used for this slider"
1619
  msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
1620
 
1621
+ #: inc/core/class.data.php:1428
1622
  msgid "Slider width (in pixels)"
1623
  msgstr "Ширина слайдера (в пикселях)"
1624
 
1625
+ #: inc/core/class.data.php:1436
1626
  msgid "Slider height (in pixels)"
1627
  msgstr "Высота слайдера (в пикселях)"
1628
 
1629
+ #: inc/core/class.data.php:1442
1630
  msgid "Ignore width and height parameters and make slider responsive"
1631
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
1632
 
1633
+ #: inc/core/class.data.php:1447
1634
+ #: inc/core/class.data.php:1553
1635
+ #: inc/core/class.data.php:1642
1636
  msgid "Show titles"
1637
  msgstr "Показывать заголовки"
1638
 
1639
+ #: inc/core/class.data.php:1447
1640
  msgid "Display slide titles"
1641
  msgstr "Отображать заголовки слайдов"
1642
 
1643
+ #: inc/core/class.data.php:1452
1644
  msgid "Is slider centered on the page"
1645
  msgstr "Слайдер выровнен по центру страницы"
1646
 
1647
+ #: inc/core/class.data.php:1457
1648
+ #: inc/core/class.data.php:1563
1649
  msgid "Arrows"
1650
  msgstr "Стрелки"
1651
 
1652
+ #: inc/core/class.data.php:1457
1653
+ #: inc/core/class.data.php:1563
1654
  msgid "Show left and right arrows"
1655
  msgstr "Показывать стрелки влево/вправо"
1656
 
1657
+ #: inc/core/class.data.php:1462
1658
+ #: inc/core/class.data.php:1568
1659
  msgid "Pagination"
1660
  msgstr "Страницы"
1661
 
1662
+ #: inc/core/class.data.php:1463
1663
+ #: inc/core/class.data.php:1569
1664
  msgid "Show pagination"
1665
  msgstr "Показывать страницы"
1666
 
1667
+ #: inc/core/class.data.php:1467
1668
+ #: inc/core/class.data.php:1573
1669
  msgid "Mouse wheel control"
1670
  msgstr "Управление колесом мыши"
1671
 
1672
+ #: inc/core/class.data.php:1468
1673
  msgid "Allow to change slides with mouse wheel"
1674
  msgstr "Разрешить перелистывание слайдов колесом мышки"
1675
 
1676
+ #: inc/core/class.data.php:1477
1677
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
1678
  msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
1679
 
1680
+ #: inc/core/class.data.php:1485
1681
+ #: inc/core/class.data.php:1591
1682
  msgid "Speed"
1683
  msgstr "Скорость"
1684
 
1685
+ #: inc/core/class.data.php:1485
1686
+ #: inc/core/class.data.php:1591
1687
  msgid "Specify animation speed"
1688
  msgstr "Укажите скорость анимации"
1689
 
1690
+ #: inc/core/class.data.php:1490
1691
+ #: inc/core/class.data.php:1596
1692
+ #: inc/core/class.data.php:1648
1693
  msgid "Links target"
1694
  msgstr "Цель ссылок"
1695
 
1696
+ #: inc/core/class.data.php:1491
1697
  msgid "Open slides links in new window/tab"
1698
  msgstr "Открывать ссылки слайдов в новом окне или вкладке"
1699
 
1700
+ #: inc/core/class.data.php:1499
1701
  msgid "Customizable image slider"
1702
  msgstr "Настраиваемый слайдер изображений"
1703
 
1704
+ #: inc/core/class.data.php:1503
1705
  msgid "Carousel"
1706
  msgstr "Карусель"
1707
 
1708
+ #: inc/core/class.data.php:1510
1709
  msgid "Choose source gallery, that will be used for this carousel"
1710
  msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
1711
 
1712
+ #: inc/core/class.data.php:1518
1713
  msgid "Carousel width (in pixels)"
1714
  msgstr "Ширина карусели (в пикселях)"
1715
 
1716
+ #: inc/core/class.data.php:1526
1717
  msgid "Carousel height (in pixels)"
1718
  msgstr "Высота карусели (в пикселях)"
1719
 
1720
+ #: inc/core/class.data.php:1532
1721
  msgid "Ignore width and height parameters and make carousel responsive"
1722
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
1723
 
1724
+ #: inc/core/class.data.php:1539
1725
  msgid "Items to show"
1726
  msgstr "Количество элементов для отображения"
1727
 
1728
+ #: inc/core/class.data.php:1540
1729
  msgid "How much carousel items is visible"
1730
  msgstr "Сколько элементов карусели видны постоянно"
1731
 
1732
+ #: inc/core/class.data.php:1547
1733
  msgid "Scroll number"
1734
  msgstr "Кол-во прокручиваемых"
1735
 
1736
+ #: inc/core/class.data.php:1548
1737
  msgid "How much items are scrolled in one transition"
1738
  msgstr "Сколько элементов карусели прокручивается за один переход"
1739
 
1740
+ #: inc/core/class.data.php:1553
1741
  msgid "Display titles for each item"
1742
  msgstr "Показывать заголовки для каждого элемента карусели"
1743
 
1744
+ #: inc/core/class.data.php:1558
1745
  msgid "Is carousel centered on the page"
1746
  msgstr "Карусель выровнена по центру страницы"
1747
 
1748
+ #: inc/core/class.data.php:1574
1749
  msgid "Allow to rotate carousel with mouse wheel"
1750
  msgstr "Разрешить прокрутку карусели колесом мыши"
1751
 
1752
+ #: inc/core/class.data.php:1583
1753
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
1754
  msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
1755
 
1756
+ #: inc/core/class.data.php:1597
1757
  msgid "Open carousel links in new window/tab"
1758
  msgstr "Открывать ссылки карусели в новом окне или вкладке"
1759
 
1760
+ #: inc/core/class.data.php:1605
1761
  msgid "Customizable image carousel"
1762
  msgstr "Настраиваемая карусель изображений"
1763
 
1764
+ #: inc/core/class.data.php:1616
1765
  msgid "Choose source gallery, that will be used for this shortcode"
1766
  msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
1767
 
1768
+ #: inc/core/class.data.php:1624
1769
  msgid "Single item width (in pixels)"
1770
  msgstr "Ширина одного изображения (в пикселях)"
1771
 
1772
+ #: inc/core/class.data.php:1632
1773
  msgid "Single item height (in pixels)"
1774
  msgstr "Высота одного изображения (в пикселях)"
1775
 
1776
+ #: inc/core/class.data.php:1637
1777
  msgid "Never"
1778
  msgstr "Никогда"
1779
 
1780
+ #: inc/core/class.data.php:1638
1781
  msgid "On mouse over"
1782
  msgstr "При наведении мыши"
1783
 
1784
+ #: inc/core/class.data.php:1639
1785
  msgid "Always"
1786
  msgstr "Всегда"
1787
 
1788
+ #: inc/core/class.data.php:1643
1789
  msgid "Title display mode"
1790
  msgstr "Режим отображения заголовков"
1791
 
1792
+ #: inc/core/class.data.php:1648
1793
  msgid "Open links in new window/tab"
1794
  msgstr "Открывать ссылки в новом окне или вкладке"
1795
 
1796
+ #: inc/core/class.data.php:1656
1797
  msgid "Customizable image gallery"
1798
  msgstr "Настраиваемая галерея изображений"
1799
 
1800
+ #: inc/core/class.data.php:1660
1801
  msgid "Posts"
1802
  msgstr "Записи"
1803
 
1804
+ #: inc/core/class.data.php:1665
1805
  msgid "Template"
1806
  msgstr "Шаблон"
1807
 
1808
+ #: inc/core/class.data.php:1666
1809
  msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
1810
  msgstr "<b>Не изменяйте значение этого поля, если вы не понимаете описания ниже.</b><br/>Относительный путь к файлу шаблона. Шаблоны по умолчанию расположены в папке с плагином (папка templates). Вы можете скопировать шаблоны в папку со своей темой и изменить как вам угодно. Вы можете использовать следующие шаблоны, которые уже поставляются с плагином и находятся в его папке:<br/><b%value>templates/default-loop.php</b> - обычный цикл постов<br/><b%value>templates/teaser-loop.php</b> - цикл постов в виде тизеров, изображения + заголовки<br/><b%value>templates/single-post.php</b> - шаблон одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - маркированный список с заголовками постов"
1811
 
1812
+ #: inc/core/class.data.php:1670
1813
  msgid "Post ID's"
1814
  msgstr "ID постов"
1815
 
1816
+ #: inc/core/class.data.php:1671
1817
  msgid "Enter comma separated ID's of the posts that you want to show"
1818
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
1819
 
1820
+ #: inc/core/class.data.php:1679
1821
  msgid "Posts per page"
1822
  msgstr "Кол-во записей"
1823
 
1824
+ #: inc/core/class.data.php:1680
1825
  msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
1826
  msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
1827
 
1828
+ #: inc/core/class.data.php:1687
1829
  msgid "Post types"
1830
  msgstr "Типы постов"
1831
 
1832
+ #: inc/core/class.data.php:1688
1833
  msgid "Select post types. Hold Ctrl key to select multiple post types"
1834
  msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
1835
 
1836
+ #: inc/core/class.data.php:1694
1837
  msgid "Taxonomy"
1838
  msgstr "Таксономия"
1839
 
1840
+ #: inc/core/class.data.php:1695
1841
  msgid "Select taxonomy to show posts from"
1842
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
1843
 
1844
+ #: inc/core/class.data.php:1702
1845
  msgid "Terms"
1846
  msgstr "Категории (terms)"
1847
 
1848
+ #: inc/core/class.data.php:1702
1849
  msgid "Select terms to show posts from"
1850
  msgstr "Выберите категории, из которых нужно показать записи"
1851
 
1852
+ #: inc/core/class.data.php:1707
1853
  msgid "Taxonomy term operator"
1854
  msgstr "Оператор выбора категорий"
1855
 
1856
+ #: inc/core/class.data.php:1708
1857
  msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
1858
  msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
1859
 
1860
+ #: inc/core/class.data.php:1715
1861
  msgid "Authors"
1862
  msgstr "Авторы"
1863
 
1864
+ #: inc/core/class.data.php:1716
1865
  msgid "Choose the authors whose posts you want to show"
1866
  msgstr "Выберите авторов, чьи записи хотите показать"
1867
 
1868
+ #: inc/core/class.data.php:1720
1869
  msgid "Meta key"
1870
  msgstr "Произвольное поле"
1871
 
1872
+ #: inc/core/class.data.php:1721
1873
  msgid "Enter meta key name to show posts that have this key"
1874
  msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
1875
 
1876
+ #: inc/core/class.data.php:1728
1877
  msgid "Offset"
1878
  msgstr "Смещение (offset)"
1879
 
1880
+ #: inc/core/class.data.php:1729
1881
  msgid "Specify offset to start posts loop not from first post"
1882
  msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
1883
 
1884
+ #: inc/core/class.data.php:1734
1885
  msgid "Descending"
1886
  msgstr "По убыванию"
1887
 
1888
+ #: inc/core/class.data.php:1735
1889
  msgid "Ascending"
1890
  msgstr "По возрастанию"
1891
 
1892
+ #: inc/core/class.data.php:1738
1893
  msgid "Order"
1894
  msgstr "Порядок"
1895
 
1896
+ #: inc/core/class.data.php:1739
1897
  msgid "Posts order"
1898
  msgstr "Порядок сортировки записей"
1899
 
1900
+ #: inc/core/class.data.php:1745
1901
  msgid "Post ID"
1902
  msgstr "ID записи"
1903
 
1904
+ #: inc/core/class.data.php:1746
1905
  msgid "Post author"
1906
  msgstr "Автор записи"
1907
 
1908
+ #: inc/core/class.data.php:1747
1909
  msgid "Post title"
1910
  msgstr "Заголовок записи"
1911
 
1912
+ #: inc/core/class.data.php:1748
1913
  msgid "Post slug"
1914
  msgstr "Ссылка записи (slug)"
1915
 
1916
+ #: inc/core/class.data.php:1749
1917
  msgid "Date"
1918
  msgstr "Дата"
1919
 
1920
+ #: inc/core/class.data.php:1749
1921
  msgid "Last modified date"
1922
  msgstr "Дата изменения"
1923
 
1924
+ #: inc/core/class.data.php:1750
1925
+ #: inc/core/class.data.php:1760
1926
  msgid "Post parent"
1927
  msgstr "Родитель"
1928
 
1929
+ #: inc/core/class.data.php:1751
1930
  msgid "Random"
1931
  msgstr "Случайно"
1932
 
1933
+ #: inc/core/class.data.php:1751
1934
  msgid "Comments number"
1935
  msgstr "Кол-во комментариев"
1936
 
1937
+ #: inc/core/class.data.php:1752
1938
  msgid "Menu order"
1939
  msgstr "Порядок меню"
1940
 
1941
+ #: inc/core/class.data.php:1752
1942
  msgid "Meta key values"
1943
  msgstr "Значение произвольного поля"
1944
 
1945
+ #: inc/core/class.data.php:1755
1946
  msgid "Order by"
1947
  msgstr "Сортировать по"
1948
 
1949
+ #: inc/core/class.data.php:1756
1950
  msgid "Order posts by"
1951
  msgstr "Сортировать записи по следующему признаку"
1952
 
1953
+ #: inc/core/class.data.php:1761
1954
  msgid "Show childrens of entered post (enter post ID)"
1955
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
1956
 
1957
+ #: inc/core/class.data.php:1766
1958
  msgid "Published"
1959
  msgstr "Опубликован"
1960
 
1961
+ #: inc/core/class.data.php:1767
1962
  msgid "Pending"
1963
  msgstr "Ожидает"
1964
 
1965
+ #: inc/core/class.data.php:1768
1966
  msgid "Draft"
1967
  msgstr "Черновик"
1968
 
1969
+ #: inc/core/class.data.php:1769
1970
  msgid "Auto-draft"
1971
  msgstr "Авто-черновик"
1972
 
1973
+ #: inc/core/class.data.php:1770
1974
  msgid "Future post"
1975
  msgstr "Запланирован"
1976
 
1977
+ #: inc/core/class.data.php:1771
1978
  msgid "Private post"
1979
  msgstr "Приватная запись"
1980
 
1981
+ #: inc/core/class.data.php:1772
1982
  msgid "Inherit"
1983
  msgstr "Вложенный"
1984
 
1985
+ #: inc/core/class.data.php:1773
1986
  msgid "Trashed"
1987
  msgstr "В корзине"
1988
 
1989
+ #: inc/core/class.data.php:1774
1990
  msgid "Any"
1991
  msgstr "Любой"
1992
 
1993
+ #: inc/core/class.data.php:1777
1994
  msgid "Post status"
1995
  msgstr "Статус записи"
1996
 
1997
+ #: inc/core/class.data.php:1778
1998
  msgid "Show only posts with selected status"
1999
  msgstr "Показать только записи с выбранным статусом"
2000
 
2001
+ #: inc/core/class.data.php:1783
2002
  msgid "Ignore sticky"
2003
  msgstr "Игнорировать прикрепленные"
2004
 
2005
+ #: inc/core/class.data.php:1784
2006
  msgid "Select Yes to ignore posts that is sticked"
2007
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
2008
 
2009
+ #: inc/core/class.data.php:1788
2010
  msgid "Custom posts query with customizable template"
2011
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
2012
 
2253
  msgid "Title:"
2254
  msgstr "Заголовок:"
2255
 
2256
+ #: inc/core/shortcodes.php:485
2257
  msgid "This is box title"
2258
  msgstr "Заголовок блока"
2259
 
2260
+ #: inc/core/shortcodes.php:665
2261
+ #: inc/core/shortcodes.php:698
2262
+ #: inc/core/shortcodes.php:732
2263
+ #: inc/core/shortcodes.php:766
2264
+ #: inc/core/shortcodes.php:806
2265
  msgid "please specify correct url"
2266
  msgstr "пожалуйста укажите корректную ссылку"
2267
 
2268
+ #: inc/core/shortcodes.php:1008
2269
  msgid "This menu doesn't exists, or has no elements"
2270
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
2271
 
2272
+ #: inc/core/shortcodes.php:1096
2273
+ #: inc/core/shortcodes.php:1182
2274
+ #: inc/core/shortcodes.php:1251
2275
  msgid "images not found"
2276
  msgstr "изображения не найдены"
2277
 
2278
+ #: inc/core/shortcodes.php:1449
2279
  msgid "template not found"
2280
  msgstr "шаблон не найден"
2281
 
languages/su.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Shortcodes Ultimate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-01 17:50+0300\n"
6
- "PO-Revision-Date: 2013-10-01 17:50+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -22,9 +22,9 @@ msgstr ""
22
  #: inc/core/class.data.php:158
23
  #: inc/core/class.data.php:276
24
  #: inc/core/class.data.php:356
25
- #: inc/core/class.data.php:517
26
- #: inc/core/class.data.php:654
27
- #: inc/core/class.data.php:813
28
  msgid "Default"
29
  msgstr ""
30
 
@@ -35,10 +35,10 @@ msgstr ""
35
  #: inc/example-addon.php:49
36
  #: inc/core/class.data.php:163
37
  #: inc/core/class.data.php:362
38
- #: inc/core/class.data.php:481
39
- #: inc/core/class.data.php:527
40
- #: inc/core/class.data.php:661
41
- #: inc/core/class.data.php:783
42
  msgid "Style"
43
  msgstr ""
44
 
@@ -68,7 +68,7 @@ msgid "Content"
68
  msgstr ""
69
 
70
  #: inc/core/class.data.php:36
71
- #: inc/core/class.data.php:642
72
  msgid "Box"
73
  msgstr ""
74
 
@@ -77,10 +77,10 @@ msgid "Media"
77
  msgstr ""
78
 
79
  #: inc/core/class.data.php:38
80
- #: inc/core/class.data.php:1413
81
- #: inc/core/class.data.php:1503
82
- #: inc/core/class.data.php:1603
83
  #: inc/core/class.data.php:1609
 
84
  msgid "Gallery"
85
  msgstr ""
86
 
@@ -95,7 +95,7 @@ msgstr ""
95
  #: inc/core/class.data.php:60
96
  #: inc/core/class.data.php:367
97
  #: inc/core/class.data.php:444
98
- #: inc/core/class.data.php:545
99
  msgid "Size"
100
  msgstr ""
101
 
@@ -105,21 +105,21 @@ msgstr ""
105
 
106
  #: inc/core/class.data.php:65
107
  #: inc/core/class.data.php:332
108
- #: inc/core/class.data.php:587
109
- #: inc/core/class.data.php:791
110
  msgid "Left"
111
  msgstr ""
112
 
113
  #: inc/core/class.data.php:66
114
- #: inc/core/class.data.php:1446
115
- #: inc/core/class.data.php:1552
116
  msgid "Center"
117
  msgstr ""
118
 
119
  #: inc/core/class.data.php:67
120
  #: inc/core/class.data.php:333
121
- #: inc/core/class.data.php:585
122
- #: inc/core/class.data.php:792
123
  msgid "Right"
124
  msgstr ""
125
 
@@ -147,33 +147,33 @@ msgstr ""
147
  #: inc/core/class.data.php:371
148
  #: inc/core/class.data.php:397
149
  #: inc/core/class.data.php:413
150
- #: inc/core/class.data.php:449
151
- #: inc/core/class.data.php:485
152
- #: inc/core/class.data.php:600
153
- #: inc/core/class.data.php:634
154
- #: inc/core/class.data.php:686
155
- #: inc/core/class.data.php:721
156
- #: inc/core/class.data.php:752
157
- #: inc/core/class.data.php:854
158
- #: inc/core/class.data.php:870
159
- #: inc/core/class.data.php:922
160
- #: inc/core/class.data.php:971
161
- #: inc/core/class.data.php:1013
162
- #: inc/core/class.data.php:1051
163
- #: inc/core/class.data.php:1120
164
- #: inc/core/class.data.php:1141
165
- #: inc/core/class.data.php:1172
166
- #: inc/core/class.data.php:1205
167
- #: inc/core/class.data.php:1221
168
- #: inc/core/class.data.php:1246
169
- #: inc/core/class.data.php:1265
170
- #: inc/core/class.data.php:1291
171
- #: inc/core/class.data.php:1311
172
- #: inc/core/class.data.php:1355
173
- #: inc/core/class.data.php:1399
174
- #: inc/core/class.data.php:1489
175
- #: inc/core/class.data.php:1595
176
- #: inc/core/class.data.php:1646
177
  msgid "Class"
178
  msgstr ""
179
 
@@ -191,33 +191,33 @@ msgstr ""
191
  #: inc/core/class.data.php:372
192
  #: inc/core/class.data.php:398
193
  #: inc/core/class.data.php:414
194
- #: inc/core/class.data.php:450
195
- #: inc/core/class.data.php:486
196
- #: inc/core/class.data.php:601
197
- #: inc/core/class.data.php:635
198
- #: inc/core/class.data.php:687
199
- #: inc/core/class.data.php:722
200
- #: inc/core/class.data.php:753
201
- #: inc/core/class.data.php:855
202
- #: inc/core/class.data.php:871
203
- #: inc/core/class.data.php:923
204
- #: inc/core/class.data.php:972
205
- #: inc/core/class.data.php:1014
206
- #: inc/core/class.data.php:1052
207
- #: inc/core/class.data.php:1121
208
- #: inc/core/class.data.php:1142
209
- #: inc/core/class.data.php:1173
210
- #: inc/core/class.data.php:1206
211
- #: inc/core/class.data.php:1222
212
- #: inc/core/class.data.php:1247
213
- #: inc/core/class.data.php:1266
214
- #: inc/core/class.data.php:1292
215
- #: inc/core/class.data.php:1312
216
- #: inc/core/class.data.php:1356
217
- #: inc/core/class.data.php:1400
218
- #: inc/core/class.data.php:1490
219
- #: inc/core/class.data.php:1596
220
- #: inc/core/class.data.php:1647
221
  msgid "Extra CSS class"
222
  msgstr ""
223
 
@@ -270,9 +270,9 @@ msgstr ""
270
 
271
  #: inc/core/class.data.php:120
272
  #: inc/core/class.data.php:147
273
- #: inc/core/class.data.php:616
274
- #: inc/core/class.data.php:649
275
- #: inc/core/class.data.php:1079
276
  msgid "Title"
277
  msgstr ""
278
 
@@ -387,15 +387,15 @@ msgid "Spacer"
387
  msgstr ""
388
 
389
  #: inc/core/class.data.php:228
390
- #: inc/core/class.data.php:905
391
- #: inc/core/class.data.php:954
392
- #: inc/core/class.data.php:1002
393
- #: inc/core/class.data.php:1097
394
- #: inc/core/class.data.php:1344
395
- #: inc/core/class.data.php:1382
396
- #: inc/core/class.data.php:1430
397
- #: inc/core/class.data.php:1520
398
- #: inc/core/class.data.php:1626
399
  msgid "Height"
400
  msgstr ""
401
 
@@ -412,8 +412,8 @@ msgid "Highlight"
412
  msgstr ""
413
 
414
  #: inc/core/class.data.php:249
415
- #: inc/core/class.data.php:533
416
- #: inc/core/class.data.php:704
417
  msgid "Background"
418
  msgstr ""
419
 
@@ -422,8 +422,8 @@ msgid "Highlighted text background color"
422
  msgstr ""
423
 
424
  #: inc/core/class.data.php:256
425
- #: inc/core/class.data.php:539
426
- #: inc/core/class.data.php:710
427
  msgid "Text color"
428
  msgstr ""
429
 
@@ -514,12 +514,12 @@ msgid "Dropcap"
514
  msgstr ""
515
 
516
  #: inc/core/class.data.php:357
517
- #: inc/core/class.data.php:518
518
  msgid "Flat"
519
  msgstr ""
520
 
521
  #: inc/core/class.data.php:358
522
- #: inc/core/class.data.php:574
523
  msgid "Light"
524
  msgstr ""
525
 
@@ -618,88 +618,97 @@ msgstr ""
618
  msgid "Select column width. This width will be calculated depend page width"
619
  msgstr ""
620
 
621
- #: inc/core/class.data.php:453
 
 
 
 
 
 
 
 
 
622
  msgid "Column content"
623
  msgstr ""
624
 
625
- #: inc/core/class.data.php:453
626
  msgid "Flexible and responsive columns"
627
  msgstr ""
628
 
629
- #: inc/core/class.data.php:457
630
  msgid "List"
631
  msgstr ""
632
 
633
- #: inc/core/class.data.php:464
634
  msgid "Star"
635
  msgstr ""
636
 
637
- #: inc/core/class.data.php:465
638
  msgid "Arrow"
639
  msgstr ""
640
 
641
- #: inc/core/class.data.php:466
642
  msgid "Check"
643
  msgstr ""
644
 
645
- #: inc/core/class.data.php:467
646
  msgid "Cross"
647
  msgstr ""
648
 
649
- #: inc/core/class.data.php:468
650
  msgid "Thumbs up"
651
  msgstr ""
652
 
653
- #: inc/core/class.data.php:469
654
- #: inc/core/class.data.php:501
655
  msgid "Link"
656
  msgstr ""
657
 
658
- #: inc/core/class.data.php:470
659
  msgid "Gear"
660
  msgstr ""
661
 
662
- #: inc/core/class.data.php:471
663
  msgid "Time"
664
  msgstr ""
665
 
666
- #: inc/core/class.data.php:472
667
- #: inc/core/class.data.php:696
668
  msgid "Note"
669
  msgstr ""
670
 
671
- #: inc/core/class.data.php:473
672
  msgid "Plus"
673
  msgstr ""
674
 
675
- #: inc/core/class.data.php:474
676
  msgid "Guard"
677
  msgstr ""
678
 
679
- #: inc/core/class.data.php:475
680
  msgid "Event"
681
  msgstr ""
682
 
683
- #: inc/core/class.data.php:476
684
  msgid "Idea"
685
  msgstr ""
686
 
687
- #: inc/core/class.data.php:477
688
  #: inc/core/class.generator.php:88
689
  #: inc/core/class.shortcodes-ultimate.php:115
690
  #: inc/vendor/class.sunrise-framework.php:281
691
  msgid "Settings"
692
  msgstr ""
693
 
694
- #: inc/core/class.data.php:478
695
  msgid "Twitter"
696
  msgstr ""
697
 
698
- #: inc/core/class.data.php:481
699
  msgid "List items style/icons"
700
  msgstr ""
701
 
702
- #: inc/core/class.data.php:490
703
  msgid ""
704
  "<ul>\n"
705
  "<li>List item</li>\n"
@@ -708,655 +717,651 @@ msgid ""
708
  "</ul>"
709
  msgstr ""
710
 
711
- #: inc/core/class.data.php:490
712
  msgid "Styled unordered list"
713
  msgstr ""
714
 
715
- #: inc/core/class.data.php:494
716
  msgid "Button"
717
  msgstr ""
718
 
719
- #: inc/core/class.data.php:502
720
  msgid "Button link"
721
  msgstr ""
722
 
723
- #: inc/core/class.data.php:507
724
- #: inc/core/class.data.php:1163
725
  msgid "Same tab"
726
  msgstr ""
727
 
728
- #: inc/core/class.data.php:508
729
- #: inc/core/class.data.php:1164
730
  msgid "New tab"
731
  msgstr ""
732
 
733
- #: inc/core/class.data.php:511
734
- #: inc/core/class.data.php:1167
735
  msgid "Target"
736
  msgstr ""
737
 
738
- #: inc/core/class.data.php:512
739
  msgid "Button link target"
740
  msgstr ""
741
 
742
- #: inc/core/class.data.php:519
743
- #: inc/core/class.data.php:655
744
  msgid "Soft"
745
  msgstr ""
746
 
747
- #: inc/core/class.data.php:520
748
- #: inc/core/class.data.php:656
749
  msgid "Glass"
750
  msgstr ""
751
 
752
- #: inc/core/class.data.php:521
753
- #: inc/core/class.data.php:657
754
  msgid "Bubbles"
755
  msgstr ""
756
 
757
- #: inc/core/class.data.php:522
758
- #: inc/core/class.data.php:658
759
  msgid "Noise"
760
  msgstr ""
761
 
762
- #: inc/core/class.data.php:523
763
  msgid "Stroked"
764
  msgstr ""
765
 
766
- #: inc/core/class.data.php:524
767
  msgid "3D"
768
  msgstr ""
769
 
770
- #: inc/core/class.data.php:527
771
  msgid "Button background style preset"
772
  msgstr ""
773
 
774
- #: inc/core/class.data.php:533
775
  msgid "Button background color"
776
  msgstr ""
777
 
778
- #: inc/core/class.data.php:540
779
  msgid "Button text color"
780
  msgstr ""
781
 
782
- #: inc/core/class.data.php:546
783
  msgid "Button size"
784
  msgstr ""
785
 
786
- #: inc/core/class.data.php:551
787
  msgid "Fluid"
788
  msgstr ""
789
 
790
- #: inc/core/class.data.php:551
791
  msgid "Fluid buttons has 100% width"
792
  msgstr ""
793
 
794
- #: inc/core/class.data.php:556
795
- msgid "Centered"
796
- msgstr ""
797
-
798
- #: inc/core/class.data.php:556
799
  msgid "Is button centered on the page"
800
  msgstr ""
801
 
802
- #: inc/core/class.data.php:562
803
- #: inc/core/class.data.php:681
804
- #: inc/core/class.data.php:717
805
  msgid "Radius"
806
  msgstr ""
807
 
808
- #: inc/core/class.data.php:563
809
  msgid "Radius of button corners. Auto-radius calculation based on button size"
810
  msgstr ""
811
 
812
- #: inc/core/class.data.php:568
813
- #: inc/core/class.data.php:622
814
  msgid "Icon"
815
  msgstr ""
816
 
817
- #: inc/core/class.data.php:569
818
  msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
819
  msgstr ""
820
 
821
- #: inc/core/class.data.php:575
822
  msgid "Dark"
823
  msgstr ""
824
 
825
- #: inc/core/class.data.php:578
826
  msgid "Text shadow color"
827
  msgstr ""
828
 
829
- #: inc/core/class.data.php:578
830
  msgid "Color of button text shadow"
831
  msgstr ""
832
 
833
- #: inc/core/class.data.php:583
834
- #: inc/core/class.data.php:1738
835
  msgid "None"
836
  msgstr ""
837
 
838
- #: inc/core/class.data.php:584
839
- #: inc/core/class.data.php:789
840
  msgid "Top"
841
  msgstr ""
842
 
843
- #: inc/core/class.data.php:586
844
- #: inc/core/class.data.php:790
845
  msgid "Bottom"
846
  msgstr ""
847
 
848
- #: inc/core/class.data.php:588
849
  msgid "Top right"
850
  msgstr ""
851
 
852
- #: inc/core/class.data.php:589
853
  msgid "Top left"
854
  msgstr ""
855
 
856
- #: inc/core/class.data.php:589
857
  msgid "Bottom right"
858
  msgstr ""
859
 
860
- #: inc/core/class.data.php:589
861
  msgid "Bottom left"
862
  msgstr ""
863
 
864
- #: inc/core/class.data.php:591
865
  msgid "Text shadow position"
866
  msgstr ""
867
 
868
- #: inc/core/class.data.php:591
869
  msgid "Position of button text shadow"
870
  msgstr ""
871
 
872
- #: inc/core/class.data.php:595
873
  msgid "Description"
874
  msgstr ""
875
 
876
- #: inc/core/class.data.php:596
877
  msgid "Small description under button text. This option is incompatible with icon."
878
  msgstr ""
879
 
880
- #: inc/core/class.data.php:604
881
  msgid "Button text"
882
  msgstr ""
883
 
884
- #: inc/core/class.data.php:605
885
  msgid "Styled button"
886
  msgstr ""
887
 
888
- #: inc/core/class.data.php:609
889
  msgid "Service"
890
  msgstr ""
891
 
892
- #: inc/core/class.data.php:615
893
- #: inc/core/shortcodes.php:464
894
  msgid "Service title"
895
  msgstr ""
896
 
897
- #: inc/core/class.data.php:617
898
  msgid "Service name"
899
  msgstr ""
900
 
901
- #: inc/core/class.data.php:623
902
  msgid "You can upload custom icon for this box"
903
  msgstr ""
904
 
905
- #: inc/core/class.data.php:629
906
  msgid "Icon size"
907
  msgstr ""
908
 
909
- #: inc/core/class.data.php:630
910
  msgid "Size of the uploaded icon in pixels"
911
  msgstr ""
912
 
913
- #: inc/core/class.data.php:638
914
  msgid "Service description"
915
  msgstr ""
916
 
917
- #: inc/core/class.data.php:638
918
  msgid "Service box with title"
919
  msgstr ""
920
 
921
- #: inc/core/class.data.php:648
922
  msgid "Box title"
923
  msgstr ""
924
 
925
- #: inc/core/class.data.php:649
926
  msgid "Text for the box title"
927
  msgstr ""
928
 
929
- #: inc/core/class.data.php:662
930
  msgid "Box style preset"
931
  msgstr ""
932
 
933
- #: inc/core/class.data.php:668
934
  msgid "Color"
935
  msgstr ""
936
 
937
- #: inc/core/class.data.php:669
938
  msgid "Color for the box title and borders"
939
  msgstr ""
940
 
941
- #: inc/core/class.data.php:675
942
  msgid "Title text color"
943
  msgstr ""
944
 
945
- #: inc/core/class.data.php:675
946
  msgid "Color for the box title text"
947
  msgstr ""
948
 
949
- #: inc/core/class.data.php:682
950
  msgid "Box corners radius"
951
  msgstr ""
952
 
953
- #: inc/core/class.data.php:691
954
  msgid "Box content"
955
  msgstr ""
956
 
957
- #: inc/core/class.data.php:692
958
  msgid "Colored box with caption"
959
  msgstr ""
960
 
961
- #: inc/core/class.data.php:704
962
  msgid "Note background color"
963
  msgstr ""
964
 
965
- #: inc/core/class.data.php:711
966
  msgid "Note text color"
967
  msgstr ""
968
 
969
- #: inc/core/class.data.php:717
970
  msgid "Note corners radius"
971
  msgstr ""
972
 
973
- #: inc/core/class.data.php:725
974
  msgid "Note text"
975
  msgstr ""
976
 
977
- #: inc/core/class.data.php:726
978
  msgid "Colored box"
979
  msgstr ""
980
 
981
- #: inc/core/class.data.php:730
982
  msgid "Lightbox"
983
  msgstr ""
984
 
985
- #: inc/core/class.data.php:737
986
  msgid "Iframe"
987
  msgstr ""
988
 
989
- #: inc/core/class.data.php:738
990
  msgid "Image"
991
  msgstr ""
992
 
993
- #: inc/core/class.data.php:739
994
  msgid "Inline (html content)"
995
  msgstr ""
996
 
997
- #: inc/core/class.data.php:742
998
  msgid "Content type"
999
  msgstr ""
1000
 
1001
- #: inc/core/class.data.php:743
1002
  msgid "Select type of the lightbox window content"
1003
  msgstr ""
1004
 
1005
- #: inc/core/class.data.php:747
1006
  msgid "Content source"
1007
  msgstr ""
1008
 
1009
- #: inc/core/class.data.php:748
1010
  msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1011
  msgstr ""
1012
 
1013
- #: inc/core/class.data.php:757
1014
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1015
  msgstr ""
1016
 
1017
- #: inc/core/class.data.php:758
1018
  msgid "Lightbox window with custom content"
1019
  msgstr ""
1020
 
1021
- #: inc/core/class.data.php:762
1022
  msgid "Tooltip"
1023
  msgstr ""
1024
 
1025
- #: inc/core/class.data.php:769
1026
  msgid "Basic: Light"
1027
  msgstr ""
1028
 
1029
- #: inc/core/class.data.php:770
1030
  msgid "Basic: Dark"
1031
  msgstr ""
1032
 
1033
- #: inc/core/class.data.php:771
1034
  msgid "Basic: Yellow"
1035
  msgstr ""
1036
 
1037
- #: inc/core/class.data.php:772
1038
  msgid "Basic: Green"
1039
  msgstr ""
1040
 
1041
- #: inc/core/class.data.php:773
1042
  msgid "Basic: Red"
1043
  msgstr ""
1044
 
1045
- #: inc/core/class.data.php:774
1046
  msgid "Basic: Blue"
1047
  msgstr ""
1048
 
1049
- #: inc/core/class.data.php:775
1050
  msgid "Youtube"
1051
  msgstr ""
1052
 
1053
- #: inc/core/class.data.php:776
1054
  msgid "Tipsy"
1055
  msgstr ""
1056
 
1057
- #: inc/core/class.data.php:777
1058
  msgid "Bootstrap"
1059
  msgstr ""
1060
 
1061
- #: inc/core/class.data.php:778
1062
  msgid "jTools"
1063
  msgstr ""
1064
 
1065
- #: inc/core/class.data.php:779
1066
  msgid "Tipped"
1067
  msgstr ""
1068
 
1069
- #: inc/core/class.data.php:780
1070
  msgid "Cluetip"
1071
  msgstr ""
1072
 
1073
- #: inc/core/class.data.php:784
1074
  msgid "Tooltip window style"
1075
  msgstr ""
1076
 
1077
- #: inc/core/class.data.php:795
1078
  msgid "Position"
1079
  msgstr ""
1080
 
1081
- #: inc/core/class.data.php:796
1082
  msgid "Tooltip position"
1083
  msgstr ""
1084
 
1085
- #: inc/core/class.data.php:801
1086
  msgid "Shadow"
1087
  msgstr ""
1088
 
1089
- #: inc/core/class.data.php:802
1090
  msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
1091
  msgstr ""
1092
 
1093
- #: inc/core/class.data.php:807
1094
  msgid "Rounded corners"
1095
  msgstr ""
1096
 
1097
- #: inc/core/class.data.php:808
1098
  msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
1099
  msgstr ""
1100
 
1101
- #: inc/core/class.data.php:822
1102
  msgid "Font size"
1103
  msgstr ""
1104
 
1105
- #: inc/core/class.data.php:823
1106
  msgid "Tooltip font size"
1107
  msgstr ""
1108
 
1109
- #: inc/core/class.data.php:827
1110
  msgid "Tooltip title"
1111
  msgstr ""
1112
 
1113
- #: inc/core/class.data.php:828
1114
  msgid "Enter title for tooltip window. Leave this field empty to hide the title"
1115
  msgstr ""
1116
 
1117
- #: inc/core/class.data.php:831
1118
- #: inc/core/shortcodes.php:573
1119
  msgid "Tooltip text"
1120
  msgstr ""
1121
 
1122
- #: inc/core/class.data.php:832
1123
  msgid "Tooltip content"
1124
  msgstr ""
1125
 
1126
- #: inc/core/class.data.php:833
1127
  msgid "Enter tooltip content here"
1128
  msgstr ""
1129
 
1130
- #: inc/core/class.data.php:838
1131
  msgid "Show and hide on mouse hover"
1132
  msgstr ""
1133
 
1134
- #: inc/core/class.data.php:839
1135
  msgid "Show and hide by mouse click"
1136
  msgstr ""
1137
 
1138
- #: inc/core/class.data.php:840
1139
  msgid "Always visible"
1140
  msgstr ""
1141
 
1142
- #: inc/core/class.data.php:843
1143
  msgid "Behavior"
1144
  msgstr ""
1145
 
1146
- #: inc/core/class.data.php:844
1147
  msgid "Select tooltip behavior"
1148
  msgstr ""
1149
 
1150
- #: inc/core/class.data.php:849
1151
  msgid "Close button"
1152
  msgstr ""
1153
 
1154
- #: inc/core/class.data.php:850
1155
  msgid "Show close button"
1156
  msgstr ""
1157
 
1158
- #: inc/core/class.data.php:859
1159
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1160
  msgstr ""
1161
 
1162
- #: inc/core/class.data.php:860
1163
  msgid "Tooltip window with custom content"
1164
  msgstr ""
1165
 
1166
- #: inc/core/class.data.php:864
1167
  msgid "Private"
1168
  msgstr ""
1169
 
1170
- #: inc/core/class.data.php:875
1171
  msgid "Private note text"
1172
  msgstr ""
1173
 
1174
- #: inc/core/class.data.php:876
1175
  msgid "Private note for post authors"
1176
  msgstr ""
1177
 
1178
- #: inc/core/class.data.php:880
1179
  msgid "YouTube"
1180
  msgstr ""
1181
 
1182
- #: inc/core/class.data.php:887
1183
- #: inc/core/class.data.php:937
1184
- #: inc/core/class.data.php:985
1185
- #: inc/core/class.data.php:1236
1186
- #: inc/core/class.data.php:1326
1187
  msgid "Url"
1188
  msgstr ""
1189
 
1190
- #: inc/core/class.data.php:888
1191
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1192
  msgstr ""
1193
 
1194
- #: inc/core/class.data.php:896
1195
- #: inc/core/class.data.php:945
1196
- #: inc/core/class.data.php:993
1197
- #: inc/core/class.data.php:1034
1198
- #: inc/core/class.data.php:1088
1199
- #: inc/core/class.data.php:1335
1200
- #: inc/core/class.data.php:1373
1201
- #: inc/core/class.data.php:1422
1202
- #: inc/core/class.data.php:1512
1203
- #: inc/core/class.data.php:1618
1204
  msgid "Width"
1205
  msgstr ""
1206
 
1207
- #: inc/core/class.data.php:897
1208
- #: inc/core/class.data.php:946
1209
- #: inc/core/class.data.php:994
1210
- #: inc/core/class.data.php:1089
1211
  msgid "Player width"
1212
  msgstr ""
1213
 
1214
- #: inc/core/class.data.php:906
1215
- #: inc/core/class.data.php:955
1216
- #: inc/core/class.data.php:1003
1217
- #: inc/core/class.data.php:1098
1218
  msgid "Player height"
1219
  msgstr ""
1220
 
1221
- #: inc/core/class.data.php:911
1222
- #: inc/core/class.data.php:960
1223
- #: inc/core/class.data.php:1008
1224
- #: inc/core/class.data.php:1350
1225
- #: inc/core/class.data.php:1388
1226
- #: inc/core/class.data.php:1435
1227
- #: inc/core/class.data.php:1525
1228
  msgid "Responsive"
1229
  msgstr ""
1230
 
1231
- #: inc/core/class.data.php:912
1232
- #: inc/core/class.data.php:961
1233
- #: inc/core/class.data.php:1009
1234
  msgid "Ignore width and height parameters and make player responsive"
1235
  msgstr ""
1236
 
1237
- #: inc/core/class.data.php:917
1238
- #: inc/core/class.data.php:966
1239
- #: inc/core/class.data.php:1040
1240
- #: inc/core/class.data.php:1109
1241
- #: inc/core/class.data.php:1470
1242
- #: inc/core/class.data.php:1576
1243
  msgid "Autoplay"
1244
  msgstr ""
1245
 
1246
- #: inc/core/class.data.php:918
1247
- #: inc/core/class.data.php:967
1248
  msgid "Play video automatically when page is loaded"
1249
  msgstr ""
1250
 
1251
- #: inc/core/class.data.php:926
1252
  msgid "YouTube video"
1253
  msgstr ""
1254
 
1255
- #: inc/core/class.data.php:930
1256
  msgid "Vimeo"
1257
  msgstr ""
1258
 
1259
- #: inc/core/class.data.php:937
1260
  msgid "Url of Vimeo page with video"
1261
  msgstr ""
1262
 
1263
- #: inc/core/class.data.php:975
1264
  msgid "Vimeo video"
1265
  msgstr ""
1266
 
1267
- #: inc/core/class.data.php:979
1268
  msgid "Screenr"
1269
  msgstr ""
1270
 
1271
- #: inc/core/class.data.php:985
1272
  msgid "Url of Screenr page with video"
1273
  msgstr ""
1274
 
1275
- #: inc/core/class.data.php:1017
1276
  msgid "Screenr video"
1277
  msgstr ""
1278
 
1279
- #: inc/core/class.data.php:1021
1280
  msgid "Audio"
1281
  msgstr ""
1282
 
1283
- #: inc/core/class.data.php:1028
1284
- #: inc/core/class.data.php:1067
1285
  msgid "File"
1286
  msgstr ""
1287
 
1288
- #: inc/core/class.data.php:1029
1289
  msgid "Audio file url. Supported formats: mp3, ogg"
1290
  msgstr ""
1291
 
1292
- #: inc/core/class.data.php:1035
1293
  msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1294
  msgstr ""
1295
 
1296
- #: inc/core/class.data.php:1041
1297
- #: inc/core/class.data.php:1110
1298
  msgid "Play file automatically when page is loaded"
1299
  msgstr ""
1300
 
1301
- #: inc/core/class.data.php:1046
1302
- #: inc/core/class.data.php:1115
1303
  msgid "Loop"
1304
  msgstr ""
1305
 
1306
- #: inc/core/class.data.php:1047
1307
- #: inc/core/class.data.php:1116
1308
  msgid "Repeat when playback is ended"
1309
  msgstr ""
1310
 
1311
- #: inc/core/class.data.php:1056
1312
  msgid "Custom audio player"
1313
  msgstr ""
1314
 
1315
- #: inc/core/class.data.php:1060
1316
  msgid "Video"
1317
  msgstr ""
1318
 
1319
- #: inc/core/class.data.php:1068
1320
  msgid "Url to mp4/flv video-file"
1321
  msgstr ""
1322
 
1323
- #: inc/core/class.data.php:1073
1324
  msgid "Poster"
1325
  msgstr ""
1326
 
1327
- #: inc/core/class.data.php:1074
1328
  msgid "Url to poster image, that will be shown before playback"
1329
  msgstr ""
1330
 
1331
- #: inc/core/class.data.php:1080
1332
  msgid "Player title"
1333
  msgstr ""
1334
 
1335
- #: inc/core/class.data.php:1103
1336
  msgid "Controls"
1337
  msgstr ""
1338
 
1339
- #: inc/core/class.data.php:1104
1340
  msgid "Show player controls (play/pause etc.) or not"
1341
  msgstr ""
1342
 
1343
- #: inc/core/class.data.php:1125
1344
  msgid "Custom video player"
1345
  msgstr ""
1346
 
1347
- #: inc/core/class.data.php:1129
1348
  msgid "Table"
1349
  msgstr ""
1350
 
1351
- #: inc/core/class.data.php:1136
1352
  msgid "CSV file"
1353
  msgstr ""
1354
 
1355
- #: inc/core/class.data.php:1137
1356
  msgid "Upload CSV file if you want to create HTML-table from file"
1357
  msgstr ""
1358
 
1359
- #: inc/core/class.data.php:1146
1360
  msgid ""
1361
  "<table>\n"
1362
  "<tr>\n"
@@ -1370,614 +1375,614 @@ msgid ""
1370
  "</table>"
1371
  msgstr ""
1372
 
1373
- #: inc/core/class.data.php:1147
1374
  msgid "Styled table from HTML or CSV file"
1375
  msgstr ""
1376
 
1377
- #: inc/core/class.data.php:1151
1378
  msgid "Permalink"
1379
  msgstr ""
1380
 
1381
- #: inc/core/class.data.php:1157
1382
  msgid "ID"
1383
  msgstr ""
1384
 
1385
- #: inc/core/class.data.php:1158
1386
  msgid "Post or page ID"
1387
  msgstr ""
1388
 
1389
- #: inc/core/class.data.php:1168
1390
  msgid "Link target. blank - link will be opened in new window/tab"
1391
  msgstr ""
1392
 
1393
- #: inc/core/class.data.php:1178
1394
  msgid "Permalink to specified post/page"
1395
  msgstr ""
1396
 
1397
- #: inc/core/class.data.php:1182
1398
  msgid "Members"
1399
  msgstr ""
1400
 
1401
- #: inc/core/class.data.php:1187
1402
- #: inc/core/shortcodes.php:872
1403
  msgid "This content is for registered users only. Please %login%."
1404
  msgstr ""
1405
 
1406
- #: inc/core/class.data.php:1188
1407
  msgid "Message"
1408
  msgstr ""
1409
 
1410
- #: inc/core/class.data.php:1188
1411
  msgid "Message for not logged users"
1412
  msgstr ""
1413
 
1414
- #: inc/core/class.data.php:1193
1415
  msgid "Box color"
1416
  msgstr ""
1417
 
1418
- #: inc/core/class.data.php:1193
1419
  msgid "This color will applied only to box for not logged users"
1420
  msgstr ""
1421
 
1422
- #: inc/core/class.data.php:1196
1423
- #: inc/core/shortcodes.php:875
1424
  msgid "login"
1425
  msgstr ""
1426
 
1427
- #: inc/core/class.data.php:1197
1428
  msgid "Login link text"
1429
  msgstr ""
1430
 
1431
- #: inc/core/class.data.php:1197
1432
  msgid "Text for the login link"
1433
  msgstr ""
1434
 
1435
- #: inc/core/class.data.php:1201
1436
  msgid "Login link url"
1437
  msgstr ""
1438
 
1439
- #: inc/core/class.data.php:1210
1440
  msgid "Content for logged members"
1441
  msgstr ""
1442
 
1443
- #: inc/core/class.data.php:1211
1444
  msgid "Content for logged in members only"
1445
  msgstr ""
1446
 
1447
- #: inc/core/class.data.php:1215
1448
  msgid "Guests"
1449
  msgstr ""
1450
 
1451
- #: inc/core/class.data.php:1225
1452
  msgid "Content for guests"
1453
  msgstr ""
1454
 
1455
- #: inc/core/class.data.php:1225
1456
  msgid "Content for guests only"
1457
  msgstr ""
1458
 
1459
- #: inc/core/class.data.php:1229
1460
  msgid "RSS Feed"
1461
  msgstr ""
1462
 
1463
- #: inc/core/class.data.php:1237
1464
  msgid "Url to RSS-feed"
1465
  msgstr ""
1466
 
1467
- #: inc/core/class.data.php:1242
1468
  msgid "Limit"
1469
  msgstr ""
1470
 
1471
- #: inc/core/class.data.php:1242
1472
  msgid "Number of items to show"
1473
  msgstr ""
1474
 
1475
- #: inc/core/class.data.php:1250
1476
  msgid "Feed grabber"
1477
  msgstr ""
1478
 
1479
- #: inc/core/class.data.php:1254
1480
  msgid "Menu"
1481
  msgstr ""
1482
 
1483
- #: inc/core/class.data.php:1261
1484
  msgid "Menu name"
1485
  msgstr ""
1486
 
1487
- #: inc/core/class.data.php:1261
1488
  msgid "Custom menu name. Ex: Main menu"
1489
  msgstr ""
1490
 
1491
- #: inc/core/class.data.php:1269
1492
  msgid "Custom menu by name"
1493
  msgstr ""
1494
 
1495
- #: inc/core/class.data.php:1273
1496
  msgid "Sub pages"
1497
  msgstr ""
1498
 
1499
- #: inc/core/class.data.php:1280
1500
- #: inc/core/class.data.php:1306
1501
  msgid "Depth"
1502
  msgstr ""
1503
 
1504
- #: inc/core/class.data.php:1281
1505
  msgid "Max depth level of children pages"
1506
  msgstr ""
1507
 
1508
- #: inc/core/class.data.php:1286
1509
  msgid "Parent ID"
1510
  msgstr ""
1511
 
1512
- #: inc/core/class.data.php:1287
1513
  msgid "ID of the parent page. Leave blank to use current page"
1514
  msgstr ""
1515
 
1516
- #: inc/core/class.data.php:1295
1517
  msgid "List of sub pages"
1518
  msgstr ""
1519
 
1520
- #: inc/core/class.data.php:1299
1521
  msgid "Siblings"
1522
  msgstr ""
1523
 
1524
- #: inc/core/class.data.php:1307
1525
  msgid "Max depth level"
1526
  msgstr ""
1527
 
1528
- #: inc/core/class.data.php:1315
1529
  msgid "List of cureent page siblings"
1530
  msgstr ""
1531
 
1532
- #: inc/core/class.data.php:1319
1533
  msgid "Document"
1534
  msgstr ""
1535
 
1536
- #: inc/core/class.data.php:1327
1537
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1538
  msgstr ""
1539
 
1540
- #: inc/core/class.data.php:1336
1541
  msgid "Viewer width"
1542
  msgstr ""
1543
 
1544
- #: inc/core/class.data.php:1345
1545
  msgid "Viewer height"
1546
  msgstr ""
1547
 
1548
- #: inc/core/class.data.php:1351
1549
  msgid "Ignore width and height parameters and make viewer responsive"
1550
  msgstr ""
1551
 
1552
- #: inc/core/class.data.php:1359
1553
  msgid "Document viewer by Google"
1554
  msgstr ""
1555
 
1556
- #: inc/core/class.data.php:1363
1557
  msgid "Gmap"
1558
  msgstr ""
1559
 
1560
- #: inc/core/class.data.php:1374
1561
  msgid "Map width"
1562
  msgstr ""
1563
 
1564
- #: inc/core/class.data.php:1383
1565
  msgid "Map height"
1566
  msgstr ""
1567
 
1568
- #: inc/core/class.data.php:1389
1569
  msgid "Ignore width and height parameters and make map responsive"
1570
  msgstr ""
1571
 
1572
- #: inc/core/class.data.php:1394
1573
  msgid "Marker"
1574
  msgstr ""
1575
 
1576
- #: inc/core/class.data.php:1395
1577
  msgid "Address for the marker. You can type it in any language"
1578
  msgstr ""
1579
 
1580
- #: inc/core/class.data.php:1403
1581
  msgid "Maps by Google"
1582
  msgstr ""
1583
 
1584
- #: inc/core/class.data.php:1407
1585
  msgid "Slider"
1586
  msgstr ""
1587
 
1588
- #: inc/core/class.data.php:1414
1589
  msgid "Choose source gallery, that will be used for this slider"
1590
  msgstr ""
1591
 
1592
- #: inc/core/class.data.php:1422
1593
  msgid "Slider width (in pixels)"
1594
  msgstr ""
1595
 
1596
- #: inc/core/class.data.php:1430
1597
  msgid "Slider height (in pixels)"
1598
  msgstr ""
1599
 
1600
- #: inc/core/class.data.php:1436
1601
  msgid "Ignore width and height parameters and make slider responsive"
1602
  msgstr ""
1603
 
1604
- #: inc/core/class.data.php:1441
1605
- #: inc/core/class.data.php:1547
1606
- #: inc/core/class.data.php:1636
1607
  msgid "Show titles"
1608
  msgstr ""
1609
 
1610
- #: inc/core/class.data.php:1441
1611
  msgid "Display slide titles"
1612
  msgstr ""
1613
 
1614
- #: inc/core/class.data.php:1446
1615
  msgid "Is slider centered on the page"
1616
  msgstr ""
1617
 
1618
- #: inc/core/class.data.php:1451
1619
- #: inc/core/class.data.php:1557
1620
  msgid "Arrows"
1621
  msgstr ""
1622
 
1623
- #: inc/core/class.data.php:1451
1624
- #: inc/core/class.data.php:1557
1625
  msgid "Show left and right arrows"
1626
  msgstr ""
1627
 
1628
- #: inc/core/class.data.php:1456
1629
- #: inc/core/class.data.php:1562
1630
  msgid "Pagination"
1631
  msgstr ""
1632
 
1633
- #: inc/core/class.data.php:1457
1634
- #: inc/core/class.data.php:1563
1635
  msgid "Show pagination"
1636
  msgstr ""
1637
 
1638
- #: inc/core/class.data.php:1461
1639
- #: inc/core/class.data.php:1567
1640
  msgid "Mouse wheel control"
1641
  msgstr ""
1642
 
1643
- #: inc/core/class.data.php:1462
1644
  msgid "Allow to change slides with mouse wheel"
1645
  msgstr ""
1646
 
1647
- #: inc/core/class.data.php:1471
1648
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
1649
  msgstr ""
1650
 
1651
- #: inc/core/class.data.php:1479
1652
- #: inc/core/class.data.php:1585
1653
  msgid "Speed"
1654
  msgstr ""
1655
 
1656
- #: inc/core/class.data.php:1479
1657
- #: inc/core/class.data.php:1585
1658
  msgid "Specify animation speed"
1659
  msgstr ""
1660
 
1661
- #: inc/core/class.data.php:1484
1662
- #: inc/core/class.data.php:1590
1663
- #: inc/core/class.data.php:1642
1664
  msgid "Links target"
1665
  msgstr ""
1666
 
1667
- #: inc/core/class.data.php:1485
1668
  msgid "Open slides links in new window/tab"
1669
  msgstr ""
1670
 
1671
- #: inc/core/class.data.php:1493
1672
  msgid "Customizable image slider"
1673
  msgstr ""
1674
 
1675
- #: inc/core/class.data.php:1497
1676
  msgid "Carousel"
1677
  msgstr ""
1678
 
1679
- #: inc/core/class.data.php:1504
1680
  msgid "Choose source gallery, that will be used for this carousel"
1681
  msgstr ""
1682
 
1683
- #: inc/core/class.data.php:1512
1684
  msgid "Carousel width (in pixels)"
1685
  msgstr ""
1686
 
1687
- #: inc/core/class.data.php:1520
1688
  msgid "Carousel height (in pixels)"
1689
  msgstr ""
1690
 
1691
- #: inc/core/class.data.php:1526
1692
  msgid "Ignore width and height parameters and make carousel responsive"
1693
  msgstr ""
1694
 
1695
- #: inc/core/class.data.php:1533
1696
  msgid "Items to show"
1697
  msgstr ""
1698
 
1699
- #: inc/core/class.data.php:1534
1700
  msgid "How much carousel items is visible"
1701
  msgstr ""
1702
 
1703
- #: inc/core/class.data.php:1541
1704
  msgid "Scroll number"
1705
  msgstr ""
1706
 
1707
- #: inc/core/class.data.php:1542
1708
  msgid "How much items are scrolled in one transition"
1709
  msgstr ""
1710
 
1711
- #: inc/core/class.data.php:1547
1712
  msgid "Display titles for each item"
1713
  msgstr ""
1714
 
1715
- #: inc/core/class.data.php:1552
1716
  msgid "Is carousel centered on the page"
1717
  msgstr ""
1718
 
1719
- #: inc/core/class.data.php:1568
1720
  msgid "Allow to rotate carousel with mouse wheel"
1721
  msgstr ""
1722
 
1723
- #: inc/core/class.data.php:1577
1724
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
1725
  msgstr ""
1726
 
1727
- #: inc/core/class.data.php:1591
1728
  msgid "Open carousel links in new window/tab"
1729
  msgstr ""
1730
 
1731
- #: inc/core/class.data.php:1599
1732
  msgid "Customizable image carousel"
1733
  msgstr ""
1734
 
1735
- #: inc/core/class.data.php:1610
1736
  msgid "Choose source gallery, that will be used for this shortcode"
1737
  msgstr ""
1738
 
1739
- #: inc/core/class.data.php:1618
1740
  msgid "Single item width (in pixels)"
1741
  msgstr ""
1742
 
1743
- #: inc/core/class.data.php:1626
1744
  msgid "Single item height (in pixels)"
1745
  msgstr ""
1746
 
1747
- #: inc/core/class.data.php:1631
1748
  msgid "Never"
1749
  msgstr ""
1750
 
1751
- #: inc/core/class.data.php:1632
1752
  msgid "On mouse over"
1753
  msgstr ""
1754
 
1755
- #: inc/core/class.data.php:1633
1756
  msgid "Always"
1757
  msgstr ""
1758
 
1759
- #: inc/core/class.data.php:1637
1760
  msgid "Title display mode"
1761
  msgstr ""
1762
 
1763
- #: inc/core/class.data.php:1642
1764
  msgid "Open links in new window/tab"
1765
  msgstr ""
1766
 
1767
- #: inc/core/class.data.php:1650
1768
  msgid "Customizable image gallery"
1769
  msgstr ""
1770
 
1771
- #: inc/core/class.data.php:1654
1772
  msgid "Posts"
1773
  msgstr ""
1774
 
1775
- #: inc/core/class.data.php:1659
1776
  msgid "Template"
1777
  msgstr ""
1778
 
1779
- #: inc/core/class.data.php:1660
1780
  msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
1781
  msgstr ""
1782
 
1783
- #: inc/core/class.data.php:1664
1784
  msgid "Post ID's"
1785
  msgstr ""
1786
 
1787
- #: inc/core/class.data.php:1665
1788
  msgid "Enter comma separated ID's of the posts that you want to show"
1789
  msgstr ""
1790
 
1791
- #: inc/core/class.data.php:1673
1792
  msgid "Posts per page"
1793
  msgstr ""
1794
 
1795
- #: inc/core/class.data.php:1674
1796
  msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
1797
  msgstr ""
1798
 
1799
- #: inc/core/class.data.php:1681
1800
  msgid "Post types"
1801
  msgstr ""
1802
 
1803
- #: inc/core/class.data.php:1682
1804
  msgid "Select post types. Hold Ctrl key to select multiple post types"
1805
  msgstr ""
1806
 
1807
- #: inc/core/class.data.php:1688
1808
  msgid "Taxonomy"
1809
  msgstr ""
1810
 
1811
- #: inc/core/class.data.php:1689
1812
  msgid "Select taxonomy to show posts from"
1813
  msgstr ""
1814
 
1815
- #: inc/core/class.data.php:1696
1816
  msgid "Terms"
1817
  msgstr ""
1818
 
1819
- #: inc/core/class.data.php:1696
1820
  msgid "Select terms to show posts from"
1821
  msgstr ""
1822
 
1823
- #: inc/core/class.data.php:1701
1824
  msgid "Taxonomy term operator"
1825
  msgstr ""
1826
 
1827
- #: inc/core/class.data.php:1702
1828
  msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
1829
  msgstr ""
1830
 
1831
- #: inc/core/class.data.php:1709
1832
  msgid "Authors"
1833
  msgstr ""
1834
 
1835
- #: inc/core/class.data.php:1710
1836
  msgid "Choose the authors whose posts you want to show"
1837
  msgstr ""
1838
 
1839
- #: inc/core/class.data.php:1714
1840
  msgid "Meta key"
1841
  msgstr ""
1842
 
1843
- #: inc/core/class.data.php:1715
1844
  msgid "Enter meta key name to show posts that have this key"
1845
  msgstr ""
1846
 
1847
- #: inc/core/class.data.php:1722
1848
  msgid "Offset"
1849
  msgstr ""
1850
 
1851
- #: inc/core/class.data.php:1723
1852
  msgid "Specify offset to start posts loop not from first post"
1853
  msgstr ""
1854
 
1855
- #: inc/core/class.data.php:1728
1856
  msgid "Descending"
1857
  msgstr ""
1858
 
1859
- #: inc/core/class.data.php:1729
1860
  msgid "Ascending"
1861
  msgstr ""
1862
 
1863
- #: inc/core/class.data.php:1732
1864
  msgid "Order"
1865
  msgstr ""
1866
 
1867
- #: inc/core/class.data.php:1733
1868
  msgid "Posts order"
1869
  msgstr ""
1870
 
1871
- #: inc/core/class.data.php:1739
1872
  msgid "Post ID"
1873
  msgstr ""
1874
 
1875
- #: inc/core/class.data.php:1740
1876
  msgid "Post author"
1877
  msgstr ""
1878
 
1879
- #: inc/core/class.data.php:1741
1880
  msgid "Post title"
1881
  msgstr ""
1882
 
1883
- #: inc/core/class.data.php:1742
1884
  msgid "Post slug"
1885
  msgstr ""
1886
 
1887
- #: inc/core/class.data.php:1743
1888
  msgid "Date"
1889
  msgstr ""
1890
 
1891
- #: inc/core/class.data.php:1743
1892
  msgid "Last modified date"
1893
  msgstr ""
1894
 
1895
- #: inc/core/class.data.php:1744
1896
- #: inc/core/class.data.php:1754
1897
  msgid "Post parent"
1898
  msgstr ""
1899
 
1900
- #: inc/core/class.data.php:1745
1901
  msgid "Random"
1902
  msgstr ""
1903
 
1904
- #: inc/core/class.data.php:1745
1905
  msgid "Comments number"
1906
  msgstr ""
1907
 
1908
- #: inc/core/class.data.php:1746
1909
  msgid "Menu order"
1910
  msgstr ""
1911
 
1912
- #: inc/core/class.data.php:1746
1913
  msgid "Meta key values"
1914
  msgstr ""
1915
 
1916
- #: inc/core/class.data.php:1749
1917
  msgid "Order by"
1918
  msgstr ""
1919
 
1920
- #: inc/core/class.data.php:1750
1921
  msgid "Order posts by"
1922
  msgstr ""
1923
 
1924
- #: inc/core/class.data.php:1755
1925
  msgid "Show childrens of entered post (enter post ID)"
1926
  msgstr ""
1927
 
1928
- #: inc/core/class.data.php:1760
1929
  msgid "Published"
1930
  msgstr ""
1931
 
1932
- #: inc/core/class.data.php:1761
1933
  msgid "Pending"
1934
  msgstr ""
1935
 
1936
- #: inc/core/class.data.php:1762
1937
  msgid "Draft"
1938
  msgstr ""
1939
 
1940
- #: inc/core/class.data.php:1763
1941
  msgid "Auto-draft"
1942
  msgstr ""
1943
 
1944
- #: inc/core/class.data.php:1764
1945
  msgid "Future post"
1946
  msgstr ""
1947
 
1948
- #: inc/core/class.data.php:1765
1949
  msgid "Private post"
1950
  msgstr ""
1951
 
1952
- #: inc/core/class.data.php:1766
1953
  msgid "Inherit"
1954
  msgstr ""
1955
 
1956
- #: inc/core/class.data.php:1767
1957
  msgid "Trashed"
1958
  msgstr ""
1959
 
1960
- #: inc/core/class.data.php:1768
1961
  msgid "Any"
1962
  msgstr ""
1963
 
1964
- #: inc/core/class.data.php:1771
1965
  msgid "Post status"
1966
  msgstr ""
1967
 
1968
- #: inc/core/class.data.php:1772
1969
  msgid "Show only posts with selected status"
1970
  msgstr ""
1971
 
1972
- #: inc/core/class.data.php:1777
1973
  msgid "Ignore sticky"
1974
  msgstr ""
1975
 
1976
- #: inc/core/class.data.php:1778
1977
  msgid "Select Yes to ignore posts that is sticked"
1978
  msgstr ""
1979
 
1980
- #: inc/core/class.data.php:1782
1981
  msgid "Custom posts query with customizable template"
1982
  msgstr ""
1983
 
@@ -2224,29 +2229,29 @@ msgstr ""
2224
  msgid "Title:"
2225
  msgstr ""
2226
 
2227
- #: inc/core/shortcodes.php:483
2228
  msgid "This is box title"
2229
  msgstr ""
2230
 
2231
- #: inc/core/shortcodes.php:663
2232
- #: inc/core/shortcodes.php:696
2233
- #: inc/core/shortcodes.php:730
2234
- #: inc/core/shortcodes.php:764
2235
- #: inc/core/shortcodes.php:804
2236
  msgid "please specify correct url"
2237
  msgstr ""
2238
 
2239
- #: inc/core/shortcodes.php:1006
2240
  msgid "This menu doesn't exists, or has no elements"
2241
  msgstr ""
2242
 
2243
- #: inc/core/shortcodes.php:1094
2244
- #: inc/core/shortcodes.php:1180
2245
- #: inc/core/shortcodes.php:1249
2246
  msgid "images not found"
2247
  msgstr ""
2248
 
2249
- #: inc/core/shortcodes.php:1447
2250
  msgid "template not found"
2251
  msgstr ""
2252
 
2
  msgstr ""
3
  "Project-Id-Version: Shortcodes Ultimate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-02 03:33+0300\n"
6
+ "PO-Revision-Date: 2013-10-02 03:33+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
22
  #: inc/core/class.data.php:158
23
  #: inc/core/class.data.php:276
24
  #: inc/core/class.data.php:356
25
+ #: inc/core/class.data.php:523
26
+ #: inc/core/class.data.php:660
27
+ #: inc/core/class.data.php:819
28
  msgid "Default"
29
  msgstr ""
30
 
35
  #: inc/example-addon.php:49
36
  #: inc/core/class.data.php:163
37
  #: inc/core/class.data.php:362
38
+ #: inc/core/class.data.php:487
39
+ #: inc/core/class.data.php:533
40
+ #: inc/core/class.data.php:667
41
+ #: inc/core/class.data.php:789
42
  msgid "Style"
43
  msgstr ""
44
 
68
  msgstr ""
69
 
70
  #: inc/core/class.data.php:36
71
+ #: inc/core/class.data.php:648
72
  msgid "Box"
73
  msgstr ""
74
 
77
  msgstr ""
78
 
79
  #: inc/core/class.data.php:38
80
+ #: inc/core/class.data.php:1419
81
+ #: inc/core/class.data.php:1509
 
82
  #: inc/core/class.data.php:1609
83
+ #: inc/core/class.data.php:1615
84
  msgid "Gallery"
85
  msgstr ""
86
 
95
  #: inc/core/class.data.php:60
96
  #: inc/core/class.data.php:367
97
  #: inc/core/class.data.php:444
98
+ #: inc/core/class.data.php:551
99
  msgid "Size"
100
  msgstr ""
101
 
105
 
106
  #: inc/core/class.data.php:65
107
  #: inc/core/class.data.php:332
108
+ #: inc/core/class.data.php:593
109
+ #: inc/core/class.data.php:797
110
  msgid "Left"
111
  msgstr ""
112
 
113
  #: inc/core/class.data.php:66
114
+ #: inc/core/class.data.php:1452
115
+ #: inc/core/class.data.php:1558
116
  msgid "Center"
117
  msgstr ""
118
 
119
  #: inc/core/class.data.php:67
120
  #: inc/core/class.data.php:333
121
+ #: inc/core/class.data.php:591
122
+ #: inc/core/class.data.php:798
123
  msgid "Right"
124
  msgstr ""
125
 
147
  #: inc/core/class.data.php:371
148
  #: inc/core/class.data.php:397
149
  #: inc/core/class.data.php:413
150
+ #: inc/core/class.data.php:455
151
+ #: inc/core/class.data.php:491
152
+ #: inc/core/class.data.php:606
153
+ #: inc/core/class.data.php:640
154
+ #: inc/core/class.data.php:692
155
+ #: inc/core/class.data.php:727
156
+ #: inc/core/class.data.php:758
157
+ #: inc/core/class.data.php:860
158
+ #: inc/core/class.data.php:876
159
+ #: inc/core/class.data.php:928
160
+ #: inc/core/class.data.php:977
161
+ #: inc/core/class.data.php:1019
162
+ #: inc/core/class.data.php:1057
163
+ #: inc/core/class.data.php:1126
164
+ #: inc/core/class.data.php:1147
165
+ #: inc/core/class.data.php:1178
166
+ #: inc/core/class.data.php:1211
167
+ #: inc/core/class.data.php:1227
168
+ #: inc/core/class.data.php:1252
169
+ #: inc/core/class.data.php:1271
170
+ #: inc/core/class.data.php:1297
171
+ #: inc/core/class.data.php:1317
172
+ #: inc/core/class.data.php:1361
173
+ #: inc/core/class.data.php:1405
174
+ #: inc/core/class.data.php:1495
175
+ #: inc/core/class.data.php:1601
176
+ #: inc/core/class.data.php:1652
177
  msgid "Class"
178
  msgstr ""
179
 
191
  #: inc/core/class.data.php:372
192
  #: inc/core/class.data.php:398
193
  #: inc/core/class.data.php:414
194
+ #: inc/core/class.data.php:456
195
+ #: inc/core/class.data.php:492
196
+ #: inc/core/class.data.php:607
197
+ #: inc/core/class.data.php:641
198
+ #: inc/core/class.data.php:693
199
+ #: inc/core/class.data.php:728
200
+ #: inc/core/class.data.php:759
201
+ #: inc/core/class.data.php:861
202
+ #: inc/core/class.data.php:877
203
+ #: inc/core/class.data.php:929
204
+ #: inc/core/class.data.php:978
205
+ #: inc/core/class.data.php:1020
206
+ #: inc/core/class.data.php:1058
207
+ #: inc/core/class.data.php:1127
208
+ #: inc/core/class.data.php:1148
209
+ #: inc/core/class.data.php:1179
210
+ #: inc/core/class.data.php:1212
211
+ #: inc/core/class.data.php:1228
212
+ #: inc/core/class.data.php:1253
213
+ #: inc/core/class.data.php:1272
214
+ #: inc/core/class.data.php:1298
215
+ #: inc/core/class.data.php:1318
216
+ #: inc/core/class.data.php:1362
217
+ #: inc/core/class.data.php:1406
218
+ #: inc/core/class.data.php:1496
219
+ #: inc/core/class.data.php:1602
220
+ #: inc/core/class.data.php:1653
221
  msgid "Extra CSS class"
222
  msgstr ""
223
 
270
 
271
  #: inc/core/class.data.php:120
272
  #: inc/core/class.data.php:147
273
+ #: inc/core/class.data.php:622
274
+ #: inc/core/class.data.php:655
275
+ #: inc/core/class.data.php:1085
276
  msgid "Title"
277
  msgstr ""
278
 
387
  msgstr ""
388
 
389
  #: inc/core/class.data.php:228
390
+ #: inc/core/class.data.php:911
391
+ #: inc/core/class.data.php:960
392
+ #: inc/core/class.data.php:1008
393
+ #: inc/core/class.data.php:1103
394
+ #: inc/core/class.data.php:1350
395
+ #: inc/core/class.data.php:1388
396
+ #: inc/core/class.data.php:1436
397
+ #: inc/core/class.data.php:1526
398
+ #: inc/core/class.data.php:1632
399
  msgid "Height"
400
  msgstr ""
401
 
412
  msgstr ""
413
 
414
  #: inc/core/class.data.php:249
415
+ #: inc/core/class.data.php:539
416
+ #: inc/core/class.data.php:710
417
  msgid "Background"
418
  msgstr ""
419
 
422
  msgstr ""
423
 
424
  #: inc/core/class.data.php:256
425
+ #: inc/core/class.data.php:545
426
+ #: inc/core/class.data.php:716
427
  msgid "Text color"
428
  msgstr ""
429
 
514
  msgstr ""
515
 
516
  #: inc/core/class.data.php:357
517
+ #: inc/core/class.data.php:524
518
  msgid "Flat"
519
  msgstr ""
520
 
521
  #: inc/core/class.data.php:358
522
+ #: inc/core/class.data.php:580
523
  msgid "Light"
524
  msgstr ""
525
 
618
  msgid "Select column width. This width will be calculated depend page width"
619
  msgstr ""
620
 
621
+ #: inc/core/class.data.php:450
622
+ #: inc/core/class.data.php:562
623
+ msgid "Centered"
624
+ msgstr ""
625
+
626
+ #: inc/core/class.data.php:451
627
+ msgid "Is this column centered on the page"
628
+ msgstr ""
629
+
630
+ #: inc/core/class.data.php:459
631
  msgid "Column content"
632
  msgstr ""
633
 
634
+ #: inc/core/class.data.php:459
635
  msgid "Flexible and responsive columns"
636
  msgstr ""
637
 
638
+ #: inc/core/class.data.php:463
639
  msgid "List"
640
  msgstr ""
641
 
642
+ #: inc/core/class.data.php:470
643
  msgid "Star"
644
  msgstr ""
645
 
646
+ #: inc/core/class.data.php:471
647
  msgid "Arrow"
648
  msgstr ""
649
 
650
+ #: inc/core/class.data.php:472
651
  msgid "Check"
652
  msgstr ""
653
 
654
+ #: inc/core/class.data.php:473
655
  msgid "Cross"
656
  msgstr ""
657
 
658
+ #: inc/core/class.data.php:474
659
  msgid "Thumbs up"
660
  msgstr ""
661
 
662
+ #: inc/core/class.data.php:475
663
+ #: inc/core/class.data.php:507
664
  msgid "Link"
665
  msgstr ""
666
 
667
+ #: inc/core/class.data.php:476
668
  msgid "Gear"
669
  msgstr ""
670
 
671
+ #: inc/core/class.data.php:477
672
  msgid "Time"
673
  msgstr ""
674
 
675
+ #: inc/core/class.data.php:478
676
+ #: inc/core/class.data.php:702
677
  msgid "Note"
678
  msgstr ""
679
 
680
+ #: inc/core/class.data.php:479
681
  msgid "Plus"
682
  msgstr ""
683
 
684
+ #: inc/core/class.data.php:480
685
  msgid "Guard"
686
  msgstr ""
687
 
688
+ #: inc/core/class.data.php:481
689
  msgid "Event"
690
  msgstr ""
691
 
692
+ #: inc/core/class.data.php:482
693
  msgid "Idea"
694
  msgstr ""
695
 
696
+ #: inc/core/class.data.php:483
697
  #: inc/core/class.generator.php:88
698
  #: inc/core/class.shortcodes-ultimate.php:115
699
  #: inc/vendor/class.sunrise-framework.php:281
700
  msgid "Settings"
701
  msgstr ""
702
 
703
+ #: inc/core/class.data.php:484
704
  msgid "Twitter"
705
  msgstr ""
706
 
707
+ #: inc/core/class.data.php:487
708
  msgid "List items style/icons"
709
  msgstr ""
710
 
711
+ #: inc/core/class.data.php:496
712
  msgid ""
713
  "<ul>\n"
714
  "<li>List item</li>\n"
717
  "</ul>"
718
  msgstr ""
719
 
720
+ #: inc/core/class.data.php:496
721
  msgid "Styled unordered list"
722
  msgstr ""
723
 
724
+ #: inc/core/class.data.php:500
725
  msgid "Button"
726
  msgstr ""
727
 
728
+ #: inc/core/class.data.php:508
729
  msgid "Button link"
730
  msgstr ""
731
 
732
+ #: inc/core/class.data.php:513
733
+ #: inc/core/class.data.php:1169
734
  msgid "Same tab"
735
  msgstr ""
736
 
737
+ #: inc/core/class.data.php:514
738
+ #: inc/core/class.data.php:1170
739
  msgid "New tab"
740
  msgstr ""
741
 
742
+ #: inc/core/class.data.php:517
743
+ #: inc/core/class.data.php:1173
744
  msgid "Target"
745
  msgstr ""
746
 
747
+ #: inc/core/class.data.php:518
748
  msgid "Button link target"
749
  msgstr ""
750
 
751
+ #: inc/core/class.data.php:525
752
+ #: inc/core/class.data.php:661
753
  msgid "Soft"
754
  msgstr ""
755
 
756
+ #: inc/core/class.data.php:526
757
+ #: inc/core/class.data.php:662
758
  msgid "Glass"
759
  msgstr ""
760
 
761
+ #: inc/core/class.data.php:527
762
+ #: inc/core/class.data.php:663
763
  msgid "Bubbles"
764
  msgstr ""
765
 
766
+ #: inc/core/class.data.php:528
767
+ #: inc/core/class.data.php:664
768
  msgid "Noise"
769
  msgstr ""
770
 
771
+ #: inc/core/class.data.php:529
772
  msgid "Stroked"
773
  msgstr ""
774
 
775
+ #: inc/core/class.data.php:530
776
  msgid "3D"
777
  msgstr ""
778
 
779
+ #: inc/core/class.data.php:533
780
  msgid "Button background style preset"
781
  msgstr ""
782
 
783
+ #: inc/core/class.data.php:539
784
  msgid "Button background color"
785
  msgstr ""
786
 
787
+ #: inc/core/class.data.php:546
788
  msgid "Button text color"
789
  msgstr ""
790
 
791
+ #: inc/core/class.data.php:552
792
  msgid "Button size"
793
  msgstr ""
794
 
795
+ #: inc/core/class.data.php:557
796
  msgid "Fluid"
797
  msgstr ""
798
 
799
+ #: inc/core/class.data.php:557
800
  msgid "Fluid buttons has 100% width"
801
  msgstr ""
802
 
803
+ #: inc/core/class.data.php:562
 
 
 
 
804
  msgid "Is button centered on the page"
805
  msgstr ""
806
 
807
+ #: inc/core/class.data.php:568
808
+ #: inc/core/class.data.php:687
809
+ #: inc/core/class.data.php:723
810
  msgid "Radius"
811
  msgstr ""
812
 
813
+ #: inc/core/class.data.php:569
814
  msgid "Radius of button corners. Auto-radius calculation based on button size"
815
  msgstr ""
816
 
817
+ #: inc/core/class.data.php:574
818
+ #: inc/core/class.data.php:628
819
  msgid "Icon"
820
  msgstr ""
821
 
822
+ #: inc/core/class.data.php:575
823
  msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
824
  msgstr ""
825
 
826
+ #: inc/core/class.data.php:581
827
  msgid "Dark"
828
  msgstr ""
829
 
830
+ #: inc/core/class.data.php:584
831
  msgid "Text shadow color"
832
  msgstr ""
833
 
834
+ #: inc/core/class.data.php:584
835
  msgid "Color of button text shadow"
836
  msgstr ""
837
 
838
+ #: inc/core/class.data.php:589
839
+ #: inc/core/class.data.php:1744
840
  msgid "None"
841
  msgstr ""
842
 
843
+ #: inc/core/class.data.php:590
844
+ #: inc/core/class.data.php:795
845
  msgid "Top"
846
  msgstr ""
847
 
848
+ #: inc/core/class.data.php:592
849
+ #: inc/core/class.data.php:796
850
  msgid "Bottom"
851
  msgstr ""
852
 
853
+ #: inc/core/class.data.php:594
854
  msgid "Top right"
855
  msgstr ""
856
 
857
+ #: inc/core/class.data.php:595
858
  msgid "Top left"
859
  msgstr ""
860
 
861
+ #: inc/core/class.data.php:595
862
  msgid "Bottom right"
863
  msgstr ""
864
 
865
+ #: inc/core/class.data.php:595
866
  msgid "Bottom left"
867
  msgstr ""
868
 
869
+ #: inc/core/class.data.php:597
870
  msgid "Text shadow position"
871
  msgstr ""
872
 
873
+ #: inc/core/class.data.php:597
874
  msgid "Position of button text shadow"
875
  msgstr ""
876
 
877
+ #: inc/core/class.data.php:601
878
  msgid "Description"
879
  msgstr ""
880
 
881
+ #: inc/core/class.data.php:602
882
  msgid "Small description under button text. This option is incompatible with icon."
883
  msgstr ""
884
 
885
+ #: inc/core/class.data.php:610
886
  msgid "Button text"
887
  msgstr ""
888
 
889
+ #: inc/core/class.data.php:611
890
  msgid "Styled button"
891
  msgstr ""
892
 
893
+ #: inc/core/class.data.php:615
894
  msgid "Service"
895
  msgstr ""
896
 
897
+ #: inc/core/class.data.php:621
898
+ #: inc/core/shortcodes.php:466
899
  msgid "Service title"
900
  msgstr ""
901
 
902
+ #: inc/core/class.data.php:623
903
  msgid "Service name"
904
  msgstr ""
905
 
906
+ #: inc/core/class.data.php:629
907
  msgid "You can upload custom icon for this box"
908
  msgstr ""
909
 
910
+ #: inc/core/class.data.php:635
911
  msgid "Icon size"
912
  msgstr ""
913
 
914
+ #: inc/core/class.data.php:636
915
  msgid "Size of the uploaded icon in pixels"
916
  msgstr ""
917
 
918
+ #: inc/core/class.data.php:644
919
  msgid "Service description"
920
  msgstr ""
921
 
922
+ #: inc/core/class.data.php:644
923
  msgid "Service box with title"
924
  msgstr ""
925
 
926
+ #: inc/core/class.data.php:654
927
  msgid "Box title"
928
  msgstr ""
929
 
930
+ #: inc/core/class.data.php:655
931
  msgid "Text for the box title"
932
  msgstr ""
933
 
934
+ #: inc/core/class.data.php:668
935
  msgid "Box style preset"
936
  msgstr ""
937
 
938
+ #: inc/core/class.data.php:674
939
  msgid "Color"
940
  msgstr ""
941
 
942
+ #: inc/core/class.data.php:675
943
  msgid "Color for the box title and borders"
944
  msgstr ""
945
 
946
+ #: inc/core/class.data.php:681
947
  msgid "Title text color"
948
  msgstr ""
949
 
950
+ #: inc/core/class.data.php:681
951
  msgid "Color for the box title text"
952
  msgstr ""
953
 
954
+ #: inc/core/class.data.php:688
955
  msgid "Box corners radius"
956
  msgstr ""
957
 
958
+ #: inc/core/class.data.php:697
959
  msgid "Box content"
960
  msgstr ""
961
 
962
+ #: inc/core/class.data.php:698
963
  msgid "Colored box with caption"
964
  msgstr ""
965
 
966
+ #: inc/core/class.data.php:710
967
  msgid "Note background color"
968
  msgstr ""
969
 
970
+ #: inc/core/class.data.php:717
971
  msgid "Note text color"
972
  msgstr ""
973
 
974
+ #: inc/core/class.data.php:723
975
  msgid "Note corners radius"
976
  msgstr ""
977
 
978
+ #: inc/core/class.data.php:731
979
  msgid "Note text"
980
  msgstr ""
981
 
982
+ #: inc/core/class.data.php:732
983
  msgid "Colored box"
984
  msgstr ""
985
 
986
+ #: inc/core/class.data.php:736
987
  msgid "Lightbox"
988
  msgstr ""
989
 
990
+ #: inc/core/class.data.php:743
991
  msgid "Iframe"
992
  msgstr ""
993
 
994
+ #: inc/core/class.data.php:744
995
  msgid "Image"
996
  msgstr ""
997
 
998
+ #: inc/core/class.data.php:745
999
  msgid "Inline (html content)"
1000
  msgstr ""
1001
 
1002
+ #: inc/core/class.data.php:748
1003
  msgid "Content type"
1004
  msgstr ""
1005
 
1006
+ #: inc/core/class.data.php:749
1007
  msgid "Select type of the lightbox window content"
1008
  msgstr ""
1009
 
1010
+ #: inc/core/class.data.php:753
1011
  msgid "Content source"
1012
  msgstr ""
1013
 
1014
+ #: inc/core/class.data.php:754
1015
  msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1016
  msgstr ""
1017
 
1018
+ #: inc/core/class.data.php:763
1019
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1020
  msgstr ""
1021
 
1022
+ #: inc/core/class.data.php:764
1023
  msgid "Lightbox window with custom content"
1024
  msgstr ""
1025
 
1026
+ #: inc/core/class.data.php:768
1027
  msgid "Tooltip"
1028
  msgstr ""
1029
 
1030
+ #: inc/core/class.data.php:775
1031
  msgid "Basic: Light"
1032
  msgstr ""
1033
 
1034
+ #: inc/core/class.data.php:776
1035
  msgid "Basic: Dark"
1036
  msgstr ""
1037
 
1038
+ #: inc/core/class.data.php:777
1039
  msgid "Basic: Yellow"
1040
  msgstr ""
1041
 
1042
+ #: inc/core/class.data.php:778
1043
  msgid "Basic: Green"
1044
  msgstr ""
1045
 
1046
+ #: inc/core/class.data.php:779
1047
  msgid "Basic: Red"
1048
  msgstr ""
1049
 
1050
+ #: inc/core/class.data.php:780
1051
  msgid "Basic: Blue"
1052
  msgstr ""
1053
 
1054
+ #: inc/core/class.data.php:781
1055
  msgid "Youtube"
1056
  msgstr ""
1057
 
1058
+ #: inc/core/class.data.php:782
1059
  msgid "Tipsy"
1060
  msgstr ""
1061
 
1062
+ #: inc/core/class.data.php:783
1063
  msgid "Bootstrap"
1064
  msgstr ""
1065
 
1066
+ #: inc/core/class.data.php:784
1067
  msgid "jTools"
1068
  msgstr ""
1069
 
1070
+ #: inc/core/class.data.php:785
1071
  msgid "Tipped"
1072
  msgstr ""
1073
 
1074
+ #: inc/core/class.data.php:786
1075
  msgid "Cluetip"
1076
  msgstr ""
1077
 
1078
+ #: inc/core/class.data.php:790
1079
  msgid "Tooltip window style"
1080
  msgstr ""
1081
 
1082
+ #: inc/core/class.data.php:801
1083
  msgid "Position"
1084
  msgstr ""
1085
 
1086
+ #: inc/core/class.data.php:802
1087
  msgid "Tooltip position"
1088
  msgstr ""
1089
 
1090
+ #: inc/core/class.data.php:807
1091
  msgid "Shadow"
1092
  msgstr ""
1093
 
1094
+ #: inc/core/class.data.php:808
1095
  msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
1096
  msgstr ""
1097
 
1098
+ #: inc/core/class.data.php:813
1099
  msgid "Rounded corners"
1100
  msgstr ""
1101
 
1102
+ #: inc/core/class.data.php:814
1103
  msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
1104
  msgstr ""
1105
 
1106
+ #: inc/core/class.data.php:828
1107
  msgid "Font size"
1108
  msgstr ""
1109
 
1110
+ #: inc/core/class.data.php:829
1111
  msgid "Tooltip font size"
1112
  msgstr ""
1113
 
1114
+ #: inc/core/class.data.php:833
1115
  msgid "Tooltip title"
1116
  msgstr ""
1117
 
1118
+ #: inc/core/class.data.php:834
1119
  msgid "Enter title for tooltip window. Leave this field empty to hide the title"
1120
  msgstr ""
1121
 
1122
+ #: inc/core/class.data.php:837
1123
+ #: inc/core/shortcodes.php:575
1124
  msgid "Tooltip text"
1125
  msgstr ""
1126
 
1127
+ #: inc/core/class.data.php:838
1128
  msgid "Tooltip content"
1129
  msgstr ""
1130
 
1131
+ #: inc/core/class.data.php:839
1132
  msgid "Enter tooltip content here"
1133
  msgstr ""
1134
 
1135
+ #: inc/core/class.data.php:844
1136
  msgid "Show and hide on mouse hover"
1137
  msgstr ""
1138
 
1139
+ #: inc/core/class.data.php:845
1140
  msgid "Show and hide by mouse click"
1141
  msgstr ""
1142
 
1143
+ #: inc/core/class.data.php:846
1144
  msgid "Always visible"
1145
  msgstr ""
1146
 
1147
+ #: inc/core/class.data.php:849
1148
  msgid "Behavior"
1149
  msgstr ""
1150
 
1151
+ #: inc/core/class.data.php:850
1152
  msgid "Select tooltip behavior"
1153
  msgstr ""
1154
 
1155
+ #: inc/core/class.data.php:855
1156
  msgid "Close button"
1157
  msgstr ""
1158
 
1159
+ #: inc/core/class.data.php:856
1160
  msgid "Show close button"
1161
  msgstr ""
1162
 
1163
+ #: inc/core/class.data.php:865
1164
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1165
  msgstr ""
1166
 
1167
+ #: inc/core/class.data.php:866
1168
  msgid "Tooltip window with custom content"
1169
  msgstr ""
1170
 
1171
+ #: inc/core/class.data.php:870
1172
  msgid "Private"
1173
  msgstr ""
1174
 
1175
+ #: inc/core/class.data.php:881
1176
  msgid "Private note text"
1177
  msgstr ""
1178
 
1179
+ #: inc/core/class.data.php:882
1180
  msgid "Private note for post authors"
1181
  msgstr ""
1182
 
1183
+ #: inc/core/class.data.php:886
1184
  msgid "YouTube"
1185
  msgstr ""
1186
 
1187
+ #: inc/core/class.data.php:893
1188
+ #: inc/core/class.data.php:943
1189
+ #: inc/core/class.data.php:991
1190
+ #: inc/core/class.data.php:1242
1191
+ #: inc/core/class.data.php:1332
1192
  msgid "Url"
1193
  msgstr ""
1194
 
1195
+ #: inc/core/class.data.php:894
1196
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1197
  msgstr ""
1198
 
1199
+ #: inc/core/class.data.php:902
1200
+ #: inc/core/class.data.php:951
1201
+ #: inc/core/class.data.php:999
1202
+ #: inc/core/class.data.php:1040
1203
+ #: inc/core/class.data.php:1094
1204
+ #: inc/core/class.data.php:1341
1205
+ #: inc/core/class.data.php:1379
1206
+ #: inc/core/class.data.php:1428
1207
+ #: inc/core/class.data.php:1518
1208
+ #: inc/core/class.data.php:1624
1209
  msgid "Width"
1210
  msgstr ""
1211
 
1212
+ #: inc/core/class.data.php:903
1213
+ #: inc/core/class.data.php:952
1214
+ #: inc/core/class.data.php:1000
1215
+ #: inc/core/class.data.php:1095
1216
  msgid "Player width"
1217
  msgstr ""
1218
 
1219
+ #: inc/core/class.data.php:912
1220
+ #: inc/core/class.data.php:961
1221
+ #: inc/core/class.data.php:1009
1222
+ #: inc/core/class.data.php:1104
1223
  msgid "Player height"
1224
  msgstr ""
1225
 
1226
+ #: inc/core/class.data.php:917
1227
+ #: inc/core/class.data.php:966
1228
+ #: inc/core/class.data.php:1014
1229
+ #: inc/core/class.data.php:1356
1230
+ #: inc/core/class.data.php:1394
1231
+ #: inc/core/class.data.php:1441
1232
+ #: inc/core/class.data.php:1531
1233
  msgid "Responsive"
1234
  msgstr ""
1235
 
1236
+ #: inc/core/class.data.php:918
1237
+ #: inc/core/class.data.php:967
1238
+ #: inc/core/class.data.php:1015
1239
  msgid "Ignore width and height parameters and make player responsive"
1240
  msgstr ""
1241
 
1242
+ #: inc/core/class.data.php:923
1243
+ #: inc/core/class.data.php:972
1244
+ #: inc/core/class.data.php:1046
1245
+ #: inc/core/class.data.php:1115
1246
+ #: inc/core/class.data.php:1476
1247
+ #: inc/core/class.data.php:1582
1248
  msgid "Autoplay"
1249
  msgstr ""
1250
 
1251
+ #: inc/core/class.data.php:924
1252
+ #: inc/core/class.data.php:973
1253
  msgid "Play video automatically when page is loaded"
1254
  msgstr ""
1255
 
1256
+ #: inc/core/class.data.php:932
1257
  msgid "YouTube video"
1258
  msgstr ""
1259
 
1260
+ #: inc/core/class.data.php:936
1261
  msgid "Vimeo"
1262
  msgstr ""
1263
 
1264
+ #: inc/core/class.data.php:943
1265
  msgid "Url of Vimeo page with video"
1266
  msgstr ""
1267
 
1268
+ #: inc/core/class.data.php:981
1269
  msgid "Vimeo video"
1270
  msgstr ""
1271
 
1272
+ #: inc/core/class.data.php:985
1273
  msgid "Screenr"
1274
  msgstr ""
1275
 
1276
+ #: inc/core/class.data.php:991
1277
  msgid "Url of Screenr page with video"
1278
  msgstr ""
1279
 
1280
+ #: inc/core/class.data.php:1023
1281
  msgid "Screenr video"
1282
  msgstr ""
1283
 
1284
+ #: inc/core/class.data.php:1027
1285
  msgid "Audio"
1286
  msgstr ""
1287
 
1288
+ #: inc/core/class.data.php:1034
1289
+ #: inc/core/class.data.php:1073
1290
  msgid "File"
1291
  msgstr ""
1292
 
1293
+ #: inc/core/class.data.php:1035
1294
  msgid "Audio file url. Supported formats: mp3, ogg"
1295
  msgstr ""
1296
 
1297
+ #: inc/core/class.data.php:1041
1298
  msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1299
  msgstr ""
1300
 
1301
+ #: inc/core/class.data.php:1047
1302
+ #: inc/core/class.data.php:1116
1303
  msgid "Play file automatically when page is loaded"
1304
  msgstr ""
1305
 
1306
+ #: inc/core/class.data.php:1052
1307
+ #: inc/core/class.data.php:1121
1308
  msgid "Loop"
1309
  msgstr ""
1310
 
1311
+ #: inc/core/class.data.php:1053
1312
+ #: inc/core/class.data.php:1122
1313
  msgid "Repeat when playback is ended"
1314
  msgstr ""
1315
 
1316
+ #: inc/core/class.data.php:1062
1317
  msgid "Custom audio player"
1318
  msgstr ""
1319
 
1320
+ #: inc/core/class.data.php:1066
1321
  msgid "Video"
1322
  msgstr ""
1323
 
1324
+ #: inc/core/class.data.php:1074
1325
  msgid "Url to mp4/flv video-file"
1326
  msgstr ""
1327
 
1328
+ #: inc/core/class.data.php:1079
1329
  msgid "Poster"
1330
  msgstr ""
1331
 
1332
+ #: inc/core/class.data.php:1080
1333
  msgid "Url to poster image, that will be shown before playback"
1334
  msgstr ""
1335
 
1336
+ #: inc/core/class.data.php:1086
1337
  msgid "Player title"
1338
  msgstr ""
1339
 
1340
+ #: inc/core/class.data.php:1109
1341
  msgid "Controls"
1342
  msgstr ""
1343
 
1344
+ #: inc/core/class.data.php:1110
1345
  msgid "Show player controls (play/pause etc.) or not"
1346
  msgstr ""
1347
 
1348
+ #: inc/core/class.data.php:1131
1349
  msgid "Custom video player"
1350
  msgstr ""
1351
 
1352
+ #: inc/core/class.data.php:1135
1353
  msgid "Table"
1354
  msgstr ""
1355
 
1356
+ #: inc/core/class.data.php:1142
1357
  msgid "CSV file"
1358
  msgstr ""
1359
 
1360
+ #: inc/core/class.data.php:1143
1361
  msgid "Upload CSV file if you want to create HTML-table from file"
1362
  msgstr ""
1363
 
1364
+ #: inc/core/class.data.php:1152
1365
  msgid ""
1366
  "<table>\n"
1367
  "<tr>\n"
1375
  "</table>"
1376
  msgstr ""
1377
 
1378
+ #: inc/core/class.data.php:1153
1379
  msgid "Styled table from HTML or CSV file"
1380
  msgstr ""
1381
 
1382
+ #: inc/core/class.data.php:1157
1383
  msgid "Permalink"
1384
  msgstr ""
1385
 
1386
+ #: inc/core/class.data.php:1163
1387
  msgid "ID"
1388
  msgstr ""
1389
 
1390
+ #: inc/core/class.data.php:1164
1391
  msgid "Post or page ID"
1392
  msgstr ""
1393
 
1394
+ #: inc/core/class.data.php:1174
1395
  msgid "Link target. blank - link will be opened in new window/tab"
1396
  msgstr ""
1397
 
1398
+ #: inc/core/class.data.php:1184
1399
  msgid "Permalink to specified post/page"
1400
  msgstr ""
1401
 
1402
+ #: inc/core/class.data.php:1188
1403
  msgid "Members"
1404
  msgstr ""
1405
 
1406
+ #: inc/core/class.data.php:1193
1407
+ #: inc/core/shortcodes.php:874
1408
  msgid "This content is for registered users only. Please %login%."
1409
  msgstr ""
1410
 
1411
+ #: inc/core/class.data.php:1194
1412
  msgid "Message"
1413
  msgstr ""
1414
 
1415
+ #: inc/core/class.data.php:1194
1416
  msgid "Message for not logged users"
1417
  msgstr ""
1418
 
1419
+ #: inc/core/class.data.php:1199
1420
  msgid "Box color"
1421
  msgstr ""
1422
 
1423
+ #: inc/core/class.data.php:1199
1424
  msgid "This color will applied only to box for not logged users"
1425
  msgstr ""
1426
 
1427
+ #: inc/core/class.data.php:1202
1428
+ #: inc/core/shortcodes.php:877
1429
  msgid "login"
1430
  msgstr ""
1431
 
1432
+ #: inc/core/class.data.php:1203
1433
  msgid "Login link text"
1434
  msgstr ""
1435
 
1436
+ #: inc/core/class.data.php:1203
1437
  msgid "Text for the login link"
1438
  msgstr ""
1439
 
1440
+ #: inc/core/class.data.php:1207
1441
  msgid "Login link url"
1442
  msgstr ""
1443
 
1444
+ #: inc/core/class.data.php:1216
1445
  msgid "Content for logged members"
1446
  msgstr ""
1447
 
1448
+ #: inc/core/class.data.php:1217
1449
  msgid "Content for logged in members only"
1450
  msgstr ""
1451
 
1452
+ #: inc/core/class.data.php:1221
1453
  msgid "Guests"
1454
  msgstr ""
1455
 
1456
+ #: inc/core/class.data.php:1231
1457
  msgid "Content for guests"
1458
  msgstr ""
1459
 
1460
+ #: inc/core/class.data.php:1231
1461
  msgid "Content for guests only"
1462
  msgstr ""
1463
 
1464
+ #: inc/core/class.data.php:1235
1465
  msgid "RSS Feed"
1466
  msgstr ""
1467
 
1468
+ #: inc/core/class.data.php:1243
1469
  msgid "Url to RSS-feed"
1470
  msgstr ""
1471
 
1472
+ #: inc/core/class.data.php:1248
1473
  msgid "Limit"
1474
  msgstr ""
1475
 
1476
+ #: inc/core/class.data.php:1248
1477
  msgid "Number of items to show"
1478
  msgstr ""
1479
 
1480
+ #: inc/core/class.data.php:1256
1481
  msgid "Feed grabber"
1482
  msgstr ""
1483
 
1484
+ #: inc/core/class.data.php:1260
1485
  msgid "Menu"
1486
  msgstr ""
1487
 
1488
+ #: inc/core/class.data.php:1267
1489
  msgid "Menu name"
1490
  msgstr ""
1491
 
1492
+ #: inc/core/class.data.php:1267
1493
  msgid "Custom menu name. Ex: Main menu"
1494
  msgstr ""
1495
 
1496
+ #: inc/core/class.data.php:1275
1497
  msgid "Custom menu by name"
1498
  msgstr ""
1499
 
1500
+ #: inc/core/class.data.php:1279
1501
  msgid "Sub pages"
1502
  msgstr ""
1503
 
1504
+ #: inc/core/class.data.php:1286
1505
+ #: inc/core/class.data.php:1312
1506
  msgid "Depth"
1507
  msgstr ""
1508
 
1509
+ #: inc/core/class.data.php:1287
1510
  msgid "Max depth level of children pages"
1511
  msgstr ""
1512
 
1513
+ #: inc/core/class.data.php:1292
1514
  msgid "Parent ID"
1515
  msgstr ""
1516
 
1517
+ #: inc/core/class.data.php:1293
1518
  msgid "ID of the parent page. Leave blank to use current page"
1519
  msgstr ""
1520
 
1521
+ #: inc/core/class.data.php:1301
1522
  msgid "List of sub pages"
1523
  msgstr ""
1524
 
1525
+ #: inc/core/class.data.php:1305
1526
  msgid "Siblings"
1527
  msgstr ""
1528
 
1529
+ #: inc/core/class.data.php:1313
1530
  msgid "Max depth level"
1531
  msgstr ""
1532
 
1533
+ #: inc/core/class.data.php:1321
1534
  msgid "List of cureent page siblings"
1535
  msgstr ""
1536
 
1537
+ #: inc/core/class.data.php:1325
1538
  msgid "Document"
1539
  msgstr ""
1540
 
1541
+ #: inc/core/class.data.php:1333
1542
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1543
  msgstr ""
1544
 
1545
+ #: inc/core/class.data.php:1342
1546
  msgid "Viewer width"
1547
  msgstr ""
1548
 
1549
+ #: inc/core/class.data.php:1351
1550
  msgid "Viewer height"
1551
  msgstr ""
1552
 
1553
+ #: inc/core/class.data.php:1357
1554
  msgid "Ignore width and height parameters and make viewer responsive"
1555
  msgstr ""
1556
 
1557
+ #: inc/core/class.data.php:1365
1558
  msgid "Document viewer by Google"
1559
  msgstr ""
1560
 
1561
+ #: inc/core/class.data.php:1369
1562
  msgid "Gmap"
1563
  msgstr ""
1564
 
1565
+ #: inc/core/class.data.php:1380
1566
  msgid "Map width"
1567
  msgstr ""
1568
 
1569
+ #: inc/core/class.data.php:1389
1570
  msgid "Map height"
1571
  msgstr ""
1572
 
1573
+ #: inc/core/class.data.php:1395
1574
  msgid "Ignore width and height parameters and make map responsive"
1575
  msgstr ""
1576
 
1577
+ #: inc/core/class.data.php:1400
1578
  msgid "Marker"
1579
  msgstr ""
1580
 
1581
+ #: inc/core/class.data.php:1401
1582
  msgid "Address for the marker. You can type it in any language"
1583
  msgstr ""
1584
 
1585
+ #: inc/core/class.data.php:1409
1586
  msgid "Maps by Google"
1587
  msgstr ""
1588
 
1589
+ #: inc/core/class.data.php:1413
1590
  msgid "Slider"
1591
  msgstr ""
1592
 
1593
+ #: inc/core/class.data.php:1420
1594
  msgid "Choose source gallery, that will be used for this slider"
1595
  msgstr ""
1596
 
1597
+ #: inc/core/class.data.php:1428
1598
  msgid "Slider width (in pixels)"
1599
  msgstr ""
1600
 
1601
+ #: inc/core/class.data.php:1436
1602
  msgid "Slider height (in pixels)"
1603
  msgstr ""
1604
 
1605
+ #: inc/core/class.data.php:1442
1606
  msgid "Ignore width and height parameters and make slider responsive"
1607
  msgstr ""
1608
 
1609
+ #: inc/core/class.data.php:1447
1610
+ #: inc/core/class.data.php:1553
1611
+ #: inc/core/class.data.php:1642
1612
  msgid "Show titles"
1613
  msgstr ""
1614
 
1615
+ #: inc/core/class.data.php:1447
1616
  msgid "Display slide titles"
1617
  msgstr ""
1618
 
1619
+ #: inc/core/class.data.php:1452
1620
  msgid "Is slider centered on the page"
1621
  msgstr ""
1622
 
1623
+ #: inc/core/class.data.php:1457
1624
+ #: inc/core/class.data.php:1563
1625
  msgid "Arrows"
1626
  msgstr ""
1627
 
1628
+ #: inc/core/class.data.php:1457
1629
+ #: inc/core/class.data.php:1563
1630
  msgid "Show left and right arrows"
1631
  msgstr ""
1632
 
1633
+ #: inc/core/class.data.php:1462
1634
+ #: inc/core/class.data.php:1568
1635
  msgid "Pagination"
1636
  msgstr ""
1637
 
1638
+ #: inc/core/class.data.php:1463
1639
+ #: inc/core/class.data.php:1569
1640
  msgid "Show pagination"
1641
  msgstr ""
1642
 
1643
+ #: inc/core/class.data.php:1467
1644
+ #: inc/core/class.data.php:1573
1645
  msgid "Mouse wheel control"
1646
  msgstr ""
1647
 
1648
+ #: inc/core/class.data.php:1468
1649
  msgid "Allow to change slides with mouse wheel"
1650
  msgstr ""
1651
 
1652
+ #: inc/core/class.data.php:1477
1653
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
1654
  msgstr ""
1655
 
1656
+ #: inc/core/class.data.php:1485
1657
+ #: inc/core/class.data.php:1591
1658
  msgid "Speed"
1659
  msgstr ""
1660
 
1661
+ #: inc/core/class.data.php:1485
1662
+ #: inc/core/class.data.php:1591
1663
  msgid "Specify animation speed"
1664
  msgstr ""
1665
 
1666
+ #: inc/core/class.data.php:1490
1667
+ #: inc/core/class.data.php:1596
1668
+ #: inc/core/class.data.php:1648
1669
  msgid "Links target"
1670
  msgstr ""
1671
 
1672
+ #: inc/core/class.data.php:1491
1673
  msgid "Open slides links in new window/tab"
1674
  msgstr ""
1675
 
1676
+ #: inc/core/class.data.php:1499
1677
  msgid "Customizable image slider"
1678
  msgstr ""
1679
 
1680
+ #: inc/core/class.data.php:1503
1681
  msgid "Carousel"
1682
  msgstr ""
1683
 
1684
+ #: inc/core/class.data.php:1510
1685
  msgid "Choose source gallery, that will be used for this carousel"
1686
  msgstr ""
1687
 
1688
+ #: inc/core/class.data.php:1518
1689
  msgid "Carousel width (in pixels)"
1690
  msgstr ""
1691
 
1692
+ #: inc/core/class.data.php:1526
1693
  msgid "Carousel height (in pixels)"
1694
  msgstr ""
1695
 
1696
+ #: inc/core/class.data.php:1532
1697
  msgid "Ignore width and height parameters and make carousel responsive"
1698
  msgstr ""
1699
 
1700
+ #: inc/core/class.data.php:1539
1701
  msgid "Items to show"
1702
  msgstr ""
1703
 
1704
+ #: inc/core/class.data.php:1540
1705
  msgid "How much carousel items is visible"
1706
  msgstr ""
1707
 
1708
+ #: inc/core/class.data.php:1547
1709
  msgid "Scroll number"
1710
  msgstr ""
1711
 
1712
+ #: inc/core/class.data.php:1548
1713
  msgid "How much items are scrolled in one transition"
1714
  msgstr ""
1715
 
1716
+ #: inc/core/class.data.php:1553
1717
  msgid "Display titles for each item"
1718
  msgstr ""
1719
 
1720
+ #: inc/core/class.data.php:1558
1721
  msgid "Is carousel centered on the page"
1722
  msgstr ""
1723
 
1724
+ #: inc/core/class.data.php:1574
1725
  msgid "Allow to rotate carousel with mouse wheel"
1726
  msgstr ""
1727
 
1728
+ #: inc/core/class.data.php:1583
1729
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
1730
  msgstr ""
1731
 
1732
+ #: inc/core/class.data.php:1597
1733
  msgid "Open carousel links in new window/tab"
1734
  msgstr ""
1735
 
1736
+ #: inc/core/class.data.php:1605
1737
  msgid "Customizable image carousel"
1738
  msgstr ""
1739
 
1740
+ #: inc/core/class.data.php:1616
1741
  msgid "Choose source gallery, that will be used for this shortcode"
1742
  msgstr ""
1743
 
1744
+ #: inc/core/class.data.php:1624
1745
  msgid "Single item width (in pixels)"
1746
  msgstr ""
1747
 
1748
+ #: inc/core/class.data.php:1632
1749
  msgid "Single item height (in pixels)"
1750
  msgstr ""
1751
 
1752
+ #: inc/core/class.data.php:1637
1753
  msgid "Never"
1754
  msgstr ""
1755
 
1756
+ #: inc/core/class.data.php:1638
1757
  msgid "On mouse over"
1758
  msgstr ""
1759
 
1760
+ #: inc/core/class.data.php:1639
1761
  msgid "Always"
1762
  msgstr ""
1763
 
1764
+ #: inc/core/class.data.php:1643
1765
  msgid "Title display mode"
1766
  msgstr ""
1767
 
1768
+ #: inc/core/class.data.php:1648
1769
  msgid "Open links in new window/tab"
1770
  msgstr ""
1771
 
1772
+ #: inc/core/class.data.php:1656
1773
  msgid "Customizable image gallery"
1774
  msgstr ""
1775
 
1776
+ #: inc/core/class.data.php:1660
1777
  msgid "Posts"
1778
  msgstr ""
1779
 
1780
+ #: inc/core/class.data.php:1665
1781
  msgid "Template"
1782
  msgstr ""
1783
 
1784
+ #: inc/core/class.data.php:1666
1785
  msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
1786
  msgstr ""
1787
 
1788
+ #: inc/core/class.data.php:1670
1789
  msgid "Post ID's"
1790
  msgstr ""
1791
 
1792
+ #: inc/core/class.data.php:1671
1793
  msgid "Enter comma separated ID's of the posts that you want to show"
1794
  msgstr ""
1795
 
1796
+ #: inc/core/class.data.php:1679
1797
  msgid "Posts per page"
1798
  msgstr ""
1799
 
1800
+ #: inc/core/class.data.php:1680
1801
  msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
1802
  msgstr ""
1803
 
1804
+ #: inc/core/class.data.php:1687
1805
  msgid "Post types"
1806
  msgstr ""
1807
 
1808
+ #: inc/core/class.data.php:1688
1809
  msgid "Select post types. Hold Ctrl key to select multiple post types"
1810
  msgstr ""
1811
 
1812
+ #: inc/core/class.data.php:1694
1813
  msgid "Taxonomy"
1814
  msgstr ""
1815
 
1816
+ #: inc/core/class.data.php:1695
1817
  msgid "Select taxonomy to show posts from"
1818
  msgstr ""
1819
 
1820
+ #: inc/core/class.data.php:1702
1821
  msgid "Terms"
1822
  msgstr ""
1823
 
1824
+ #: inc/core/class.data.php:1702
1825
  msgid "Select terms to show posts from"
1826
  msgstr ""
1827
 
1828
+ #: inc/core/class.data.php:1707
1829
  msgid "Taxonomy term operator"
1830
  msgstr ""
1831
 
1832
+ #: inc/core/class.data.php:1708
1833
  msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
1834
  msgstr ""
1835
 
1836
+ #: inc/core/class.data.php:1715
1837
  msgid "Authors"
1838
  msgstr ""
1839
 
1840
+ #: inc/core/class.data.php:1716
1841
  msgid "Choose the authors whose posts you want to show"
1842
  msgstr ""
1843
 
1844
+ #: inc/core/class.data.php:1720
1845
  msgid "Meta key"
1846
  msgstr ""
1847
 
1848
+ #: inc/core/class.data.php:1721
1849
  msgid "Enter meta key name to show posts that have this key"
1850
  msgstr ""
1851
 
1852
+ #: inc/core/class.data.php:1728
1853
  msgid "Offset"
1854
  msgstr ""
1855
 
1856
+ #: inc/core/class.data.php:1729
1857
  msgid "Specify offset to start posts loop not from first post"
1858
  msgstr ""
1859
 
1860
+ #: inc/core/class.data.php:1734
1861
  msgid "Descending"
1862
  msgstr ""
1863
 
1864
+ #: inc/core/class.data.php:1735
1865
  msgid "Ascending"
1866
  msgstr ""
1867
 
1868
+ #: inc/core/class.data.php:1738
1869
  msgid "Order"
1870
  msgstr ""
1871
 
1872
+ #: inc/core/class.data.php:1739
1873
  msgid "Posts order"
1874
  msgstr ""
1875
 
1876
+ #: inc/core/class.data.php:1745
1877
  msgid "Post ID"
1878
  msgstr ""
1879
 
1880
+ #: inc/core/class.data.php:1746
1881
  msgid "Post author"
1882
  msgstr ""
1883
 
1884
+ #: inc/core/class.data.php:1747
1885
  msgid "Post title"
1886
  msgstr ""
1887
 
1888
+ #: inc/core/class.data.php:1748
1889
  msgid "Post slug"
1890
  msgstr ""
1891
 
1892
+ #: inc/core/class.data.php:1749
1893
  msgid "Date"
1894
  msgstr ""
1895
 
1896
+ #: inc/core/class.data.php:1749
1897
  msgid "Last modified date"
1898
  msgstr ""
1899
 
1900
+ #: inc/core/class.data.php:1750
1901
+ #: inc/core/class.data.php:1760
1902
  msgid "Post parent"
1903
  msgstr ""
1904
 
1905
+ #: inc/core/class.data.php:1751
1906
  msgid "Random"
1907
  msgstr ""
1908
 
1909
+ #: inc/core/class.data.php:1751
1910
  msgid "Comments number"
1911
  msgstr ""
1912
 
1913
+ #: inc/core/class.data.php:1752
1914
  msgid "Menu order"
1915
  msgstr ""
1916
 
1917
+ #: inc/core/class.data.php:1752
1918
  msgid "Meta key values"
1919
  msgstr ""
1920
 
1921
+ #: inc/core/class.data.php:1755
1922
  msgid "Order by"
1923
  msgstr ""
1924
 
1925
+ #: inc/core/class.data.php:1756
1926
  msgid "Order posts by"
1927
  msgstr ""
1928
 
1929
+ #: inc/core/class.data.php:1761
1930
  msgid "Show childrens of entered post (enter post ID)"
1931
  msgstr ""
1932
 
1933
+ #: inc/core/class.data.php:1766
1934
  msgid "Published"
1935
  msgstr ""
1936
 
1937
+ #: inc/core/class.data.php:1767
1938
  msgid "Pending"
1939
  msgstr ""
1940
 
1941
+ #: inc/core/class.data.php:1768
1942
  msgid "Draft"
1943
  msgstr ""
1944
 
1945
+ #: inc/core/class.data.php:1769
1946
  msgid "Auto-draft"
1947
  msgstr ""
1948
 
1949
+ #: inc/core/class.data.php:1770
1950
  msgid "Future post"
1951
  msgstr ""
1952
 
1953
+ #: inc/core/class.data.php:1771
1954
  msgid "Private post"
1955
  msgstr ""
1956
 
1957
+ #: inc/core/class.data.php:1772
1958
  msgid "Inherit"
1959
  msgstr ""
1960
 
1961
+ #: inc/core/class.data.php:1773
1962
  msgid "Trashed"
1963
  msgstr ""
1964
 
1965
+ #: inc/core/class.data.php:1774
1966
  msgid "Any"
1967
  msgstr ""
1968
 
1969
+ #: inc/core/class.data.php:1777
1970
  msgid "Post status"
1971
  msgstr ""
1972
 
1973
+ #: inc/core/class.data.php:1778
1974
  msgid "Show only posts with selected status"
1975
  msgstr ""
1976
 
1977
+ #: inc/core/class.data.php:1783
1978
  msgid "Ignore sticky"
1979
  msgstr ""
1980
 
1981
+ #: inc/core/class.data.php:1784
1982
  msgid "Select Yes to ignore posts that is sticked"
1983
  msgstr ""
1984
 
1985
+ #: inc/core/class.data.php:1788
1986
  msgid "Custom posts query with customizable template"
1987
  msgstr ""
1988
 
2229
  msgid "Title:"
2230
  msgstr ""
2231
 
2232
+ #: inc/core/shortcodes.php:485
2233
  msgid "This is box title"
2234
  msgstr ""
2235
 
2236
+ #: inc/core/shortcodes.php:665
2237
+ #: inc/core/shortcodes.php:698
2238
+ #: inc/core/shortcodes.php:732
2239
+ #: inc/core/shortcodes.php:766
2240
+ #: inc/core/shortcodes.php:806
2241
  msgid "please specify correct url"
2242
  msgstr ""
2243
 
2244
+ #: inc/core/shortcodes.php:1008
2245
  msgid "This menu doesn't exists, or has no elements"
2246
  msgstr ""
2247
 
2248
+ #: inc/core/shortcodes.php:1096
2249
+ #: inc/core/shortcodes.php:1182
2250
+ #: inc/core/shortcodes.php:1251
2251
  msgid "images not found"
2252
  msgstr ""
2253
 
2254
+ #: inc/core/shortcodes.php:1449
2255
  msgid "template not found"
2256
  msgstr ""
2257
 
readme.txt CHANGED
@@ -45,7 +45,7 @@ With this plugin you can easily create tabs, buttons, boxes, different sliders,
45
  = Got a bug or suggestion? =
46
  * [Support forum](http://wordpress.org/support/plugin/shortcodes-ultimate/)
47
  * [Documentation](http://gndev.info/kb/)
48
- * [Contact author](http://gndev.info/feedback/)
49
 
50
  = Bundled translations =
51
  * Ru, [Vladimir Anokhin](http://gndev.info/)
@@ -94,6 +94,14 @@ Upgrade normally via your Wordpress admin -> Plugins panel.
94
 
95
  == Changelog ==
96
 
 
 
 
 
 
 
 
 
97
  = 4.1.6 =
98
  * Added pot file
99
  * Fixed [button] css code
45
  = Got a bug or suggestion? =
46
  * [Support forum](http://wordpress.org/support/plugin/shortcodes-ultimate/)
47
  * [Documentation](http://gndev.info/kb/)
48
+ * [Contact author](http://gndev.info/feedback/) (please *DO NOT* use this form for support requests)
49
 
50
  = Bundled translations =
51
  * Ru, [Vladimir Anokhin](http://gndev.info/)
94
 
95
  == Changelog ==
96
 
97
+
98
+ = 4.1.7 =
99
+ * Fixed [button wide=yes]
100
+ * Fixed media query for [column]
101
+ * Added new attr [column center=yes]
102
+ * Improved js code for spoilers and tabs
103
+ * Improved js code for generator
104
+
105
  = 4.1.6 =
106
  * Added pot file
107
  * Fixed [button] css code
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.1.6
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Supercharge your WordPress theme with mega pack of shortcodes
2
  /*
3
  Plugin Name: Shortcodes Ultimate
4
  Plugin URI: http://gndev.info/shortcodes-ultimate/
5
+ Version: 4.1.7
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Supercharge your WordPress theme with mega pack of shortcodes