Shortcodes Ultimate - Version 4.0.9

Version Description

  • Updated [frame]. Now it can contain other shortcodes
  • Updated caching mechanism. Cache now will be reseted on plugin activation
  • Fixed many PHP warnings when debug mode enabled
Download this release

Release Info

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

Code changes from version 4.0.8 to 4.0.9

inc/core/class.data.php CHANGED
@@ -393,7 +393,7 @@ class Shortcodes_Ultimate_Data {
393
  )
394
  ),
395
  'usage' => '[frame align="center"]<img src="image.jpg">[/frame]',
396
- 'content' => __( '<img src="http://lorempixel.com/g/400/200/" />', 'su' ),
397
  'desc' => __( 'Styled image frame', 'su' )
398
  ),
399
  // row
@@ -1080,7 +1080,7 @@ class Shortcodes_Ultimate_Data {
1080
  'name' => __( 'Login link text', 'su' ), 'desc' => __( 'Text for the login link', 'su' )
1081
  ),
1082
  'login_url' => array(
1083
- 'default' => wp_login_url( get_permalink( get_the_ID() ) ),
1084
  'name' => __( 'Login link url', 'su' ), 'desc' => __( 'Login link url', 'su' )
1085
  ),
1086
  'class' => array(
393
  )
394
  ),
395
  'usage' => '[frame align="center"]<img src="image.jpg">[/frame]',
396
+ 'content' => '<img src="http://lorempixel.com/g/400/200/" />',
397
  'desc' => __( 'Styled image frame', 'su' )
398
  ),
399
  // row
1080
  'name' => __( 'Login link text', 'su' ), 'desc' => __( 'Text for the login link', 'su' )
1081
  ),
1082
  'login_url' => array(
1083
+ 'default' => wp_login_url(),
1084
  'name' => __( 'Login link url', 'su' ), 'desc' => __( 'Login link url', 'su' )
1085
  ),
1086
  'class' => array(
inc/core/class.shortcodes-ultimate.php CHANGED
@@ -18,7 +18,7 @@ class Shortcodes_Ultimate {
18
  // Prepare variable for global plugin helper instance
19
  global $shult;
20
  // Create plugin helper instance
21
- $shult = new Sunrise_Plugin_Framework_2( SU_PLUGIN_FILE );
22
  // Register settings page
23
  $shult->add_options_page( array( 'link' => false ), self::options() );
24
  // Translate plugin meta
@@ -42,6 +42,7 @@ class Shortcodes_Ultimate {
42
  self::timestamp();
43
  self::check_requirements();
44
  self::create_skins_dir();
 
45
  do_action( 'su/activation' );
46
  }
47
 
18
  // Prepare variable for global plugin helper instance
19
  global $shult;
20
  // Create plugin helper instance
21
+ $shult = new Sunrise_Plugin_Framework_2_1( SU_PLUGIN_FILE );
22
  // Register settings page
23
  $shult->add_options_page( array( 'link' => false ), self::options() );
24
  // Translate plugin meta
42
  self::timestamp();
43
  self::check_requirements();
44
  self::create_skins_dir();
45
+ Shortcodes_Ultimate_Generator::reset();
46
  do_action( 'su/activation' );
47
  }
48
 
inc/core/shortcodes.php CHANGED
@@ -249,7 +249,7 @@ function su_frame_shortcode( $atts, $content = null ) {
249
  ), $atts );
250
  su_query_asset( 'css', 'su-content-shortcodes' );
251
  su_query_asset( 'js', 'su-other-shortcodes' );
252
- return '<span class="su-frame su-frame-align-' . $atts['align'] . ' su-frame-style-' . $atts['style'] . su_ecssc( $atts ) . '"><span class="su-frame-inner">' . $content . '</span></span>';
253
  }
254
 
255
  /**
249
  ), $atts );
250
  su_query_asset( 'css', 'su-content-shortcodes' );
251
  su_query_asset( 'js', 'su-other-shortcodes' );
252
+ return '<span class="su-frame su-frame-align-' . $atts['align'] . ' su-frame-style-' . $atts['style'] . su_ecssc( $atts ) . '"><span class="su-frame-inner">' . do_shortcode( $content ) . '</span></span>';
253
  }
254
 
255
  /**
inc/vendor/class.sunrise-framework.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  // Check that class doesn't exists
4
- if ( !class_exists( 'Sunrise_Plugin_Framework_2' ) ) {
5
 
6
  /**
7
  * Sunrise Plugin Framework Class
@@ -9,7 +9,7 @@
9
  * @author Vladimir Anokhin <ano.vladimir@gmail.com>
10
  * @link http://gndev.info/sunrise/
11
  */
12
- class Sunrise_Plugin_Framework_2 {
13
 
14
  /** @var string Plugin meta */
15
  var $meta;
@@ -184,7 +184,7 @@
184
  // Check this is settings page
185
  if ( !$this->is_settings() ) return;
186
  // ACTION: RESET
187
- if ( $_GET['action'] == 'reset' ) {
188
  // Prepare variables
189
  $new_options = array();
190
  // Prepare data
@@ -203,7 +203,7 @@
203
  }
204
  }
205
  // ACTION: SAVE
206
- elseif ( $_POST['action'] == 'save' ) {
207
  // Prepare vars
208
  $new_options = array();
209
  // Prepare data
1
  <?php
2
 
3
  // Check that class doesn't exists
4
+ if ( !class_exists( 'Sunrise_Plugin_Framework_2_1' ) ) {
5
 
6
  /**
7
  * Sunrise Plugin Framework Class
9
  * @author Vladimir Anokhin <ano.vladimir@gmail.com>
10
  * @link http://gndev.info/sunrise/
11
  */
12
+ class Sunrise_Plugin_Framework_2_1 {
13
 
14
  /** @var string Plugin meta */
15
  var $meta;
184
  // Check this is settings page
185
  if ( !$this->is_settings() ) return;
186
  // ACTION: RESET
187
+ if ( isset( $_GET['action'] ) && $_GET['action'] == 'reset' ) {
188
  // Prepare variables
189
  $new_options = array();
190
  // Prepare data
203
  }
204
  }
205
  // ACTION: SAVE
206
+ elseif ( isset( $_POST['action'] ) && $_POST['action'] == 'save' ) {
207
  // Prepare vars
208
  $new_options = array();
209
  // Prepare data
inc/views/checkbox.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- $triggable = ( $option['triggable'] ) ? ' data-triggable="' . $option['triggable'] . '" class="sunrise-plugin-triggable hide-if-js"' : '';
3
  $checked = ( $settings[$option['id']] == 'on' ) ? ' checked="checked"' : '';
4
  ?>
5
  <tr<?php echo $triggable; ?>>
1
  <?php
2
+ $triggable = ( isset( $option['triggable'] ) ) ? ' data-triggable="' . $option['triggable'] . '" class="sunrise-plugin-triggable hide-if-js"' : '';
3
  $checked = ( $settings[$option['id']] == 'on' ) ? ' checked="checked"' : '';
4
  ?>
5
  <tr<?php echo $triggable; ?>>
inc/views/closetab.php CHANGED
@@ -1,5 +1,5 @@
1
  </table>
2
- <?php if ( $option['actions'] !== false ) { ?>
3
  <div class="sunrise-plugin-actions-bar">
4
  <input type="submit" value="<?php _e( 'Save changes', $this->textdomain ); ?>" class="sunrise-plugin-submit button-primary" />
5
  <span class="sunrise-plugin-spin"><img src="<?php echo admin_url( 'images/wpspin_light.gif' ); ?>" alt="" /> <?php _e( 'Saving', $this->textdomain ); ?>&hellip;</span>
@@ -7,4 +7,4 @@
7
  <a href="<?php echo $this->admin_url; ?>&action=reset" class="sunrise-plugin-reset button alignright" title="<?php _e( 'This action will remove all your custom CSS, galleries and settings. Are you sure? This action cannot be undone!', $this->textdomain ); ?>"><?php _e( 'Restore default settings', $this->textdomain ); ?></a>
8
  </div>
9
  <?php } ?>
10
- </div>
1
  </table>
2
+ <?php if ( !isset( $option['actions'] ) || ( isset( $option['actions'] ) && $option['actions'] !== false ) ) { ?>
3
  <div class="sunrise-plugin-actions-bar">
4
  <input type="submit" value="<?php _e( 'Save changes', $this->textdomain ); ?>" class="sunrise-plugin-submit button-primary" />
5
  <span class="sunrise-plugin-spin"><img src="<?php echo admin_url( 'images/wpspin_light.gif' ); ?>" alt="" /> <?php _e( 'Saving', $this->textdomain ); ?>&hellip;</span>
7
  <a href="<?php echo $this->admin_url; ?>&action=reset" class="sunrise-plugin-reset button alignright" title="<?php _e( 'This action will remove all your custom CSS, galleries and settings. Are you sure? This action cannot be undone!', $this->textdomain ); ?>"><?php _e( 'Restore default settings', $this->textdomain ); ?></a>
8
  </div>
9
  <?php } ?>
10
+ </div>
inc/views/notifications.php CHANGED
@@ -5,6 +5,7 @@
5
  <p><?php echo $notifications['js']; ?> <a href="http://enable-javascript.com/" target="_blank"><?php _e( 'Instructions', $this->textdomain ); ?></a>.</p>
6
  </div>
7
  <?php
 
8
  // Options reseted
9
  if ( $_GET['message'] == 1 ) {
10
  ?>
5
  <p><?php echo $notifications['js']; ?> <a href="http://enable-javascript.com/" target="_blank"><?php _e( 'Instructions', $this->textdomain ); ?></a>.</p>
6
  </div>
7
  <?php
8
+ if ( empty( $_GET['message'] ) ) return;
9
  // Options reseted
10
  if ( $_GET['message'] == 1 ) {
11
  ?>
inc/views/skin.php CHANGED
@@ -2,14 +2,9 @@
2
  $upload_dir = wp_upload_dir();
3
  $kins_path = trailingslashit( path_join( $upload_dir['basedir'], 'shortcodes-ultimate-skins' ) );
4
  $option['options'] = array( 'default' );
5
- foreach ( glob( $kins_path . '*', GLOB_ONLYDIR ) as $dir ) {
6
- $option['options'][] = str_replace( $kins_path, '', $dir );
7
- }
8
- $trigger = ( $option['trigger'] ) ? ' data-trigger="true" data-trigger-type="select"' : '';
9
- $triggable = ( $option['triggable'] ) ?
10
- ' data-triggable="' . $option['triggable'] . '" class="sunrise-plugin-triggable hide-if-js"' : '';
11
  ?>
12
- <tr<?php echo $trigger, $triggable; ?>>
13
  <th scope="row">
14
  <label for="sunrise-plugin-field-<?php echo $option['id']; ?>"><?php echo $option['name']; ?></label></th>
15
  <td>
2
  $upload_dir = wp_upload_dir();
3
  $kins_path = trailingslashit( path_join( $upload_dir['basedir'], 'shortcodes-ultimate-skins' ) );
4
  $option['options'] = array( 'default' );
5
+ foreach ( glob( $kins_path . '*', GLOB_ONLYDIR ) as $dir ) $option['options'][] = str_replace( $kins_path, '', $dir );
 
 
 
 
 
6
  ?>
7
+ <tr>
8
  <th scope="row">
9
  <label for="sunrise-plugin-field-<?php echo $option['id']; ?>"><?php echo $option['name']; ?></label></th>
10
  <td>
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-08-31 18:39+0300\n"
6
- "PO-Revision-Date: 2013-08-31 18:41+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -19,10 +19,11 @@ msgid "Heading 2"
19
  msgstr "Заголовок 2"
20
 
21
  #: inc/example-addon.php:43
22
- #: inc/core/class.data.php:248
23
- #: inc/core/class.data.php:328
24
- #: inc/core/class.data.php:461
25
- #: inc/core/class.data.php:593
 
26
  msgid "Default"
27
  msgstr "По умолчанию"
28
 
@@ -31,10 +32,11 @@ msgid "Small"
31
  msgstr "Маленький"
32
 
33
  #: inc/example-addon.php:49
34
- #: inc/core/class.data.php:334
35
- #: inc/core/class.data.php:425
36
- #: inc/core/class.data.php:471
37
- #: inc/core/class.data.php:600
 
38
  msgid "Style"
39
  msgstr "Стиль"
40
 
@@ -54,181 +56,194 @@ msgstr "Стильный заголовок 2"
54
  msgid "This shortcode doesn't work in live preview. Please insert it into editor and preview on the site."
55
  msgstr "Этот шорткод не работает в режиме предпросмотра. Пожалуйста вставьте шорткод в редактор и посмотрите результат на странице записи."
56
 
57
- #: inc/core/class.data.php:32
58
  msgid "All"
59
  msgstr "Все"
60
 
61
- #: inc/core/class.data.php:33
62
  #: inc/core/class.generator.php:227
63
  msgid "Content"
64
  msgstr "Содержимое"
65
 
66
- #: inc/core/class.data.php:34
67
- #: inc/core/class.data.php:581
68
  msgid "Box"
69
  msgstr "Блок"
70
 
71
- #: inc/core/class.data.php:35
72
  msgid "Media"
73
  msgstr "Медиа"
74
 
75
- #: inc/core/class.data.php:36
76
- #: inc/core/class.data.php:1204
77
- #: inc/core/class.data.php:1294
78
- #: inc/core/class.data.php:1394
79
- #: inc/core/class.data.php:1400
80
  msgid "Gallery"
81
  msgstr "Галерея"
82
 
83
- #: inc/core/class.data.php:37
84
  msgid "Other"
85
  msgstr "Другое"
86
 
87
- #: inc/core/class.data.php:48
88
  msgid "Heading"
89
  msgstr "Заголовок"
90
 
91
- #: inc/core/class.data.php:58
92
- #: inc/core/class.data.php:339
93
- #: inc/core/class.data.php:388
94
- #: inc/core/class.data.php:489
95
  msgid "Size"
96
  msgstr "Размер"
97
 
98
- #: inc/core/class.data.php:58
99
  msgid "Select heading size"
100
  msgstr "Выберите размер заголовка"
101
 
102
- #: inc/core/class.data.php:63
103
- #: inc/core/class.data.php:304
104
- #: inc/core/class.data.php:526
105
  msgid "Left"
106
  msgstr "Слева"
107
 
108
- #: inc/core/class.data.php:64
109
- #: inc/core/class.data.php:1237
110
- #: inc/core/class.data.php:1343
111
  msgid "Center"
112
  msgstr "По центру"
113
 
114
- #: inc/core/class.data.php:65
115
- #: inc/core/class.data.php:305
116
- #: inc/core/class.data.php:524
117
  msgid "Right"
118
  msgstr "Справа"
119
 
120
- #: inc/core/class.data.php:68
121
- #: inc/core/class.data.php:308
 
122
  msgid "Align"
123
  msgstr "Выравнивание"
124
 
125
- #: inc/core/class.data.php:68
126
  msgid "Heading text alignment"
127
  msgstr "Выравнивание текста в заголовке"
128
 
129
- #: inc/core/class.data.php:72
130
- #: inc/core/class.data.php:93
131
- #: inc/core/class.data.php:115
132
- #: inc/core/class.data.php:141
133
- #: inc/core/class.data.php:155
134
- #: inc/core/class.data.php:181
135
- #: inc/core/class.data.php:204
136
- #: inc/core/class.data.php:232
137
- #: inc/core/class.data.php:261
138
- #: inc/core/class.data.php:288
139
- #: inc/core/class.data.php:312
140
- #: inc/core/class.data.php:343
141
- #: inc/core/class.data.php:358
142
- #: inc/core/class.data.php:393
143
- #: inc/core/class.data.php:429
144
- #: inc/core/class.data.php:539
145
- #: inc/core/class.data.php:573
146
- #: inc/core/class.data.php:625
147
- #: inc/core/class.data.php:660
148
- #: inc/core/class.data.php:691
149
- #: inc/core/class.data.php:707
150
- #: inc/core/class.data.php:757
151
  #: inc/core/class.data.php:806
152
- #: inc/core/class.data.php:844
153
- #: inc/core/class.data.php:913
154
- #: inc/core/class.data.php:934
155
- #: inc/core/class.data.php:965
156
- #: inc/core/class.data.php:997
157
- #: inc/core/class.data.php:1012
158
- #: inc/core/class.data.php:1037
159
  #: inc/core/class.data.php:1056
160
- #: inc/core/class.data.php:1082
161
- #: inc/core/class.data.php:1102
162
- #: inc/core/class.data.php:1146
163
- #: inc/core/class.data.php:1190
164
- #: inc/core/class.data.php:1280
165
- #: inc/core/class.data.php:1386
166
- #: inc/core/class.data.php:1437
 
 
 
 
167
  msgid "Class"
168
  msgstr "Класс"
169
 
170
- #: inc/core/class.data.php:73
171
- #: inc/core/class.data.php:94
172
- #: inc/core/class.data.php:116
173
- #: inc/core/class.data.php:142
174
- #: inc/core/class.data.php:156
175
- #: inc/core/class.data.php:182
176
- #: inc/core/class.data.php:205
177
- #: inc/core/class.data.php:233
178
- #: inc/core/class.data.php:262
179
- #: inc/core/class.data.php:289
180
- #: inc/core/class.data.php:313
181
- #: inc/core/class.data.php:344
182
- #: inc/core/class.data.php:359
183
- #: inc/core/class.data.php:394
184
- #: inc/core/class.data.php:430
185
- #: inc/core/class.data.php:540
186
- #: inc/core/class.data.php:574
187
- #: inc/core/class.data.php:626
188
- #: inc/core/class.data.php:661
189
- #: inc/core/class.data.php:692
190
- #: inc/core/class.data.php:708
191
- #: inc/core/class.data.php:758
192
  #: inc/core/class.data.php:807
193
- #: inc/core/class.data.php:845
194
- #: inc/core/class.data.php:914
195
- #: inc/core/class.data.php:935
196
- #: inc/core/class.data.php:966
197
- #: inc/core/class.data.php:998
198
- #: inc/core/class.data.php:1013
199
- #: inc/core/class.data.php:1038
200
  #: inc/core/class.data.php:1057
201
- #: inc/core/class.data.php:1083
202
- #: inc/core/class.data.php:1103
203
- #: inc/core/class.data.php:1147
204
- #: inc/core/class.data.php:1191
205
- #: inc/core/class.data.php:1281
206
- #: inc/core/class.data.php:1387
207
- #: inc/core/class.data.php:1438
 
 
 
 
208
  msgid "Extra CSS class"
209
  msgstr "Дополнительный CSS класс"
210
 
211
- #: inc/core/class.data.php:76
212
  msgid "Heading text"
213
  msgstr "Текст заголовка"
214
 
215
- #: inc/core/class.data.php:77
216
  msgid "Styled heading"
217
  msgstr "Стильный заголовок"
218
 
219
- #: inc/core/class.data.php:81
220
  msgid "Tabs"
221
  msgstr "Вкладки"
222
 
223
- #: inc/core/class.data.php:88
 
 
 
 
 
 
 
 
224
  msgid "Vertical"
225
  msgstr "Вертикально"
226
 
227
- #: inc/core/class.data.php:89
228
  msgid "Show tabs vertically"
229
  msgstr "Отображать вкладки вертикально"
230
 
231
- #: inc/core/class.data.php:98
232
  msgid ""
233
  "[tab title=\"Title 1\"]Content 1[/tab]\n"
234
  "[tab title=\"Title 2\"]Content 2[/tab]\n"
@@ -238,72 +253,85 @@ msgstr ""
238
  "[tab title=\"Заголовок 2\"]Содержимое 2[/tab]\n"
239
  "[tab title=\"Заголовок 3\"]Содержимое 3[/tab]"
240
 
241
- #: inc/core/class.data.php:99
242
  msgid "Tabs container"
243
  msgstr "Контейнер вкладок"
244
 
245
- #: inc/core/class.data.php:103
246
  msgid "Tab"
247
  msgstr "Вкладка"
248
 
249
- #: inc/core/class.data.php:109
250
  msgid "Tab name"
251
  msgstr "Имя вкладки"
252
 
253
- #: inc/core/class.data.php:110
254
- #: inc/core/class.data.php:131
255
- #: inc/core/class.data.php:555
256
- #: inc/core/class.data.php:588
257
- #: inc/core/class.data.php:872
258
  msgid "Title"
259
  msgstr "Заголовок"
260
 
261
- #: inc/core/class.data.php:111
262
  msgid "Enter tab name"
263
  msgstr "Введите имя вкладки"
264
 
265
- #: inc/core/class.data.php:119
266
  msgid "Tab content"
267
  msgstr "Содержимое вкладки"
268
 
269
- #: inc/core/class.data.php:120
270
  msgid "Single tab"
271
  msgstr "Одиночная вкладка"
272
 
273
- #: inc/core/class.data.php:124
274
  msgid "Spoiler"
275
  msgstr "Спойлер"
276
 
277
- #: inc/core/class.data.php:130
278
- #: inc/core/shortcodes.php:77
279
  msgid "Spoiler title"
280
  msgstr "Скрытый текст"
281
 
282
- #: inc/core/class.data.php:131
283
  msgid "Text in spoiler title"
284
  msgstr "Текст для заголовка спойлера"
285
 
286
- #: inc/core/class.data.php:136
287
  msgid "Open"
288
  msgstr "Открыт"
289
 
290
- #: inc/core/class.data.php:137
291
  msgid "Is spoiler content visible by default"
292
  msgstr "Виден ли контент спойлера по умолчанию"
293
 
294
- #: inc/core/class.data.php:145
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  msgid "Hidden content"
296
  msgstr "Скрытое содержимое"
297
 
298
- #: inc/core/class.data.php:145
299
  msgid "Spoiler with hidden content"
300
  msgstr "Спойлер со скрытым содержимым"
301
 
302
- #: inc/core/class.data.php:149
303
  msgid "Accordion"
304
  msgstr "Аккордион"
305
 
306
- #: inc/core/class.data.php:160
307
  msgid ""
308
  "[spoiler]Content[/spoiler]\n"
309
  "[spoiler]Content[/spoiler]\n"
@@ -313,200 +341,209 @@ msgstr ""
313
  "[spoiler]Содержимое[/spoiler]\n"
314
  "[spoiler]Содержимое[/spoiler]"
315
 
316
- #: inc/core/class.data.php:160
317
  msgid "Accordion with spoilers"
318
  msgstr "Аккордион со спойлерами"
319
 
320
- #: inc/core/class.data.php:164
321
  msgid "Divider"
322
  msgstr "Разделитель"
323
 
324
- #: inc/core/class.data.php:171
325
  msgid "Show TOP link"
326
  msgstr "Показать ссылку ВВЕРХ"
327
 
328
- #: inc/core/class.data.php:172
329
  msgid "Show link to top of the page or not"
330
  msgstr "Показывать ссылку ВВЕРХ или нет"
331
 
332
- #: inc/core/class.data.php:176
333
- #: inc/core/shortcodes.php:112
334
  msgid "Go to top"
335
  msgstr "Вверх"
336
 
337
- #: inc/core/class.data.php:177
338
  msgid "Link text"
339
  msgstr "Текст ссылки"
340
 
341
- #: inc/core/class.data.php:177
342
  msgid "Text for the GO TOP link"
343
  msgstr "Текст ссылки ВВЕРХ"
344
 
345
- #: inc/core/class.data.php:186
346
  msgid "Content divider with optional TOP link"
347
  msgstr "Разделитель текста со ссылкой ВВЕРХ"
348
 
349
- #: inc/core/class.data.php:190
350
  msgid "Spacer"
351
  msgstr "Пробел"
352
 
353
- #: inc/core/class.data.php:200
354
- #: inc/core/class.data.php:740
355
  #: inc/core/class.data.php:789
356
- #: inc/core/class.data.php:890
357
- #: inc/core/class.data.php:1135
358
- #: inc/core/class.data.php:1173
359
- #: inc/core/class.data.php:1221
360
- #: inc/core/class.data.php:1311
361
- #: inc/core/class.data.php:1417
 
 
362
  msgid "Height"
363
  msgstr "Высота"
364
 
365
- #: inc/core/class.data.php:200
366
  msgid "Height of the spacer in pixels"
367
  msgstr "Высота пробела в пикселях"
368
 
369
- #: inc/core/class.data.php:209
370
  msgid "Empty space with adjustable height"
371
  msgstr "Пробел с настраиваемой высотой"
372
 
373
- #: inc/core/class.data.php:213
374
  msgid "Highlight"
375
  msgstr "Выделитель"
376
 
377
- #: inc/core/class.data.php:221
378
- #: inc/core/class.data.php:477
379
- #: inc/core/class.data.php:643
380
  msgid "Background"
381
  msgstr "Фон"
382
 
383
- #: inc/core/class.data.php:222
384
  msgid "Highlighted text background color"
385
  msgstr "Цвет фона выделяемого текста"
386
 
387
- #: inc/core/class.data.php:228
388
- #: inc/core/class.data.php:483
389
- #: inc/core/class.data.php:649
390
  msgid "Text color"
391
  msgstr "Цвет текста"
392
 
393
- #: inc/core/class.data.php:228
394
  msgid "Highlighted text color"
395
  msgstr "Цвет выделяемого текста"
396
 
397
- #: inc/core/class.data.php:236
398
- #: inc/core/class.data.php:237
399
  msgid "Highlighted text"
400
  msgstr "Подсвеченный текст"
401
 
402
- #: inc/core/class.data.php:241
403
- #: inc/core/class.data.php:265
404
  msgid "Label"
405
  msgstr "Ярлык"
406
 
407
- #: inc/core/class.data.php:249
408
  msgid "Success"
409
  msgstr "Успех"
410
 
411
- #: inc/core/class.data.php:250
412
  msgid "Warning"
413
  msgstr "Внимание"
414
 
415
- #: inc/core/class.data.php:251
416
  msgid "Important"
417
  msgstr "Важно"
418
 
419
- #: inc/core/class.data.php:252
420
  msgid "Black"
421
  msgstr "Черный"
422
 
423
- #: inc/core/class.data.php:253
424
  msgid "Info"
425
  msgstr "Инфо"
426
 
427
- #: inc/core/class.data.php:256
428
  msgid "Type"
429
  msgstr "Тип"
430
 
431
- #: inc/core/class.data.php:257
432
  msgid "Style of the label"
433
  msgstr "Стиль ярлыка"
434
 
435
- #: inc/core/class.data.php:266
436
  msgid "Styled label"
437
  msgstr "Стильный ярлык"
438
 
439
- #: inc/core/class.data.php:270
440
  #: inc/core/class.data.php:292
 
441
  msgid "Quote"
442
  msgstr "Цитата"
443
 
444
- #: inc/core/class.data.php:277
445
  msgid "Cite"
446
  msgstr "Автор"
447
 
448
- #: inc/core/class.data.php:278
449
  msgid "Quote author name"
450
  msgstr "Имя автора цитаты"
451
 
452
- #: inc/core/class.data.php:283
453
  msgid "Cite url"
454
  msgstr "Ссылка автора"
455
 
456
- #: inc/core/class.data.php:284
457
  msgid "Url of the quote author. Leave empty to disable link"
458
  msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
459
 
460
- #: inc/core/class.data.php:293
461
  msgid "Blockquote alternative"
462
  msgstr "Альтернатива цитаты"
463
 
464
- #: inc/core/class.data.php:297
465
- #: inc/core/class.data.php:316
466
- #: inc/core/class.data.php:317
467
  msgid "Pullquote"
468
  msgstr "Цитата с обтеканием"
469
 
470
- #: inc/core/class.data.php:308
471
  msgid "Pullquote alignment (float)"
472
  msgstr "Выравнивание цитаты (обтекание)"
473
 
474
- #: inc/core/class.data.php:321
475
- #: inc/core/class.data.php:348
476
  msgid "Dropcap"
477
  msgstr "Буквица"
478
 
479
- #: inc/core/class.data.php:329
480
- #: inc/core/class.data.php:462
481
  msgid "Flat"
482
  msgstr "Плоский"
483
 
484
- #: inc/core/class.data.php:330
485
- #: inc/core/class.data.php:513
486
  msgid "Light"
487
  msgstr "Светлый"
488
 
489
- #: inc/core/class.data.php:331
490
- msgid "Simple"
491
- msgstr "Простой"
492
-
493
- #: inc/core/class.data.php:334
494
  msgid "Dropcap style preset"
495
  msgstr "Стиль буквицы"
496
 
497
- #: inc/core/class.data.php:339
498
  msgid "Choose dropcap size"
499
  msgstr "Выберите размер буквицы"
500
 
501
- #: inc/core/class.data.php:347
502
  msgid "D"
503
  msgstr "D"
504
 
505
- #: inc/core/class.data.php:352
 
 
 
 
 
 
 
 
 
 
 
 
506
  msgid "Row"
507
  msgstr "Колонки"
508
 
509
- #: inc/core/class.data.php:363
510
  msgid ""
511
  "[column size=\"1/3\"]Content[/column]\n"
512
  "[column size=\"1/3\"]Content[/column]\n"
@@ -516,148 +553,148 @@ msgstr ""
516
  "[column size=\"1/3\"]Содержимое[/column]\n"
517
  "[column size=\"1/3\"]Содержимое[/column]"
518
 
519
- #: inc/core/class.data.php:363
520
  msgid "Row for flexible columns"
521
  msgstr "Контейнер с резиновыми колонками"
522
 
523
- #: inc/core/class.data.php:367
524
  msgid "Column"
525
  msgstr "Колонка"
526
 
527
- #: inc/core/class.data.php:374
528
  msgid "Full width"
529
  msgstr "Во всю ширину"
530
 
531
- #: inc/core/class.data.php:375
532
  msgid "One half"
533
  msgstr "Одна вторая"
534
 
535
- #: inc/core/class.data.php:376
536
  msgid "One third"
537
  msgstr "Одна третья"
538
 
539
- #: inc/core/class.data.php:377
540
  msgid "Two third"
541
  msgstr "Две трети"
542
 
543
- #: inc/core/class.data.php:378
544
  msgid "One fourth"
545
  msgstr "Одна четвертая"
546
 
547
- #: inc/core/class.data.php:379
548
  msgid "Three fourth"
549
  msgstr "Три четвертых"
550
 
551
- #: inc/core/class.data.php:380
552
  msgid "One fifth"
553
  msgstr "Одна пятая"
554
 
555
- #: inc/core/class.data.php:381
556
  msgid "Two fifth"
557
  msgstr "Две пятых"
558
 
559
- #: inc/core/class.data.php:382
560
  msgid "Three fifth"
561
  msgstr "Три пятых"
562
 
563
- #: inc/core/class.data.php:383
564
  msgid "Four fifth"
565
  msgstr "Четыре пятых"
566
 
567
- #: inc/core/class.data.php:384
568
  msgid "One sixth"
569
  msgstr "Одна шестая"
570
 
571
- #: inc/core/class.data.php:385
572
  msgid "Five sixth"
573
  msgstr "Пять шестых"
574
 
575
- #: inc/core/class.data.php:389
576
  msgid "Select column width. This width will be calculated depend page width"
577
  msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
578
 
579
- #: inc/core/class.data.php:397
580
  msgid "Column content"
581
  msgstr "Содержимое колонки"
582
 
583
- #: inc/core/class.data.php:397
584
  msgid "Flexible and responsive columns"
585
  msgstr "Резновые колонки"
586
 
587
- #: inc/core/class.data.php:401
588
  msgid "List"
589
  msgstr "Список"
590
 
591
- #: inc/core/class.data.php:408
592
  msgid "Star"
593
  msgstr "Звезда"
594
 
595
- #: inc/core/class.data.php:409
596
  msgid "Arrow"
597
  msgstr "Стрелка"
598
 
599
- #: inc/core/class.data.php:410
600
  msgid "Check"
601
  msgstr "Отметка"
602
 
603
- #: inc/core/class.data.php:411
604
  msgid "Cross"
605
  msgstr "Крестик"
606
 
607
- #: inc/core/class.data.php:412
608
  msgid "Thumbs up"
609
  msgstr "Палец вверх"
610
 
611
- #: inc/core/class.data.php:413
612
- #: inc/core/class.data.php:445
613
  msgid "Link"
614
  msgstr "Ссылка"
615
 
616
- #: inc/core/class.data.php:414
617
  msgid "Gear"
618
  msgstr "Шестеренка"
619
 
620
- #: inc/core/class.data.php:415
621
  msgid "Time"
622
  msgstr "Время"
623
 
624
- #: inc/core/class.data.php:416
625
- #: inc/core/class.data.php:635
626
  msgid "Note"
627
  msgstr "Заметка"
628
 
629
- #: inc/core/class.data.php:417
630
  msgid "Plus"
631
  msgstr "Плюс"
632
 
633
- #: inc/core/class.data.php:418
634
  msgid "Guard"
635
  msgstr "Защита"
636
 
637
- #: inc/core/class.data.php:419
638
  msgid "Event"
639
  msgstr "Событие"
640
 
641
- #: inc/core/class.data.php:420
642
  msgid "Idea"
643
  msgstr "Идя"
644
 
645
- #: inc/core/class.data.php:421
646
  #: inc/core/class.generator.php:82
647
- #: inc/core/class.shortcodes-ultimate.php:129
648
  #: inc/vendor/class.sunrise-framework.php:279
649
  msgid "Settings"
650
  msgstr "Настройки"
651
 
652
- #: inc/core/class.data.php:422
653
  msgid "Twitter"
654
  msgstr "Твиттер"
655
 
656
- #: inc/core/class.data.php:425
657
  msgid "List items style/icons"
658
  msgstr "Стиль/иконка элементов списка"
659
 
660
- #: inc/core/class.data.php:434
661
  msgid ""
662
  "<ul>\n"
663
  "<li>List item</li>\n"
@@ -671,482 +708,500 @@ msgstr ""
671
  "<li>Элемент списка</li>\n"
672
  "</ul>"
673
 
674
- #: inc/core/class.data.php:434
675
  msgid "Styled unordered list"
676
  msgstr "Стильный неупорядоченный список"
677
 
678
- #: inc/core/class.data.php:438
679
  msgid "Button"
680
  msgstr "Кнопка"
681
 
682
- #: inc/core/class.data.php:446
683
  msgid "Button link"
684
  msgstr "Ссылка кнопки"
685
 
686
- #: inc/core/class.data.php:451
687
- #: inc/core/class.data.php:956
688
  msgid "Same tab"
689
  msgstr "Та же вкладка"
690
 
691
- #: inc/core/class.data.php:452
692
- #: inc/core/class.data.php:957
693
  msgid "New tab"
694
  msgstr "Новая вкладка"
695
 
696
- #: inc/core/class.data.php:455
697
- #: inc/core/class.data.php:960
698
  msgid "Target"
699
  msgstr "Цель"
700
 
701
- #: inc/core/class.data.php:456
702
  msgid "Button link target"
703
  msgstr "Цель ссылки кнопки"
704
 
705
- #: inc/core/class.data.php:463
706
- #: inc/core/class.data.php:594
707
  msgid "Soft"
708
  msgstr "Мягкий"
709
 
710
- #: inc/core/class.data.php:464
711
- #: inc/core/class.data.php:595
712
  msgid "Glass"
713
  msgstr "Стекло"
714
 
715
- #: inc/core/class.data.php:465
716
- #: inc/core/class.data.php:596
717
  msgid "Bubbles"
718
  msgstr "Пузыри"
719
 
720
- #: inc/core/class.data.php:466
721
- #: inc/core/class.data.php:597
722
  msgid "Noise"
723
  msgstr "Шум"
724
 
725
- #: inc/core/class.data.php:467
726
  msgid "Stroked"
727
  msgstr "Прошитый"
728
 
729
- #: inc/core/class.data.php:468
730
  msgid "3D"
731
  msgstr "3D"
732
 
733
- #: inc/core/class.data.php:471
734
  msgid "Button background style preset"
735
  msgstr "Стиль фона кнопки"
736
 
737
- #: inc/core/class.data.php:477
738
  msgid "Button background color"
739
  msgstr "Цвет фона кнопки"
740
 
741
- #: inc/core/class.data.php:484
742
  msgid "Button text color"
743
  msgstr "Цвет текста кнопки"
744
 
745
- #: inc/core/class.data.php:490
746
  msgid "Button size"
747
  msgstr "Размер кнопки"
748
 
749
- #: inc/core/class.data.php:495
750
  msgid "Fluid"
751
  msgstr "Резиновая"
752
 
753
- #: inc/core/class.data.php:495
754
  msgid "Fluid buttons has 100% width"
755
  msgstr "Резиновые кнопки имеют ширину 100%"
756
 
757
- #: inc/core/class.data.php:501
758
- #: inc/core/class.data.php:620
759
- #: inc/core/class.data.php:656
760
  msgid "Radius"
761
  msgstr "Радиус"
762
 
763
- #: inc/core/class.data.php:502
764
  msgid "Radius of button corners. Auto-radius calculation based on button size"
765
  msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
766
 
767
- #: inc/core/class.data.php:507
768
- #: inc/core/class.data.php:561
769
  msgid "Icon"
770
  msgstr "Иконка"
771
 
772
- #: inc/core/class.data.php:508
773
  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"
774
  msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
775
 
776
- #: inc/core/class.data.php:514
777
  msgid "Dark"
778
  msgstr "Темный"
779
 
780
- #: inc/core/class.data.php:517
781
  msgid "Text shadow color"
782
  msgstr "Цвет тени текста"
783
 
784
- #: inc/core/class.data.php:517
785
  msgid "Color of button text shadow"
786
  msgstr "Цвет тени текста кнопки"
787
 
788
- #: inc/core/class.data.php:522
789
- #: inc/core/class.data.php:1529
790
  msgid "None"
791
  msgstr "Нет"
792
 
793
- #: inc/core/class.data.php:523
794
  msgid "Top"
795
  msgstr "Сверху"
796
 
797
- #: inc/core/class.data.php:525
798
  msgid "Bottom"
799
  msgstr "Снизу"
800
 
801
- #: inc/core/class.data.php:527
802
  msgid "Top right"
803
  msgstr "Сверху справа"
804
 
805
- #: inc/core/class.data.php:528
806
  msgid "Top left"
807
  msgstr "Сверху слева"
808
 
809
- #: inc/core/class.data.php:528
810
  msgid "Bottom right"
811
  msgstr "Снизу справа"
812
 
813
- #: inc/core/class.data.php:528
814
  msgid "Bottom left"
815
  msgstr "Снизу слева"
816
 
817
- #: inc/core/class.data.php:530
818
  msgid "Text shadow position"
819
  msgstr "Положение тени текста"
820
 
821
- #: inc/core/class.data.php:530
822
  msgid "Position of button text shadow"
823
  msgstr "Положение тени текста кнопки"
824
 
825
- #: inc/core/class.data.php:534
826
  msgid "Description"
827
  msgstr "Описание"
828
 
829
- #: inc/core/class.data.php:535
830
  msgid "Small description under button text. This option is incompatible with icon."
831
  msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
832
 
833
- #: inc/core/class.data.php:543
834
  msgid "Button text"
835
  msgstr "Текст кнопки"
836
 
837
- #: inc/core/class.data.php:544
838
  msgid "Styled button"
839
  msgstr "Стильная кнопка"
840
 
841
- #: inc/core/class.data.php:548
842
  msgid "Service"
843
  msgstr "Услуга"
844
 
845
- #: inc/core/class.data.php:554
846
- #: inc/core/shortcodes.php:396
847
  msgid "Service title"
848
  msgstr "Название услуги"
849
 
850
- #: inc/core/class.data.php:556
851
  msgid "Service name"
852
  msgstr "Название услуги"
853
 
854
- #: inc/core/class.data.php:562
855
  msgid "You can upload custom icon for this box"
856
  msgstr "Вы можете загрузить свою иконку для этого блока"
857
 
858
- #: inc/core/class.data.php:568
859
  msgid "Icon size"
860
  msgstr "Размер иконки"
861
 
862
- #: inc/core/class.data.php:569
863
  msgid "Size of the uploaded icon in pixels"
864
  msgstr "Размер загруженной иконки в пикселях"
865
 
866
- #: inc/core/class.data.php:577
867
  msgid "Service description"
868
  msgstr "Описание услуги"
869
 
870
- #: inc/core/class.data.php:577
871
  msgid "Service box with title"
872
  msgstr "Блок услуга с заголовком"
873
 
874
- #: inc/core/class.data.php:587
875
  msgid "Box title"
876
  msgstr "Заголовок блока"
877
 
878
- #: inc/core/class.data.php:588
879
  msgid "Text for the box title"
880
  msgstr "Текст для заголовка блока"
881
 
882
- #: inc/core/class.data.php:601
883
  msgid "Box style preset"
884
  msgstr "Стиль блока"
885
 
886
- #: inc/core/class.data.php:607
887
  msgid "Color"
888
  msgstr "Цвет"
889
 
890
- #: inc/core/class.data.php:608
891
  msgid "Color for the box title and borders"
892
  msgstr "Цвет заголовка блока и его рамки"
893
 
894
- #: inc/core/class.data.php:614
895
  msgid "Title text color"
896
  msgstr "Цвет текста заголовка"
897
 
898
- #: inc/core/class.data.php:614
899
  msgid "Color for the box title text"
900
  msgstr "Цвет текста в заголовке блока"
901
 
902
- #: inc/core/class.data.php:621
903
  msgid "Box corners radius"
904
  msgstr "Радиус углов"
905
 
906
- #: inc/core/class.data.php:630
907
  msgid "Box content"
908
  msgstr "Содержимое блока"
909
 
910
- #: inc/core/class.data.php:631
911
  msgid "Colored box with caption"
912
  msgstr "Цветной блок с заголовком"
913
 
914
- #: inc/core/class.data.php:643
915
  msgid "Note background color"
916
  msgstr "Цвет фона заметки"
917
 
918
- #: inc/core/class.data.php:650
919
  msgid "Note text color"
920
  msgstr "Цвет текста заметки"
921
 
922
- #: inc/core/class.data.php:656
923
  msgid "Note corners radius"
924
  msgstr "Радиус углов"
925
 
926
- #: inc/core/class.data.php:664
927
  msgid "Note text"
928
  msgstr "Текст заметки"
929
 
930
- #: inc/core/class.data.php:665
931
  msgid "Colored box"
932
  msgstr "Цветной блок"
933
 
934
- #: inc/core/class.data.php:669
935
  msgid "Lightbox"
936
  msgstr "Лайтбокс"
937
 
938
- #: inc/core/class.data.php:676
939
  msgid "Iframe"
940
  msgstr "Фрейм (iframe)"
941
 
942
- #: inc/core/class.data.php:677
943
  msgid "Image"
944
  msgstr "Изображение"
945
 
946
- #: inc/core/class.data.php:678
947
  msgid "Inline (html content)"
948
  msgstr "HTML элемент"
949
 
950
- #: inc/core/class.data.php:681
951
  msgid "Content type"
952
  msgstr "Тип содержимого"
953
 
954
- #: inc/core/class.data.php:682
955
  msgid "Select type of the lightbox window content"
956
  msgstr "Выберите тип содержимого в окне лайтбокса"
957
 
958
- #: inc/core/class.data.php:686
959
  msgid "Content source"
960
  msgstr "Источник содержимого"
961
 
962
- #: inc/core/class.data.php:687
963
  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)"
964
  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 элемент)"
965
 
966
- #: inc/core/class.data.php:696
967
  msgid "[button] Click Here to Watch the Video [/button]"
968
  msgstr "[button] Нажмите чтобы посмотреть видео [/button]"
969
 
970
- #: inc/core/class.data.php:697
971
  msgid "Lightbox window with custom content"
972
  msgstr "Лайтбокс с произвольным содержимым"
973
 
974
- #: inc/core/class.data.php:701
975
  msgid "Private"
976
  msgstr "Заметка для авторов"
977
 
978
- #: inc/core/class.data.php:711
979
  msgid "Private note text"
980
  msgstr "Текст приватной заметки"
981
 
982
- #: inc/core/class.data.php:711
983
  msgid "Private note for post authors"
984
  msgstr "Приватный текст для других авторов"
985
 
986
- #: inc/core/class.data.php:715
987
  msgid "YouTube"
988
  msgstr "YouTube"
989
 
990
- #: inc/core/class.data.php:722
991
- #: inc/core/class.data.php:772
992
- #: inc/core/class.data.php:1027
993
- #: inc/core/class.data.php:1117
 
994
  msgid "Url"
995
  msgstr "Ссылка"
996
 
997
- #: inc/core/class.data.php:723
998
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
999
  msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1000
 
1001
- #: inc/core/class.data.php:731
1002
  #: inc/core/class.data.php:780
1003
- #: inc/core/class.data.php:827
1004
- #: inc/core/class.data.php:881
1005
- #: inc/core/class.data.php:1126
1006
- #: inc/core/class.data.php:1164
1007
- #: inc/core/class.data.php:1213
1008
- #: inc/core/class.data.php:1303
1009
- #: inc/core/class.data.php:1409
 
 
1010
  msgid "Width"
1011
  msgstr "Ширина"
1012
 
1013
- #: inc/core/class.data.php:732
1014
  #: inc/core/class.data.php:781
1015
- #: inc/core/class.data.php:882
 
 
1016
  msgid "Player width"
1017
  msgstr "Ширина плеера"
1018
 
1019
- #: inc/core/class.data.php:741
1020
  #: inc/core/class.data.php:790
1021
- #: inc/core/class.data.php:891
 
 
1022
  msgid "Player height"
1023
  msgstr "Высота плеера"
1024
 
1025
- #: inc/core/class.data.php:746
1026
  #: inc/core/class.data.php:795
1027
- #: inc/core/class.data.php:1141
1028
- #: inc/core/class.data.php:1179
1029
- #: inc/core/class.data.php:1226
1030
- #: inc/core/class.data.php:1316
 
 
1031
  msgid "Responsive"
1032
  msgstr "Отзывчивость (responsive)"
1033
 
1034
- #: inc/core/class.data.php:747
1035
  #: inc/core/class.data.php:796
 
 
1036
  msgid "Ignore width and height parameters and make player responsive"
1037
  msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1038
 
1039
- #: inc/core/class.data.php:752
1040
  #: inc/core/class.data.php:801
1041
- #: inc/core/class.data.php:833
1042
- #: inc/core/class.data.php:902
1043
- #: inc/core/class.data.php:1261
1044
- #: inc/core/class.data.php:1367
 
1045
  msgid "Autoplay"
1046
  msgstr "Автовоспроизведение"
1047
 
1048
- #: inc/core/class.data.php:753
1049
  #: inc/core/class.data.php:802
 
1050
  msgid "Play video automatically when page is loaded"
1051
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1052
 
1053
- #: inc/core/class.data.php:761
1054
  msgid "YouTube video"
1055
  msgstr "Видео YouTube"
1056
 
1057
- #: inc/core/class.data.php:765
1058
  msgid "Vimeo"
1059
  msgstr "Vimeo"
1060
 
1061
- #: inc/core/class.data.php:772
1062
  msgid "Url of Vimeo page with video"
1063
  msgstr "Ссылка на страницу Vimeo с видео"
1064
 
1065
- #: inc/core/class.data.php:810
1066
  msgid "Vimeo video"
1067
  msgstr "Видео Vimeo"
1068
 
1069
- #: inc/core/class.data.php:814
 
 
 
 
 
 
 
 
 
 
 
 
1070
  msgid "Audio"
1071
  msgstr "Аудио"
1072
 
1073
- #: inc/core/class.data.php:821
1074
- #: inc/core/class.data.php:860
1075
  msgid "File"
1076
  msgstr "Файл"
1077
 
1078
- #: inc/core/class.data.php:822
1079
  msgid "Audio file url. Supported formats: mp3, ogg"
1080
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1081
 
1082
- #: inc/core/class.data.php:828
1083
  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>"
1084
  msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100&#37;</b>"
1085
 
1086
- #: inc/core/class.data.php:834
1087
- #: inc/core/class.data.php:903
1088
  msgid "Play file automatically when page is loaded"
1089
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1090
 
1091
- #: inc/core/class.data.php:839
1092
- #: inc/core/class.data.php:908
1093
  msgid "Loop"
1094
  msgstr "Повтор"
1095
 
1096
- #: inc/core/class.data.php:840
1097
- #: inc/core/class.data.php:909
1098
  msgid "Repeat when playback is ended"
1099
  msgstr "Повторять, когда воспроизведение окночено"
1100
 
1101
- #: inc/core/class.data.php:849
1102
  msgid "Custom audio player"
1103
  msgstr "Настраиваемый аудио-плеер"
1104
 
1105
- #: inc/core/class.data.php:853
1106
  msgid "Video"
1107
  msgstr "Видео"
1108
 
1109
- #: inc/core/class.data.php:861
1110
  msgid "Url to mp4/flv video-file"
1111
  msgstr "Ссылка на mp4/flv видео-файл"
1112
 
1113
- #: inc/core/class.data.php:866
1114
  msgid "Poster"
1115
  msgstr "Постер"
1116
 
1117
- #: inc/core/class.data.php:867
1118
  msgid "Url to poster image, that will be shown before playback"
1119
  msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
1120
 
1121
- #: inc/core/class.data.php:873
1122
  msgid "Player title"
1123
  msgstr "Заголовок плеера"
1124
 
1125
- #: inc/core/class.data.php:896
1126
  msgid "Controls"
1127
  msgstr "Элементы управления"
1128
 
1129
- #: inc/core/class.data.php:897
1130
  msgid "Show player controls (play/pause etc.) or not"
1131
  msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1132
 
1133
- #: inc/core/class.data.php:918
1134
  msgid "Custom video player"
1135
  msgstr "Настраиваемый видео-плеер"
1136
 
1137
- #: inc/core/class.data.php:922
1138
  msgid "Table"
1139
  msgstr "Таблица"
1140
 
1141
- #: inc/core/class.data.php:929
1142
  msgid "CSV file"
1143
  msgstr "CSV файл"
1144
 
1145
- #: inc/core/class.data.php:930
1146
  msgid "Upload CSV file if you want to create HTML-table from file"
1147
  msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1148
 
1149
- #: inc/core/class.data.php:939
1150
  msgid ""
1151
  "<table>\n"
1152
  "<tr>\n"
@@ -1170,614 +1225,614 @@ msgstr ""
1170
  "</tr>\n"
1171
  "</table>"
1172
 
1173
- #: inc/core/class.data.php:940
1174
  msgid "Styled table from HTML or CSV file"
1175
  msgstr "Стильная таблица из HTML или CSV файла"
1176
 
1177
- #: inc/core/class.data.php:944
1178
  msgid "Permalink"
1179
  msgstr "Постоянная ссылка"
1180
 
1181
- #: inc/core/class.data.php:950
1182
  msgid "ID"
1183
  msgstr "ID"
1184
 
1185
- #: inc/core/class.data.php:951
1186
  msgid "Post or page ID"
1187
  msgstr "ID записи или страницы"
1188
 
1189
- #: inc/core/class.data.php:961
1190
  msgid "Link target. blank - link will be opened in new window/tab"
1191
  msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
1192
 
1193
- #: inc/core/class.data.php:970
1194
  msgid "Permalink to specified post/page"
1195
  msgstr "Постоянная ссылка на страницу"
1196
 
1197
- #: inc/core/class.data.php:974
1198
  msgid "Members"
1199
  msgstr "Участники"
1200
 
1201
- #: inc/core/class.data.php:979
1202
- #: inc/core/shortcodes.php:698
1203
  msgid "This content is for registered users only. Please %login%."
1204
  msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1205
 
1206
- #: inc/core/class.data.php:980
1207
  msgid "Message"
1208
  msgstr "Сообщение"
1209
 
1210
- #: inc/core/class.data.php:980
1211
  msgid "Message for not logged users"
1212
  msgstr "Собщение для неавторизованных"
1213
 
1214
- #: inc/core/class.data.php:985
1215
  msgid "Box color"
1216
  msgstr "Цвет блока"
1217
 
1218
- #: inc/core/class.data.php:985
1219
  msgid "This color will applied only to box for not logged users"
1220
  msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1221
 
1222
- #: inc/core/class.data.php:988
1223
- #: inc/core/shortcodes.php:700
1224
  msgid "login"
1225
  msgstr "войдите"
1226
 
1227
- #: inc/core/class.data.php:989
1228
  msgid "Login link text"
1229
  msgstr "Текст ссылки войти"
1230
 
1231
- #: inc/core/class.data.php:989
1232
  msgid "Text for the login link"
1233
  msgstr "Текст ссылки ВОЙТИ"
1234
 
1235
- #: inc/core/class.data.php:993
1236
  msgid "Login link url"
1237
  msgstr "Адрес ссылки войти"
1238
 
1239
- #: inc/core/class.data.php:1001
1240
  msgid "Content for logged members"
1241
  msgstr "Содержимое для авторизованых пользователей"
1242
 
1243
- #: inc/core/class.data.php:1002
1244
  msgid "Content for logged in members only"
1245
  msgstr "Ссодержимое для авторизованых"
1246
 
1247
- #: inc/core/class.data.php:1006
1248
  msgid "Guests"
1249
  msgstr "Гости"
1250
 
1251
- #: inc/core/class.data.php:1016
1252
  msgid "Content for guests"
1253
  msgstr "Содержимое для гостей"
1254
 
1255
- #: inc/core/class.data.php:1016
1256
  msgid "Content for guests only"
1257
  msgstr "Ссодержимое только для гостей"
1258
 
1259
- #: inc/core/class.data.php:1020
1260
  msgid "RSS Feed"
1261
  msgstr "RSS лента"
1262
 
1263
- #: inc/core/class.data.php:1028
1264
  msgid "Url to RSS-feed"
1265
  msgstr "Ссылка на RSS-ленту"
1266
 
1267
- #: inc/core/class.data.php:1033
1268
  msgid "Limit"
1269
  msgstr "Лимит"
1270
 
1271
- #: inc/core/class.data.php:1033
1272
  msgid "Number of items to show"
1273
  msgstr "Количество элементов для отображения"
1274
 
1275
- #: inc/core/class.data.php:1041
1276
  msgid "Feed grabber"
1277
  msgstr "Граббер новостных лент"
1278
 
1279
- #: inc/core/class.data.php:1045
1280
  msgid "Menu"
1281
  msgstr "Меню"
1282
 
1283
- #: inc/core/class.data.php:1052
1284
  msgid "Menu name"
1285
  msgstr "Имя меню"
1286
 
1287
- #: inc/core/class.data.php:1052
1288
  msgid "Custom menu name. Ex: Main menu"
1289
  msgstr "Имя произвольного меню. Например: Главное меню"
1290
 
1291
- #: inc/core/class.data.php:1060
1292
  msgid "Custom menu by name"
1293
  msgstr "Произвольное меню"
1294
 
1295
- #: inc/core/class.data.php:1064
1296
  msgid "Sub pages"
1297
  msgstr "Подстраницы"
1298
 
1299
- #: inc/core/class.data.php:1071
1300
- #: inc/core/class.data.php:1097
1301
  msgid "Depth"
1302
  msgstr "Глубина"
1303
 
1304
- #: inc/core/class.data.php:1072
1305
  msgid "Max depth level of children pages"
1306
  msgstr "Максимальная глубина дочерних страниц"
1307
 
1308
- #: inc/core/class.data.php:1077
1309
  msgid "Parent ID"
1310
  msgstr "ID родителя"
1311
 
1312
- #: inc/core/class.data.php:1078
1313
  msgid "ID of the parent page. Leave blank to use current page"
1314
  msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
1315
 
1316
- #: inc/core/class.data.php:1086
1317
  msgid "List of sub pages"
1318
  msgstr "Список дочерних страниц"
1319
 
1320
- #: inc/core/class.data.php:1090
1321
  msgid "Siblings"
1322
  msgstr "Соседние страницы"
1323
 
1324
- #: inc/core/class.data.php:1098
1325
  msgid "Max depth level"
1326
  msgstr "Максимальный уровень вложенности"
1327
 
1328
- #: inc/core/class.data.php:1106
1329
  msgid "List of cureent page siblings"
1330
  msgstr "Список страниц, соседних с текущей"
1331
 
1332
- #: inc/core/class.data.php:1110
1333
  msgid "Document"
1334
  msgstr "Документ"
1335
 
1336
- #: inc/core/class.data.php:1118
1337
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1338
  msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
1339
 
1340
- #: inc/core/class.data.php:1127
1341
  msgid "Viewer width"
1342
  msgstr "Ширина просмотрщика"
1343
 
1344
- #: inc/core/class.data.php:1136
1345
  msgid "Viewer height"
1346
  msgstr "Высота просмотрщика"
1347
 
1348
- #: inc/core/class.data.php:1142
1349
  msgid "Ignore width and height parameters and make viewer responsive"
1350
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
1351
 
1352
- #: inc/core/class.data.php:1150
1353
  msgid "Document viewer by Google"
1354
  msgstr "Просмотрщик документов от Google"
1355
 
1356
- #: inc/core/class.data.php:1154
1357
  msgid "Gmap"
1358
  msgstr "Google карта"
1359
 
1360
- #: inc/core/class.data.php:1165
1361
  msgid "Map width"
1362
  msgstr "Ширина карты"
1363
 
1364
- #: inc/core/class.data.php:1174
1365
  msgid "Map height"
1366
  msgstr "Высота карты"
1367
 
1368
- #: inc/core/class.data.php:1180
1369
  msgid "Ignore width and height parameters and make map responsive"
1370
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
1371
 
1372
- #: inc/core/class.data.php:1185
1373
  msgid "Marker"
1374
  msgstr "Маркер"
1375
 
1376
- #: inc/core/class.data.php:1186
1377
  msgid "Address for the marker. You can type it in any language"
1378
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
1379
 
1380
- #: inc/core/class.data.php:1194
1381
  msgid "Maps by Google"
1382
  msgstr "Карты от Google"
1383
 
1384
- #: inc/core/class.data.php:1198
1385
  msgid "Slider"
1386
  msgstr "Слайдер"
1387
 
1388
- #: inc/core/class.data.php:1205
1389
  msgid "Choose source gallery, that will be used for this slider"
1390
  msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
1391
 
1392
- #: inc/core/class.data.php:1213
1393
  msgid "Slider width (in pixels)"
1394
  msgstr "Ширина слайдера (в пикселях)"
1395
 
1396
- #: inc/core/class.data.php:1221
1397
  msgid "Slider height (in pixels)"
1398
  msgstr "Высота слайдера (в пикселях)"
1399
 
1400
- #: inc/core/class.data.php:1227
1401
  msgid "Ignore width and height parameters and make slider responsive"
1402
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
1403
 
1404
- #: inc/core/class.data.php:1232
1405
- #: inc/core/class.data.php:1338
1406
- #: inc/core/class.data.php:1427
1407
  msgid "Show titles"
1408
  msgstr "Показывать заголовки"
1409
 
1410
- #: inc/core/class.data.php:1232
1411
  msgid "Display slide titles"
1412
  msgstr "Отображать заголовки слайдов"
1413
 
1414
- #: inc/core/class.data.php:1237
1415
  msgid "Is slider centered on the page"
1416
  msgstr "Слайдер выровнен по центру страницы"
1417
 
1418
- #: inc/core/class.data.php:1242
1419
- #: inc/core/class.data.php:1348
1420
  msgid "Arrows"
1421
  msgstr "Стрелки"
1422
 
1423
- #: inc/core/class.data.php:1242
1424
- #: inc/core/class.data.php:1348
1425
  msgid "Show left and right arrows"
1426
  msgstr "Показывать стрелки влево/вправо"
1427
 
1428
- #: inc/core/class.data.php:1247
1429
- #: inc/core/class.data.php:1353
1430
  msgid "Pagination"
1431
  msgstr "Страницы"
1432
 
1433
- #: inc/core/class.data.php:1248
1434
- #: inc/core/class.data.php:1354
1435
  msgid "Show pagination"
1436
  msgstr "Показывать страницы"
1437
 
1438
- #: inc/core/class.data.php:1252
1439
- #: inc/core/class.data.php:1358
1440
  msgid "Mouse wheel control"
1441
  msgstr "Управление колесом мыши"
1442
 
1443
- #: inc/core/class.data.php:1253
1444
  msgid "Allow to change slides with mouse wheel"
1445
  msgstr "Разрешить перелистывание слайдов колесом мышки"
1446
 
1447
- #: inc/core/class.data.php:1262
1448
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
1449
  msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
1450
 
1451
- #: inc/core/class.data.php:1270
1452
- #: inc/core/class.data.php:1376
1453
  msgid "Speed"
1454
  msgstr "Скорость"
1455
 
1456
- #: inc/core/class.data.php:1270
1457
- #: inc/core/class.data.php:1376
1458
  msgid "Specify animation speed"
1459
  msgstr "Укажите скорость анимации"
1460
 
1461
- #: inc/core/class.data.php:1275
1462
- #: inc/core/class.data.php:1381
1463
- #: inc/core/class.data.php:1433
1464
  msgid "Links target"
1465
  msgstr "Цель ссылок"
1466
 
1467
- #: inc/core/class.data.php:1276
1468
  msgid "Open slides links in new window/tab"
1469
  msgstr "Открывать ссылки слайдов в новом окне или вкладке"
1470
 
1471
- #: inc/core/class.data.php:1284
1472
  msgid "Customizable image slider"
1473
  msgstr "Настраиваемый слайдер изображений"
1474
 
1475
- #: inc/core/class.data.php:1288
1476
  msgid "Carousel"
1477
  msgstr "Карусель"
1478
 
1479
- #: inc/core/class.data.php:1295
1480
  msgid "Choose source gallery, that will be used for this carousel"
1481
  msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
1482
 
1483
- #: inc/core/class.data.php:1303
1484
  msgid "Carousel width (in pixels)"
1485
  msgstr "Ширина карусели (в пикселях)"
1486
 
1487
- #: inc/core/class.data.php:1311
1488
  msgid "Carousel height (in pixels)"
1489
  msgstr "Высота карусели (в пикселях)"
1490
 
1491
- #: inc/core/class.data.php:1317
1492
  msgid "Ignore width and height parameters and make carousel responsive"
1493
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
1494
 
1495
- #: inc/core/class.data.php:1324
1496
  msgid "Items to show"
1497
  msgstr "Количество элементов для отображения"
1498
 
1499
- #: inc/core/class.data.php:1325
1500
  msgid "How much carousel items is visible"
1501
  msgstr "Сколько элементов карусели видны постоянно"
1502
 
1503
- #: inc/core/class.data.php:1332
1504
  msgid "Scroll number"
1505
  msgstr "Кол-во прокручиваемых"
1506
 
1507
- #: inc/core/class.data.php:1333
1508
  msgid "How much items are scrolled in one transition"
1509
  msgstr "Сколько элементов карусели прокручивается за один переход"
1510
 
1511
- #: inc/core/class.data.php:1338
1512
  msgid "Display titles for each item"
1513
  msgstr "Показывать заголовки для каждого элемента карусели"
1514
 
1515
- #: inc/core/class.data.php:1343
1516
  msgid "Is carousel centered on the page"
1517
  msgstr "Карусель выровнена по центру страницы"
1518
 
1519
- #: inc/core/class.data.php:1359
1520
  msgid "Allow to rotate carousel with mouse wheel"
1521
  msgstr "Разрешить прокрутку карусели колесом мыши"
1522
 
1523
- #: inc/core/class.data.php:1368
1524
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
1525
  msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
1526
 
1527
- #: inc/core/class.data.php:1382
1528
  msgid "Open carousel links in new window/tab"
1529
  msgstr "Открывать ссылки карусели в новом окне или вкладке"
1530
 
1531
- #: inc/core/class.data.php:1390
1532
  msgid "Customizable image carousel"
1533
  msgstr "Настраиваемая карусель изображений"
1534
 
1535
- #: inc/core/class.data.php:1401
1536
  msgid "Choose source gallery, that will be used for this shortcode"
1537
  msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
1538
 
1539
- #: inc/core/class.data.php:1409
1540
  msgid "Single item width (in pixels)"
1541
  msgstr "Ширина одного изображения (в пикселях)"
1542
 
1543
- #: inc/core/class.data.php:1417
1544
  msgid "Single item height (in pixels)"
1545
  msgstr "Высота одного изображения (в пикселях)"
1546
 
1547
- #: inc/core/class.data.php:1422
1548
  msgid "Never"
1549
  msgstr "Никогда"
1550
 
1551
- #: inc/core/class.data.php:1423
1552
  msgid "On mouse over"
1553
  msgstr "При наведении мыши"
1554
 
1555
- #: inc/core/class.data.php:1424
1556
  msgid "Always"
1557
  msgstr "Всегда"
1558
 
1559
- #: inc/core/class.data.php:1428
1560
  msgid "Title display mode"
1561
  msgstr "Режим отображения заголовков"
1562
 
1563
- #: inc/core/class.data.php:1433
1564
  msgid "Open links in new window/tab"
1565
  msgstr "Открывать ссылки в новом окне или вкладке"
1566
 
1567
- #: inc/core/class.data.php:1441
1568
  msgid "Customizable image gallery"
1569
  msgstr "Настраиваемая галерея изображений"
1570
 
1571
- #: inc/core/class.data.php:1445
1572
  msgid "Posts"
1573
  msgstr "Записи"
1574
 
1575
- #: inc/core/class.data.php:1450
1576
  msgid "Template"
1577
  msgstr "Шаблон"
1578
 
1579
- #: inc/core/class.data.php:1451
1580
  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"
1581
  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> - маркированный список с заголовками постов"
1582
 
1583
- #: inc/core/class.data.php:1455
1584
  msgid "Post ID's"
1585
  msgstr "ID постов"
1586
 
1587
- #: inc/core/class.data.php:1456
1588
  msgid "Enter comma separated ID's of the posts that you want to show"
1589
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
1590
 
1591
- #: inc/core/class.data.php:1464
1592
  msgid "Posts per page"
1593
  msgstr "Кол-во записей"
1594
 
1595
- #: inc/core/class.data.php:1465
1596
  msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
1597
  msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
1598
 
1599
- #: inc/core/class.data.php:1472
1600
  msgid "Post types"
1601
  msgstr "Типы постов"
1602
 
1603
- #: inc/core/class.data.php:1473
1604
  msgid "Select post types. Hold Ctrl key to select multiple post types"
1605
  msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
1606
 
1607
- #: inc/core/class.data.php:1479
1608
  msgid "Taxonomy"
1609
  msgstr "Таксономия"
1610
 
1611
- #: inc/core/class.data.php:1480
1612
  msgid "Select taxonomy to show posts from"
1613
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
1614
 
1615
- #: inc/core/class.data.php:1487
1616
  msgid "Terms"
1617
  msgstr "Категории (terms)"
1618
 
1619
- #: inc/core/class.data.php:1487
1620
  msgid "Select terms to show posts from"
1621
  msgstr "Выберите категории, из которых нужно показать записи"
1622
 
1623
- #: inc/core/class.data.php:1492
1624
  msgid "Taxonomy term operator"
1625
  msgstr "Оператор выбора категорий"
1626
 
1627
- #: inc/core/class.data.php:1493
1628
  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"
1629
  msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
1630
 
1631
- #: inc/core/class.data.php:1500
1632
  msgid "Authors"
1633
  msgstr "Авторы"
1634
 
1635
- #: inc/core/class.data.php:1501
1636
  msgid "Choose the authors whose posts you want to show"
1637
  msgstr "Выберите авторов, чьи записи хотите показать"
1638
 
1639
- #: inc/core/class.data.php:1505
1640
  msgid "Meta key"
1641
  msgstr "Произвольное поле"
1642
 
1643
- #: inc/core/class.data.php:1506
1644
  msgid "Enter meta key name to show posts that have this key"
1645
  msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
1646
 
1647
- #: inc/core/class.data.php:1513
1648
  msgid "Offset"
1649
  msgstr "Смещение (offset)"
1650
 
1651
- #: inc/core/class.data.php:1514
1652
  msgid "Specify offset to start posts loop not from first post"
1653
  msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
1654
 
1655
- #: inc/core/class.data.php:1519
1656
  msgid "Descending"
1657
  msgstr "По убыванию"
1658
 
1659
- #: inc/core/class.data.php:1520
1660
  msgid "Ascending"
1661
  msgstr "По возрастанию"
1662
 
1663
- #: inc/core/class.data.php:1523
1664
  msgid "Order"
1665
  msgstr "Порядок"
1666
 
1667
- #: inc/core/class.data.php:1524
1668
  msgid "Posts order"
1669
  msgstr "Порядок сортировки записей"
1670
 
1671
- #: inc/core/class.data.php:1530
1672
  msgid "Post ID"
1673
  msgstr "ID записи"
1674
 
1675
- #: inc/core/class.data.php:1531
1676
  msgid "Post author"
1677
  msgstr "Автор записи"
1678
 
1679
- #: inc/core/class.data.php:1532
1680
  msgid "Post title"
1681
  msgstr "Заголовок записи"
1682
 
1683
- #: inc/core/class.data.php:1533
1684
  msgid "Post slug"
1685
  msgstr "Ссылка записи (slug)"
1686
 
1687
- #: inc/core/class.data.php:1534
1688
  msgid "Date"
1689
  msgstr "Дата"
1690
 
1691
- #: inc/core/class.data.php:1534
1692
  msgid "Last modified date"
1693
  msgstr "Дата изменения"
1694
 
1695
- #: inc/core/class.data.php:1535
1696
- #: inc/core/class.data.php:1545
1697
  msgid "Post parent"
1698
  msgstr "Родитель"
1699
 
1700
- #: inc/core/class.data.php:1536
1701
  msgid "Random"
1702
  msgstr "Случайно"
1703
 
1704
- #: inc/core/class.data.php:1536
1705
  msgid "Comments number"
1706
  msgstr "Кол-во комментариев"
1707
 
1708
- #: inc/core/class.data.php:1537
1709
  msgid "Menu order"
1710
  msgstr "Порядок меню"
1711
 
1712
- #: inc/core/class.data.php:1537
1713
  msgid "Meta key values"
1714
  msgstr "Значение произвольного поля"
1715
 
1716
- #: inc/core/class.data.php:1540
1717
  msgid "Order by"
1718
  msgstr "Сортировать по"
1719
 
1720
- #: inc/core/class.data.php:1541
1721
  msgid "Order posts by"
1722
  msgstr "Сортировать записи по следующему признаку"
1723
 
1724
- #: inc/core/class.data.php:1546
1725
  msgid "Show childrens of entered post (enter post ID)"
1726
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
1727
 
1728
- #: inc/core/class.data.php:1551
1729
  msgid "Published"
1730
  msgstr "Опубликован"
1731
 
1732
- #: inc/core/class.data.php:1552
1733
  msgid "Pending"
1734
  msgstr "Ожидает"
1735
 
1736
- #: inc/core/class.data.php:1553
1737
  msgid "Draft"
1738
  msgstr "Черновик"
1739
 
1740
- #: inc/core/class.data.php:1554
1741
  msgid "Auto-draft"
1742
  msgstr "Авто-черновик"
1743
 
1744
- #: inc/core/class.data.php:1555
1745
  msgid "Future post"
1746
  msgstr "Запланирован"
1747
 
1748
- #: inc/core/class.data.php:1556
1749
  msgid "Private post"
1750
  msgstr "Приватная запись"
1751
 
1752
- #: inc/core/class.data.php:1557
1753
  msgid "Inherit"
1754
  msgstr "Вложенный"
1755
 
1756
- #: inc/core/class.data.php:1558
1757
  msgid "Trashed"
1758
  msgstr "В корзине"
1759
 
1760
- #: inc/core/class.data.php:1559
1761
  msgid "Any"
1762
  msgstr "Любой"
1763
 
1764
- #: inc/core/class.data.php:1562
1765
  msgid "Post status"
1766
  msgstr "Статус записи"
1767
 
1768
- #: inc/core/class.data.php:1563
1769
  msgid "Show only posts with selected status"
1770
  msgstr "Показать только записи с выбранным статусом"
1771
 
1772
- #: inc/core/class.data.php:1568
1773
  msgid "Ignore sticky"
1774
  msgstr "Игнорировать прикрепленные"
1775
 
1776
- #: inc/core/class.data.php:1569
1777
  msgid "Select Yes to ignore posts that is sticked"
1778
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
1779
 
1780
- #: inc/core/class.data.php:1573
1781
  msgid "Custom posts query with customizable template"
1782
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
1783
 
@@ -1898,96 +1953,96 @@ msgstr "Владимир Анохин"
1898
  msgid "Supercharge your WordPress theme with mega pack of shortcodes"
1899
  msgstr "Суперзарядка для вашей WordPress-темы с помощью мега набора шорткодов"
1900
 
1901
- #: inc/core/class.shortcodes-ultimate.php:72
1902
  #, php-format
1903
  msgid "<h1>Oops! Plugin not activated&hellip;</h1> <p>Shortcodes Ultimate is not fully compatible with your version of WordPress (%s).<br />Reccomended WordPress version &ndash; %s (or higher).</p><a href=\"%s\">&larr; Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway &rarr;</a>"
1904
  msgstr "<h1>Упс! Плагин не активирован&hellip;</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией WordPress (%s).<br />Рекомендуемая версия WordPress &ndash; %s (или выше).</p><a href=\"%s\">&larr; Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать &rarr;</a>"
1905
 
1906
- #: inc/core/class.shortcodes-ultimate.php:73
1907
  #, php-format
1908
  msgid "<h1>Oops! Plugin not activated&hellip;</h1> <p>Shortcodes Ultimate is not fully compatible with your PHP version (%s).<br />Reccomended PHP version &ndash; %s (or higher).</p><a href=\"%s\">&larr; Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway &rarr;</a>"
1909
  msgstr "<h1>Упс! Плагин не активирован&hellip;</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией PHP (%s).<br />Рекомендуемая версия PHP &ndash; %s (или выше).</p><a href=\"%s\">&larr; Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать &rarr;</a>"
1910
 
1911
- #: inc/core/class.shortcodes-ultimate.php:102
1912
  msgid "Where to start?"
1913
  msgstr "С чего начать?"
1914
 
1915
- #: inc/core/class.shortcodes-ultimate.php:114
1916
  #: inc/views/about.php:4
1917
  msgid "Project homepage"
1918
  msgstr "Страница проекта"
1919
 
1920
- #: inc/core/class.shortcodes-ultimate.php:115
1921
  #: inc/views/about.php:10
1922
  msgid "Support forum"
1923
  msgstr "Форум поддержки"
1924
 
1925
- #: inc/core/class.shortcodes-ultimate.php:116
1926
  #: inc/views/about.php:12
1927
  msgid "Changelog"
1928
  msgstr "Список изменений"
1929
 
1930
- #: inc/core/class.shortcodes-ultimate.php:126
1931
  msgid "About"
1932
  msgstr "О плагине"
1933
 
1934
- #: inc/core/class.shortcodes-ultimate.php:131
1935
  msgid "Custom formatting"
1936
  msgstr "Cпециальное форматирование"
1937
 
1938
- #: inc/core/class.shortcodes-ultimate.php:132
1939
  msgid "Disable this option if you have some problems with other plugins or content formatting"
1940
  msgstr "Снимите этот флажок, если у вас возникли проблемы совместимости с другими плагинами или форматированием контента"
1941
 
1942
- #: inc/core/class.shortcodes-ultimate.php:132
1943
- #: inc/core/class.shortcodes-ultimate.php:140
1944
  msgid "Documentation article"
1945
  msgstr "Статья из документации (англ.)"
1946
 
1947
- #: inc/core/class.shortcodes-ultimate.php:136
1948
- #: inc/core/class.shortcodes-ultimate.php:144
1949
- #: inc/core/class.shortcodes-ultimate.php:152
1950
  msgid "Enabled"
1951
  msgstr "Включено"
1952
 
1953
- #: inc/core/class.shortcodes-ultimate.php:139
1954
  msgid "Compatibility mode"
1955
  msgstr "Режим совместимости"
1956
 
1957
- #: inc/core/class.shortcodes-ultimate.php:140
1958
  msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
1959
  msgstr "Отметьте этот флажок, если у вас используются другие шорткоды с такими же именами. Все шорткоды этого плагина будут иметь такие имена"
1960
 
1961
- #: inc/core/class.shortcodes-ultimate.php:140
1962
  msgid "etc."
1963
  msgstr "и т.д."
1964
 
1965
- #: inc/core/class.shortcodes-ultimate.php:147
1966
  msgid "Skip default values"
1967
  msgstr "Пропускать значения по умолчанию"
1968
 
1969
- #: inc/core/class.shortcodes-ultimate.php:148
1970
  msgid "Enable this option and the generator will insert a shortcode without default attribute values that you have not changed. As a result, the generated code will be shorter."
1971
  msgstr "Отметьте этот флажок и генератор будет вставлять шорткоды без атрибутов, значение которых вы не изменяли. В результате, сгенерированный код будет более коротким."
1972
 
1973
- #: inc/core/class.shortcodes-ultimate.php:155
1974
  msgid "Skin"
1975
  msgstr "Скин"
1976
 
1977
- #: inc/core/class.shortcodes-ultimate.php:156
1978
  #, php-format
1979
  msgid "Choose skin for shortcodes.<br /><a href=\"%s\" target=\"_blank\">Learn how to create custom skin</a><br /><a href=\"%s\" target=\"_blank\"><b>Download more skins</b></a>"
1980
  msgstr "Выберите скин для шорткодов.<br /><a href=\"%s\" target=\"_blank\">Инструкция по созданию собственных скинов (англ.)</a><br /><a href=\"%s\" target=\"_blank\"><b>Скачать скины</b></a>"
1981
 
1982
- #: inc/core/class.shortcodes-ultimate.php:162
1983
  msgid "Custom CSS"
1984
  msgstr "Произвольный CSS"
1985
 
1986
- #: inc/core/class.shortcodes-ultimate.php:165
1987
  msgid "Galleries"
1988
  msgstr "Галереи"
1989
 
1990
- #: inc/core/class.shortcodes-ultimate.php:168
1991
  msgid "Cheatsheet"
1992
  msgstr "Шпаргалка"
1993
 
@@ -2027,65 +2082,66 @@ msgstr "Специальный виджет для вставки шорткод
2027
  msgid "Title:"
2028
  msgstr "Заголовок:"
2029
 
2030
- #: inc/core/shortcodes.php:418
2031
  msgid "This is box title"
2032
  msgstr "Заголовок блока"
2033
 
2034
- #: inc/core/shortcodes.php:525
2035
- #: inc/core/shortcodes.php:557
2036
- #: inc/core/shortcodes.php:594
2037
- #: inc/core/shortcodes.php:634
 
2038
  msgid "please specify correct url"
2039
  msgstr "пожалуйста укажите корректную ссылку"
2040
 
2041
- #: inc/core/shortcodes.php:818
2042
  msgid "This menu doesn't exists, or has no elements"
2043
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
2044
 
2045
- #: inc/core/shortcodes.php:907
2046
- #: inc/core/shortcodes.php:1002
2047
- #: inc/core/shortcodes.php:1080
2048
  msgid "images not found"
2049
  msgstr "изображения не найдены"
2050
 
2051
- #: inc/core/shortcodes.php:1286
2052
  msgid "template not found"
2053
  msgstr "шаблон не найден"
2054
 
2055
- #: inc/core/tools.php:232
2056
  msgid "year"
2057
  msgstr "год"
2058
 
2059
- #: inc/core/tools.php:233
2060
  msgid "month"
2061
  msgstr "месяц"
2062
 
2063
- #: inc/core/tools.php:234
2064
  msgid "week"
2065
  msgstr "неделя"
2066
 
2067
- #: inc/core/tools.php:235
2068
  msgid "day"
2069
  msgstr "день"
2070
 
2071
- #: inc/core/tools.php:236
2072
  msgid "hour"
2073
  msgstr "час"
2074
 
2075
- #: inc/core/tools.php:237
2076
  msgid "minute"
2077
  msgstr "минута"
2078
 
2079
- #: inc/core/tools.php:246
2080
- #: inc/core/tools.php:253
2081
  msgid "s"
2082
  msgstr "с"
2083
 
2084
- #: inc/core/tools.php:289
2085
  msgid "username not specified"
2086
  msgstr "имя пользователя не задано"
2087
 
2088
- #: inc/core/tools.php:294
2089
  msgid "no public messages"
2090
  msgstr "нет публичных твитов"
2091
 
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-18 21:47+0300\n"
6
+ "PO-Revision-Date: 2013-09-18 21:49+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
19
  msgstr "Заголовок 2"
20
 
21
  #: inc/example-addon.php:43
22
+ #: inc/core/class.data.php:153
23
+ #: inc/core/class.data.php:270
24
+ #: inc/core/class.data.php:350
25
+ #: inc/core/class.data.php:510
26
+ #: inc/core/class.data.php:642
27
  msgid "Default"
28
  msgstr "По умолчанию"
29
 
32
  msgstr "Маленький"
33
 
34
  #: inc/example-addon.php:49
35
+ #: inc/core/class.data.php:158
36
+ #: inc/core/class.data.php:356
37
+ #: inc/core/class.data.php:474
38
+ #: inc/core/class.data.php:520
39
+ #: inc/core/class.data.php:649
40
  msgid "Style"
41
  msgstr "Стиль"
42
 
56
  msgid "This shortcode doesn't work in live preview. Please insert it into editor and preview on the site."
57
  msgstr "Этот шорткод не работает в режиме предпросмотра. Пожалуйста вставьте шорткод в редактор и посмотрите результат на странице записи."
58
 
59
+ #: inc/core/class.data.php:34
60
  msgid "All"
61
  msgstr "Все"
62
 
63
+ #: inc/core/class.data.php:35
64
  #: inc/core/class.generator.php:227
65
  msgid "Content"
66
  msgstr "Содержимое"
67
 
68
+ #: inc/core/class.data.php:36
69
+ #: inc/core/class.data.php:630
70
  msgid "Box"
71
  msgstr "Блок"
72
 
73
+ #: inc/core/class.data.php:37
74
  msgid "Media"
75
  msgstr "Медиа"
76
 
77
+ #: inc/core/class.data.php:38
78
+ #: inc/core/class.data.php:1295
79
+ #: inc/core/class.data.php:1385
80
+ #: inc/core/class.data.php:1485
81
+ #: inc/core/class.data.php:1491
82
  msgid "Gallery"
83
  msgstr "Галерея"
84
 
85
+ #: inc/core/class.data.php:39
86
  msgid "Other"
87
  msgstr "Другое"
88
 
89
+ #: inc/core/class.data.php:50
90
  msgid "Heading"
91
  msgstr "Заголовок"
92
 
93
+ #: inc/core/class.data.php:60
94
+ #: inc/core/class.data.php:361
95
+ #: inc/core/class.data.php:437
96
+ #: inc/core/class.data.php:538
97
  msgid "Size"
98
  msgstr "Размер"
99
 
100
+ #: inc/core/class.data.php:60
101
  msgid "Select heading size"
102
  msgstr "Выберите размер заголовка"
103
 
104
+ #: inc/core/class.data.php:65
105
+ #: inc/core/class.data.php:326
106
+ #: inc/core/class.data.php:575
107
  msgid "Left"
108
  msgstr "Слева"
109
 
110
+ #: inc/core/class.data.php:66
111
+ #: inc/core/class.data.php:1328
112
+ #: inc/core/class.data.php:1434
113
  msgid "Center"
114
  msgstr "По центру"
115
 
116
+ #: inc/core/class.data.php:67
117
+ #: inc/core/class.data.php:327
118
+ #: inc/core/class.data.php:573
119
  msgid "Right"
120
  msgstr "Справа"
121
 
122
+ #: inc/core/class.data.php:70
123
+ #: inc/core/class.data.php:330
124
+ #: inc/core/class.data.php:386
125
  msgid "Align"
126
  msgstr "Выравнивание"
127
 
128
+ #: inc/core/class.data.php:70
129
  msgid "Heading text alignment"
130
  msgstr "Выравнивание текста в заголовке"
131
 
132
+ #: inc/core/class.data.php:74
133
+ #: inc/core/class.data.php:104
134
+ #: inc/core/class.data.php:126
135
+ #: inc/core/class.data.php:163
136
+ #: inc/core/class.data.php:177
137
+ #: inc/core/class.data.php:203
138
+ #: inc/core/class.data.php:226
139
+ #: inc/core/class.data.php:254
140
+ #: inc/core/class.data.php:283
141
+ #: inc/core/class.data.php:310
142
+ #: inc/core/class.data.php:334
143
+ #: inc/core/class.data.php:365
144
+ #: inc/core/class.data.php:391
145
+ #: inc/core/class.data.php:407
146
+ #: inc/core/class.data.php:442
147
+ #: inc/core/class.data.php:478
148
+ #: inc/core/class.data.php:588
149
+ #: inc/core/class.data.php:622
150
+ #: inc/core/class.data.php:674
151
+ #: inc/core/class.data.php:709
152
+ #: inc/core/class.data.php:740
153
+ #: inc/core/class.data.php:756
154
  #: inc/core/class.data.php:806
155
+ #: inc/core/class.data.php:855
156
+ #: inc/core/class.data.php:897
157
+ #: inc/core/class.data.php:935
158
+ #: inc/core/class.data.php:1004
159
+ #: inc/core/class.data.php:1025
 
 
160
  #: inc/core/class.data.php:1056
161
+ #: inc/core/class.data.php:1088
162
+ #: inc/core/class.data.php:1103
163
+ #: inc/core/class.data.php:1128
164
+ #: inc/core/class.data.php:1147
165
+ #: inc/core/class.data.php:1173
166
+ #: inc/core/class.data.php:1193
167
+ #: inc/core/class.data.php:1237
168
+ #: inc/core/class.data.php:1281
169
+ #: inc/core/class.data.php:1371
170
+ #: inc/core/class.data.php:1477
171
+ #: inc/core/class.data.php:1528
172
  msgid "Class"
173
  msgstr "Класс"
174
 
175
+ #: inc/core/class.data.php:75
176
+ #: inc/core/class.data.php:105
177
+ #: inc/core/class.data.php:127
178
+ #: inc/core/class.data.php:164
179
+ #: inc/core/class.data.php:178
180
+ #: inc/core/class.data.php:204
181
+ #: inc/core/class.data.php:227
182
+ #: inc/core/class.data.php:255
183
+ #: inc/core/class.data.php:284
184
+ #: inc/core/class.data.php:311
185
+ #: inc/core/class.data.php:335
186
+ #: inc/core/class.data.php:366
187
+ #: inc/core/class.data.php:392
188
+ #: inc/core/class.data.php:408
189
+ #: inc/core/class.data.php:443
190
+ #: inc/core/class.data.php:479
191
+ #: inc/core/class.data.php:589
192
+ #: inc/core/class.data.php:623
193
+ #: inc/core/class.data.php:675
194
+ #: inc/core/class.data.php:710
195
+ #: inc/core/class.data.php:741
196
+ #: inc/core/class.data.php:757
197
  #: inc/core/class.data.php:807
198
+ #: inc/core/class.data.php:856
199
+ #: inc/core/class.data.php:898
200
+ #: inc/core/class.data.php:936
201
+ #: inc/core/class.data.php:1005
202
+ #: inc/core/class.data.php:1026
 
 
203
  #: inc/core/class.data.php:1057
204
+ #: inc/core/class.data.php:1089
205
+ #: inc/core/class.data.php:1104
206
+ #: inc/core/class.data.php:1129
207
+ #: inc/core/class.data.php:1148
208
+ #: inc/core/class.data.php:1174
209
+ #: inc/core/class.data.php:1194
210
+ #: inc/core/class.data.php:1238
211
+ #: inc/core/class.data.php:1282
212
+ #: inc/core/class.data.php:1372
213
+ #: inc/core/class.data.php:1478
214
+ #: inc/core/class.data.php:1529
215
  msgid "Extra CSS class"
216
  msgstr "Дополнительный CSS класс"
217
 
218
+ #: inc/core/class.data.php:78
219
  msgid "Heading text"
220
  msgstr "Текст заголовка"
221
 
222
+ #: inc/core/class.data.php:79
223
  msgid "Styled heading"
224
  msgstr "Стильный заголовок"
225
 
226
+ #: inc/core/class.data.php:83
227
  msgid "Tabs"
228
  msgstr "Вкладки"
229
 
230
+ #: inc/core/class.data.php:93
231
+ msgid "Active tab"
232
+ msgstr "Активная вкладка"
233
+
234
+ #: inc/core/class.data.php:94
235
+ msgid "Select which tab is open by default"
236
+ msgstr "Выберите какая вкладка будет открыта по умолчанию"
237
+
238
+ #: inc/core/class.data.php:99
239
  msgid "Vertical"
240
  msgstr "Вертикально"
241
 
242
+ #: inc/core/class.data.php:100
243
  msgid "Show tabs vertically"
244
  msgstr "Отображать вкладки вертикально"
245
 
246
+ #: inc/core/class.data.php:109
247
  msgid ""
248
  "[tab title=\"Title 1\"]Content 1[/tab]\n"
249
  "[tab title=\"Title 2\"]Content 2[/tab]\n"
253
  "[tab title=\"Заголовок 2\"]Содержимое 2[/tab]\n"
254
  "[tab title=\"Заголовок 3\"]Содержимое 3[/tab]"
255
 
256
+ #: inc/core/class.data.php:110
257
  msgid "Tabs container"
258
  msgstr "Контейнер вкладок"
259
 
260
+ #: inc/core/class.data.php:114
261
  msgid "Tab"
262
  msgstr "Вкладка"
263
 
264
+ #: inc/core/class.data.php:120
265
  msgid "Tab name"
266
  msgstr "Имя вкладки"
267
 
268
+ #: inc/core/class.data.php:121
269
+ #: inc/core/class.data.php:142
270
+ #: inc/core/class.data.php:604
271
+ #: inc/core/class.data.php:637
272
+ #: inc/core/class.data.php:963
273
  msgid "Title"
274
  msgstr "Заголовок"
275
 
276
+ #: inc/core/class.data.php:122
277
  msgid "Enter tab name"
278
  msgstr "Введите имя вкладки"
279
 
280
+ #: inc/core/class.data.php:130
281
  msgid "Tab content"
282
  msgstr "Содержимое вкладки"
283
 
284
+ #: inc/core/class.data.php:131
285
  msgid "Single tab"
286
  msgstr "Одиночная вкладка"
287
 
288
+ #: inc/core/class.data.php:135
289
  msgid "Spoiler"
290
  msgstr "Спойлер"
291
 
292
+ #: inc/core/class.data.php:141
293
+ #: inc/core/shortcodes.php:86
294
  msgid "Spoiler title"
295
  msgstr "Скрытый текст"
296
 
297
+ #: inc/core/class.data.php:142
298
  msgid "Text in spoiler title"
299
  msgstr "Текст для заголовка спойлера"
300
 
301
+ #: inc/core/class.data.php:147
302
  msgid "Open"
303
  msgstr "Открыт"
304
 
305
+ #: inc/core/class.data.php:148
306
  msgid "Is spoiler content visible by default"
307
  msgstr "Виден ли контент спойлера по умолчанию"
308
 
309
+ #: inc/core/class.data.php:154
310
+ msgid "Fancy"
311
+ msgstr "Стильный"
312
+
313
+ #: inc/core/class.data.php:155
314
+ #: inc/core/class.data.php:353
315
+ msgid "Simple"
316
+ msgstr "Простой"
317
+
318
+ #: inc/core/class.data.php:159
319
+ msgid "Spoiler skin"
320
+ msgstr "Скин спойлера"
321
+
322
+ #: inc/core/class.data.php:167
323
  msgid "Hidden content"
324
  msgstr "Скрытое содержимое"
325
 
326
+ #: inc/core/class.data.php:167
327
  msgid "Spoiler with hidden content"
328
  msgstr "Спойлер со скрытым содержимым"
329
 
330
+ #: inc/core/class.data.php:171
331
  msgid "Accordion"
332
  msgstr "Аккордион"
333
 
334
+ #: inc/core/class.data.php:182
335
  msgid ""
336
  "[spoiler]Content[/spoiler]\n"
337
  "[spoiler]Content[/spoiler]\n"
341
  "[spoiler]Содержимое[/spoiler]\n"
342
  "[spoiler]Содержимое[/spoiler]"
343
 
344
+ #: inc/core/class.data.php:182
345
  msgid "Accordion with spoilers"
346
  msgstr "Аккордион со спойлерами"
347
 
348
+ #: inc/core/class.data.php:186
349
  msgid "Divider"
350
  msgstr "Разделитель"
351
 
352
+ #: inc/core/class.data.php:193
353
  msgid "Show TOP link"
354
  msgstr "Показать ссылку ВВЕРХ"
355
 
356
+ #: inc/core/class.data.php:194
357
  msgid "Show link to top of the page or not"
358
  msgstr "Показывать ссылку ВВЕРХ или нет"
359
 
360
+ #: inc/core/class.data.php:198
361
+ #: inc/core/shortcodes.php:121
362
  msgid "Go to top"
363
  msgstr "Вверх"
364
 
365
+ #: inc/core/class.data.php:199
366
  msgid "Link text"
367
  msgstr "Текст ссылки"
368
 
369
+ #: inc/core/class.data.php:199
370
  msgid "Text for the GO TOP link"
371
  msgstr "Текст ссылки ВВЕРХ"
372
 
373
+ #: inc/core/class.data.php:208
374
  msgid "Content divider with optional TOP link"
375
  msgstr "Разделитель текста со ссылкой ВВЕРХ"
376
 
377
+ #: inc/core/class.data.php:212
378
  msgid "Spacer"
379
  msgstr "Пробел"
380
 
381
+ #: inc/core/class.data.php:222
 
382
  #: inc/core/class.data.php:789
383
+ #: inc/core/class.data.php:838
384
+ #: inc/core/class.data.php:886
385
+ #: inc/core/class.data.php:981
386
+ #: inc/core/class.data.php:1226
387
+ #: inc/core/class.data.php:1264
388
+ #: inc/core/class.data.php:1312
389
+ #: inc/core/class.data.php:1402
390
+ #: inc/core/class.data.php:1508
391
  msgid "Height"
392
  msgstr "Высота"
393
 
394
+ #: inc/core/class.data.php:222
395
  msgid "Height of the spacer in pixels"
396
  msgstr "Высота пробела в пикселях"
397
 
398
+ #: inc/core/class.data.php:231
399
  msgid "Empty space with adjustable height"
400
  msgstr "Пробел с настраиваемой высотой"
401
 
402
+ #: inc/core/class.data.php:235
403
  msgid "Highlight"
404
  msgstr "Выделитель"
405
 
406
+ #: inc/core/class.data.php:243
407
+ #: inc/core/class.data.php:526
408
+ #: inc/core/class.data.php:692
409
  msgid "Background"
410
  msgstr "Фон"
411
 
412
+ #: inc/core/class.data.php:244
413
  msgid "Highlighted text background color"
414
  msgstr "Цвет фона выделяемого текста"
415
 
416
+ #: inc/core/class.data.php:250
417
+ #: inc/core/class.data.php:532
418
+ #: inc/core/class.data.php:698
419
  msgid "Text color"
420
  msgstr "Цвет текста"
421
 
422
+ #: inc/core/class.data.php:250
423
  msgid "Highlighted text color"
424
  msgstr "Цвет выделяемого текста"
425
 
426
+ #: inc/core/class.data.php:258
427
+ #: inc/core/class.data.php:259
428
  msgid "Highlighted text"
429
  msgstr "Подсвеченный текст"
430
 
431
+ #: inc/core/class.data.php:263
432
+ #: inc/core/class.data.php:287
433
  msgid "Label"
434
  msgstr "Ярлык"
435
 
436
+ #: inc/core/class.data.php:271
437
  msgid "Success"
438
  msgstr "Успех"
439
 
440
+ #: inc/core/class.data.php:272
441
  msgid "Warning"
442
  msgstr "Внимание"
443
 
444
+ #: inc/core/class.data.php:273
445
  msgid "Important"
446
  msgstr "Важно"
447
 
448
+ #: inc/core/class.data.php:274
449
  msgid "Black"
450
  msgstr "Черный"
451
 
452
+ #: inc/core/class.data.php:275
453
  msgid "Info"
454
  msgstr "Инфо"
455
 
456
+ #: inc/core/class.data.php:278
457
  msgid "Type"
458
  msgstr "Тип"
459
 
460
+ #: inc/core/class.data.php:279
461
  msgid "Style of the label"
462
  msgstr "Стиль ярлыка"
463
 
464
+ #: inc/core/class.data.php:288
465
  msgid "Styled label"
466
  msgstr "Стильный ярлык"
467
 
 
468
  #: inc/core/class.data.php:292
469
+ #: inc/core/class.data.php:314
470
  msgid "Quote"
471
  msgstr "Цитата"
472
 
473
+ #: inc/core/class.data.php:299
474
  msgid "Cite"
475
  msgstr "Автор"
476
 
477
+ #: inc/core/class.data.php:300
478
  msgid "Quote author name"
479
  msgstr "Имя автора цитаты"
480
 
481
+ #: inc/core/class.data.php:305
482
  msgid "Cite url"
483
  msgstr "Ссылка автора"
484
 
485
+ #: inc/core/class.data.php:306
486
  msgid "Url of the quote author. Leave empty to disable link"
487
  msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
488
 
489
+ #: inc/core/class.data.php:315
490
  msgid "Blockquote alternative"
491
  msgstr "Альтернатива цитаты"
492
 
493
+ #: inc/core/class.data.php:319
494
+ #: inc/core/class.data.php:338
495
+ #: inc/core/class.data.php:339
496
  msgid "Pullquote"
497
  msgstr "Цитата с обтеканием"
498
 
499
+ #: inc/core/class.data.php:330
500
  msgid "Pullquote alignment (float)"
501
  msgstr "Выравнивание цитаты (обтекание)"
502
 
503
+ #: inc/core/class.data.php:343
504
+ #: inc/core/class.data.php:370
505
  msgid "Dropcap"
506
  msgstr "Буквица"
507
 
508
+ #: inc/core/class.data.php:351
509
+ #: inc/core/class.data.php:511
510
  msgid "Flat"
511
  msgstr "Плоский"
512
 
513
+ #: inc/core/class.data.php:352
514
+ #: inc/core/class.data.php:562
515
  msgid "Light"
516
  msgstr "Светлый"
517
 
518
+ #: inc/core/class.data.php:356
 
 
 
 
519
  msgid "Dropcap style preset"
520
  msgstr "Стиль буквицы"
521
 
522
+ #: inc/core/class.data.php:361
523
  msgid "Choose dropcap size"
524
  msgstr "Выберите размер буквицы"
525
 
526
+ #: inc/core/class.data.php:369
527
  msgid "D"
528
  msgstr "D"
529
 
530
+ #: inc/core/class.data.php:374
531
+ msgid "Frame"
532
+ msgstr "Рамка"
533
+
534
+ #: inc/core/class.data.php:387
535
+ msgid "Frame alignment"
536
+ msgstr "Выравнивание рамки"
537
+
538
+ #: inc/core/class.data.php:397
539
+ msgid "Styled image frame"
540
+ msgstr "Стильный рамка изображения"
541
+
542
+ #: inc/core/class.data.php:401
543
  msgid "Row"
544
  msgstr "Колонки"
545
 
546
+ #: inc/core/class.data.php:412
547
  msgid ""
548
  "[column size=\"1/3\"]Content[/column]\n"
549
  "[column size=\"1/3\"]Content[/column]\n"
553
  "[column size=\"1/3\"]Содержимое[/column]\n"
554
  "[column size=\"1/3\"]Содержимое[/column]"
555
 
556
+ #: inc/core/class.data.php:412
557
  msgid "Row for flexible columns"
558
  msgstr "Контейнер с резиновыми колонками"
559
 
560
+ #: inc/core/class.data.php:416
561
  msgid "Column"
562
  msgstr "Колонка"
563
 
564
+ #: inc/core/class.data.php:423
565
  msgid "Full width"
566
  msgstr "Во всю ширину"
567
 
568
+ #: inc/core/class.data.php:424
569
  msgid "One half"
570
  msgstr "Одна вторая"
571
 
572
+ #: inc/core/class.data.php:425
573
  msgid "One third"
574
  msgstr "Одна третья"
575
 
576
+ #: inc/core/class.data.php:426
577
  msgid "Two third"
578
  msgstr "Две трети"
579
 
580
+ #: inc/core/class.data.php:427
581
  msgid "One fourth"
582
  msgstr "Одна четвертая"
583
 
584
+ #: inc/core/class.data.php:428
585
  msgid "Three fourth"
586
  msgstr "Три четвертых"
587
 
588
+ #: inc/core/class.data.php:429
589
  msgid "One fifth"
590
  msgstr "Одна пятая"
591
 
592
+ #: inc/core/class.data.php:430
593
  msgid "Two fifth"
594
  msgstr "Две пятых"
595
 
596
+ #: inc/core/class.data.php:431
597
  msgid "Three fifth"
598
  msgstr "Три пятых"
599
 
600
+ #: inc/core/class.data.php:432
601
  msgid "Four fifth"
602
  msgstr "Четыре пятых"
603
 
604
+ #: inc/core/class.data.php:433
605
  msgid "One sixth"
606
  msgstr "Одна шестая"
607
 
608
+ #: inc/core/class.data.php:434
609
  msgid "Five sixth"
610
  msgstr "Пять шестых"
611
 
612
+ #: inc/core/class.data.php:438
613
  msgid "Select column width. This width will be calculated depend page width"
614
  msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
615
 
616
+ #: inc/core/class.data.php:446
617
  msgid "Column content"
618
  msgstr "Содержимое колонки"
619
 
620
+ #: inc/core/class.data.php:446
621
  msgid "Flexible and responsive columns"
622
  msgstr "Резновые колонки"
623
 
624
+ #: inc/core/class.data.php:450
625
  msgid "List"
626
  msgstr "Список"
627
 
628
+ #: inc/core/class.data.php:457
629
  msgid "Star"
630
  msgstr "Звезда"
631
 
632
+ #: inc/core/class.data.php:458
633
  msgid "Arrow"
634
  msgstr "Стрелка"
635
 
636
+ #: inc/core/class.data.php:459
637
  msgid "Check"
638
  msgstr "Отметка"
639
 
640
+ #: inc/core/class.data.php:460
641
  msgid "Cross"
642
  msgstr "Крестик"
643
 
644
+ #: inc/core/class.data.php:461
645
  msgid "Thumbs up"
646
  msgstr "Палец вверх"
647
 
648
+ #: inc/core/class.data.php:462
649
+ #: inc/core/class.data.php:494
650
  msgid "Link"
651
  msgstr "Ссылка"
652
 
653
+ #: inc/core/class.data.php:463
654
  msgid "Gear"
655
  msgstr "Шестеренка"
656
 
657
+ #: inc/core/class.data.php:464
658
  msgid "Time"
659
  msgstr "Время"
660
 
661
+ #: inc/core/class.data.php:465
662
+ #: inc/core/class.data.php:684
663
  msgid "Note"
664
  msgstr "Заметка"
665
 
666
+ #: inc/core/class.data.php:466
667
  msgid "Plus"
668
  msgstr "Плюс"
669
 
670
+ #: inc/core/class.data.php:467
671
  msgid "Guard"
672
  msgstr "Защита"
673
 
674
+ #: inc/core/class.data.php:468
675
  msgid "Event"
676
  msgstr "Событие"
677
 
678
+ #: inc/core/class.data.php:469
679
  msgid "Idea"
680
  msgstr "Идя"
681
 
682
+ #: inc/core/class.data.php:470
683
  #: inc/core/class.generator.php:82
684
+ #: inc/core/class.shortcodes-ultimate.php:144
685
  #: inc/vendor/class.sunrise-framework.php:279
686
  msgid "Settings"
687
  msgstr "Настройки"
688
 
689
+ #: inc/core/class.data.php:471
690
  msgid "Twitter"
691
  msgstr "Твиттер"
692
 
693
+ #: inc/core/class.data.php:474
694
  msgid "List items style/icons"
695
  msgstr "Стиль/иконка элементов списка"
696
 
697
+ #: inc/core/class.data.php:483
698
  msgid ""
699
  "<ul>\n"
700
  "<li>List item</li>\n"
708
  "<li>Элемент списка</li>\n"
709
  "</ul>"
710
 
711
+ #: inc/core/class.data.php:483
712
  msgid "Styled unordered list"
713
  msgstr "Стильный неупорядоченный список"
714
 
715
+ #: inc/core/class.data.php:487
716
  msgid "Button"
717
  msgstr "Кнопка"
718
 
719
+ #: inc/core/class.data.php:495
720
  msgid "Button link"
721
  msgstr "Ссылка кнопки"
722
 
723
+ #: inc/core/class.data.php:500
724
+ #: inc/core/class.data.php:1047
725
  msgid "Same tab"
726
  msgstr "Та же вкладка"
727
 
728
+ #: inc/core/class.data.php:501
729
+ #: inc/core/class.data.php:1048
730
  msgid "New tab"
731
  msgstr "Новая вкладка"
732
 
733
+ #: inc/core/class.data.php:504
734
+ #: inc/core/class.data.php:1051
735
  msgid "Target"
736
  msgstr "Цель"
737
 
738
+ #: inc/core/class.data.php:505
739
  msgid "Button link target"
740
  msgstr "Цель ссылки кнопки"
741
 
742
+ #: inc/core/class.data.php:512
743
+ #: inc/core/class.data.php:643
744
  msgid "Soft"
745
  msgstr "Мягкий"
746
 
747
+ #: inc/core/class.data.php:513
748
+ #: inc/core/class.data.php:644
749
  msgid "Glass"
750
  msgstr "Стекло"
751
 
752
+ #: inc/core/class.data.php:514
753
+ #: inc/core/class.data.php:645
754
  msgid "Bubbles"
755
  msgstr "Пузыри"
756
 
757
+ #: inc/core/class.data.php:515
758
+ #: inc/core/class.data.php:646
759
  msgid "Noise"
760
  msgstr "Шум"
761
 
762
+ #: inc/core/class.data.php:516
763
  msgid "Stroked"
764
  msgstr "Прошитый"
765
 
766
+ #: inc/core/class.data.php:517
767
  msgid "3D"
768
  msgstr "3D"
769
 
770
+ #: inc/core/class.data.php:520
771
  msgid "Button background style preset"
772
  msgstr "Стиль фона кнопки"
773
 
774
+ #: inc/core/class.data.php:526
775
  msgid "Button background color"
776
  msgstr "Цвет фона кнопки"
777
 
778
+ #: inc/core/class.data.php:533
779
  msgid "Button text color"
780
  msgstr "Цвет текста кнопки"
781
 
782
+ #: inc/core/class.data.php:539
783
  msgid "Button size"
784
  msgstr "Размер кнопки"
785
 
786
+ #: inc/core/class.data.php:544
787
  msgid "Fluid"
788
  msgstr "Резиновая"
789
 
790
+ #: inc/core/class.data.php:544
791
  msgid "Fluid buttons has 100% width"
792
  msgstr "Резиновые кнопки имеют ширину 100%"
793
 
794
+ #: inc/core/class.data.php:550
795
+ #: inc/core/class.data.php:669
796
+ #: inc/core/class.data.php:705
797
  msgid "Radius"
798
  msgstr "Радиус"
799
 
800
+ #: inc/core/class.data.php:551
801
  msgid "Radius of button corners. Auto-radius calculation based on button size"
802
  msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
803
 
804
+ #: inc/core/class.data.php:556
805
+ #: inc/core/class.data.php:610
806
  msgid "Icon"
807
  msgstr "Иконка"
808
 
809
+ #: inc/core/class.data.php:557
810
  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"
811
  msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
812
 
813
+ #: inc/core/class.data.php:563
814
  msgid "Dark"
815
  msgstr "Темный"
816
 
817
+ #: inc/core/class.data.php:566
818
  msgid "Text shadow color"
819
  msgstr "Цвет тени текста"
820
 
821
+ #: inc/core/class.data.php:566
822
  msgid "Color of button text shadow"
823
  msgstr "Цвет тени текста кнопки"
824
 
825
+ #: inc/core/class.data.php:571
826
+ #: inc/core/class.data.php:1620
827
  msgid "None"
828
  msgstr "Нет"
829
 
830
+ #: inc/core/class.data.php:572
831
  msgid "Top"
832
  msgstr "Сверху"
833
 
834
+ #: inc/core/class.data.php:574
835
  msgid "Bottom"
836
  msgstr "Снизу"
837
 
838
+ #: inc/core/class.data.php:576
839
  msgid "Top right"
840
  msgstr "Сверху справа"
841
 
842
+ #: inc/core/class.data.php:577
843
  msgid "Top left"
844
  msgstr "Сверху слева"
845
 
846
+ #: inc/core/class.data.php:577
847
  msgid "Bottom right"
848
  msgstr "Снизу справа"
849
 
850
+ #: inc/core/class.data.php:577
851
  msgid "Bottom left"
852
  msgstr "Снизу слева"
853
 
854
+ #: inc/core/class.data.php:579
855
  msgid "Text shadow position"
856
  msgstr "Положение тени текста"
857
 
858
+ #: inc/core/class.data.php:579
859
  msgid "Position of button text shadow"
860
  msgstr "Положение тени текста кнопки"
861
 
862
+ #: inc/core/class.data.php:583
863
  msgid "Description"
864
  msgstr "Описание"
865
 
866
+ #: inc/core/class.data.php:584
867
  msgid "Small description under button text. This option is incompatible with icon."
868
  msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
869
 
870
+ #: inc/core/class.data.php:592
871
  msgid "Button text"
872
  msgstr "Текст кнопки"
873
 
874
+ #: inc/core/class.data.php:593
875
  msgid "Styled button"
876
  msgstr "Стильная кнопка"
877
 
878
+ #: inc/core/class.data.php:597
879
  msgid "Service"
880
  msgstr "Услуга"
881
 
882
+ #: inc/core/class.data.php:603
883
+ #: inc/core/shortcodes.php:450
884
  msgid "Service title"
885
  msgstr "Название услуги"
886
 
887
+ #: inc/core/class.data.php:605
888
  msgid "Service name"
889
  msgstr "Название услуги"
890
 
891
+ #: inc/core/class.data.php:611
892
  msgid "You can upload custom icon for this box"
893
  msgstr "Вы можете загрузить свою иконку для этого блока"
894
 
895
+ #: inc/core/class.data.php:617
896
  msgid "Icon size"
897
  msgstr "Размер иконки"
898
 
899
+ #: inc/core/class.data.php:618
900
  msgid "Size of the uploaded icon in pixels"
901
  msgstr "Размер загруженной иконки в пикселях"
902
 
903
+ #: inc/core/class.data.php:626
904
  msgid "Service description"
905
  msgstr "Описание услуги"
906
 
907
+ #: inc/core/class.data.php:626
908
  msgid "Service box with title"
909
  msgstr "Блок услуга с заголовком"
910
 
911
+ #: inc/core/class.data.php:636
912
  msgid "Box title"
913
  msgstr "Заголовок блока"
914
 
915
+ #: inc/core/class.data.php:637
916
  msgid "Text for the box title"
917
  msgstr "Текст для заголовка блока"
918
 
919
+ #: inc/core/class.data.php:650
920
  msgid "Box style preset"
921
  msgstr "Стиль блока"
922
 
923
+ #: inc/core/class.data.php:656
924
  msgid "Color"
925
  msgstr "Цвет"
926
 
927
+ #: inc/core/class.data.php:657
928
  msgid "Color for the box title and borders"
929
  msgstr "Цвет заголовка блока и его рамки"
930
 
931
+ #: inc/core/class.data.php:663
932
  msgid "Title text color"
933
  msgstr "Цвет текста заголовка"
934
 
935
+ #: inc/core/class.data.php:663
936
  msgid "Color for the box title text"
937
  msgstr "Цвет текста в заголовке блока"
938
 
939
+ #: inc/core/class.data.php:670
940
  msgid "Box corners radius"
941
  msgstr "Радиус углов"
942
 
943
+ #: inc/core/class.data.php:679
944
  msgid "Box content"
945
  msgstr "Содержимое блока"
946
 
947
+ #: inc/core/class.data.php:680
948
  msgid "Colored box with caption"
949
  msgstr "Цветной блок с заголовком"
950
 
951
+ #: inc/core/class.data.php:692
952
  msgid "Note background color"
953
  msgstr "Цвет фона заметки"
954
 
955
+ #: inc/core/class.data.php:699
956
  msgid "Note text color"
957
  msgstr "Цвет текста заметки"
958
 
959
+ #: inc/core/class.data.php:705
960
  msgid "Note corners radius"
961
  msgstr "Радиус углов"
962
 
963
+ #: inc/core/class.data.php:713
964
  msgid "Note text"
965
  msgstr "Текст заметки"
966
 
967
+ #: inc/core/class.data.php:714
968
  msgid "Colored box"
969
  msgstr "Цветной блок"
970
 
971
+ #: inc/core/class.data.php:718
972
  msgid "Lightbox"
973
  msgstr "Лайтбокс"
974
 
975
+ #: inc/core/class.data.php:725
976
  msgid "Iframe"
977
  msgstr "Фрейм (iframe)"
978
 
979
+ #: inc/core/class.data.php:726
980
  msgid "Image"
981
  msgstr "Изображение"
982
 
983
+ #: inc/core/class.data.php:727
984
  msgid "Inline (html content)"
985
  msgstr "HTML элемент"
986
 
987
+ #: inc/core/class.data.php:730
988
  msgid "Content type"
989
  msgstr "Тип содержимого"
990
 
991
+ #: inc/core/class.data.php:731
992
  msgid "Select type of the lightbox window content"
993
  msgstr "Выберите тип содержимого в окне лайтбокса"
994
 
995
+ #: inc/core/class.data.php:735
996
  msgid "Content source"
997
  msgstr "Источник содержимого"
998
 
999
+ #: inc/core/class.data.php:736
1000
  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)"
1001
  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 элемент)"
1002
 
1003
+ #: inc/core/class.data.php:745
1004
  msgid "[button] Click Here to Watch the Video [/button]"
1005
  msgstr "[button] Нажмите чтобы посмотреть видео [/button]"
1006
 
1007
+ #: inc/core/class.data.php:746
1008
  msgid "Lightbox window with custom content"
1009
  msgstr "Лайтбокс с произвольным содержимым"
1010
 
1011
+ #: inc/core/class.data.php:750
1012
  msgid "Private"
1013
  msgstr "Заметка для авторов"
1014
 
1015
+ #: inc/core/class.data.php:760
1016
  msgid "Private note text"
1017
  msgstr "Текст приватной заметки"
1018
 
1019
+ #: inc/core/class.data.php:760
1020
  msgid "Private note for post authors"
1021
  msgstr "Приватный текст для других авторов"
1022
 
1023
+ #: inc/core/class.data.php:764
1024
  msgid "YouTube"
1025
  msgstr "YouTube"
1026
 
1027
+ #: inc/core/class.data.php:771
1028
+ #: inc/core/class.data.php:821
1029
+ #: inc/core/class.data.php:869
1030
+ #: inc/core/class.data.php:1118
1031
+ #: inc/core/class.data.php:1208
1032
  msgid "Url"
1033
  msgstr "Ссылка"
1034
 
1035
+ #: inc/core/class.data.php:772
1036
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1037
  msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1038
 
 
1039
  #: inc/core/class.data.php:780
1040
+ #: inc/core/class.data.php:829
1041
+ #: inc/core/class.data.php:877
1042
+ #: inc/core/class.data.php:918
1043
+ #: inc/core/class.data.php:972
1044
+ #: inc/core/class.data.php:1217
1045
+ #: inc/core/class.data.php:1255
1046
+ #: inc/core/class.data.php:1304
1047
+ #: inc/core/class.data.php:1394
1048
+ #: inc/core/class.data.php:1500
1049
  msgid "Width"
1050
  msgstr "Ширина"
1051
 
 
1052
  #: inc/core/class.data.php:781
1053
+ #: inc/core/class.data.php:830
1054
+ #: inc/core/class.data.php:878
1055
+ #: inc/core/class.data.php:973
1056
  msgid "Player width"
1057
  msgstr "Ширина плеера"
1058
 
 
1059
  #: inc/core/class.data.php:790
1060
+ #: inc/core/class.data.php:839
1061
+ #: inc/core/class.data.php:887
1062
+ #: inc/core/class.data.php:982
1063
  msgid "Player height"
1064
  msgstr "Высота плеера"
1065
 
 
1066
  #: inc/core/class.data.php:795
1067
+ #: inc/core/class.data.php:844
1068
+ #: inc/core/class.data.php:892
1069
+ #: inc/core/class.data.php:1232
1070
+ #: inc/core/class.data.php:1270
1071
+ #: inc/core/class.data.php:1317
1072
+ #: inc/core/class.data.php:1407
1073
  msgid "Responsive"
1074
  msgstr "Отзывчивость (responsive)"
1075
 
 
1076
  #: inc/core/class.data.php:796
1077
+ #: inc/core/class.data.php:845
1078
+ #: inc/core/class.data.php:893
1079
  msgid "Ignore width and height parameters and make player responsive"
1080
  msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1081
 
 
1082
  #: inc/core/class.data.php:801
1083
+ #: inc/core/class.data.php:850
1084
+ #: inc/core/class.data.php:924
1085
+ #: inc/core/class.data.php:993
1086
+ #: inc/core/class.data.php:1352
1087
+ #: inc/core/class.data.php:1458
1088
  msgid "Autoplay"
1089
  msgstr "Автовоспроизведение"
1090
 
 
1091
  #: inc/core/class.data.php:802
1092
+ #: inc/core/class.data.php:851
1093
  msgid "Play video automatically when page is loaded"
1094
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1095
 
1096
+ #: inc/core/class.data.php:810
1097
  msgid "YouTube video"
1098
  msgstr "Видео YouTube"
1099
 
1100
+ #: inc/core/class.data.php:814
1101
  msgid "Vimeo"
1102
  msgstr "Vimeo"
1103
 
1104
+ #: inc/core/class.data.php:821
1105
  msgid "Url of Vimeo page with video"
1106
  msgstr "Ссылка на страницу Vimeo с видео"
1107
 
1108
+ #: inc/core/class.data.php:859
1109
  msgid "Vimeo video"
1110
  msgstr "Видео Vimeo"
1111
 
1112
+ #: inc/core/class.data.php:863
1113
+ msgid "Screenr"
1114
+ msgstr "Screenr"
1115
+
1116
+ #: inc/core/class.data.php:869
1117
+ msgid "Url of Screenr page with video"
1118
+ msgstr "Ссылка на страницу Screenr с видео"
1119
+
1120
+ #: inc/core/class.data.php:901
1121
+ msgid "Screenr video"
1122
+ msgstr "Видео Screenr"
1123
+
1124
+ #: inc/core/class.data.php:905
1125
  msgid "Audio"
1126
  msgstr "Аудио"
1127
 
1128
+ #: inc/core/class.data.php:912
1129
+ #: inc/core/class.data.php:951
1130
  msgid "File"
1131
  msgstr "Файл"
1132
 
1133
+ #: inc/core/class.data.php:913
1134
  msgid "Audio file url. Supported formats: mp3, ogg"
1135
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1136
 
1137
+ #: inc/core/class.data.php:919
1138
  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>"
1139
  msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100&#37;</b>"
1140
 
1141
+ #: inc/core/class.data.php:925
1142
+ #: inc/core/class.data.php:994
1143
  msgid "Play file automatically when page is loaded"
1144
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1145
 
1146
+ #: inc/core/class.data.php:930
1147
+ #: inc/core/class.data.php:999
1148
  msgid "Loop"
1149
  msgstr "Повтор"
1150
 
1151
+ #: inc/core/class.data.php:931
1152
+ #: inc/core/class.data.php:1000
1153
  msgid "Repeat when playback is ended"
1154
  msgstr "Повторять, когда воспроизведение окночено"
1155
 
1156
+ #: inc/core/class.data.php:940
1157
  msgid "Custom audio player"
1158
  msgstr "Настраиваемый аудио-плеер"
1159
 
1160
+ #: inc/core/class.data.php:944
1161
  msgid "Video"
1162
  msgstr "Видео"
1163
 
1164
+ #: inc/core/class.data.php:952
1165
  msgid "Url to mp4/flv video-file"
1166
  msgstr "Ссылка на mp4/flv видео-файл"
1167
 
1168
+ #: inc/core/class.data.php:957
1169
  msgid "Poster"
1170
  msgstr "Постер"
1171
 
1172
+ #: inc/core/class.data.php:958
1173
  msgid "Url to poster image, that will be shown before playback"
1174
  msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
1175
 
1176
+ #: inc/core/class.data.php:964
1177
  msgid "Player title"
1178
  msgstr "Заголовок плеера"
1179
 
1180
+ #: inc/core/class.data.php:987
1181
  msgid "Controls"
1182
  msgstr "Элементы управления"
1183
 
1184
+ #: inc/core/class.data.php:988
1185
  msgid "Show player controls (play/pause etc.) or not"
1186
  msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1187
 
1188
+ #: inc/core/class.data.php:1009
1189
  msgid "Custom video player"
1190
  msgstr "Настраиваемый видео-плеер"
1191
 
1192
+ #: inc/core/class.data.php:1013
1193
  msgid "Table"
1194
  msgstr "Таблица"
1195
 
1196
+ #: inc/core/class.data.php:1020
1197
  msgid "CSV file"
1198
  msgstr "CSV файл"
1199
 
1200
+ #: inc/core/class.data.php:1021
1201
  msgid "Upload CSV file if you want to create HTML-table from file"
1202
  msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1203
 
1204
+ #: inc/core/class.data.php:1030
1205
  msgid ""
1206
  "<table>\n"
1207
  "<tr>\n"
1225
  "</tr>\n"
1226
  "</table>"
1227
 
1228
+ #: inc/core/class.data.php:1031
1229
  msgid "Styled table from HTML or CSV file"
1230
  msgstr "Стильная таблица из HTML или CSV файла"
1231
 
1232
+ #: inc/core/class.data.php:1035
1233
  msgid "Permalink"
1234
  msgstr "Постоянная ссылка"
1235
 
1236
+ #: inc/core/class.data.php:1041
1237
  msgid "ID"
1238
  msgstr "ID"
1239
 
1240
+ #: inc/core/class.data.php:1042
1241
  msgid "Post or page ID"
1242
  msgstr "ID записи или страницы"
1243
 
1244
+ #: inc/core/class.data.php:1052
1245
  msgid "Link target. blank - link will be opened in new window/tab"
1246
  msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
1247
 
1248
+ #: inc/core/class.data.php:1061
1249
  msgid "Permalink to specified post/page"
1250
  msgstr "Постоянная ссылка на страницу"
1251
 
1252
+ #: inc/core/class.data.php:1065
1253
  msgid "Members"
1254
  msgstr "Участники"
1255
 
1256
+ #: inc/core/class.data.php:1070
1257
+ #: inc/core/shortcodes.php:808
1258
  msgid "This content is for registered users only. Please %login%."
1259
  msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1260
 
1261
+ #: inc/core/class.data.php:1071
1262
  msgid "Message"
1263
  msgstr "Сообщение"
1264
 
1265
+ #: inc/core/class.data.php:1071
1266
  msgid "Message for not logged users"
1267
  msgstr "Собщение для неавторизованных"
1268
 
1269
+ #: inc/core/class.data.php:1076
1270
  msgid "Box color"
1271
  msgstr "Цвет блока"
1272
 
1273
+ #: inc/core/class.data.php:1076
1274
  msgid "This color will applied only to box for not logged users"
1275
  msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1276
 
1277
+ #: inc/core/class.data.php:1079
1278
+ #: inc/core/shortcodes.php:811
1279
  msgid "login"
1280
  msgstr "войдите"
1281
 
1282
+ #: inc/core/class.data.php:1080
1283
  msgid "Login link text"
1284
  msgstr "Текст ссылки войти"
1285
 
1286
+ #: inc/core/class.data.php:1080
1287
  msgid "Text for the login link"
1288
  msgstr "Текст ссылки ВОЙТИ"
1289
 
1290
+ #: inc/core/class.data.php:1084
1291
  msgid "Login link url"
1292
  msgstr "Адрес ссылки войти"
1293
 
1294
+ #: inc/core/class.data.php:1092
1295
  msgid "Content for logged members"
1296
  msgstr "Содержимое для авторизованых пользователей"
1297
 
1298
+ #: inc/core/class.data.php:1093
1299
  msgid "Content for logged in members only"
1300
  msgstr "Ссодержимое для авторизованых"
1301
 
1302
+ #: inc/core/class.data.php:1097
1303
  msgid "Guests"
1304
  msgstr "Гости"
1305
 
1306
+ #: inc/core/class.data.php:1107
1307
  msgid "Content for guests"
1308
  msgstr "Содержимое для гостей"
1309
 
1310
+ #: inc/core/class.data.php:1107
1311
  msgid "Content for guests only"
1312
  msgstr "Ссодержимое только для гостей"
1313
 
1314
+ #: inc/core/class.data.php:1111
1315
  msgid "RSS Feed"
1316
  msgstr "RSS лента"
1317
 
1318
+ #: inc/core/class.data.php:1119
1319
  msgid "Url to RSS-feed"
1320
  msgstr "Ссылка на RSS-ленту"
1321
 
1322
+ #: inc/core/class.data.php:1124
1323
  msgid "Limit"
1324
  msgstr "Лимит"
1325
 
1326
+ #: inc/core/class.data.php:1124
1327
  msgid "Number of items to show"
1328
  msgstr "Количество элементов для отображения"
1329
 
1330
+ #: inc/core/class.data.php:1132
1331
  msgid "Feed grabber"
1332
  msgstr "Граббер новостных лент"
1333
 
1334
+ #: inc/core/class.data.php:1136
1335
  msgid "Menu"
1336
  msgstr "Меню"
1337
 
1338
+ #: inc/core/class.data.php:1143
1339
  msgid "Menu name"
1340
  msgstr "Имя меню"
1341
 
1342
+ #: inc/core/class.data.php:1143
1343
  msgid "Custom menu name. Ex: Main menu"
1344
  msgstr "Имя произвольного меню. Например: Главное меню"
1345
 
1346
+ #: inc/core/class.data.php:1151
1347
  msgid "Custom menu by name"
1348
  msgstr "Произвольное меню"
1349
 
1350
+ #: inc/core/class.data.php:1155
1351
  msgid "Sub pages"
1352
  msgstr "Подстраницы"
1353
 
1354
+ #: inc/core/class.data.php:1162
1355
+ #: inc/core/class.data.php:1188
1356
  msgid "Depth"
1357
  msgstr "Глубина"
1358
 
1359
+ #: inc/core/class.data.php:1163
1360
  msgid "Max depth level of children pages"
1361
  msgstr "Максимальная глубина дочерних страниц"
1362
 
1363
+ #: inc/core/class.data.php:1168
1364
  msgid "Parent ID"
1365
  msgstr "ID родителя"
1366
 
1367
+ #: inc/core/class.data.php:1169
1368
  msgid "ID of the parent page. Leave blank to use current page"
1369
  msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
1370
 
1371
+ #: inc/core/class.data.php:1177
1372
  msgid "List of sub pages"
1373
  msgstr "Список дочерних страниц"
1374
 
1375
+ #: inc/core/class.data.php:1181
1376
  msgid "Siblings"
1377
  msgstr "Соседние страницы"
1378
 
1379
+ #: inc/core/class.data.php:1189
1380
  msgid "Max depth level"
1381
  msgstr "Максимальный уровень вложенности"
1382
 
1383
+ #: inc/core/class.data.php:1197
1384
  msgid "List of cureent page siblings"
1385
  msgstr "Список страниц, соседних с текущей"
1386
 
1387
+ #: inc/core/class.data.php:1201
1388
  msgid "Document"
1389
  msgstr "Документ"
1390
 
1391
+ #: inc/core/class.data.php:1209
1392
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1393
  msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
1394
 
1395
+ #: inc/core/class.data.php:1218
1396
  msgid "Viewer width"
1397
  msgstr "Ширина просмотрщика"
1398
 
1399
+ #: inc/core/class.data.php:1227
1400
  msgid "Viewer height"
1401
  msgstr "Высота просмотрщика"
1402
 
1403
+ #: inc/core/class.data.php:1233
1404
  msgid "Ignore width and height parameters and make viewer responsive"
1405
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
1406
 
1407
+ #: inc/core/class.data.php:1241
1408
  msgid "Document viewer by Google"
1409
  msgstr "Просмотрщик документов от Google"
1410
 
1411
+ #: inc/core/class.data.php:1245
1412
  msgid "Gmap"
1413
  msgstr "Google карта"
1414
 
1415
+ #: inc/core/class.data.php:1256
1416
  msgid "Map width"
1417
  msgstr "Ширина карты"
1418
 
1419
+ #: inc/core/class.data.php:1265
1420
  msgid "Map height"
1421
  msgstr "Высота карты"
1422
 
1423
+ #: inc/core/class.data.php:1271
1424
  msgid "Ignore width and height parameters and make map responsive"
1425
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
1426
 
1427
+ #: inc/core/class.data.php:1276
1428
  msgid "Marker"
1429
  msgstr "Маркер"
1430
 
1431
+ #: inc/core/class.data.php:1277
1432
  msgid "Address for the marker. You can type it in any language"
1433
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
1434
 
1435
+ #: inc/core/class.data.php:1285
1436
  msgid "Maps by Google"
1437
  msgstr "Карты от Google"
1438
 
1439
+ #: inc/core/class.data.php:1289
1440
  msgid "Slider"
1441
  msgstr "Слайдер"
1442
 
1443
+ #: inc/core/class.data.php:1296
1444
  msgid "Choose source gallery, that will be used for this slider"
1445
  msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
1446
 
1447
+ #: inc/core/class.data.php:1304
1448
  msgid "Slider width (in pixels)"
1449
  msgstr "Ширина слайдера (в пикселях)"
1450
 
1451
+ #: inc/core/class.data.php:1312
1452
  msgid "Slider height (in pixels)"
1453
  msgstr "Высота слайдера (в пикселях)"
1454
 
1455
+ #: inc/core/class.data.php:1318
1456
  msgid "Ignore width and height parameters and make slider responsive"
1457
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
1458
 
1459
+ #: inc/core/class.data.php:1323
1460
+ #: inc/core/class.data.php:1429
1461
+ #: inc/core/class.data.php:1518
1462
  msgid "Show titles"
1463
  msgstr "Показывать заголовки"
1464
 
1465
+ #: inc/core/class.data.php:1323
1466
  msgid "Display slide titles"
1467
  msgstr "Отображать заголовки слайдов"
1468
 
1469
+ #: inc/core/class.data.php:1328
1470
  msgid "Is slider centered on the page"
1471
  msgstr "Слайдер выровнен по центру страницы"
1472
 
1473
+ #: inc/core/class.data.php:1333
1474
+ #: inc/core/class.data.php:1439
1475
  msgid "Arrows"
1476
  msgstr "Стрелки"
1477
 
1478
+ #: inc/core/class.data.php:1333
1479
+ #: inc/core/class.data.php:1439
1480
  msgid "Show left and right arrows"
1481
  msgstr "Показывать стрелки влево/вправо"
1482
 
1483
+ #: inc/core/class.data.php:1338
1484
+ #: inc/core/class.data.php:1444
1485
  msgid "Pagination"
1486
  msgstr "Страницы"
1487
 
1488
+ #: inc/core/class.data.php:1339
1489
+ #: inc/core/class.data.php:1445
1490
  msgid "Show pagination"
1491
  msgstr "Показывать страницы"
1492
 
1493
+ #: inc/core/class.data.php:1343
1494
+ #: inc/core/class.data.php:1449
1495
  msgid "Mouse wheel control"
1496
  msgstr "Управление колесом мыши"
1497
 
1498
+ #: inc/core/class.data.php:1344
1499
  msgid "Allow to change slides with mouse wheel"
1500
  msgstr "Разрешить перелистывание слайдов колесом мышки"
1501
 
1502
+ #: inc/core/class.data.php:1353
1503
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
1504
  msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
1505
 
1506
+ #: inc/core/class.data.php:1361
1507
+ #: inc/core/class.data.php:1467
1508
  msgid "Speed"
1509
  msgstr "Скорость"
1510
 
1511
+ #: inc/core/class.data.php:1361
1512
+ #: inc/core/class.data.php:1467
1513
  msgid "Specify animation speed"
1514
  msgstr "Укажите скорость анимации"
1515
 
1516
+ #: inc/core/class.data.php:1366
1517
+ #: inc/core/class.data.php:1472
1518
+ #: inc/core/class.data.php:1524
1519
  msgid "Links target"
1520
  msgstr "Цель ссылок"
1521
 
1522
+ #: inc/core/class.data.php:1367
1523
  msgid "Open slides links in new window/tab"
1524
  msgstr "Открывать ссылки слайдов в новом окне или вкладке"
1525
 
1526
+ #: inc/core/class.data.php:1375
1527
  msgid "Customizable image slider"
1528
  msgstr "Настраиваемый слайдер изображений"
1529
 
1530
+ #: inc/core/class.data.php:1379
1531
  msgid "Carousel"
1532
  msgstr "Карусель"
1533
 
1534
+ #: inc/core/class.data.php:1386
1535
  msgid "Choose source gallery, that will be used for this carousel"
1536
  msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
1537
 
1538
+ #: inc/core/class.data.php:1394
1539
  msgid "Carousel width (in pixels)"
1540
  msgstr "Ширина карусели (в пикселях)"
1541
 
1542
+ #: inc/core/class.data.php:1402
1543
  msgid "Carousel height (in pixels)"
1544
  msgstr "Высота карусели (в пикселях)"
1545
 
1546
+ #: inc/core/class.data.php:1408
1547
  msgid "Ignore width and height parameters and make carousel responsive"
1548
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
1549
 
1550
+ #: inc/core/class.data.php:1415
1551
  msgid "Items to show"
1552
  msgstr "Количество элементов для отображения"
1553
 
1554
+ #: inc/core/class.data.php:1416
1555
  msgid "How much carousel items is visible"
1556
  msgstr "Сколько элементов карусели видны постоянно"
1557
 
1558
+ #: inc/core/class.data.php:1423
1559
  msgid "Scroll number"
1560
  msgstr "Кол-во прокручиваемых"
1561
 
1562
+ #: inc/core/class.data.php:1424
1563
  msgid "How much items are scrolled in one transition"
1564
  msgstr "Сколько элементов карусели прокручивается за один переход"
1565
 
1566
+ #: inc/core/class.data.php:1429
1567
  msgid "Display titles for each item"
1568
  msgstr "Показывать заголовки для каждого элемента карусели"
1569
 
1570
+ #: inc/core/class.data.php:1434
1571
  msgid "Is carousel centered on the page"
1572
  msgstr "Карусель выровнена по центру страницы"
1573
 
1574
+ #: inc/core/class.data.php:1450
1575
  msgid "Allow to rotate carousel with mouse wheel"
1576
  msgstr "Разрешить прокрутку карусели колесом мыши"
1577
 
1578
+ #: inc/core/class.data.php:1459
1579
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
1580
  msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
1581
 
1582
+ #: inc/core/class.data.php:1473
1583
  msgid "Open carousel links in new window/tab"
1584
  msgstr "Открывать ссылки карусели в новом окне или вкладке"
1585
 
1586
+ #: inc/core/class.data.php:1481
1587
  msgid "Customizable image carousel"
1588
  msgstr "Настраиваемая карусель изображений"
1589
 
1590
+ #: inc/core/class.data.php:1492
1591
  msgid "Choose source gallery, that will be used for this shortcode"
1592
  msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
1593
 
1594
+ #: inc/core/class.data.php:1500
1595
  msgid "Single item width (in pixels)"
1596
  msgstr "Ширина одного изображения (в пикселях)"
1597
 
1598
+ #: inc/core/class.data.php:1508
1599
  msgid "Single item height (in pixels)"
1600
  msgstr "Высота одного изображения (в пикселях)"
1601
 
1602
+ #: inc/core/class.data.php:1513
1603
  msgid "Never"
1604
  msgstr "Никогда"
1605
 
1606
+ #: inc/core/class.data.php:1514
1607
  msgid "On mouse over"
1608
  msgstr "При наведении мыши"
1609
 
1610
+ #: inc/core/class.data.php:1515
1611
  msgid "Always"
1612
  msgstr "Всегда"
1613
 
1614
+ #: inc/core/class.data.php:1519
1615
  msgid "Title display mode"
1616
  msgstr "Режим отображения заголовков"
1617
 
1618
+ #: inc/core/class.data.php:1524
1619
  msgid "Open links in new window/tab"
1620
  msgstr "Открывать ссылки в новом окне или вкладке"
1621
 
1622
+ #: inc/core/class.data.php:1532
1623
  msgid "Customizable image gallery"
1624
  msgstr "Настраиваемая галерея изображений"
1625
 
1626
+ #: inc/core/class.data.php:1536
1627
  msgid "Posts"
1628
  msgstr "Записи"
1629
 
1630
+ #: inc/core/class.data.php:1541
1631
  msgid "Template"
1632
  msgstr "Шаблон"
1633
 
1634
+ #: inc/core/class.data.php:1542
1635
  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"
1636
  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> - маркированный список с заголовками постов"
1637
 
1638
+ #: inc/core/class.data.php:1546
1639
  msgid "Post ID's"
1640
  msgstr "ID постов"
1641
 
1642
+ #: inc/core/class.data.php:1547
1643
  msgid "Enter comma separated ID's of the posts that you want to show"
1644
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
1645
 
1646
+ #: inc/core/class.data.php:1555
1647
  msgid "Posts per page"
1648
  msgstr "Кол-во записей"
1649
 
1650
+ #: inc/core/class.data.php:1556
1651
  msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
1652
  msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
1653
 
1654
+ #: inc/core/class.data.php:1563
1655
  msgid "Post types"
1656
  msgstr "Типы постов"
1657
 
1658
+ #: inc/core/class.data.php:1564
1659
  msgid "Select post types. Hold Ctrl key to select multiple post types"
1660
  msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
1661
 
1662
+ #: inc/core/class.data.php:1570
1663
  msgid "Taxonomy"
1664
  msgstr "Таксономия"
1665
 
1666
+ #: inc/core/class.data.php:1571
1667
  msgid "Select taxonomy to show posts from"
1668
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
1669
 
1670
+ #: inc/core/class.data.php:1578
1671
  msgid "Terms"
1672
  msgstr "Категории (terms)"
1673
 
1674
+ #: inc/core/class.data.php:1578
1675
  msgid "Select terms to show posts from"
1676
  msgstr "Выберите категории, из которых нужно показать записи"
1677
 
1678
+ #: inc/core/class.data.php:1583
1679
  msgid "Taxonomy term operator"
1680
  msgstr "Оператор выбора категорий"
1681
 
1682
+ #: inc/core/class.data.php:1584
1683
  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"
1684
  msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
1685
 
1686
+ #: inc/core/class.data.php:1591
1687
  msgid "Authors"
1688
  msgstr "Авторы"
1689
 
1690
+ #: inc/core/class.data.php:1592
1691
  msgid "Choose the authors whose posts you want to show"
1692
  msgstr "Выберите авторов, чьи записи хотите показать"
1693
 
1694
+ #: inc/core/class.data.php:1596
1695
  msgid "Meta key"
1696
  msgstr "Произвольное поле"
1697
 
1698
+ #: inc/core/class.data.php:1597
1699
  msgid "Enter meta key name to show posts that have this key"
1700
  msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
1701
 
1702
+ #: inc/core/class.data.php:1604
1703
  msgid "Offset"
1704
  msgstr "Смещение (offset)"
1705
 
1706
+ #: inc/core/class.data.php:1605
1707
  msgid "Specify offset to start posts loop not from first post"
1708
  msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
1709
 
1710
+ #: inc/core/class.data.php:1610
1711
  msgid "Descending"
1712
  msgstr "По убыванию"
1713
 
1714
+ #: inc/core/class.data.php:1611
1715
  msgid "Ascending"
1716
  msgstr "По возрастанию"
1717
 
1718
+ #: inc/core/class.data.php:1614
1719
  msgid "Order"
1720
  msgstr "Порядок"
1721
 
1722
+ #: inc/core/class.data.php:1615
1723
  msgid "Posts order"
1724
  msgstr "Порядок сортировки записей"
1725
 
1726
+ #: inc/core/class.data.php:1621
1727
  msgid "Post ID"
1728
  msgstr "ID записи"
1729
 
1730
+ #: inc/core/class.data.php:1622
1731
  msgid "Post author"
1732
  msgstr "Автор записи"
1733
 
1734
+ #: inc/core/class.data.php:1623
1735
  msgid "Post title"
1736
  msgstr "Заголовок записи"
1737
 
1738
+ #: inc/core/class.data.php:1624
1739
  msgid "Post slug"
1740
  msgstr "Ссылка записи (slug)"
1741
 
1742
+ #: inc/core/class.data.php:1625
1743
  msgid "Date"
1744
  msgstr "Дата"
1745
 
1746
+ #: inc/core/class.data.php:1625
1747
  msgid "Last modified date"
1748
  msgstr "Дата изменения"
1749
 
1750
+ #: inc/core/class.data.php:1626
1751
+ #: inc/core/class.data.php:1636
1752
  msgid "Post parent"
1753
  msgstr "Родитель"
1754
 
1755
+ #: inc/core/class.data.php:1627
1756
  msgid "Random"
1757
  msgstr "Случайно"
1758
 
1759
+ #: inc/core/class.data.php:1627
1760
  msgid "Comments number"
1761
  msgstr "Кол-во комментариев"
1762
 
1763
+ #: inc/core/class.data.php:1628
1764
  msgid "Menu order"
1765
  msgstr "Порядок меню"
1766
 
1767
+ #: inc/core/class.data.php:1628
1768
  msgid "Meta key values"
1769
  msgstr "Значение произвольного поля"
1770
 
1771
+ #: inc/core/class.data.php:1631
1772
  msgid "Order by"
1773
  msgstr "Сортировать по"
1774
 
1775
+ #: inc/core/class.data.php:1632
1776
  msgid "Order posts by"
1777
  msgstr "Сортировать записи по следующему признаку"
1778
 
1779
+ #: inc/core/class.data.php:1637
1780
  msgid "Show childrens of entered post (enter post ID)"
1781
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
1782
 
1783
+ #: inc/core/class.data.php:1642
1784
  msgid "Published"
1785
  msgstr "Опубликован"
1786
 
1787
+ #: inc/core/class.data.php:1643
1788
  msgid "Pending"
1789
  msgstr "Ожидает"
1790
 
1791
+ #: inc/core/class.data.php:1644
1792
  msgid "Draft"
1793
  msgstr "Черновик"
1794
 
1795
+ #: inc/core/class.data.php:1645
1796
  msgid "Auto-draft"
1797
  msgstr "Авто-черновик"
1798
 
1799
+ #: inc/core/class.data.php:1646
1800
  msgid "Future post"
1801
  msgstr "Запланирован"
1802
 
1803
+ #: inc/core/class.data.php:1647
1804
  msgid "Private post"
1805
  msgstr "Приватная запись"
1806
 
1807
+ #: inc/core/class.data.php:1648
1808
  msgid "Inherit"
1809
  msgstr "Вложенный"
1810
 
1811
+ #: inc/core/class.data.php:1649
1812
  msgid "Trashed"
1813
  msgstr "В корзине"
1814
 
1815
+ #: inc/core/class.data.php:1650
1816
  msgid "Any"
1817
  msgstr "Любой"
1818
 
1819
+ #: inc/core/class.data.php:1653
1820
  msgid "Post status"
1821
  msgstr "Статус записи"
1822
 
1823
+ #: inc/core/class.data.php:1654
1824
  msgid "Show only posts with selected status"
1825
  msgstr "Показать только записи с выбранным статусом"
1826
 
1827
+ #: inc/core/class.data.php:1659
1828
  msgid "Ignore sticky"
1829
  msgstr "Игнорировать прикрепленные"
1830
 
1831
+ #: inc/core/class.data.php:1660
1832
  msgid "Select Yes to ignore posts that is sticked"
1833
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
1834
 
1835
+ #: inc/core/class.data.php:1664
1836
  msgid "Custom posts query with customizable template"
1837
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
1838
 
1953
  msgid "Supercharge your WordPress theme with mega pack of shortcodes"
1954
  msgstr "Суперзарядка для вашей WordPress-темы с помощью мега набора шорткодов"
1955
 
1956
+ #: inc/core/class.shortcodes-ultimate.php:75
1957
  #, php-format
1958
  msgid "<h1>Oops! Plugin not activated&hellip;</h1> <p>Shortcodes Ultimate is not fully compatible with your version of WordPress (%s).<br />Reccomended WordPress version &ndash; %s (or higher).</p><a href=\"%s\">&larr; Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway &rarr;</a>"
1959
  msgstr "<h1>Упс! Плагин не активирован&hellip;</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией WordPress (%s).<br />Рекомендуемая версия WordPress &ndash; %s (или выше).</p><a href=\"%s\">&larr; Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать &rarr;</a>"
1960
 
1961
+ #: inc/core/class.shortcodes-ultimate.php:76
1962
  #, php-format
1963
  msgid "<h1>Oops! Plugin not activated&hellip;</h1> <p>Shortcodes Ultimate is not fully compatible with your PHP version (%s).<br />Reccomended PHP version &ndash; %s (or higher).</p><a href=\"%s\">&larr; Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway &rarr;</a>"
1964
  msgstr "<h1>Упс! Плагин не активирован&hellip;</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией PHP (%s).<br />Рекомендуемая версия PHP &ndash; %s (или выше).</p><a href=\"%s\">&larr; Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать &rarr;</a>"
1965
 
1966
+ #: inc/core/class.shortcodes-ultimate.php:117
1967
  msgid "Where to start?"
1968
  msgstr "С чего начать?"
1969
 
1970
+ #: inc/core/class.shortcodes-ultimate.php:129
1971
  #: inc/views/about.php:4
1972
  msgid "Project homepage"
1973
  msgstr "Страница проекта"
1974
 
1975
+ #: inc/core/class.shortcodes-ultimate.php:130
1976
  #: inc/views/about.php:10
1977
  msgid "Support forum"
1978
  msgstr "Форум поддержки"
1979
 
1980
+ #: inc/core/class.shortcodes-ultimate.php:131
1981
  #: inc/views/about.php:12
1982
  msgid "Changelog"
1983
  msgstr "Список изменений"
1984
 
1985
+ #: inc/core/class.shortcodes-ultimate.php:141
1986
  msgid "About"
1987
  msgstr "О плагине"
1988
 
1989
+ #: inc/core/class.shortcodes-ultimate.php:146
1990
  msgid "Custom formatting"
1991
  msgstr "Cпециальное форматирование"
1992
 
1993
+ #: inc/core/class.shortcodes-ultimate.php:147
1994
  msgid "Disable this option if you have some problems with other plugins or content formatting"
1995
  msgstr "Снимите этот флажок, если у вас возникли проблемы совместимости с другими плагинами или форматированием контента"
1996
 
1997
+ #: inc/core/class.shortcodes-ultimate.php:147
1998
+ #: inc/core/class.shortcodes-ultimate.php:155
1999
  msgid "Documentation article"
2000
  msgstr "Статья из документации (англ.)"
2001
 
2002
+ #: inc/core/class.shortcodes-ultimate.php:151
2003
+ #: inc/core/class.shortcodes-ultimate.php:159
2004
+ #: inc/core/class.shortcodes-ultimate.php:167
2005
  msgid "Enabled"
2006
  msgstr "Включено"
2007
 
2008
+ #: inc/core/class.shortcodes-ultimate.php:154
2009
  msgid "Compatibility mode"
2010
  msgstr "Режим совместимости"
2011
 
2012
+ #: inc/core/class.shortcodes-ultimate.php:155
2013
  msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
2014
  msgstr "Отметьте этот флажок, если у вас используются другие шорткоды с такими же именами. Все шорткоды этого плагина будут иметь такие имена"
2015
 
2016
+ #: inc/core/class.shortcodes-ultimate.php:155
2017
  msgid "etc."
2018
  msgstr "и т.д."
2019
 
2020
+ #: inc/core/class.shortcodes-ultimate.php:162
2021
  msgid "Skip default values"
2022
  msgstr "Пропускать значения по умолчанию"
2023
 
2024
+ #: inc/core/class.shortcodes-ultimate.php:163
2025
  msgid "Enable this option and the generator will insert a shortcode without default attribute values that you have not changed. As a result, the generated code will be shorter."
2026
  msgstr "Отметьте этот флажок и генератор будет вставлять шорткоды без атрибутов, значение которых вы не изменяли. В результате, сгенерированный код будет более коротким."
2027
 
2028
+ #: inc/core/class.shortcodes-ultimate.php:170
2029
  msgid "Skin"
2030
  msgstr "Скин"
2031
 
2032
+ #: inc/core/class.shortcodes-ultimate.php:171
2033
  #, php-format
2034
  msgid "Choose skin for shortcodes.<br /><a href=\"%s\" target=\"_blank\">Learn how to create custom skin</a><br /><a href=\"%s\" target=\"_blank\"><b>Download more skins</b></a>"
2035
  msgstr "Выберите скин для шорткодов.<br /><a href=\"%s\" target=\"_blank\">Инструкция по созданию собственных скинов (англ.)</a><br /><a href=\"%s\" target=\"_blank\"><b>Скачать скины</b></a>"
2036
 
2037
+ #: inc/core/class.shortcodes-ultimate.php:177
2038
  msgid "Custom CSS"
2039
  msgstr "Произвольный CSS"
2040
 
2041
+ #: inc/core/class.shortcodes-ultimate.php:180
2042
  msgid "Galleries"
2043
  msgstr "Галереи"
2044
 
2045
+ #: inc/core/class.shortcodes-ultimate.php:183
2046
  msgid "Cheatsheet"
2047
  msgstr "Шпаргалка"
2048
 
2082
  msgid "Title:"
2083
  msgstr "Заголовок:"
2084
 
2085
+ #: inc/core/shortcodes.php:469
2086
  msgid "This is box title"
2087
  msgstr "Заголовок блока"
2088
 
2089
+ #: inc/core/shortcodes.php:599
2090
+ #: inc/core/shortcodes.php:632
2091
+ #: inc/core/shortcodes.php:666
2092
+ #: inc/core/shortcodes.php:700
2093
+ #: inc/core/shortcodes.php:740
2094
  msgid "please specify correct url"
2095
  msgstr "пожалуйста укажите корректную ссылку"
2096
 
2097
+ #: inc/core/shortcodes.php:942
2098
  msgid "This menu doesn't exists, or has no elements"
2099
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
2100
 
2101
+ #: inc/core/shortcodes.php:1030
2102
+ #: inc/core/shortcodes.php:1116
2103
+ #: inc/core/shortcodes.php:1185
2104
  msgid "images not found"
2105
  msgstr "изображения не найдены"
2106
 
2107
+ #: inc/core/shortcodes.php:1383
2108
  msgid "template not found"
2109
  msgstr "шаблон не найден"
2110
 
2111
+ #: inc/core/tools.php:234
2112
  msgid "year"
2113
  msgstr "год"
2114
 
2115
+ #: inc/core/tools.php:235
2116
  msgid "month"
2117
  msgstr "месяц"
2118
 
2119
+ #: inc/core/tools.php:236
2120
  msgid "week"
2121
  msgstr "неделя"
2122
 
2123
+ #: inc/core/tools.php:237
2124
  msgid "day"
2125
  msgstr "день"
2126
 
2127
+ #: inc/core/tools.php:238
2128
  msgid "hour"
2129
  msgstr "час"
2130
 
2131
+ #: inc/core/tools.php:239
2132
  msgid "minute"
2133
  msgstr "минута"
2134
 
2135
+ #: inc/core/tools.php:248
2136
+ #: inc/core/tools.php:255
2137
  msgid "s"
2138
  msgstr "с"
2139
 
2140
+ #: inc/core/tools.php:291
2141
  msgid "username not specified"
2142
  msgstr "имя пользователя не задано"
2143
 
2144
+ #: inc/core/tools.php:296
2145
  msgid "no public messages"
2146
  msgstr "нет публичных твитов"
2147
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
5
  Tags: shortcode, shortcodes, short code, video, responsive, responsive video, youtube, vimeo, audio, mp3, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordion, slider, plugin, admin, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, guests, membership, documents, carousel, rss, touch, icon, icons
6
  Requires at least: 3.4
7
  Tested up to: 4.0
8
- Stable tag: 4.0.8
9
 
10
  Supercharge your WordPress theme with mega pack of shortcodes
11
 
@@ -86,6 +86,11 @@ Upgrade normally via your Wordpress admin -> Plugins panel.
86
 
87
  == Changelog ==
88
 
 
 
 
 
 
89
  = 4.0.8 =
90
  * Added backward compatibility for [media]. Shortcode has basic support for youtube and vimeo videos
91
  * Fixed bug with hidden single [tab]
5
  Tags: shortcode, shortcodes, short code, video, responsive, responsive video, youtube, vimeo, audio, mp3, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordion, slider, plugin, admin, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, guests, membership, documents, carousel, rss, touch, icon, icons
6
  Requires at least: 3.4
7
  Tested up to: 4.0
8
+ Stable tag: 4.0.9
9
 
10
  Supercharge your WordPress theme with mega pack of shortcodes
11
 
86
 
87
  == Changelog ==
88
 
89
+ = 4.0.9 =
90
+ * Updated [frame]. Now it can contain other shortcodes
91
+ * Updated caching mechanism. Cache now will be reseted on plugin activation
92
+ * Fixed many PHP warnings when debug mode enabled
93
+
94
  = 4.0.8 =
95
  * Added backward compatibility for [media]. Shortcode has basic support for youtube and vimeo videos
96
  * Fixed bug with hidden single [tab]
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.0.8
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.0.9
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Supercharge your WordPress theme with mega pack of shortcodes