Shortcodes Ultimate - Version 4.7.1

Version Description

  • Slovak language
  • New shortcode [dailymotion]
  • YouTube (advanced) can now use https protocol
  • Additional help notes in Shortcode Generator
Download this release

Release Info

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

Code changes from version 4.7.0 to 4.7.1

assets/css/generator.css CHANGED
@@ -110,9 +110,9 @@
110
  cursor: pointer;
111
  }
112
  #su-generator-choices span:hover {
 
113
  background: #333;
114
  color: #fff;
115
- border-bottom: 1px solid #333;
116
  }
117
  #su-generator-choices span img {
118
  position: absolute;
@@ -123,8 +123,8 @@
123
  }
124
  #su-generator-choices span i {
125
  position: absolute;
126
- left: 1px;
127
  top: 1px;
 
128
  display: block;
129
  width: 26px;
130
  height: 26px;
@@ -155,6 +155,37 @@
155
  font-size: 0.9em;
156
  }
157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  /* Attribute container */
159
  #su-generator-settings .su-generator-attr-container {
160
  margin: 0 -20px;
110
  cursor: pointer;
111
  }
112
  #su-generator-choices span:hover {
113
+ border-bottom: 1px solid #333;
114
  background: #333;
115
  color: #fff;
 
116
  }
117
  #su-generator-choices span img {
118
  position: absolute;
123
  }
124
  #su-generator-choices span i {
125
  position: absolute;
 
126
  top: 1px;
127
+ left: 1px;
128
  display: block;
129
  width: 26px;
130
  height: 26px;
155
  font-size: 0.9em;
156
  }
157
 
158
+ /* Notes */
159
+ .su-generator-note {
160
+ position: relative;
161
+ margin: 0 -20px;
162
+ padding: 5px 20px;
163
+ background: #FFFFB8;
164
+ border-bottom: 1px solid #ccc;
165
+ color: #333;
166
+ line-height: 18px;
167
+ }
168
+ .su-generator-note-content {
169
+ min-height: 20px;
170
+ margin-left: 35px;
171
+ }
172
+ .su-generator-note p { margin: 10px 0; }
173
+ .su-generator-note a {
174
+ text-decoration: underline;
175
+ }
176
+ .su-generator-note i {
177
+ position: absolute;
178
+ top: 15px;
179
+ left: 20px;
180
+ display: block;
181
+ width: 1em;
182
+ height: 1em;
183
+ color: #555;
184
+ text-align: left;
185
+ font-size: 20px;
186
+ line-height: 1em;
187
+ }
188
+
189
  /* Attribute container */
190
  #su-generator-settings .su-generator-attr-container {
191
  margin: 0 -20px;
assets/css/media-shortcodes.css CHANGED
@@ -36,6 +36,12 @@
36
  .su-screenr { margin: 0 0 1.5em 0 }
37
  .su-screenr iframe { border: none !important }
38
 
 
 
 
 
 
 
39
  /* Document
40
  ---------------------------------------------------------------*/
41
 
36
  .su-screenr { margin: 0 0 1.5em 0 }
37
  .su-screenr iframe { border: none !important }
38
 
39
+ /* Dailymotion
40
+ ---------------------------------------------------------------*/
41
+
42
+ .su-dailymotion { margin: 0 0 1.5em 0 }
43
+ .su-dailymotion iframe { border: none !important }
44
+
45
  /* Document
46
  ---------------------------------------------------------------*/
47
 
assets/js/file-upload.js DELETED
@@ -1,1315 +0,0 @@
1
- /*
2
- * jQuery File Upload Plugin 5.31.6
3
- * https://github.com/blueimp/jQuery-File-Upload
4
- *
5
- * Copyright 2010, Sebastian Tschan
6
- * https://blueimp.net
7
- *
8
- * Licensed under the MIT license:
9
- * http://www.opensource.org/licenses/MIT
10
- */
11
-
12
- /*jslint nomen: true, unparam: true, regexp: true */
13
- /*global define, window, document, location, File, Blob, FormData */
14
-
15
- (function (factory) {
16
- 'use strict';
17
- if (typeof define === 'function' && define.amd) {
18
- // Register as an anonymous AMD module:
19
- define([
20
- 'jquery',
21
- 'jquery.ui.widget'
22
- ], factory);
23
- } else {
24
- // Browser globals:
25
- factory(window.jQuery);
26
- }
27
- }(function ($) {
28
- 'use strict';
29
-
30
- // The FileReader API is not actually used, but works as feature detection,
31
- // as e.g. Safari supports XHR file uploads via the FormData API,
32
- // but not non-multipart XHR file uploads:
33
- $.support.xhrFileUpload = !!(window.XMLHttpRequestUpload && window.FileReader);
34
- $.support.xhrFormDataFileUpload = !!window.FormData;
35
-
36
- // Detect support for Blob slicing (required for chunked uploads):
37
- $.support.blobSlice = window.Blob && (Blob.prototype.slice ||
38
- Blob.prototype.webkitSlice || Blob.prototype.mozSlice);
39
-
40
- // The fileupload widget listens for change events on file input fields defined
41
- // via fileInput setting and paste or drop events of the given dropZone.
42
- // In addition to the default jQuery Widget methods, the fileupload widget
43
- // exposes the "add" and "send" methods, to add or directly send files using
44
- // the fileupload API.
45
- // By default, files added via file input selection, paste, drag & drop or
46
- // "add" method are uploaded immediately, but it is possible to override
47
- // the "add" callback option to queue file uploads.
48
- $.widget('blueimp.fileupload', {
49
-
50
- options: {
51
- // The drop target element(s), by the default the complete document.
52
- // Set to null to disable drag & drop support:
53
- dropZone: $(document),
54
- // The paste target element(s), by the default the complete document.
55
- // Set to null to disable paste support:
56
- pasteZone: $(document),
57
- // The file input field(s), that are listened to for change events.
58
- // If undefined, it is set to the file input fields inside
59
- // of the widget element on plugin initialization.
60
- // Set to null to disable the change listener.
61
- fileInput: undefined,
62
- // By default, the file input field is replaced with a clone after
63
- // each input field change event. This is required for iframe transport
64
- // queues and allows change events to be fired for the same file
65
- // selection, but can be disabled by setting the following option to false:
66
- replaceFileInput: true,
67
- // The parameter name for the file form data (the request argument name).
68
- // If undefined or empty, the name property of the file input field is
69
- // used, or "files[]" if the file input name property is also empty,
70
- // can be a string or an array of strings:
71
- paramName: undefined,
72
- // By default, each file of a selection is uploaded using an individual
73
- // request for XHR type uploads. Set to false to upload file
74
- // selections in one request each:
75
- singleFileUploads: true,
76
- // To limit the number of files uploaded with one XHR request,
77
- // set the following option to an integer greater than 0:
78
- limitMultiFileUploads: undefined,
79
- // Set the following option to true to issue all file upload requests
80
- // in a sequential order:
81
- sequentialUploads: false,
82
- // To limit the number of concurrent uploads,
83
- // set the following option to an integer greater than 0:
84
- limitConcurrentUploads: undefined,
85
- // Set the following option to true to force iframe transport uploads:
86
- forceIframeTransport: false,
87
- // Set the following option to the location of a redirect url on the
88
- // origin server, for cross-domain iframe transport uploads:
89
- redirect: undefined,
90
- // The parameter name for the redirect url, sent as part of the form
91
- // data and set to 'redirect' if this option is empty:
92
- redirectParamName: undefined,
93
- // Set the following option to the location of a postMessage window,
94
- // to enable postMessage transport uploads:
95
- postMessage: undefined,
96
- // By default, XHR file uploads are sent as multipart/form-data.
97
- // The iframe transport is always using multipart/form-data.
98
- // Set to false to enable non-multipart XHR uploads:
99
- multipart: true,
100
- // To upload large files in smaller chunks, set the following option
101
- // to a preferred maximum chunk size. If set to 0, null or undefined,
102
- // or the browser does not support the required Blob API, files will
103
- // be uploaded as a whole.
104
- maxChunkSize: undefined,
105
- // When a non-multipart upload or a chunked multipart upload has been
106
- // aborted, this option can be used to resume the upload by setting
107
- // it to the size of the already uploaded bytes. This option is most
108
- // useful when modifying the options object inside of the "add" or
109
- // "send" callbacks, as the options are cloned for each file upload.
110
- uploadedBytes: undefined,
111
- // By default, failed (abort or error) file uploads are removed from the
112
- // global progress calculation. Set the following option to false to
113
- // prevent recalculating the global progress data:
114
- recalculateProgress: true,
115
- // Interval in milliseconds to calculate and trigger progress events:
116
- progressInterval: 100,
117
- // Interval in milliseconds to calculate progress bitrate:
118
- bitrateInterval: 500,
119
- // By default, uploads are started automatically when adding files:
120
- autoUpload: true,
121
-
122
- // Error and info messages:
123
- messages: {
124
- uploadedBytes: 'Uploaded bytes exceed file size'
125
- },
126
-
127
- // Translation function, gets the message key to be translated
128
- // and an object with context specific data as arguments:
129
- i18n: function (message, context) {
130
- message = this.messages[message] || message.toString();
131
- if (context) {
132
- $.each(context, function (key, value) {
133
- message = message.replace('{' + key + '}', value);
134
- });
135
- }
136
- return message;
137
- },
138
-
139
- // Additional form data to be sent along with the file uploads can be set
140
- // using this option, which accepts an array of objects with name and
141
- // value properties, a function returning such an array, a FormData
142
- // object (for XHR file uploads), or a simple object.
143
- // The form of the first fileInput is given as parameter to the function:
144
- formData: function (form) {
145
- return form.serializeArray();
146
- },
147
-
148
- // The add callback is invoked as soon as files are added to the fileupload
149
- // widget (via file input selection, drag & drop, paste or add API call).
150
- // If the singleFileUploads option is enabled, this callback will be
151
- // called once for each file in the selection for XHR file uploads, else
152
- // once for each file selection.
153
- //
154
- // The upload starts when the submit method is invoked on the data parameter.
155
- // The data object contains a files property holding the added files
156
- // and allows you to override plugin options as well as define ajax settings.
157
- //
158
- // Listeners for this callback can also be bound the following way:
159
- // .bind('fileuploadadd', func);
160
- //
161
- // data.submit() returns a Promise object and allows to attach additional
162
- // handlers using jQuery's Deferred callbacks:
163
- // data.submit().done(func).fail(func).always(func);
164
- add: function (e, data) {
165
- if (data.autoUpload || (data.autoUpload !== false &&
166
- $(this).fileupload('option', 'autoUpload'))) {
167
- data.process().done(function () {
168
- data.submit();
169
- });
170
- }
171
- },
172
-
173
- // Other callbacks:
174
-
175
- // Callback for the submit event of each file upload:
176
- // submit: function (e, data) {}, // .bind('fileuploadsubmit', func);
177
-
178
- // Callback for the start of each file upload request:
179
- // send: function (e, data) {}, // .bind('fileuploadsend', func);
180
-
181
- // Callback for successful uploads:
182
- // done: function (e, data) {}, // .bind('fileuploaddone', func);
183
-
184
- // Callback for failed (abort or error) uploads:
185
- // fail: function (e, data) {}, // .bind('fileuploadfail', func);
186
-
187
- // Callback for completed (success, abort or error) requests:
188
- // always: function (e, data) {}, // .bind('fileuploadalways', func);
189
-
190
- // Callback for upload progress events:
191
- // progress: function (e, data) {}, // .bind('fileuploadprogress', func);
192
-
193
- // Callback for global upload progress events:
194
- // progressall: function (e, data) {}, // .bind('fileuploadprogressall', func);
195
-
196
- // Callback for uploads start, equivalent to the global ajaxStart event:
197
- // start: function (e) {}, // .bind('fileuploadstart', func);
198
-
199
- // Callback for uploads stop, equivalent to the global ajaxStop event:
200
- // stop: function (e) {}, // .bind('fileuploadstop', func);
201
-
202
- // Callback for change events of the fileInput(s):
203
- // change: function (e, data) {}, // .bind('fileuploadchange', func);
204
-
205
- // Callback for paste events to the pasteZone(s):
206
- // paste: function (e, data) {}, // .bind('fileuploadpaste', func);
207
-
208
- // Callback for drop events of the dropZone(s):
209
- // drop: function (e, data) {}, // .bind('fileuploaddrop', func);
210
-
211
- // Callback for dragover events of the dropZone(s):
212
- // dragover: function (e) {}, // .bind('fileuploaddragover', func);
213
-
214
- // Callback for the start of each chunk upload request:
215
- // chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func);
216
-
217
- // Callback for successful chunk uploads:
218
- // chunkdone: function (e, data) {}, // .bind('fileuploadchunkdone', func);
219
-
220
- // Callback for failed (abort or error) chunk uploads:
221
- // chunkfail: function (e, data) {}, // .bind('fileuploadchunkfail', func);
222
-
223
- // Callback for completed (success, abort or error) chunk upload requests:
224
- // chunkalways: function (e, data) {}, // .bind('fileuploadchunkalways', func);
225
-
226
- // The plugin options are used as settings object for the ajax calls.
227
- // The following are jQuery ajax settings required for the file uploads:
228
- processData: false,
229
- contentType: false,
230
- cache: false
231
- },
232
-
233
- // A list of options that require reinitializing event listeners and/or
234
- // special initialization code:
235
- _specialOptions: [
236
- 'fileInput',
237
- 'dropZone',
238
- 'pasteZone',
239
- 'multipart',
240
- 'forceIframeTransport'
241
- ],
242
-
243
- _blobSlice: $.support.blobSlice && function () {
244
- var slice = this.slice || this.webkitSlice || this.mozSlice;
245
- return slice.apply(this, arguments);
246
- },
247
-
248
- _BitrateTimer: function () {
249
- this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime());
250
- this.loaded = 0;
251
- this.bitrate = 0;
252
- this.getBitrate = function (now, loaded, interval) {
253
- var timeDiff = now - this.timestamp;
254
- if (!this.bitrate || !interval || timeDiff > interval) {
255
- this.bitrate = (loaded - this.loaded) * (1000 / timeDiff) * 8;
256
- this.loaded = loaded;
257
- this.timestamp = now;
258
- }
259
- return this.bitrate;
260
- };
261
- },
262
-
263
- _isXHRUpload: function (options) {
264
- return !options.forceIframeTransport &&
265
- ((!options.multipart && $.support.xhrFileUpload) ||
266
- $.support.xhrFormDataFileUpload);
267
- },
268
-
269
- _getFormData: function (options) {
270
- var formData;
271
- if (typeof options.formData === 'function') {
272
- return options.formData(options.form);
273
- }
274
- if ($.isArray(options.formData)) {
275
- return options.formData;
276
- }
277
- if ($.type(options.formData) === 'object') {
278
- formData = [];
279
- $.each(options.formData, function (name, value) {
280
- formData.push({name: name, value: value});
281
- });
282
- return formData;
283
- }
284
- return [];
285
- },
286
-
287
- _getTotal: function (files) {
288
- var total = 0;
289
- $.each(files, function (index, file) {
290
- total += file.size || 1;
291
- });
292
- return total;
293
- },
294
-
295
- _initProgressObject: function (obj) {
296
- var progress = {
297
- loaded: 0,
298
- total: 0,
299
- bitrate: 0
300
- };
301
- if (obj._progress) {
302
- $.extend(obj._progress, progress);
303
- } else {
304
- obj._progress = progress;
305
- }
306
- },
307
-
308
- _initResponseObject: function (obj) {
309
- var prop;
310
- if (obj._response) {
311
- for (prop in obj._response) {
312
- if (obj._response.hasOwnProperty(prop)) {
313
- delete obj._response[prop];
314
- }
315
- }
316
- } else {
317
- obj._response = {};
318
- }
319
- },
320
-
321
- _onProgress: function (e, data) {
322
- if (e.lengthComputable) {
323
- var now = ((Date.now) ? Date.now() : (new Date()).getTime()),
324
- loaded;
325
- if (data._time && data.progressInterval &&
326
- (now - data._time < data.progressInterval) &&
327
- e.loaded !== e.total) {
328
- return;
329
- }
330
- data._time = now;
331
- loaded = Math.floor(
332
- e.loaded / e.total * (data.chunkSize || data._progress.total)
333
- ) + (data.uploadedBytes || 0);
334
- // Add the difference from the previously loaded state
335
- // to the global loaded counter:
336
- this._progress.loaded += (loaded - data._progress.loaded);
337
- this._progress.bitrate = this._bitrateTimer.getBitrate(
338
- now,
339
- this._progress.loaded,
340
- data.bitrateInterval
341
- );
342
- data._progress.loaded = data.loaded = loaded;
343
- data._progress.bitrate = data.bitrate = data._bitrateTimer.getBitrate(
344
- now,
345
- loaded,
346
- data.bitrateInterval
347
- );
348
- // Trigger a custom progress event with a total data property set
349
- // to the file size(s) of the current upload and a loaded data
350
- // property calculated accordingly:
351
- this._trigger('progress', e, data);
352
- // Trigger a global progress event for all current file uploads,
353
- // including ajax calls queued for sequential file uploads:
354
- this._trigger('progressall', e, this._progress);
355
- }
356
- },
357
-
358
- _initProgressListener: function (options) {
359
- var that = this,
360
- xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr();
361
- // Accesss to the native XHR object is required to add event listeners
362
- // for the upload progress event:
363
- if (xhr.upload) {
364
- $(xhr.upload).bind('progress', function (e) {
365
- var oe = e.originalEvent;
366
- // Make sure the progress event properties get copied over:
367
- e.lengthComputable = oe.lengthComputable;
368
- e.loaded = oe.loaded;
369
- e.total = oe.total;
370
- that._onProgress(e, options);
371
- });
372
- options.xhr = function () {
373
- return xhr;
374
- };
375
- }
376
- },
377
-
378
- _isInstanceOf: function (type, obj) {
379
- // Cross-frame instanceof check
380
- return Object.prototype.toString.call(obj) === '[object ' + type + ']';
381
- },
382
-
383
- _initXHRData: function (options) {
384
- var that = this,
385
- formData,
386
- file = options.files[0],
387
- // Ignore non-multipart setting if not supported:
388
- multipart = options.multipart || !$.support.xhrFileUpload,
389
- paramName = options.paramName[0];
390
- options.headers = options.headers || {};
391
- if (options.contentRange) {
392
- options.headers['Content-Range'] = options.contentRange;
393
- }
394
- if (!multipart || options.blob || !this._isInstanceOf('File', file)) {
395
- options.headers['Content-Disposition'] = 'attachment; filename="' +
396
- encodeURI(file.name) + '"';
397
- }
398
- if (!multipart) {
399
- options.contentType = file.type;
400
- options.data = options.blob || file;
401
- } else if ($.support.xhrFormDataFileUpload) {
402
- if (options.postMessage) {
403
- // window.postMessage does not allow sending FormData
404
- // objects, so we just add the File/Blob objects to
405
- // the formData array and let the postMessage window
406
- // create the FormData object out of this array:
407
- formData = this._getFormData(options);
408
- if (options.blob) {
409
- formData.push({
410
- name: paramName,
411
- value: options.blob
412
- });
413
- } else {
414
- $.each(options.files, function (index, file) {
415
- formData.push({
416
- name: options.paramName[index] || paramName,
417
- value: file
418
- });
419
- });
420
- }
421
- } else {
422
- if (that._isInstanceOf('FormData', options.formData)) {
423
- formData = options.formData;
424
- } else {
425
- formData = new FormData();
426
- $.each(this._getFormData(options), function (index, field) {
427
- formData.append(field.name, field.value);
428
- });
429
- }
430
- if (options.blob) {
431
- formData.append(paramName, options.blob, file.name);
432
- } else {
433
- $.each(options.files, function (index, file) {
434
- // This check allows the tests to run with
435
- // dummy objects:
436
- if (that._isInstanceOf('File', file) ||
437
- that._isInstanceOf('Blob', file)) {
438
- formData.append(
439
- options.paramName[index] || paramName,
440
- file,
441
- file.name
442
- );
443
- }
444
- });
445
- }
446
- }
447
- options.data = formData;
448
- }
449
- // Blob reference is not needed anymore, free memory:
450
- options.blob = null;
451
- },
452
-
453
- _initIframeSettings: function (options) {
454
- var targetHost = $('<a></a>').prop('href', options.url).prop('host');
455
- // Setting the dataType to iframe enables the iframe transport:
456
- options.dataType = 'iframe ' + (options.dataType || '');
457
- // The iframe transport accepts a serialized array as form data:
458
- options.formData = this._getFormData(options);
459
- // Add redirect url to form data on cross-domain uploads:
460
- if (options.redirect && targetHost && targetHost !== location.host) {
461
- options.formData.push({
462
- name: options.redirectParamName || 'redirect',
463
- value: options.redirect
464
- });
465
- }
466
- },
467
-
468
- _initDataSettings: function (options) {
469
- if (this._isXHRUpload(options)) {
470
- if (!this._chunkedUpload(options, true)) {
471
- if (!options.data) {
472
- this._initXHRData(options);
473
- }
474
- this._initProgressListener(options);
475
- }
476
- if (options.postMessage) {
477
- // Setting the dataType to postmessage enables the
478
- // postMessage transport:
479
- options.dataType = 'postmessage ' + (options.dataType || '');
480
- }
481
- } else {
482
- this._initIframeSettings(options);
483
- }
484
- },
485
-
486
- _getParamName: function (options) {
487
- var fileInput = $(options.fileInput),
488
- paramName = options.paramName;
489
- if (!paramName) {
490
- paramName = [];
491
- fileInput.each(function () {
492
- var input = $(this),
493
- name = input.prop('name') || 'files[]',
494
- i = (input.prop('files') || [1]).length;
495
- while (i) {
496
- paramName.push(name);
497
- i -= 1;
498
- }
499
- });
500
- if (!paramName.length) {
501
- paramName = [fileInput.prop('name') || 'files[]'];
502
- }
503
- } else if (!$.isArray(paramName)) {
504
- paramName = [paramName];
505
- }
506
- return paramName;
507
- },
508
-
509
- _initFormSettings: function (options) {
510
- // Retrieve missing options from the input field and the
511
- // associated form, if available:
512
- if (!options.form || !options.form.length) {
513
- options.form = $(options.fileInput.prop('form'));
514
- // If the given file input doesn't have an associated form,
515
- // use the default widget file input's form:
516
- if (!options.form.length) {
517
- options.form = $(this.options.fileInput.prop('form'));
518
- }
519
- }
520
- options.paramName = this._getParamName(options);
521
- if (!options.url) {
522
- options.url = options.form.prop('action') || location.href;
523
- }
524
- // The HTTP request method must be "POST" or "PUT":
525
- options.type = (options.type || options.form.prop('method') || '')
526
- .toUpperCase();
527
- if (options.type !== 'POST' && options.type !== 'PUT' &&
528
- options.type !== 'PATCH') {
529
- options.type = 'POST';
530
- }
531
- if (!options.formAcceptCharset) {
532
- options.formAcceptCharset = options.form.attr('accept-charset');
533
- }
534
- },
535
-
536
- _getAJAXSettings: function (data) {
537
- var options = $.extend({}, this.options, data);
538
- this._initFormSettings(options);
539
- this._initDataSettings(options);
540
- return options;
541
- },
542
-
543
- // jQuery 1.6 doesn't provide .state(),
544
- // while jQuery 1.8+ removed .isRejected() and .isResolved():
545
- _getDeferredState: function (deferred) {
546
- if (deferred.state) {
547
- return deferred.state();
548
- }
549
- if (deferred.isResolved()) {
550
- return 'resolved';
551
- }
552
- if (deferred.isRejected()) {
553
- return 'rejected';
554
- }
555
- return 'pending';
556
- },
557
-
558
- // Maps jqXHR callbacks to the equivalent
559
- // methods of the given Promise object:
560
- _enhancePromise: function (promise) {
561
- promise.success = promise.done;
562
- promise.error = promise.fail;
563
- promise.complete = promise.always;
564
- return promise;
565
- },
566
-
567
- // Creates and returns a Promise object enhanced with
568
- // the jqXHR methods abort, success, error and complete:
569
- _getXHRPromise: function (resolveOrReject, context, args) {
570
- var dfd = $.Deferred(),
571
- promise = dfd.promise();
572
- context = context || this.options.context || promise;
573
- if (resolveOrReject === true) {
574
- dfd.resolveWith(context, args);
575
- } else if (resolveOrReject === false) {
576
- dfd.rejectWith(context, args);
577
- }
578
- promise.abort = dfd.promise;
579
- return this._enhancePromise(promise);
580
- },
581
-
582
- // Adds convenience methods to the data callback argument:
583
- _addConvenienceMethods: function (e, data) {
584
- var that = this,
585
- getPromise = function (data) {
586
- return $.Deferred().resolveWith(that, [data]).promise();
587
- };
588
- data.process = function (resolveFunc, rejectFunc) {
589
- if (resolveFunc || rejectFunc) {
590
- data._processQueue = this._processQueue =
591
- (this._processQueue || getPromise(this))
592
- .pipe(resolveFunc, rejectFunc);
593
- }
594
- return this._processQueue || getPromise(this);
595
- };
596
- data.submit = function () {
597
- if (this.state() !== 'pending') {
598
- data.jqXHR = this.jqXHR =
599
- (that._trigger('submit', e, this) !== false) &&
600
- that._onSend(e, this);
601
- }
602
- return this.jqXHR || that._getXHRPromise();
603
- };
604
- data.abort = function () {
605
- if (this.jqXHR) {
606
- return this.jqXHR.abort();
607
- }
608
- return that._getXHRPromise();
609
- };
610
- data.state = function () {
611
- if (this.jqXHR) {
612
- return that._getDeferredState(this.jqXHR);
613
- }
614
- if (this._processQueue) {
615
- return that._getDeferredState(this._processQueue);
616
- }
617
- };
618
- data.progress = function () {
619
- return this._progress;
620
- };
621
- data.response = function () {
622
- return this._response;
623
- };
624
- },
625
-
626
- // Parses the Range header from the server response
627
- // and returns the uploaded bytes:
628
- _getUploadedBytes: function (jqXHR) {
629
- var range = jqXHR.getResponseHeader('Range'),
630
- parts = range && range.split('-'),
631
- upperBytesPos = parts && parts.length > 1 &&
632
- parseInt(parts[1], 10);
633
- return upperBytesPos && upperBytesPos + 1;
634
- },
635
-
636
- // Uploads a file in multiple, sequential requests
637
- // by splitting the file up in multiple blob chunks.
638
- // If the second parameter is true, only tests if the file
639
- // should be uploaded in chunks, but does not invoke any
640
- // upload requests:
641
- _chunkedUpload: function (options, testOnly) {
642
- options.uploadedBytes = options.uploadedBytes || 0;
643
- var that = this,
644
- file = options.files[0],
645
- fs = file.size,
646
- ub = options.uploadedBytes,
647
- mcs = options.maxChunkSize || fs,
648
- slice = this._blobSlice,
649
- dfd = $.Deferred(),
650
- promise = dfd.promise(),
651
- jqXHR,
652
- upload;
653
- if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) ||
654
- options.data) {
655
- return false;
656
- }
657
- if (testOnly) {
658
- return true;
659
- }
660
- if (ub >= fs) {
661
- file.error = options.i18n('uploadedBytes');
662
- return this._getXHRPromise(
663
- false,
664
- options.context,
665
- [null, 'error', file.error]
666
- );
667
- }
668
- // The chunk upload method:
669
- upload = function () {
670
- // Clone the options object for each chunk upload:
671
- var o = $.extend({}, options),
672
- currentLoaded = o._progress.loaded;
673
- o.blob = slice.call(
674
- file,
675
- ub,
676
- ub + mcs,
677
- file.type
678
- );
679
- // Store the current chunk size, as the blob itself
680
- // will be dereferenced after data processing:
681
- o.chunkSize = o.blob.size;
682
- // Expose the chunk bytes position range:
683
- o.contentRange = 'bytes ' + ub + '-' +
684
- (ub + o.chunkSize - 1) + '/' + fs;
685
- // Process the upload data (the blob and potential form data):
686
- that._initXHRData(o);
687
- // Add progress listeners for this chunk upload:
688
- that._initProgressListener(o);
689
- jqXHR = ((that._trigger('chunksend', null, o) !== false && $.ajax(o)) ||
690
- that._getXHRPromise(false, o.context))
691
- .done(function (result, textStatus, jqXHR) {
692
- ub = that._getUploadedBytes(jqXHR) ||
693
- (ub + o.chunkSize);
694
- // Create a progress event if no final progress event
695
- // with loaded equaling total has been triggered
696
- // for this chunk:
697
- if (currentLoaded + o.chunkSize - o._progress.loaded) {
698
- that._onProgress($.Event('progress', {
699
- lengthComputable: true,
700
- loaded: ub - o.uploadedBytes,
701
- total: ub - o.uploadedBytes
702
- }), o);
703
- }
704
- options.uploadedBytes = o.uploadedBytes = ub;
705
- o.result = result;
706
- o.textStatus = textStatus;
707
- o.jqXHR = jqXHR;
708
- that._trigger('chunkdone', null, o);
709
- that._trigger('chunkalways', null, o);
710
- if (ub < fs) {
711
- // File upload not yet complete,
712
- // continue with the next chunk:
713
- upload();
714
- } else {
715
- dfd.resolveWith(
716
- o.context,
717
- [result, textStatus, jqXHR]
718
- );
719
- }
720
- })
721
- .fail(function (jqXHR, textStatus, errorThrown) {
722
- o.jqXHR = jqXHR;
723
- o.textStatus = textStatus;
724
- o.errorThrown = errorThrown;
725
- that._trigger('chunkfail', null, o);
726
- that._trigger('chunkalways', null, o);
727
- dfd.rejectWith(
728
- o.context,
729
- [jqXHR, textStatus, errorThrown]
730
- );
731
- });
732
- };
733
- this._enhancePromise(promise);
734
- promise.abort = function () {
735
- return jqXHR.abort();
736
- };
737
- upload();
738
- return promise;
739
- },
740
-
741
- _beforeSend: function (e, data) {
742
- if (this._active === 0) {
743
- // the start callback is triggered when an upload starts
744
- // and no other uploads are currently running,
745
- // equivalent to the global ajaxStart event:
746
- this._trigger('start');
747
- // Set timer for global bitrate progress calculation:
748
- this._bitrateTimer = new this._BitrateTimer();
749
- // Reset the global progress values:
750
- this._progress.loaded = this._progress.total = 0;
751
- this._progress.bitrate = 0;
752
- }
753
- // Make sure the container objects for the .response() and
754
- // .progress() methods on the data object are available
755
- // and reset to their initial state:
756
- this._initResponseObject(data);
757
- this._initProgressObject(data);
758
- data._progress.loaded = data.loaded = data.uploadedBytes || 0;
759
- data._progress.total = data.total = this._getTotal(data.files) || 1;
760
- data._progress.bitrate = data.bitrate = 0;
761
- this._active += 1;
762
- // Initialize the global progress values:
763
- this._progress.loaded += data.loaded;
764
- this._progress.total += data.total;
765
- },
766
-
767
- _onDone: function (result, textStatus, jqXHR, options) {
768
- var total = options._progress.total,
769
- response = options._response;
770
- if (options._progress.loaded < total) {
771
- // Create a progress event if no final progress event
772
- // with loaded equaling total has been triggered:
773
- this._onProgress($.Event('progress', {
774
- lengthComputable: true,
775
- loaded: total,
776
- total: total
777
- }), options);
778
- }
779
- response.result = options.result = result;
780
- response.textStatus = options.textStatus = textStatus;
781
- response.jqXHR = options.jqXHR = jqXHR;
782
- this._trigger('done', null, options);
783
- },
784
-
785
- _onFail: function (jqXHR, textStatus, errorThrown, options) {
786
- var response = options._response;
787
- if (options.recalculateProgress) {
788
- // Remove the failed (error or abort) file upload from
789
- // the global progress calculation:
790
- this._progress.loaded -= options._progress.loaded;
791
- this._progress.total -= options._progress.total;
792
- }
793
- response.jqXHR = options.jqXHR = jqXHR;
794
- response.textStatus = options.textStatus = textStatus;
795
- response.errorThrown = options.errorThrown = errorThrown;
796
- this._trigger('fail', null, options);
797
- },
798
-
799
- _onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) {
800
- // jqXHRorResult, textStatus and jqXHRorError are added to the
801
- // options object via done and fail callbacks
802
- this._trigger('always', null, options);
803
- },
804
-
805
- _onSend: function (e, data) {
806
- if (!data.submit) {
807
- this._addConvenienceMethods(e, data);
808
- }
809
- var that = this,
810
- jqXHR,
811
- aborted,
812
- slot,
813
- pipe,
814
- options = that._getAJAXSettings(data),
815
- send = function () {
816
- that._sending += 1;
817
- // Set timer for bitrate progress calculation:
818
- options._bitrateTimer = new that._BitrateTimer();
819
- jqXHR = jqXHR || (
820
- ((aborted || that._trigger('send', e, options) === false) &&
821
- that._getXHRPromise(false, options.context, aborted)) ||
822
- that._chunkedUpload(options) || $.ajax(options)
823
- ).done(function (result, textStatus, jqXHR) {
824
- that._onDone(result, textStatus, jqXHR, options);
825
- }).fail(function (jqXHR, textStatus, errorThrown) {
826
- that._onFail(jqXHR, textStatus, errorThrown, options);
827
- }).always(function (jqXHRorResult, textStatus, jqXHRorError) {
828
- that._onAlways(
829
- jqXHRorResult,
830
- textStatus,
831
- jqXHRorError,
832
- options
833
- );
834
- that._sending -= 1;
835
- that._active -= 1;
836
- if (options.limitConcurrentUploads &&
837
- options.limitConcurrentUploads > that._sending) {
838
- // Start the next queued upload,
839
- // that has not been aborted:
840
- var nextSlot = that._slots.shift();
841
- while (nextSlot) {
842
- if (that._getDeferredState(nextSlot) === 'pending') {
843
- nextSlot.resolve();
844
- break;
845
- }
846
- nextSlot = that._slots.shift();
847
- }
848
- }
849
- if (that._active === 0) {
850
- // The stop callback is triggered when all uploads have
851
- // been completed, equivalent to the global ajaxStop event:
852
- that._trigger('stop');
853
- }
854
- });
855
- return jqXHR;
856
- };
857
- this._beforeSend(e, options);
858
- if (this.options.sequentialUploads ||
859
- (this.options.limitConcurrentUploads &&
860
- this.options.limitConcurrentUploads <= this._sending)) {
861
- if (this.options.limitConcurrentUploads > 1) {
862
- slot = $.Deferred();
863
- this._slots.push(slot);
864
- pipe = slot.pipe(send);
865
- } else {
866
- this._sequence = this._sequence.pipe(send, send);
867
- pipe = this._sequence;
868
- }
869
- // Return the piped Promise object, enhanced with an abort method,
870
- // which is delegated to the jqXHR object of the current upload,
871
- // and jqXHR callbacks mapped to the equivalent Promise methods:
872
- pipe.abort = function () {
873
- aborted = [undefined, 'abort', 'abort'];
874
- if (!jqXHR) {
875
- if (slot) {
876
- slot.rejectWith(options.context, aborted);
877
- }
878
- return send();
879
- }
880
- return jqXHR.abort();
881
- };
882
- return this._enhancePromise(pipe);
883
- }
884
- return send();
885
- },
886
-
887
- _onAdd: function (e, data) {
888
- var that = this,
889
- result = true,
890
- options = $.extend({}, this.options, data),
891
- limit = options.limitMultiFileUploads,
892
- paramName = this._getParamName(options),
893
- paramNameSet,
894
- paramNameSlice,
895
- fileSet,
896
- i;
897
- if (!(options.singleFileUploads || limit) ||
898
- !this._isXHRUpload(options)) {
899
- fileSet = [data.files];
900
- paramNameSet = [paramName];
901
- } else if (!options.singleFileUploads && limit) {
902
- fileSet = [];
903
- paramNameSet = [];
904
- for (i = 0; i < data.files.length; i += limit) {
905
- fileSet.push(data.files.slice(i, i + limit));
906
- paramNameSlice = paramName.slice(i, i + limit);
907
- if (!paramNameSlice.length) {
908
- paramNameSlice = paramName;
909
- }
910
- paramNameSet.push(paramNameSlice);
911
- }
912
- } else {
913
- paramNameSet = paramName;
914
- }
915
- data.originalFiles = data.files;
916
- $.each(fileSet || data.files, function (index, element) {
917
- var newData = $.extend({}, data);
918
- newData.files = fileSet ? element : [element];
919
- newData.paramName = paramNameSet[index];
920
- that._initResponseObject(newData);
921
- that._initProgressObject(newData);
922
- that._addConvenienceMethods(e, newData);
923
- result = that._trigger('add', e, newData);
924
- return result;
925
- });
926
- return result;
927
- },
928
-
929
- _replaceFileInput: function (input) {
930
- var inputClone = input.clone(true);
931
- $('<form></form>').append(inputClone)[0].reset();
932
- // Detaching allows to insert the fileInput on another form
933
- // without loosing the file input value:
934
- input.after(inputClone).detach();
935
- // Avoid memory leaks with the detached file input:
936
- $.cleanData(input.unbind('remove'));
937
- // Replace the original file input element in the fileInput
938
- // elements set with the clone, which has been copied including
939
- // event handlers:
940
- this.options.fileInput = this.options.fileInput.map(function (i, el) {
941
- if (el === input[0]) {
942
- return inputClone[0];
943
- }
944
- return el;
945
- });
946
- // If the widget has been initialized on the file input itself,
947
- // override this.element with the file input clone:
948
- if (input[0] === this.element[0]) {
949
- this.element = inputClone;
950
- }
951
- },
952
-
953
- _handleFileTreeEntry: function (entry, path) {
954
- var that = this,
955
- dfd = $.Deferred(),
956
- errorHandler = function (e) {
957
- if (e && !e.entry) {
958
- e.entry = entry;
959
- }
960
- // Since $.when returns immediately if one
961
- // Deferred is rejected, we use resolve instead.
962
- // This allows valid files and invalid items
963
- // to be returned together in one set:
964
- dfd.resolve([e]);
965
- },
966
- dirReader;
967
- path = path || '';
968
- if (entry.isFile) {
969
- if (entry._file) {
970
- // Workaround for Chrome bug #149735
971
- entry._file.relativePath = path;
972
- dfd.resolve(entry._file);
973
- } else {
974
- entry.file(function (file) {
975
- file.relativePath = path;
976
- dfd.resolve(file);
977
- }, errorHandler);
978
- }
979
- } else if (entry.isDirectory) {
980
- dirReader = entry.createReader();
981
- dirReader.readEntries(function (entries) {
982
- that._handleFileTreeEntries(
983
- entries,
984
- path + entry.name + '/'
985
- ).done(function (files) {
986
- dfd.resolve(files);
987
- }).fail(errorHandler);
988
- }, errorHandler);
989
- } else {
990
- // Return an empy list for file system items
991
- // other than files or directories:
992
- dfd.resolve([]);
993
- }
994
- return dfd.promise();
995
- },
996
-
997
- _handleFileTreeEntries: function (entries, path) {
998
- var that = this;
999
- return $.when.apply(
1000
- $,
1001
- $.map(entries, function (entry) {
1002
- return that._handleFileTreeEntry(entry, path);
1003
- })
1004
- ).pipe(function () {
1005
- return Array.prototype.concat.apply(
1006
- [],
1007
- arguments
1008
- );
1009
- });
1010
- },
1011
-
1012
- _getDroppedFiles: function (dataTransfer) {
1013
- dataTransfer = dataTransfer || {};
1014
- var items = dataTransfer.items;
1015
- if (items && items.length && (items[0].webkitGetAsEntry ||
1016
- items[0].getAsEntry)) {
1017
- return this._handleFileTreeEntries(
1018
- $.map(items, function (item) {
1019
- var entry;
1020
- if (item.webkitGetAsEntry) {
1021
- entry = item.webkitGetAsEntry();
1022
- if (entry) {
1023
- // Workaround for Chrome bug #149735:
1024
- entry._file = item.getAsFile();
1025
- }
1026
- return entry;
1027
- }
1028
- return item.getAsEntry();
1029
- })
1030
- );
1031
- }
1032
- return $.Deferred().resolve(
1033
- $.makeArray(dataTransfer.files)
1034
- ).promise();
1035
- },
1036
-
1037
- _getSingleFileInputFiles: function (fileInput) {
1038
- fileInput = $(fileInput);
1039
- var entries = fileInput.prop('webkitEntries') ||
1040
- fileInput.prop('entries'),
1041
- files,
1042
- value;
1043
- if (entries && entries.length) {
1044
- return this._handleFileTreeEntries(entries);
1045
- }
1046
- files = $.makeArray(fileInput.prop('files'));
1047
- if (!files.length) {
1048
- value = fileInput.prop('value');
1049
- if (!value) {
1050
- return $.Deferred().resolve([]).promise();
1051
- }
1052
- // If the files property is not available, the browser does not
1053
- // support the File API and we add a pseudo File object with
1054
- // the input value as name with path information removed:
1055
- files = [{name: value.replace(/^.*\\/, '')}];
1056
- } else if (files[0].name === undefined && files[0].fileName) {
1057
- // File normalization for Safari 4 and Firefox 3:
1058
- $.each(files, function (index, file) {
1059
- file.name = file.fileName;
1060
- file.size = file.fileSize;
1061
- });
1062
- }
1063
- return $.Deferred().resolve(files).promise();
1064
- },
1065
-
1066
- _getFileInputFiles: function (fileInput) {
1067
- if (!(fileInput instanceof $) || fileInput.length === 1) {
1068
- return this._getSingleFileInputFiles(fileInput);
1069
- }
1070
- return $.when.apply(
1071
- $,
1072
- $.map(fileInput, this._getSingleFileInputFiles)
1073
- ).pipe(function () {
1074
- return Array.prototype.concat.apply(
1075
- [],
1076
- arguments
1077
- );
1078
- });
1079
- },
1080
-
1081
- _onChange: function (e) {
1082
- var that = this,
1083
- data = {
1084
- fileInput: $(e.target),
1085
- form: $(e.target.form)
1086
- };
1087
- this._getFileInputFiles(data.fileInput).always(function (files) {
1088
- data.files = files;
1089
- if (that.options.replaceFileInput) {
1090
- that._replaceFileInput(data.fileInput);
1091
- }
1092
- if (that._trigger('change', e, data) !== false) {
1093
- that._onAdd(e, data);
1094
- }
1095
- });
1096
- },
1097
-
1098
- _onPaste: function (e) {
1099
- var items = e.originalEvent && e.originalEvent.clipboardData &&
1100
- e.originalEvent.clipboardData.items,
1101
- data = {files: []};
1102
- if (items && items.length) {
1103
- $.each(items, function (index, item) {
1104
- var file = item.getAsFile && item.getAsFile();
1105
- if (file) {
1106
- data.files.push(file);
1107
- }
1108
- });
1109
- if (this._trigger('paste', e, data) === false ||
1110
- this._onAdd(e, data) === false) {
1111
- return false;
1112
- }
1113
- }
1114
- },
1115
-
1116
- _onDrop: function (e) {
1117
- e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer;
1118
- var that = this,
1119
- dataTransfer = e.dataTransfer,
1120
- data = {};
1121
- if (dataTransfer && dataTransfer.files && dataTransfer.files.length) {
1122
- e.preventDefault();
1123
- this._getDroppedFiles(dataTransfer).always(function (files) {
1124
- data.files = files;
1125
- if (that._trigger('drop', e, data) !== false) {
1126
- that._onAdd(e, data);
1127
- }
1128
- });
1129
- }
1130
- },
1131
-
1132
- _onDragOver: function (e) {
1133
- e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer;
1134
- var dataTransfer = e.dataTransfer;
1135
- if (dataTransfer) {
1136
- if (this._trigger('dragover', e) === false) {
1137
- return false;
1138
- }
1139
- if ($.inArray('Files', dataTransfer.types) !== -1) {
1140
- dataTransfer.dropEffect = 'copy';
1141
- e.preventDefault();
1142
- }
1143
- }
1144
- },
1145
-
1146
- _initEventHandlers: function () {
1147
- if (this._isXHRUpload(this.options)) {
1148
- this._on(this.options.dropZone, {
1149
- dragover: this._onDragOver,
1150
- drop: this._onDrop
1151
- });
1152
- this._on(this.options.pasteZone, {
1153
- paste: this._onPaste
1154
- });
1155
- }
1156
- this._on(this.options.fileInput, {
1157
- change: this._onChange
1158
- });
1159
- },
1160
-
1161
- _destroyEventHandlers: function () {
1162
- this._off(this.options.dropZone, 'dragover drop');
1163
- this._off(this.options.pasteZone, 'paste');
1164
- this._off(this.options.fileInput, 'change');
1165
- },
1166
-
1167
- _setOption: function (key, value) {
1168
- var reinit = $.inArray(key, this._specialOptions) !== -1;
1169
- if (reinit) {
1170
- this._destroyEventHandlers();
1171
- }
1172
- this._super(key, value);
1173
- if (reinit) {
1174
- this._initSpecialOptions();
1175
- this._initEventHandlers();
1176
- }
1177
- },
1178
-
1179
- _initSpecialOptions: function () {
1180
- var options = this.options;
1181
- if (options.fileInput === undefined) {
1182
- options.fileInput = this.element.is('input[type="file"]') ?
1183
- this.element : this.element.find('input[type="file"]');
1184
- } else if (!(options.fileInput instanceof $)) {
1185
- options.fileInput = $(options.fileInput);
1186
- }
1187
- if (!(options.dropZone instanceof $)) {
1188
- options.dropZone = $(options.dropZone);
1189
- }
1190
- if (!(options.pasteZone instanceof $)) {
1191
- options.pasteZone = $(options.pasteZone);
1192
- }
1193
- },
1194
-
1195
- _getRegExp: function (str) {
1196
- var parts = str.split('/'),
1197
- modifiers = parts.pop();
1198
- parts.shift();
1199
- return new RegExp(parts.join('/'), modifiers);
1200
- },
1201
-
1202
- _isRegExpOption: function (key, value) {
1203
- return key !== 'url' && $.type(value) === 'string' &&
1204
- /^\/.*\/[igm]{0,3}$/.test(value);
1205
- },
1206
-
1207
- _initDataAttributes: function () {
1208
- var that = this,
1209
- options = this.options;
1210
- // Initialize options set via HTML5 data-attributes:
1211
- $.each(
1212
- $(this.element[0].cloneNode(false)).data(),
1213
- function (key, value) {
1214
- if (that._isRegExpOption(key, value)) {
1215
- value = that._getRegExp(value);
1216
- }
1217
- options[key] = value;
1218
- }
1219
- );
1220
- },
1221
-
1222
- _create: function () {
1223
- this._initDataAttributes();
1224
- this._initSpecialOptions();
1225
- this._slots = [];
1226
- this._sequence = this._getXHRPromise(true);
1227
- this._sending = this._active = 0;
1228
- this._initProgressObject(this);
1229
- this._initEventHandlers();
1230
- },
1231
-
1232
- // This method is exposed to the widget API and allows to query
1233
- // the number of active uploads:
1234
- active: function () {
1235
- return this._active;
1236
- },
1237
-
1238
- // This method is exposed to the widget API and allows to query
1239
- // the widget upload progress.
1240
- // It returns an object with loaded, total and bitrate properties
1241
- // for the running uploads:
1242
- progress: function () {
1243
- return this._progress;
1244
- },
1245
-
1246
- // This method is exposed to the widget API and allows adding files
1247
- // using the fileupload API. The data parameter accepts an object which
1248
- // must have a files property and can contain additional options:
1249
- // .fileupload('add', {files: filesList});
1250
- add: function (data) {
1251
- var that = this;
1252
- if (!data || this.options.disabled) {
1253
- return;
1254
- }
1255
- if (data.fileInput && !data.files) {
1256
- this._getFileInputFiles(data.fileInput).always(function (files) {
1257
- data.files = files;
1258
- that._onAdd(null, data);
1259
- });
1260
- } else {
1261
- data.files = $.makeArray(data.files);
1262
- this._onAdd(null, data);
1263
- }
1264
- },
1265
-
1266
- // This method is exposed to the widget API and allows sending files
1267
- // using the fileupload API. The data parameter accepts an object which
1268
- // must have a files or fileInput property and can contain additional options:
1269
- // .fileupload('send', {files: filesList});
1270
- // The method returns a Promise object for the file upload call.
1271
- send: function (data) {
1272
- if (data && !this.options.disabled) {
1273
- if (data.fileInput && !data.files) {
1274
- var that = this,
1275
- dfd = $.Deferred(),
1276
- promise = dfd.promise(),
1277
- jqXHR,
1278
- aborted;
1279
- promise.abort = function () {
1280
- aborted = true;
1281
- if (jqXHR) {
1282
- return jqXHR.abort();
1283
- }
1284
- dfd.reject(null, 'abort', 'abort');
1285
- return promise;
1286
- };
1287
- this._getFileInputFiles(data.fileInput).always(
1288
- function (files) {
1289
- if (aborted) {
1290
- return;
1291
- }
1292
- data.files = files;
1293
- jqXHR = that._onSend(null, data).then(
1294
- function (result, textStatus, jqXHR) {
1295
- dfd.resolve(result, textStatus, jqXHR);
1296
- },
1297
- function (jqXHR, textStatus, errorThrown) {
1298
- dfd.reject(jqXHR, textStatus, errorThrown);
1299
- }
1300
- );
1301
- }
1302
- );
1303
- return this._enhancePromise(promise);
1304
- }
1305
- data.files = $.makeArray(data.files);
1306
- if (data.files.length) {
1307
- return this._onSend(null, data);
1308
- }
1309
- }
1310
- return this._getXHRPromise(false, data && data.context);
1311
- }
1312
-
1313
- });
1314
-
1315
- }));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/js/iframe-transport.js DELETED
@@ -1,205 +0,0 @@
1
- /*
2
- * jQuery Iframe Transport Plugin 1.7
3
- * https://github.com/blueimp/jQuery-File-Upload
4
- *
5
- * Copyright 2011, Sebastian Tschan
6
- * https://blueimp.net
7
- *
8
- * Licensed under the MIT license:
9
- * http://www.opensource.org/licenses/MIT
10
- */
11
-
12
- /*jslint unparam: true, nomen: true */
13
- /*global define, window, document */
14
-
15
- (function (factory) {
16
- 'use strict';
17
- if (typeof define === 'function' && define.amd) {
18
- // Register as an anonymous AMD module:
19
- define(['jquery'], factory);
20
- } else {
21
- // Browser globals:
22
- factory(window.jQuery);
23
- }
24
- }(function ($) {
25
- 'use strict';
26
-
27
- // Helper variable to create unique names for the transport iframes:
28
- var counter = 0;
29
-
30
- // The iframe transport accepts three additional options:
31
- // options.fileInput: a jQuery collection of file input fields
32
- // options.paramName: the parameter name for the file form data,
33
- // overrides the name property of the file input field(s),
34
- // can be a string or an array of strings.
35
- // options.formData: an array of objects with name and value properties,
36
- // equivalent to the return data of .serializeArray(), e.g.:
37
- // [{name: 'a', value: 1}, {name: 'b', value: 2}]
38
- $.ajaxTransport('iframe', function (options) {
39
- if (options.async) {
40
- var form,
41
- iframe,
42
- addParamChar;
43
- return {
44
- send: function (_, completeCallback) {
45
- form = $('<form style="display:none;"></form>');
46
- form.attr('accept-charset', options.formAcceptCharset);
47
- addParamChar = /\?/.test(options.url) ? '&' : '?';
48
- // XDomainRequest only supports GET and POST:
49
- if (options.type === 'DELETE') {
50
- options.url = options.url + addParamChar + '_method=DELETE';
51
- options.type = 'POST';
52
- } else if (options.type === 'PUT') {
53
- options.url = options.url + addParamChar + '_method=PUT';
54
- options.type = 'POST';
55
- } else if (options.type === 'PATCH') {
56
- options.url = options.url + addParamChar + '_method=PATCH';
57
- options.type = 'POST';
58
- }
59
- // javascript:false as initial iframe src
60
- // prevents warning popups on HTTPS in IE6.
61
- // IE versions below IE8 cannot set the name property of
62
- // elements that have already been added to the DOM,
63
- // so we set the name along with the iframe HTML markup:
64
- counter += 1;
65
- iframe = $(
66
- '<iframe src="javascript:false;" name="iframe-transport-' +
67
- counter + '"></iframe>'
68
- ).bind('load', function () {
69
- var fileInputClones,
70
- paramNames = $.isArray(options.paramName) ?
71
- options.paramName : [options.paramName];
72
- iframe
73
- .unbind('load')
74
- .bind('load', function () {
75
- var response;
76
- // Wrap in a try/catch block to catch exceptions thrown
77
- // when trying to access cross-domain iframe contents:
78
- try {
79
- response = iframe.contents();
80
- // Google Chrome and Firefox do not throw an
81
- // exception when calling iframe.contents() on
82
- // cross-domain requests, so we unify the response:
83
- if (!response.length || !response[0].firstChild) {
84
- throw new Error();
85
- }
86
- } catch (e) {
87
- response = undefined;
88
- }
89
- // The complete callback returns the
90
- // iframe content document as response object:
91
- completeCallback(
92
- 200,
93
- 'success',
94
- {'iframe': response}
95
- );
96
- // Fix for IE endless progress bar activity bug
97
- // (happens on form submits to iframe targets):
98
- $('<iframe src="javascript:false;"></iframe>')
99
- .appendTo(form);
100
- window.setTimeout(function () {
101
- // Removing the form in a setTimeout call
102
- // allows Chrome's developer tools to display
103
- // the response result
104
- form.remove();
105
- }, 0);
106
- });
107
- form
108
- .prop('target', iframe.prop('name'))
109
- .prop('action', options.url)
110
- .prop('method', options.type);
111
- if (options.formData) {
112
- $.each(options.formData, function (index, field) {
113
- $('<input type="hidden"/>')
114
- .prop('name', field.name)
115
- .val(field.value)
116
- .appendTo(form);
117
- });
118
- }
119
- if (options.fileInput && options.fileInput.length &&
120
- options.type === 'POST') {
121
- fileInputClones = options.fileInput.clone();
122
- // Insert a clone for each file input field:
123
- options.fileInput.after(function (index) {
124
- return fileInputClones[index];
125
- });
126
- if (options.paramName) {
127
- options.fileInput.each(function (index) {
128
- $(this).prop(
129
- 'name',
130
- paramNames[index] || options.paramName
131
- );
132
- });
133
- }
134
- // Appending the file input fields to the hidden form
135
- // removes them from their original location:
136
- form
137
- .append(options.fileInput)
138
- .prop('enctype', 'multipart/form-data')
139
- // enctype must be set as encoding for IE:
140
- .prop('encoding', 'multipart/form-data');
141
- }
142
- form.submit();
143
- // Insert the file input fields at their original location
144
- // by replacing the clones with the originals:
145
- if (fileInputClones && fileInputClones.length) {
146
- options.fileInput.each(function (index, input) {
147
- var clone = $(fileInputClones[index]);
148
- $(input).prop('name', clone.prop('name'));
149
- clone.replaceWith(input);
150
- });
151
- }
152
- });
153
- form.append(iframe).appendTo(document.body);
154
- },
155
- abort: function () {
156
- if (iframe) {
157
- // javascript:false as iframe src aborts the request
158
- // and prevents warning popups on HTTPS in IE6.
159
- // concat is used to avoid the "Script URL" JSLint error:
160
- iframe
161
- .unbind('load')
162
- .prop('src', 'javascript'.concat(':false;'));
163
- }
164
- if (form) {
165
- form.remove();
166
- }
167
- }
168
- };
169
- }
170
- });
171
-
172
- // The iframe transport returns the iframe content document as response.
173
- // The following adds converters from iframe to text, json, html, xml
174
- // and script.
175
- // Please note that the Content-Type for JSON responses has to be text/plain
176
- // or text/html, if the browser doesn't include application/json in the
177
- // Accept header, else IE will show a download dialog.
178
- // The Content-Type for XML responses on the other hand has to be always
179
- // application/xml or text/xml, so IE properly parses the XML response.
180
- // See also
181
- // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation
182
- $.ajaxSetup({
183
- converters: {
184
- 'iframe text': function (iframe) {
185
- return iframe && $(iframe[0].body).text();
186
- },
187
- 'iframe json': function (iframe) {
188
- return iframe && $.parseJSON($(iframe[0].body).text());
189
- },
190
- 'iframe html': function (iframe) {
191
- return iframe && $(iframe[0].body).html();
192
- },
193
- 'iframe xml': function (iframe) {
194
- var xmlDoc = iframe && iframe[0];
195
- return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc :
196
- $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) ||
197
- $(xmlDoc.body).html());
198
- },
199
- 'iframe script': function (iframe) {
200
- return iframe && $.globalEval($(iframe[0].body).text());
201
- }
202
- }
203
- });
204
-
205
- }));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/js/options-page.js CHANGED
@@ -55,50 +55,55 @@ jQuery(document).ready(function ($) {
55
  });
56
 
57
  var examples_timer = 0,
 
58
  $example_window = $('#su-examples-window'),
59
  $example_preview = $('#su-examples-preview');
60
  $('.su-examples-group-title, .su-examples-item').each(function () {
61
  var $item = $(this),
62
  delay = 200;
63
- if ($item.hasClass('su-examples-item')) $item.on('mousedown', function (e) {
64
- var code = $(this).data('code'),
65
- id = $(this).data('id');
66
- $item.magnificPopup({
67
- type: 'inline',
68
- alignTop: true,
69
- callbacks: {
70
- close: function () {
71
- $example_preview.html('');
 
 
72
  }
73
- }
74
- });
75
- var su_example_preview = $.ajax({
76
- url: ajaxurl,
77
- type: 'get',
78
- dataType: 'html',
79
- data: {
80
- action: 'su_example_preview',
81
- code: code,
82
- id: id
83
- },
84
- beforeSend: function () {
85
- if (typeof su_example_preview === 'object') su_example_preview.abort();
86
- $example_window.addClass('su-ajax');
87
- $item.magnificPopup('open');
88
- },
89
- success: function (data) {
90
- $example_preview.html(data);
91
- $example_window.removeClass('su-ajax');
92
- }
 
93
  });
94
- e.preventDefault();
95
- });
 
96
  examples_timer = examples_timer + delay;
97
  window.setTimeout(function () {
98
  $item.addClass('animated fadeInDown').css('visibility', 'visible');
99
  }, examples_timer);
100
  });
101
- $('#su-examples-window').on('mousedown', '.su-examples-get-code', function (e) {
102
  $(this).hide();
103
  $(this).parent('.su-examples-code').children('textarea').slideDown(300);
104
  e.preventDefault();
55
  });
56
 
57
  var examples_timer = 0,
58
+ open = $('#su_open_example').val(),
59
  $example_window = $('#su-examples-window'),
60
  $example_preview = $('#su-examples-preview');
61
  $('.su-examples-group-title, .su-examples-item').each(function () {
62
  var $item = $(this),
63
  delay = 200;
64
+ if ($item.hasClass('su-examples-item')) {
65
+ $item.on('click', function (e) {
66
+ var code = $(this).data('code'),
67
+ id = $(this).data('id');
68
+ $item.magnificPopup({
69
+ type: 'inline',
70
+ alignTop: true,
71
+ callbacks: {
72
+ close: function () {
73
+ $example_preview.html('');
74
+ }
75
  }
76
+ });
77
+ var su_example_preview = $.ajax({
78
+ url: ajaxurl,
79
+ type: 'get',
80
+ dataType: 'html',
81
+ data: {
82
+ action: 'su_example_preview',
83
+ code: code,
84
+ id: id
85
+ },
86
+ beforeSend: function () {
87
+ if (typeof su_example_preview === 'object') su_example_preview.abort();
88
+ $example_window.addClass('su-ajax');
89
+ $item.magnificPopup('open');
90
+ },
91
+ success: function (data) {
92
+ $example_preview.html(data);
93
+ $example_window.removeClass('su-ajax');
94
+ }
95
+ });
96
+ e.preventDefault();
97
  });
98
+ // Open preselected example
99
+ if ($item.data('id') === open) $item.trigger('click');
100
+ }
101
  examples_timer = examples_timer + delay;
102
  window.setTimeout(function () {
103
  $item.addClass('animated fadeInDown').css('visibility', 'visible');
104
  }, examples_timer);
105
  });
106
+ $('#su-examples-window').on('click', '.su-examples-get-code', function (e) {
107
  $(this).hide();
108
  $(this).parent('.su-examples-code').children('textarea').slideDown(300);
109
  e.preventDefault();
inc/core/admin-views.php CHANGED
@@ -94,6 +94,8 @@ class Su_Admin_Views {
94
  $output = array();
95
  $examples = Su_Data::examples();
96
  $preview = '<div style="display:none"><div id="su-examples-window"><div id="su-examples-preview"></div></div></div>';
 
 
97
  foreach ( $examples as $group ) {
98
  $items = array();
99
  if ( isset( $group['items'] ) ) foreach ( $group['items'] as $item ) {
@@ -105,7 +107,7 @@ class Su_Admin_Views {
105
  }
106
  su_query_asset( 'css', array( 'magnific-popup', 'animate', 'font-awesome', 'su-options-page' ) );
107
  su_query_asset( 'js', array( 'jquery', 'magnific-popup', 'su-options-page' ) );
108
- return '<div id="su-examples-screen">' . implode( '', $output ) . '</div>' . $preview;
109
  }
110
 
111
  public static function addons( $field, $config ) {
94
  $output = array();
95
  $examples = Su_Data::examples();
96
  $preview = '<div style="display:none"><div id="su-examples-window"><div id="su-examples-preview"></div></div></div>';
97
+ $open = ( isset( $_GET['example'] ) ) ? sanitize_text_field( $_GET['example'] ) : '';
98
+ $open = '<input id="su_open_example" type="hidden" name="su_open_example" value="' . $open . '" />';
99
  foreach ( $examples as $group ) {
100
  $items = array();
101
  if ( isset( $group['items'] ) ) foreach ( $group['items'] as $item ) {
107
  }
108
  su_query_asset( 'css', array( 'magnific-popup', 'animate', 'font-awesome', 'su-options-page' ) );
109
  su_query_asset( 'js', array( 'jquery', 'magnific-popup', 'su-options-page' ) );
110
+ return '<div id="su-examples-screen">' . implode( '', $output ) . '</div>' . $preview . $open;
111
  }
112
 
113
  public static function addons( $field, $config ) {
inc/core/data.php CHANGED
@@ -216,6 +216,7 @@ class Su_Data {
216
  ),
217
  'content' => __( "[%prefix_tab title=\"Title 1\"]Content 1[/%prefix_tab]\n[%prefix_tab title=\"Title 2\"]Content 2[/%prefix_tab]\n[%prefix_tab title=\"Title 3\"]Content 3[/%prefix_tab]", 'su' ),
218
  'desc' => __( 'Tabs container', 'su' ),
 
219
  'icon' => 'list-alt'
220
  ),
221
  // tab
@@ -248,6 +249,7 @@ class Su_Data {
248
  ),
249
  'content' => __( 'Tab content', 'su' ),
250
  'desc' => __( 'Single tab', 'su' ),
 
251
  'icon' => 'list-alt'
252
  ),
253
  // spoiler
@@ -311,6 +313,8 @@ class Su_Data {
311
  ),
312
  'content' => __( 'Hidden content', 'su' ),
313
  'desc' => __( 'Spoiler with hidden content', 'su' ),
 
 
314
  'icon' => 'list-ul'
315
  ),
316
  // accordion
@@ -327,6 +331,8 @@ class Su_Data {
327
  ),
328
  'content' => __( "[%prefix_spoiler]Content[/%prefix_spoiler]\n[%prefix_spoiler]Content[/%prefix_spoiler]\n[%prefix_spoiler]Content[/%prefix_spoiler]", 'su' ),
329
  'desc' => __( 'Accordion with spoilers', 'su' ),
 
 
330
  'icon' => 'list'
331
  ),
332
  // divider
@@ -618,6 +624,8 @@ class Su_Data {
618
  ),
619
  'content' => __( 'Column content', 'su' ),
620
  'desc' => __( 'Flexible and responsive columns', 'su' ),
 
 
621
  'icon' => 'columns'
622
  ),
623
  // list
@@ -767,6 +775,7 @@ class Su_Data {
767
  ),
768
  'content' => __( 'Button text', 'su' ),
769
  'desc' => __( 'Styled button', 'su' ),
 
770
  'icon' => 'heart'
771
  ),
772
  // service
@@ -1104,6 +1113,7 @@ class Su_Data {
1104
  )
1105
  ),
1106
  'desc' => __( 'YouTube video', 'su' ),
 
1107
  'icon' => 'youtube-play'
1108
  ),
1109
  // youtube_advanced
@@ -1215,6 +1225,12 @@ class Su_Data {
1215
  'name' => __( 'Theme', 'su' ),
1216
  'desc' => __( 'This parameter indicates whether the embedded player will display player controls (like a play button or volume control) within a dark or light control bar', 'su' )
1217
  ),
 
 
 
 
 
 
1218
  'class' => array(
1219
  'default' => '',
1220
  'name' => __( 'Class', 'su' ),
@@ -1222,6 +1238,7 @@ class Su_Data {
1222
  )
1223
  ),
1224
  'desc' => __( 'YouTube video player with advanced settings', 'su' ),
 
1225
  'icon' => 'youtube-play'
1226
  ),
1227
  // vimeo
@@ -1272,6 +1289,7 @@ class Su_Data {
1272
  )
1273
  ),
1274
  'desc' => __( 'Vimeo video', 'su' ),
 
1275
  'icon' => 'youtube-play'
1276
  ),
1277
  // screenr
@@ -1282,7 +1300,8 @@ class Su_Data {
1282
  'atts' => array(
1283
  'url' => array(
1284
  'default' => '',
1285
- 'name' => __( 'Url', 'su' ), 'desc' => __( 'Url of Screenr page with video', 'su' )
 
1286
  ),
1287
  'width' => array(
1288
  'type' => 'slider',
@@ -1317,6 +1336,105 @@ class Su_Data {
1317
  'desc' => __( 'Screenr video', 'su' ),
1318
  'icon' => 'youtube-play'
1319
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1320
  // audio
1321
  'audio' => array(
1322
  'name' => __( 'Audio', 'su' ),
@@ -1354,6 +1472,7 @@ class Su_Data {
1354
  )
1355
  ),
1356
  'desc' => __( 'Custom audio player', 'su' ),
 
1357
  'icon' => 'play-circle'
1358
  ),
1359
  // video
@@ -1423,6 +1542,7 @@ class Su_Data {
1423
  )
1424
  ),
1425
  'desc' => __( 'Custom video player', 'su' ),
 
1426
  'icon' => 'play-circle'
1427
  ),
1428
  // table
@@ -2326,6 +2446,7 @@ class Su_Data {
2326
  ),
2327
  'content' => __( 'Animated content', 'su' ),
2328
  'desc' => __( 'Wrapper for animation. Any nested element will be animated', 'su' ),
 
2329
  'icon' => 'bolt'
2330
  ),
2331
  // meta
216
  ),
217
  'content' => __( "[%prefix_tab title=\"Title 1\"]Content 1[/%prefix_tab]\n[%prefix_tab title=\"Title 2\"]Content 2[/%prefix_tab]\n[%prefix_tab title=\"Title 3\"]Content 3[/%prefix_tab]", 'su' ),
218
  'desc' => __( 'Tabs container', 'su' ),
219
+ 'example' => 'tabs',
220
  'icon' => 'list-alt'
221
  ),
222
  // tab
249
  ),
250
  'content' => __( 'Tab content', 'su' ),
251
  'desc' => __( 'Single tab', 'su' ),
252
+ 'example' => 'tabs',
253
  'icon' => 'list-alt'
254
  ),
255
  // spoiler
313
  ),
314
  'content' => __( 'Hidden content', 'su' ),
315
  'desc' => __( 'Spoiler with hidden content', 'su' ),
316
+ 'note' => __( 'Did you know that you can wrap multiple spoilers with [accordion] shortcode to create accordion effect?', 'su' ),
317
+ 'example' => 'spoilers',
318
  'icon' => 'list-ul'
319
  ),
320
  // accordion
331
  ),
332
  'content' => __( "[%prefix_spoiler]Content[/%prefix_spoiler]\n[%prefix_spoiler]Content[/%prefix_spoiler]\n[%prefix_spoiler]Content[/%prefix_spoiler]", 'su' ),
333
  'desc' => __( 'Accordion with spoilers', 'su' ),
334
+ 'note' => __( 'Did you know that you can wrap multiple spoilers with [accordion] shortcode to create accordion effect?', 'su' ),
335
+ 'example' => 'spoilers',
336
  'icon' => 'list'
337
  ),
338
  // divider
624
  ),
625
  'content' => __( 'Column content', 'su' ),
626
  'desc' => __( 'Flexible and responsive columns', 'su' ),
627
+ 'note' => __( 'Did you know that you need to wrap columns with [row] shortcode?', 'su' ),
628
+ 'example' => 'columns',
629
  'icon' => 'columns'
630
  ),
631
  // list
775
  ),
776
  'content' => __( 'Button text', 'su' ),
777
  'desc' => __( 'Styled button', 'su' ),
778
+ 'example' => 'buttons',
779
  'icon' => 'heart'
780
  ),
781
  // service
1113
  )
1114
  ),
1115
  'desc' => __( 'YouTube video', 'su' ),
1116
+ 'example' => 'media',
1117
  'icon' => 'youtube-play'
1118
  ),
1119
  // youtube_advanced
1225
  'name' => __( 'Theme', 'su' ),
1226
  'desc' => __( 'This parameter indicates whether the embedded player will display player controls (like a play button or volume control) within a dark or light control bar', 'su' )
1227
  ),
1228
+ 'https' => array(
1229
+ 'type' => 'bool',
1230
+ 'default' => 'no',
1231
+ 'name' => __( 'Force HTTPS', 'su' ),
1232
+ 'desc' => __( 'Use HTTPS in player iframe', 'su' )
1233
+ ),
1234
  'class' => array(
1235
  'default' => '',
1236
  'name' => __( 'Class', 'su' ),
1238
  )
1239
  ),
1240
  'desc' => __( 'YouTube video player with advanced settings', 'su' ),
1241
+ 'example' => 'media',
1242
  'icon' => 'youtube-play'
1243
  ),
1244
  // vimeo
1289
  )
1290
  ),
1291
  'desc' => __( 'Vimeo video', 'su' ),
1292
+ 'example' => 'media',
1293
  'icon' => 'youtube-play'
1294
  ),
1295
  // screenr
1300
  'atts' => array(
1301
  'url' => array(
1302
  'default' => '',
1303
+ 'name' => __( 'Url', 'su' ),
1304
+ 'desc' => __( 'Url of Screenr page with video', 'su' )
1305
  ),
1306
  'width' => array(
1307
  'type' => 'slider',
1336
  'desc' => __( 'Screenr video', 'su' ),
1337
  'icon' => 'youtube-play'
1338
  ),
1339
+ // dailymotion
1340
+ 'dailymotion' => array(
1341
+ 'name' => __( 'Dailymotion', 'su' ),
1342
+ 'type' => 'single',
1343
+ 'group' => 'media',
1344
+ 'atts' => array(
1345
+ 'url' => array(
1346
+ 'default' => '',
1347
+ 'name' => __( 'Url', 'su' ),
1348
+ 'desc' => __( 'Url of Dailymotion page with video', 'su' )
1349
+ ),
1350
+ 'width' => array(
1351
+ 'type' => 'slider',
1352
+ 'min' => 200,
1353
+ 'max' => 1600,
1354
+ 'step' => 20,
1355
+ 'default' => 600,
1356
+ 'name' => __( 'Width', 'su' ),
1357
+ 'desc' => __( 'Player width', 'su' )
1358
+ ),
1359
+ 'height' => array(
1360
+ 'type' => 'slider',
1361
+ 'min' => 200,
1362
+ 'max' => 1600,
1363
+ 'step' => 20,
1364
+ 'default' => 400,
1365
+ 'name' => __( 'Height', 'su' ),
1366
+ 'desc' => __( 'Player height', 'su' )
1367
+ ),
1368
+ 'responsive' => array(
1369
+ 'type' => 'bool',
1370
+ 'default' => 'yes',
1371
+ 'name' => __( 'Responsive', 'su' ),
1372
+ 'desc' => __( 'Ignore width and height parameters and make player responsive', 'su' )
1373
+ ),
1374
+ 'autoplay' => array(
1375
+ 'type' => 'bool',
1376
+ 'default' => 'no',
1377
+ 'name' => __( 'Autoplay', 'su' ),
1378
+ 'desc' => __( 'Start the playback of the video automatically after the player load. May not work on some mobile OS versions', 'su' )
1379
+ ),
1380
+ 'background' => array(
1381
+ 'type' => 'color',
1382
+ 'default' => '#FFC300',
1383
+ 'name' => __( 'Background color', 'su' ),
1384
+ 'desc' => __( 'HTML color of the background of controls elements', 'su' )
1385
+ ),
1386
+ 'foreground' => array(
1387
+ 'type' => 'color',
1388
+ 'default' => '#F7FFFD',
1389
+ 'name' => __( 'Foreground color', 'su' ),
1390
+ 'desc' => __( 'HTML color of the foreground of controls elements', 'su' )
1391
+ ),
1392
+ 'highlight' => array(
1393
+ 'type' => 'color',
1394
+ 'default' => '#171D1B',
1395
+ 'name' => __( 'Highlight color', 'su' ),
1396
+ 'desc' => __( 'HTML color of the controls elements\' highlights', 'su' )
1397
+ ),
1398
+ 'logo' => array(
1399
+ 'type' => 'bool',
1400
+ 'default' => 'yes',
1401
+ 'name' => __( 'Show logo', 'su' ),
1402
+ 'desc' => __( 'Allows to hide or show the Dailymotion logo', 'su' )
1403
+ ),
1404
+ 'quality' => array(
1405
+ 'type' => 'select',
1406
+ 'values' => array(
1407
+ '240' => '240',
1408
+ '380' => '380',
1409
+ '480' => '480',
1410
+ '720' => '720',
1411
+ '1080' => '1080'
1412
+ ),
1413
+ 'default' => '380',
1414
+ 'name' => __( 'Quality', 'su' ),
1415
+ 'desc' => __( 'Determines the quality that must be played by default if available', 'su' )
1416
+ ),
1417
+ 'related' => array(
1418
+ 'type' => 'bool',
1419
+ 'default' => 'yes',
1420
+ 'name' => __( 'Show related videos', 'su' ),
1421
+ 'desc' => __( 'Show related videos at the end of the video', 'su' )
1422
+ ),
1423
+ 'info' => array(
1424
+ 'type' => 'bool',
1425
+ 'default' => 'yes',
1426
+ 'name' => __( 'Show video info', 'su' ),
1427
+ 'desc' => __( 'Show videos info (title/author) on the start screen', 'su' )
1428
+ ),
1429
+ 'class' => array(
1430
+ 'default' => '',
1431
+ 'name' => __( 'Class', 'su' ),
1432
+ 'desc' => __( 'Extra CSS class', 'su' )
1433
+ )
1434
+ ),
1435
+ 'desc' => __( 'Dailymotion video', 'su' ),
1436
+ 'icon' => 'youtube-play'
1437
+ ),
1438
  // audio
1439
  'audio' => array(
1440
  'name' => __( 'Audio', 'su' ),
1472
  )
1473
  ),
1474
  'desc' => __( 'Custom audio player', 'su' ),
1475
+ 'example' => 'media',
1476
  'icon' => 'play-circle'
1477
  ),
1478
  // video
1542
  )
1543
  ),
1544
  'desc' => __( 'Custom video player', 'su' ),
1545
+ 'example' => 'media',
1546
  'icon' => 'play-circle'
1547
  ),
1548
  // table
2446
  ),
2447
  'content' => __( 'Animated content', 'su' ),
2448
  'desc' => __( 'Wrapper for animation. Any nested element will be animated', 'su' ),
2449
+ 'example' => 'animations',
2450
  'icon' => 'bolt'
2451
  ),
2452
  // meta
inc/core/generator.php CHANGED
@@ -146,6 +146,13 @@ class Su_Generator {
146
  $return = '<div id="su-generator-breadcrumbs">';
147
  $return .= apply_filters( 'su/generator/breadcrumbs', '<a href="javascript:void(0);" class="su-generator-home" title="' . __( 'Click to return to the shortcodes list', 'su' ) . '">' . __( 'All shortcodes', 'su' ) . '</a> &rarr; <span>' . $shortcode['name'] . '</span> <small class="alignright">' . $shortcode['desc'] . '</small><div class="su-generator-clear"></div>' );
148
  $return .= '</div>';
 
 
 
 
 
 
 
149
  // Shortcode has atts
150
  if ( count( $shortcode['atts'] ) && $shortcode['atts'] ) {
151
  // Loop through shortcode parameters
146
  $return = '<div id="su-generator-breadcrumbs">';
147
  $return .= apply_filters( 'su/generator/breadcrumbs', '<a href="javascript:void(0);" class="su-generator-home" title="' . __( 'Click to return to the shortcodes list', 'su' ) . '">' . __( 'All shortcodes', 'su' ) . '</a> &rarr; <span>' . $shortcode['name'] . '</span> <small class="alignright">' . $shortcode['desc'] . '</small><div class="su-generator-clear"></div>' );
148
  $return .= '</div>';
149
+ // Shortcode note
150
+ if ( isset( $shortcode['note'] ) || isset( $shortcode['example'] ) ) {
151
+ $return .= '<div class="su-generator-note"><i class="fa fa-info-circle"></i><div class="su-generator-note-content">';
152
+ if ( isset( $shortcode['note'] ) ) $return .= wpautop( $shortcode['note'] );
153
+ if ( isset( $shortcode['example'] ) ) $return .= wpautop( '<a href="' . admin_url( 'admin.php?page=shortcodes-ultimate-examples&example=' . $shortcode['example'] ) . '" target="_blank">' . __( 'Examples of use', 'su' ) . ' &rarr;</a>' );
154
+ $return .= '</div></div>';
155
+ }
156
  // Shortcode has atts
157
  if ( count( $shortcode['atts'] ) && $shortcode['atts'] ) {
158
  // Loop through shortcode parameters
inc/core/shortcodes.php CHANGED
@@ -15,7 +15,7 @@ class Su_Shortcodes {
15
  ), $atts, 'heading' );
16
  su_query_asset( 'css', 'su-content-shortcodes' );
17
  do_action( 'su/shortcode/heading', $atts );
18
- return '<div class="su-heading su-heading-style-' . $atts['style'] . ' su-heading-align-' . $atts['align'] . su_ecssc( $atts ) . '" style="font-size:' . intVal( $atts['size'] ) . 'px;margin-bottom:' . $atts['margin'] . 'px"><div class="su-heading-inner">' . do_shortcode( $content ) . '</div></div>';
19
  }
20
 
21
  public static function tabs( $atts = null, $content = null ) {
@@ -582,6 +582,7 @@ class Su_Shortcodes {
582
  'url' => false,
583
  'width' => 600,
584
  'height' => 400,
 
585
  'autohide' => 'alt',
586
  'autoplay' => 'no',
587
  'controls' => 'yes',
@@ -592,7 +593,7 @@ class Su_Shortcodes {
592
  'rel' => 'yes',
593
  'showinfo' => 'yes',
594
  'theme' => 'dark',
595
- 'responsive' => 'yes',
596
  'class' => ''
597
  ), $atts, 'youtube_advanced' );
598
  if ( !$atts['url'] ) return '<p class="su-error">YouTube: ' . __( 'please specify correct url', 'su' ) . '</p>';
@@ -601,14 +602,16 @@ class Su_Shortcodes {
601
  // Check that url is specified
602
  if ( !$id ) return '<p class="su-error">YouTube: ' . __( 'please specify correct url', 'su' ) . '</p>';
603
  // Prepare params
604
- foreach( array( 'autohide', 'autoplay', 'controls', 'fs', 'loop', 'modestbranding', 'playlist', 'rel', 'showinfo', 'theme' ) as $param ) $params[$param] = str_replace( array( 'no', 'yes', 'alt' ), array( '0', '1', '2' ), $atts[$param] );
605
  // Correct loop
606
  if ( $params['loop'] === '1' && $params['playlist'] === '' ) $params['playlist'] = $id;
 
 
607
  // Prepare player parameters
608
  $params = http_build_query( $params );
609
  // Create player
610
  $return[] = '<div class="su-youtube su-responsive-media-' . $atts['responsive'] . su_ecssc( $atts ) . '">';
611
- $return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] . '" src="http://www.youtube.com/embed/' . $id . '?' . $params . '" frameborder="0" allowfullscreen="true"></iframe>';
612
  $return[] = '</div>';
613
  su_query_asset( 'css', 'su-media-shortcodes' );
614
  // Return result
@@ -661,8 +664,43 @@ class Su_Shortcodes {
661
  if ( !$id ) return '<p class="su-error">Screenr: ' . __( 'please specify correct url', 'su' ) . '</p>';
662
  // Create player
663
  $return[] = '<div class="su-screenr su-responsive-media-' . $atts['responsive'] . su_ecssc( $atts ) . '">';
664
- $return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] .
665
- '" src="http://screenr.com/embed/' . $id . '" frameborder="0" allowfullscreen="true"></iframe>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  $return[] = '</div>';
667
  su_query_asset( 'css', 'su-media-shortcodes' );
668
  // Return result
@@ -1385,4 +1423,4 @@ class Shortcodes_Ultimate_Shortcodes extends Su_Shortcodes {
1385
  function __construct() {
1386
  parent::__construct();
1387
  }
1388
- }
15
  ), $atts, 'heading' );
16
  su_query_asset( 'css', 'su-content-shortcodes' );
17
  do_action( 'su/shortcode/heading', $atts );
18
+ return '<div class="su-heading su-heading-style-' . $atts['style'] . ' su-heading-align-' . $atts['align'] . su_ecssc( $atts ) . '" style="font-size:' . intval( $atts['size'] ) . 'px;margin-bottom:' . $atts['margin'] . 'px"><div class="su-heading-inner">' . do_shortcode( $content ) . '</div></div>';
19
  }
20
 
21
  public static function tabs( $atts = null, $content = null ) {
582
  'url' => false,
583
  'width' => 600,
584
  'height' => 400,
585
+ 'responsive' => 'yes',
586
  'autohide' => 'alt',
587
  'autoplay' => 'no',
588
  'controls' => 'yes',
593
  'rel' => 'yes',
594
  'showinfo' => 'yes',
595
  'theme' => 'dark',
596
+ 'https' => 'no',
597
  'class' => ''
598
  ), $atts, 'youtube_advanced' );
599
  if ( !$atts['url'] ) return '<p class="su-error">YouTube: ' . __( 'please specify correct url', 'su' ) . '</p>';
602
  // Check that url is specified
603
  if ( !$id ) return '<p class="su-error">YouTube: ' . __( 'please specify correct url', 'su' ) . '</p>';
604
  // Prepare params
605
+ foreach ( array( 'autohide', 'autoplay', 'controls', 'fs', 'loop', 'modestbranding', 'playlist', 'rel', 'showinfo', 'theme' ) as $param ) $params[$param] = str_replace( array( 'no', 'yes', 'alt' ), array( '0', '1', '2' ), $atts[$param] );
606
  // Correct loop
607
  if ( $params['loop'] === '1' && $params['playlist'] === '' ) $params['playlist'] = $id;
608
+ // Prepare protocol
609
+ $protocol = ( $atts['https'] === 'yes' ) ? 'https' : 'http';
610
  // Prepare player parameters
611
  $params = http_build_query( $params );
612
  // Create player
613
  $return[] = '<div class="su-youtube su-responsive-media-' . $atts['responsive'] . su_ecssc( $atts ) . '">';
614
+ $return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] . '" src="' . $protocol . '://www.youtube.com/embed/' . $id . '?' . $params . '" frameborder="0" allowfullscreen="true"></iframe>';
615
  $return[] = '</div>';
616
  su_query_asset( 'css', 'su-media-shortcodes' );
617
  // Return result
664
  if ( !$id ) return '<p class="su-error">Screenr: ' . __( 'please specify correct url', 'su' ) . '</p>';
665
  // Create player
666
  $return[] = '<div class="su-screenr su-responsive-media-' . $atts['responsive'] . su_ecssc( $atts ) . '">';
667
+ $return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] . '" src="http://screenr.com/embed/' . $id . '" frameborder="0" allowfullscreen="true"></iframe>';
668
+ $return[] = '</div>';
669
+ su_query_asset( 'css', 'su-media-shortcodes' );
670
+ // Return result
671
+ return implode( '', $return );
672
+ }
673
+
674
+ public static function dailymotion( $atts = null, $content = null ) {
675
+ // Prepare data
676
+ $return = array();
677
+ $atts = shortcode_atts( array(
678
+ 'url' => false,
679
+ 'width' => 600,
680
+ 'height' => 400,
681
+ 'responsive' => 'yes',
682
+ 'autoplay' => 'no',
683
+ 'background' => '#FFC300',
684
+ 'foreground' => '#F7FFFD',
685
+ 'highlight' => '#171D1B',
686
+ 'logo' => 'yes',
687
+ 'quality' => '380',
688
+ 'related' => 'yes',
689
+ 'info' => 'yes',
690
+ 'class' => ''
691
+ ), $atts, 'dailymotion' );
692
+ if ( !$atts['url'] ) return '<p class="su-error">Dailymotion: ' . __( 'please specify correct url', 'su' ) . '</p>';
693
+ $atts['url'] = su_scattr( $atts['url'] );
694
+ $id = strtok( basename( $atts['url'] ), '_' );
695
+ // Check that url is specified
696
+ if ( !$id ) return '<p class="su-error">Dailymotion: ' . __( 'please specify correct url', 'su' ) . '</p>';
697
+ // Prepare params
698
+ $params = array();
699
+ foreach ( array( 'autoplay', 'background', 'foreground', 'highlight', 'logo', 'quality', 'related', 'info' ) as $param )
700
+ $params[] = $param . '=' . str_replace( array( 'yes', 'no', '#' ), array( '1', '0', '' ), $atts[$param] );
701
+ // Create player
702
+ $return[] = '<div class="su-dailymotion su-responsive-media-' . $atts['responsive'] . su_ecssc( $atts ) . '">';
703
+ $return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] . '" src="http://www.dailymotion.com/embed/video/' . $id . '?' . implode( '&', $params ) . '" frameborder="0" allowfullscreen="true"></iframe>';
704
  $return[] = '</div>';
705
  su_query_asset( 'css', 'su-media-shortcodes' );
706
  // Return result
1423
  function __construct() {
1424
  parent::__construct();
1425
  }
1426
+ }
inc/core/tools.php CHANGED
@@ -659,7 +659,7 @@ class Su_Tools {
659
 
660
  public static function get_users() {
661
  // Get data from cache
662
- if ( SU_ENABLE_CACHE ) $users = get_transient( 'su/users_cache' );
663
  // Query users
664
  if ( !$users ) $users = get_users();
665
  // Cache results
659
 
660
  public static function get_users() {
661
  // Get data from cache
662
+ $users = ( SU_ENABLE_CACHE ) ? get_transient( 'su/users_cache' ) : false;
663
  // Query users
664
  if ( !$users ) $users = get_users();
665
  // Cache results
languages/su-ru_RU.mo CHANGED
Binary file
languages/su-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-25 00:47+0400\n"
6
- "PO-Revision-Date: 2014-03-25 00:47+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
@@ -132,11 +132,11 @@ msgstr "url папки с текущей темой"
132
  msgid "plugin url"
133
  msgstr "url папки этого плагина"
134
 
135
- #: inc/core/admin-views.php:115
136
  msgid "New Shortcodes"
137
  msgstr "Новые Шорткоды"
138
 
139
- #: inc/core/admin-views.php:116
140
  msgid ""
141
  "Parallax sections, responsive content slider, pricing tables, vector icons, "
142
  "testimonials, progress bars and even more"
@@ -144,11 +144,11 @@ msgstr ""
144
  "Секции с параллакс эффектом, адаптивный слайдер контента, тарифные таблицы, "
145
  "векторные иконки, отзывы, прогресс бары и даже больше"
146
 
147
- #: inc/core/admin-views.php:121
148
  msgid "Maker"
149
  msgstr "Maker"
150
 
151
- #: inc/core/admin-views.php:122
152
  msgid ""
153
  "This add-on allows you to create custom shortcodes. You can easily create "
154
  "any shortcode with different parameters or even override default shortcodes"
@@ -156,11 +156,11 @@ msgstr ""
156
  "Это дополнение позволит вам создавать собственные шорткоды. Вы можете с "
157
  "легкостью создать новый шорткод или даже перезаписать оригинальный"
158
 
159
- #: inc/core/admin-views.php:127
160
  msgid "Skins"
161
  msgstr "Скины"
162
 
163
- #: inc/core/admin-views.php:128
164
  msgid ""
165
  "Set of additional skins for Shortcodes Ultimate. It includes skins for "
166
  "accordeons/spoilers, tabs and some other shortcodes"
@@ -168,15 +168,15 @@ msgstr ""
168
  "Набор дополнительных скинов для шорткодов плагина. Набор включает в себя "
169
  "скины для аккордеонов/спойлеров, вкладок и некоторых других шорткодов"
170
 
171
- #: inc/core/admin-views.php:134
172
  msgid "Shortcodes Ultimate Add-ons"
173
  msgstr "Дополнения для Shortcodes Ultimate"
174
 
175
- #: inc/core/admin-views.php:137 inc/core/admin-views.php:144
176
  msgid "Learn more"
177
  msgstr "Узнать больше"
178
 
179
- #: inc/core/admin-views.php:141
180
  msgid "Other WordPress Plugins"
181
  msgstr "Другие плагины для WordPress"
182
 
@@ -262,11 +262,11 @@ msgstr "1 новое дополнение для плагина Шорткоды
262
  msgid "All"
263
  msgstr "Все"
264
 
265
- #: inc/core/data.php:18 inc/core/generator.php:170
266
  msgid "Content"
267
  msgstr "Содержимое"
268
 
269
- #: inc/core/data.php:19 inc/core/data.php:817
270
  msgid "Box"
271
  msgstr "Блок"
272
 
@@ -274,7 +274,7 @@ msgstr "Блок"
274
  msgid "Media"
275
  msgstr "Медиа"
276
 
277
- #: inc/core/data.php:21 inc/core/data.php:1976
278
  msgid "Gallery"
279
  msgstr "Галерея"
280
 
@@ -286,8 +286,8 @@ msgstr "Данные"
286
  msgid "Other"
287
  msgstr "Другое"
288
 
289
- #: inc/core/data.php:32 inc/core/data.php:1741 inc/core/data.php:1860
290
- #: inc/core/data.php:1998 inc/core/data.php:2142
291
  msgid "None"
292
  msgstr "Нет"
293
 
@@ -362,16 +362,16 @@ msgstr "Вложенные шорткоды, шорткоды в атрибут
362
  msgid "Heading"
363
  msgstr "Заголовок"
364
 
365
- #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:272
366
- #: inc/core/data.php:420 inc/core/data.php:450 inc/core/data.php:511
367
- #: inc/core/data.php:676 inc/core/data.php:829 inc/core/data.php:993
368
- #: inc/core/data.php:2344 inc/core/data.php:2396 inc/core/data.php:2459
369
  msgid "Default"
370
  msgstr "По умолчанию"
371
 
372
- #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:277
373
- #: inc/core/data.php:453 inc/core/data.php:517 inc/core/data.php:686
374
- #: inc/core/data.php:836 inc/core/data.php:963
375
  msgid "Style"
376
  msgstr "Стиль"
377
 
@@ -379,13 +379,13 @@ msgstr "Стиль"
379
  msgid "Choose style for this heading"
380
  msgstr "Выберите стиль для этого заголовка"
381
 
382
- #: inc/core/data.php:140 inc/core/data.php:194 inc/core/data.php:278
383
- #: inc/core/data.php:454
384
  msgid "Install additional styles"
385
  msgstr "Установить дополнительные стили"
386
 
387
- #: inc/core/data.php:148 inc/core/data.php:525 inc/core/data.php:604
388
- #: inc/core/data.php:707
389
  msgid "Size"
390
  msgstr "Размер"
391
 
@@ -393,22 +393,22 @@ msgstr "Размер"
393
  msgid "Select heading size (pixels)"
394
  msgstr "Выберите размер заголовка (в пикселях)"
395
 
396
- #: inc/core/data.php:154 inc/core/data.php:486 inc/core/data.php:547
397
- #: inc/core/data.php:971
398
  msgid "Left"
399
  msgstr "Слева"
400
 
401
- #: inc/core/data.php:155 inc/core/data.php:548 inc/core/data.php:1792
402
- #: inc/core/data.php:1930
403
  msgid "Center"
404
  msgstr "По центру"
405
 
406
- #: inc/core/data.php:156 inc/core/data.php:487 inc/core/data.php:549
407
- #: inc/core/data.php:972
408
  msgid "Right"
409
  msgstr "Справа"
410
 
411
- #: inc/core/data.php:159 inc/core/data.php:490 inc/core/data.php:552
412
  msgid "Align"
413
  msgstr "Выравнивание"
414
 
@@ -424,39 +424,41 @@ msgstr "Отступ"
424
  msgid "Bottom margin (pixels)"
425
  msgstr "Отступ снизу (в пикселях)"
426
 
427
- #: inc/core/data.php:173 inc/core/data.php:213 inc/core/data.php:245
428
- #: inc/core/data.php:308 inc/core/data.php:324 inc/core/data.php:351
429
- #: inc/core/data.php:375 inc/core/data.php:403 inc/core/data.php:433
430
- #: inc/core/data.php:469 inc/core/data.php:494 inc/core/data.php:530
431
- #: inc/core/data.php:557 inc/core/data.php:573 inc/core/data.php:615
432
- #: inc/core/data.php:643 inc/core/data.php:764 inc/core/data.php:807
433
- #: inc/core/data.php:863 inc/core/data.php:900 inc/core/data.php:932
434
- #: inc/core/data.php:1034 inc/core/data.php:1050 inc/core/data.php:1102
435
- #: inc/core/data.php:1220 inc/core/data.php:1270 inc/core/data.php:1313
436
- #: inc/core/data.php:1352 inc/core/data.php:1421 inc/core/data.php:1442
437
- #: inc/core/data.php:1473 inc/core/data.php:1506 inc/core/data.php:1522
438
- #: inc/core/data.php:1552 inc/core/data.php:1572 inc/core/data.php:1599
439
- #: inc/core/data.php:1620 inc/core/data.php:1665 inc/core/data.php:1710
440
- #: inc/core/data.php:1829 inc/core/data.php:1967 inc/core/data.php:2048
441
- #: inc/core/data.php:2222 inc/core/data.php:2277 inc/core/data.php:2323
 
442
  msgid "Class"
443
  msgstr "Класс"
444
 
445
- #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:246
446
- #: inc/core/data.php:309 inc/core/data.php:325 inc/core/data.php:352
447
- #: inc/core/data.php:376 inc/core/data.php:404 inc/core/data.php:434
448
- #: inc/core/data.php:470 inc/core/data.php:495 inc/core/data.php:531
449
- #: inc/core/data.php:558 inc/core/data.php:574 inc/core/data.php:616
450
- #: inc/core/data.php:644 inc/core/data.php:765 inc/core/data.php:808
451
- #: inc/core/data.php:864 inc/core/data.php:901 inc/core/data.php:933
452
- #: inc/core/data.php:1035 inc/core/data.php:1051 inc/core/data.php:1103
453
- #: inc/core/data.php:1221 inc/core/data.php:1271 inc/core/data.php:1314
454
- #: inc/core/data.php:1353 inc/core/data.php:1422 inc/core/data.php:1443
455
- #: inc/core/data.php:1474 inc/core/data.php:1507 inc/core/data.php:1523
456
- #: inc/core/data.php:1553 inc/core/data.php:1573 inc/core/data.php:1600
457
- #: inc/core/data.php:1621 inc/core/data.php:1666 inc/core/data.php:1711
458
- #: inc/core/data.php:1830 inc/core/data.php:1968 inc/core/data.php:2049
459
- #: inc/core/data.php:2223 inc/core/data.php:2278 inc/core/data.php:2324
 
460
  msgid "Extra CSS class"
461
  msgstr "Дополнительный CSS класс"
462
 
@@ -506,36 +508,36 @@ msgstr ""
506
  msgid "Tabs container"
507
  msgstr "Контейнер вкладок"
508
 
509
- #: inc/core/data.php:223
510
  msgid "Tab"
511
  msgstr "Вкладка"
512
 
513
- #: inc/core/data.php:228
514
  msgid "Tab name"
515
  msgstr "Имя вкладки"
516
 
517
- #: inc/core/data.php:229 inc/core/data.php:261 inc/core/data.php:781
518
- #: inc/core/data.php:824 inc/core/data.php:1380
519
  msgid "Title"
520
  msgstr "Заголовок"
521
 
522
- #: inc/core/data.php:230
523
  msgid "Enter tab name"
524
  msgstr "Введите имя вкладки"
525
 
526
- #: inc/core/data.php:235
527
  msgid "Disabled"
528
  msgstr "Отключено"
529
 
530
- #: inc/core/data.php:236
531
  msgid "Is this tab disabled"
532
  msgstr "Эта вкладка отключена"
533
 
534
- #: inc/core/data.php:240 inc/core/data.php:303
535
  msgid "Anchor"
536
  msgstr "Якорь"
537
 
538
- #: inc/core/data.php:241
539
  msgid ""
540
  "You can use unique anchor for this tab to access it with hash in page url. "
541
  "For example: type here <b%value>Hello</b> and then use url like http://"
@@ -546,108 +548,108 @@ msgstr ""
546
  "используйте ссылку вида http://example.com/page-utl#Hello. Эта вкладка будет "
547
  "активирована и страница будет прокручена к ней"
548
 
549
- #: inc/core/data.php:249
550
  msgid "Tab content"
551
  msgstr "Содержимое вкладки"
552
 
553
- #: inc/core/data.php:250
554
  msgid "Single tab"
555
  msgstr "Одиночная вкладка"
556
 
557
- #: inc/core/data.php:255
558
  msgid "Spoiler"
559
  msgstr "Спойлер"
560
 
561
- #: inc/core/data.php:260 inc/core/shortcodes.php:72
562
  msgid "Spoiler title"
563
  msgstr "Скрытый текст"
564
 
565
- #: inc/core/data.php:261
566
  msgid "Text in spoiler title"
567
  msgstr "Текст для заголовка спойлера"
568
 
569
- #: inc/core/data.php:266
570
  msgid "Open"
571
  msgstr "Открыт"
572
 
573
- #: inc/core/data.php:267
574
  msgid "Is spoiler content visible by default"
575
  msgstr "Виден ли контент спойлера по умолчанию"
576
 
577
- #: inc/core/data.php:273
578
  msgid "Fancy"
579
  msgstr "Стильный"
580
 
581
- #: inc/core/data.php:274 inc/core/data.php:514
582
  msgid "Simple"
583
  msgstr "Простой"
584
 
585
- #: inc/core/data.php:278
586
  msgid "Choose style for this spoiler"
587
  msgstr "Выберите стиль для этого спойлера"
588
 
589
- #: inc/core/data.php:283
590
  msgid "Plus"
591
  msgstr "Плюс"
592
 
593
- #: inc/core/data.php:284
594
  msgid "Plus circle"
595
  msgstr "Плюс в круге"
596
 
597
- #: inc/core/data.php:285
598
  msgid "Plus square 1"
599
  msgstr "Плюс в квадрате 1"
600
 
601
- #: inc/core/data.php:286
602
  msgid "Plus square 2"
603
  msgstr "Плюс в квадрате 2"
604
 
605
- #: inc/core/data.php:287
606
  msgid "Arrow"
607
  msgstr "Стрелка"
608
 
609
- #: inc/core/data.php:288
610
  msgid "Arrow circle 1"
611
  msgstr "Стрелка в круге 1"
612
 
613
- #: inc/core/data.php:289
614
  msgid "Arrow circle 2"
615
  msgstr "Стрелка в круге 2"
616
 
617
- #: inc/core/data.php:290
618
  msgid "Chevron"
619
  msgstr "Уголок"
620
 
621
- #: inc/core/data.php:291
622
  msgid "Chevron circle"
623
  msgstr "Уголок в круге"
624
 
625
- #: inc/core/data.php:292
626
  msgid "Caret"
627
  msgstr "Треугольник"
628
 
629
- #: inc/core/data.php:293
630
  msgid "Caret square"
631
  msgstr "Треугольник в квадрате"
632
 
633
- #: inc/core/data.php:294
634
  msgid "Folder 1"
635
  msgstr "Папка 1"
636
 
637
- #: inc/core/data.php:295
638
  msgid "Folder 2"
639
  msgstr "Папка 2"
640
 
641
- #: inc/core/data.php:298 inc/core/data.php:632 inc/core/data.php:737
642
- #: inc/core/data.php:787
643
  msgid "Icon"
644
  msgstr "Иконка"
645
 
646
- #: inc/core/data.php:299
647
  msgid "Icons for spoiler"
648
  msgstr "Иконка для спойлера"
649
 
650
- #: inc/core/data.php:304
651
  msgid ""
652
  "You can use unique anchor for this spoiler to access it with hash in page "
653
  "url. For example: type here <b%value>Hello</b> and then use url like http://"
@@ -658,19 +660,27 @@ msgstr ""
658
  "используйте ссылку вида http://example.com/page-utl#Hello. Этот спойлер "
659
  "будет открыт и страница будет прокручена к нему"
660
 
661
- #: inc/core/data.php:312
662
  msgid "Hidden content"
663
  msgstr "Скрытое содержимое"
664
 
665
- #: inc/core/data.php:313
666
  msgid "Spoiler with hidden content"
667
  msgstr "Спойлер со скрытым содержимым"
668
 
669
- #: inc/core/data.php:318
 
 
 
 
 
 
 
 
670
  msgid "Accordion"
671
  msgstr "Аккордеон"
672
 
673
- #: inc/core/data.php:328
674
  msgid ""
675
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
676
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
@@ -680,194 +690,195 @@ msgstr ""
680
  "[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
681
  "[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
682
 
683
- #: inc/core/data.php:329
684
  msgid "Accordion with spoilers"
685
  msgstr "Аккордеон со спойлерами"
686
 
687
- #: inc/core/data.php:334
688
  msgid "Divider"
689
  msgstr "Разделитель"
690
 
691
- #: inc/core/data.php:341
692
  msgid "Show TOP link"
693
  msgstr "Показать ссылку ВВЕРХ"
694
 
695
- #: inc/core/data.php:342
696
  msgid "Show link to top of the page or not"
697
  msgstr "Показывать ссылку ВВЕРХ или нет"
698
 
699
- #: inc/core/data.php:346 inc/core/shortcodes.php:99
700
  msgid "Go to top"
701
  msgstr "Вверх"
702
 
703
- #: inc/core/data.php:347
704
  msgid "Link text"
705
  msgstr "Текст ссылки"
706
 
707
- #: inc/core/data.php:347
708
  msgid "Text for the GO TOP link"
709
  msgstr "Текст ссылки ВВЕРХ"
710
 
711
- #: inc/core/data.php:355
712
  msgid "Content divider with optional TOP link"
713
  msgstr "Разделитель текста со ссылкой ВВЕРХ"
714
 
715
- #: inc/core/data.php:360
716
  msgid "Spacer"
717
  msgstr "Пробел"
718
 
719
- #: inc/core/data.php:370 inc/core/data.php:1085 inc/core/data.php:1141
720
- #: inc/core/data.php:1253 inc/core/data.php:1302 inc/core/data.php:1398
721
- #: inc/core/data.php:1654 inc/core/data.php:1693 inc/core/data.php:1776
722
- #: inc/core/data.php:1896 inc/core/data.php:2033 inc/core/data.php:2250
 
723
  msgid "Height"
724
  msgstr "Высота"
725
 
726
- #: inc/core/data.php:371
727
  msgid "Height of the spacer in pixels"
728
  msgstr "Высота пробела в пикселях"
729
 
730
- #: inc/core/data.php:379
731
  msgid "Empty space with adjustable height"
732
  msgstr "Пробел с настраиваемой высотой"
733
 
734
- #: inc/core/data.php:384
735
  msgid "Highlight"
736
  msgstr "Выделитель"
737
 
738
- #: inc/core/data.php:392 inc/core/data.php:692 inc/core/data.php:881
739
  msgid "Background"
740
  msgstr "Фон"
741
 
742
- #: inc/core/data.php:393
743
  msgid "Highlighted text background color"
744
  msgstr "Цвет фона выделяемого текста"
745
 
746
- #: inc/core/data.php:399 inc/core/data.php:698 inc/core/data.php:887
747
  msgid "Text color"
748
  msgstr "Цвет текста"
749
 
750
- #: inc/core/data.php:399
751
  msgid "Highlighted text color"
752
  msgstr "Цвет выделяемого текста"
753
 
754
- #: inc/core/data.php:407 inc/core/data.php:408
755
  msgid "Highlighted text"
756
  msgstr "Подсвеченный текст"
757
 
758
- #: inc/core/data.php:413 inc/core/data.php:437 inc/vendor/sunrise.php:409
759
  msgid "Label"
760
  msgstr "Ярлык"
761
 
762
- #: inc/core/data.php:421
763
  msgid "Success"
764
  msgstr "Успех"
765
 
766
- #: inc/core/data.php:422
767
  msgid "Warning"
768
  msgstr "Внимание"
769
 
770
- #: inc/core/data.php:423
771
  msgid "Important"
772
  msgstr "Важно"
773
 
774
- #: inc/core/data.php:424
775
  msgid "Black"
776
  msgstr "Черный"
777
 
778
- #: inc/core/data.php:425
779
  msgid "Info"
780
  msgstr "Инфо"
781
 
782
- #: inc/core/data.php:428
783
  msgid "Type"
784
  msgstr "Тип"
785
 
786
- #: inc/core/data.php:429
787
  msgid "Style of the label"
788
  msgstr "Стиль ярлыка"
789
 
790
- #: inc/core/data.php:438
791
  msgid "Styled label"
792
  msgstr "Стильный ярлык"
793
 
794
- #: inc/core/data.php:443 inc/core/data.php:473
795
  msgid "Quote"
796
  msgstr "Цитата"
797
 
798
- #: inc/core/data.php:454
799
  msgid "Choose style for this quote"
800
  msgstr "Выберите стиль для этой цитаты"
801
 
802
- #: inc/core/data.php:458
803
  msgid "Cite"
804
  msgstr "Автор"
805
 
806
- #: inc/core/data.php:459
807
  msgid "Quote author name"
808
  msgstr "Имя автора цитаты"
809
 
810
- #: inc/core/data.php:464
811
  msgid "Cite url"
812
  msgstr "Ссылка автора"
813
 
814
- #: inc/core/data.php:465
815
  msgid "Url of the quote author. Leave empty to disable link"
816
  msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
817
 
818
- #: inc/core/data.php:474
819
  msgid "Blockquote alternative"
820
  msgstr "Альтернатива цитаты"
821
 
822
- #: inc/core/data.php:479 inc/core/data.php:498 inc/core/data.php:499
823
  msgid "Pullquote"
824
  msgstr "Цитата с обтеканием"
825
 
826
- #: inc/core/data.php:490
827
  msgid "Pullquote alignment (float)"
828
  msgstr "Выравнивание цитаты (обтекание)"
829
 
830
- #: inc/core/data.php:504 inc/core/data.php:535
831
  msgid "Dropcap"
832
  msgstr "Буквица"
833
 
834
- #: inc/core/data.php:512 inc/core/data.php:677
835
  msgid "Flat"
836
  msgstr "Плоский"
837
 
838
- #: inc/core/data.php:513
839
  msgid "Light"
840
  msgstr "Светлый"
841
 
842
- #: inc/core/data.php:517
843
  msgid "Dropcap style preset"
844
  msgstr "Стиль буквицы"
845
 
846
- #: inc/core/data.php:526
847
  msgid "Choose dropcap size"
848
  msgstr "Выберите размер буквицы"
849
 
850
- #: inc/core/data.php:534
851
  msgid "D"
852
  msgstr "D"
853
 
854
- #: inc/core/data.php:540
855
  msgid "Frame"
856
  msgstr "Рамка"
857
 
858
- #: inc/core/data.php:553
859
  msgid "Frame alignment"
860
  msgstr "Выравнивание рамки"
861
 
862
- #: inc/core/data.php:562
863
  msgid "Styled image frame"
864
  msgstr "Стильный рамка изображения"
865
 
866
- #: inc/core/data.php:567
867
  msgid "Row"
868
  msgstr "Колонки"
869
 
870
- #: inc/core/data.php:577
871
  msgid ""
872
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
873
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
@@ -877,96 +888,100 @@ msgstr ""
877
  "[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
878
  "[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
879
 
880
- #: inc/core/data.php:578
881
  msgid "Row for flexible columns"
882
  msgstr "Контейнер с резиновыми колонками"
883
 
884
- #: inc/core/data.php:583
885
  msgid "Column"
886
  msgstr "Колонка"
887
 
888
- #: inc/core/data.php:590
889
  msgid "Full width"
890
  msgstr "Во всю ширину"
891
 
892
- #: inc/core/data.php:591
893
  msgid "One half"
894
  msgstr "Одна вторая"
895
 
896
- #: inc/core/data.php:592
897
  msgid "One third"
898
  msgstr "Одна третья"
899
 
900
- #: inc/core/data.php:593
901
  msgid "Two third"
902
  msgstr "Две трети"
903
 
904
- #: inc/core/data.php:594
905
  msgid "One fourth"
906
  msgstr "Одна четвертая"
907
 
908
- #: inc/core/data.php:595
909
  msgid "Three fourth"
910
  msgstr "Три четвертых"
911
 
912
- #: inc/core/data.php:596
913
  msgid "One fifth"
914
  msgstr "Одна пятая"
915
 
916
- #: inc/core/data.php:597
917
  msgid "Two fifth"
918
  msgstr "Две пятых"
919
 
920
- #: inc/core/data.php:598
921
  msgid "Three fifth"
922
  msgstr "Три пятых"
923
 
924
- #: inc/core/data.php:599
925
  msgid "Four fifth"
926
  msgstr "Четыре пятых"
927
 
928
- #: inc/core/data.php:600
929
  msgid "One sixth"
930
  msgstr "Одна шестая"
931
 
932
- #: inc/core/data.php:601
933
  msgid "Five sixth"
934
  msgstr "Пять шестых"
935
 
936
- #: inc/core/data.php:605
937
  msgid "Select column width. This width will be calculated depend page width"
938
  msgstr ""
939
  "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
940
 
941
- #: inc/core/data.php:610 inc/core/data.php:718
942
  msgid "Centered"
943
  msgstr "По центру"
944
 
945
- #: inc/core/data.php:611
946
  msgid "Is this column centered on the page"
947
  msgstr "Колонка выровнена по центру страницы"
948
 
949
- #: inc/core/data.php:619
950
  msgid "Column content"
951
  msgstr "Содержимое колонки"
952
 
953
- #: inc/core/data.php:620
954
  msgid "Flexible and responsive columns"
955
  msgstr "Резновые колонки"
956
 
957
- #: inc/core/data.php:625
 
 
 
 
958
  msgid "List"
959
  msgstr "Список"
960
 
961
- #: inc/core/data.php:633
962
  msgid "You can upload custom icon for this list or pick a built-in icon"
963
  msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
964
 
965
- #: inc/core/data.php:638 inc/core/data.php:743 inc/core/data.php:793
966
  msgid "Icon color"
967
  msgstr "Цвет иконки"
968
 
969
- #: inc/core/data.php:639 inc/core/data.php:744 inc/core/data.php:794
970
  msgid ""
971
  "This color will be applied to the selected icon. Does not works with "
972
  "uploaded icons"
@@ -974,7 +989,7 @@ msgstr ""
974
  "Этот цвет будет применен только к иконке выбранной из списка. Не работает "
975
  "для загруженных иконок"
976
 
977
- #: inc/core/data.php:647
978
  msgid ""
979
  "<ul>\n"
980
  "<li>List item</li>\n"
@@ -988,276 +1003,276 @@ msgstr ""
988
  "<li>Элемент списка</li>\n"
989
  "</ul>"
990
 
991
- #: inc/core/data.php:648
992
  msgid "Styled unordered list"
993
  msgstr "Стильный неупорядоченный список"
994
 
995
- #: inc/core/data.php:653
996
  msgid "Button"
997
  msgstr "Кнопка"
998
 
999
- #: inc/core/data.php:660
1000
  msgid "Link"
1001
  msgstr "Ссылка"
1002
 
1003
- #: inc/core/data.php:661
1004
  msgid "Button link"
1005
  msgstr "Ссылка кнопки"
1006
 
1007
- #: inc/core/data.php:666 inc/core/data.php:1464
1008
  msgid "Same tab"
1009
  msgstr "Та же вкладка"
1010
 
1011
- #: inc/core/data.php:667 inc/core/data.php:1465
1012
  msgid "New tab"
1013
  msgstr "Новая вкладка"
1014
 
1015
- #: inc/core/data.php:670 inc/core/data.php:1468
1016
  msgid "Target"
1017
  msgstr "Цель"
1018
 
1019
- #: inc/core/data.php:671
1020
  msgid "Button link target"
1021
  msgstr "Цель ссылки кнопки"
1022
 
1023
- #: inc/core/data.php:678 inc/core/data.php:830
1024
  msgid "Soft"
1025
  msgstr "Мягкий"
1026
 
1027
- #: inc/core/data.php:679 inc/core/data.php:831
1028
  msgid "Glass"
1029
  msgstr "Стекло"
1030
 
1031
- #: inc/core/data.php:680 inc/core/data.php:832
1032
  msgid "Bubbles"
1033
  msgstr "Пузыри"
1034
 
1035
- #: inc/core/data.php:681 inc/core/data.php:833
1036
  msgid "Noise"
1037
  msgstr "Шум"
1038
 
1039
- #: inc/core/data.php:682
1040
  msgid "Stroked"
1041
  msgstr "Прошитый"
1042
 
1043
- #: inc/core/data.php:683
1044
  msgid "3D"
1045
  msgstr "3D"
1046
 
1047
- #: inc/core/data.php:686
1048
  msgid "Button background style preset"
1049
  msgstr "Стиль фона кнопки"
1050
 
1051
- #: inc/core/data.php:692
1052
  msgid "Button background color"
1053
  msgstr "Цвет фона кнопки"
1054
 
1055
- #: inc/core/data.php:699
1056
  msgid "Button text color"
1057
  msgstr "Цвет текста кнопки"
1058
 
1059
- #: inc/core/data.php:708
1060
  msgid "Button size"
1061
  msgstr "Размер кнопки"
1062
 
1063
- #: inc/core/data.php:713
1064
  msgid "Fluid"
1065
  msgstr "Резиновая"
1066
 
1067
- #: inc/core/data.php:713
1068
  msgid "Fluid buttons has 100% width"
1069
  msgstr "Резиновые кнопки имеют ширину 100%"
1070
 
1071
- #: inc/core/data.php:718
1072
  msgid "Is button centered on the page"
1073
  msgstr "Кнопка выровнена по центру страницы"
1074
 
1075
- #: inc/core/data.php:723
1076
  msgid "Auto"
1077
  msgstr "Авто"
1078
 
1079
- #: inc/core/data.php:724
1080
  msgid "Round"
1081
  msgstr "Круглый"
1082
 
1083
- #: inc/core/data.php:725
1084
  msgid "Square"
1085
  msgstr "Квадратный"
1086
 
1087
- #: inc/core/data.php:731 inc/core/data.php:858 inc/core/data.php:896
1088
  msgid "Radius"
1089
  msgstr "Радиус"
1090
 
1091
- #: inc/core/data.php:732
1092
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1093
  msgstr ""
1094
  "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
1095
 
1096
- #: inc/core/data.php:738
1097
  msgid "You can upload custom icon for this button or pick a built-in icon"
1098
  msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
1099
 
1100
- #: inc/core/data.php:749
1101
  msgid "Text shadow"
1102
  msgstr "Тень текста"
1103
 
1104
- #: inc/core/data.php:750
1105
  msgid "Button text shadow"
1106
  msgstr "Тень текста на кнопке"
1107
 
1108
- #: inc/core/data.php:754
1109
  msgid "Description"
1110
  msgstr "Описание"
1111
 
1112
- #: inc/core/data.php:755
1113
  msgid ""
1114
  "Small description under button text. This option is incompatible with icon."
1115
  msgstr ""
1116
  "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
1117
  "кнопок."
1118
 
1119
- #: inc/core/data.php:759
1120
  msgid "onClick"
1121
  msgstr "onClick"
1122
 
1123
- #: inc/core/data.php:760
1124
  msgid "Advanced JavaScript code for onClick action"
1125
  msgstr "JavaScript код для атрибута onClick"
1126
 
1127
- #: inc/core/data.php:768
1128
  msgid "Button text"
1129
  msgstr "Текст кнопки"
1130
 
1131
- #: inc/core/data.php:769
1132
  msgid "Styled button"
1133
  msgstr "Стильная кнопка"
1134
 
1135
- #: inc/core/data.php:774
1136
  msgid "Service"
1137
  msgstr "Услуга"
1138
 
1139
- #: inc/core/data.php:780 inc/core/shortcodes.php:430
1140
  msgid "Service title"
1141
  msgstr "Название услуги"
1142
 
1143
- #: inc/core/data.php:782
1144
  msgid "Service name"
1145
  msgstr "Название услуги"
1146
 
1147
- #: inc/core/data.php:788
1148
  msgid "You can upload custom icon for this box"
1149
  msgstr "Вы можете загрузить свою иконку для этого блока"
1150
 
1151
- #: inc/core/data.php:802
1152
  msgid "Icon size"
1153
  msgstr "Размер иконки"
1154
 
1155
- #: inc/core/data.php:803
1156
  msgid "Size of the uploaded icon in pixels"
1157
  msgstr "Размер загруженной иконки в пикселях"
1158
 
1159
- #: inc/core/data.php:811
1160
  msgid "Service description"
1161
  msgstr "Описание услуги"
1162
 
1163
- #: inc/core/data.php:812
1164
  msgid "Service box with title"
1165
  msgstr "Блок услуга с заголовком"
1166
 
1167
- #: inc/core/data.php:823
1168
  msgid "Box title"
1169
  msgstr "Заголовок блока"
1170
 
1171
- #: inc/core/data.php:824
1172
  msgid "Text for the box title"
1173
  msgstr "Текст для заголовка блока"
1174
 
1175
- #: inc/core/data.php:837
1176
  msgid "Box style preset"
1177
  msgstr "Стиль блока"
1178
 
1179
- #: inc/core/data.php:843 inc/core/generator-views.php:99
1180
  msgid "Color"
1181
  msgstr "Цвет"
1182
 
1183
- #: inc/core/data.php:844
1184
  msgid "Color for the box title and borders"
1185
  msgstr "Цвет заголовка блока и его рамки"
1186
 
1187
- #: inc/core/data.php:850
1188
  msgid "Title text color"
1189
  msgstr "Цвет текста заголовка"
1190
 
1191
- #: inc/core/data.php:850
1192
  msgid "Color for the box title text"
1193
  msgstr "Цвет текста в заголовке блока"
1194
 
1195
- #: inc/core/data.php:859
1196
  msgid "Box corners radius"
1197
  msgstr "Радиус углов"
1198
 
1199
- #: inc/core/data.php:867
1200
  msgid "Box content"
1201
  msgstr "Содержимое блока"
1202
 
1203
- #: inc/core/data.php:868
1204
  msgid "Colored box with caption"
1205
  msgstr "Цветной блок с заголовком"
1206
 
1207
- #: inc/core/data.php:873
1208
  msgid "Note"
1209
  msgstr "Заметка"
1210
 
1211
- #: inc/core/data.php:881
1212
  msgid "Note background color"
1213
  msgstr "Цвет фона заметки"
1214
 
1215
- #: inc/core/data.php:888
1216
  msgid "Note text color"
1217
  msgstr "Цвет текста заметки"
1218
 
1219
- #: inc/core/data.php:896
1220
  msgid "Note corners radius"
1221
  msgstr "Радиус углов"
1222
 
1223
- #: inc/core/data.php:904
1224
  msgid "Note text"
1225
  msgstr "Текст заметки"
1226
 
1227
- #: inc/core/data.php:905
1228
  msgid "Colored box"
1229
  msgstr "Цветной блок"
1230
 
1231
- #: inc/core/data.php:910 inc/core/data.php:1743 inc/core/data.php:1862
1232
- #: inc/core/data.php:2000
1233
  msgid "Lightbox"
1234
  msgstr "Лайтбокс"
1235
 
1236
- #: inc/core/data.php:917
1237
  msgid "Iframe"
1238
  msgstr "Фрейм (iframe)"
1239
 
1240
- #: inc/core/data.php:918
1241
  msgid "Image"
1242
  msgstr "Изображение"
1243
 
1244
- #: inc/core/data.php:919
1245
  msgid "Inline (html content)"
1246
  msgstr "HTML элемент"
1247
 
1248
- #: inc/core/data.php:922
1249
  msgid "Content type"
1250
  msgstr "Тип содержимого"
1251
 
1252
- #: inc/core/data.php:923
1253
  msgid "Select type of the lightbox window content"
1254
  msgstr "Выберите тип содержимого в окне лайтбокса"
1255
 
1256
- #: inc/core/data.php:927
1257
  msgid "Content source"
1258
  msgstr "Источник содержимого"
1259
 
1260
- #: inc/core/data.php:928
1261
  msgid ""
1262
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1263
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
@@ -1274,102 +1289,102 @@ msgstr ""
1274
  "%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
1275
  "%value>#contact-form</b> - любой HTML элемент (html элемент)"
1276
 
1277
- #: inc/core/data.php:936
1278
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1279
  msgstr ""
1280
  "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
1281
 
1282
- #: inc/core/data.php:937
1283
  msgid "Lightbox window with custom content"
1284
  msgstr "Лайтбокс с произвольным содержимым"
1285
 
1286
- #: inc/core/data.php:942
1287
  msgid "Tooltip"
1288
  msgstr "Подсказка"
1289
 
1290
- #: inc/core/data.php:949
1291
  msgid "Basic: Light"
1292
  msgstr "Базовый: Светлый"
1293
 
1294
- #: inc/core/data.php:950
1295
  msgid "Basic: Dark"
1296
  msgstr "Базовый: Темный"
1297
 
1298
- #: inc/core/data.php:951
1299
  msgid "Basic: Yellow"
1300
  msgstr "Базовый: Желтый"
1301
 
1302
- #: inc/core/data.php:952
1303
  msgid "Basic: Green"
1304
  msgstr "Базовый: Зеленый"
1305
 
1306
- #: inc/core/data.php:953
1307
  msgid "Basic: Red"
1308
  msgstr "Базовый: Красный"
1309
 
1310
- #: inc/core/data.php:954
1311
  msgid "Basic: Blue"
1312
  msgstr "Базовый: Голубой"
1313
 
1314
- #: inc/core/data.php:955
1315
  msgid "Youtube"
1316
  msgstr "Youtube"
1317
 
1318
- #: inc/core/data.php:956
1319
  msgid "Tipsy"
1320
  msgstr "Tipsy"
1321
 
1322
- #: inc/core/data.php:957
1323
  msgid "Bootstrap"
1324
  msgstr "Bootstrap"
1325
 
1326
- #: inc/core/data.php:958
1327
  msgid "jTools"
1328
  msgstr "jTools"
1329
 
1330
- #: inc/core/data.php:959
1331
  msgid "Tipped"
1332
  msgstr "Tipped"
1333
 
1334
- #: inc/core/data.php:960
1335
  msgid "Cluetip"
1336
  msgstr "Cluetip"
1337
 
1338
- #: inc/core/data.php:964
1339
  msgid "Tooltip window style"
1340
  msgstr "Стиль окна подсказки"
1341
 
1342
- #: inc/core/data.php:969
1343
  msgid "Top"
1344
  msgstr "Сверху"
1345
 
1346
- #: inc/core/data.php:970
1347
  msgid "Bottom"
1348
  msgstr "Снизу"
1349
 
1350
- #: inc/core/data.php:975
1351
  msgid "Position"
1352
  msgstr "Положение"
1353
 
1354
- #: inc/core/data.php:976
1355
  msgid "Tooltip position"
1356
  msgstr "Положение всплывающей подсказки"
1357
 
1358
- #: inc/core/data.php:981
1359
  msgid "Shadow"
1360
  msgstr "Тень"
1361
 
1362
- #: inc/core/data.php:982
1363
  msgid ""
1364
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1365
  "blue, green etc."
1366
  msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
1367
 
1368
- #: inc/core/data.php:987
1369
  msgid "Rounded corners"
1370
  msgstr "Скругление"
1371
 
1372
- #: inc/core/data.php:988
1373
  msgid ""
1374
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1375
  "blue, green etc."
@@ -1377,152 +1392,154 @@ msgstr ""
1377
  "Добавить скругленные уголки окну подсказки. Скругление работает только для "
1378
  "базовых стилей."
1379
 
1380
- #: inc/core/data.php:1002
1381
  msgid "Font size"
1382
  msgstr "Размер шрифта"
1383
 
1384
- #: inc/core/data.php:1003
1385
  msgid "Tooltip font size"
1386
  msgstr "Размер шрифта подсказки"
1387
 
1388
- #: inc/core/data.php:1007
1389
  msgid "Tooltip title"
1390
  msgstr "Заголовок подсказки"
1391
 
1392
- #: inc/core/data.php:1008
1393
  msgid ""
1394
  "Enter title for tooltip window. Leave this field empty to hide the title"
1395
  msgstr ""
1396
  "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
1397
  "заголовок"
1398
 
1399
- #: inc/core/data.php:1011 inc/core/shortcodes.php:508
1400
  msgid "Tooltip text"
1401
  msgstr "Текст подсказки"
1402
 
1403
- #: inc/core/data.php:1012
1404
  msgid "Tooltip content"
1405
  msgstr "Содержимое подсказки"
1406
 
1407
- #: inc/core/data.php:1013
1408
  msgid "Enter tooltip content here"
1409
  msgstr "Введите сюда содержимое подсказки"
1410
 
1411
- #: inc/core/data.php:1018
1412
  msgid "Show and hide on mouse hover"
1413
  msgstr "Показать и скрыть при наведении мыши"
1414
 
1415
- #: inc/core/data.php:1019
1416
  msgid "Show and hide by mouse click"
1417
  msgstr "Показать и скрыть по клику мыши"
1418
 
1419
- #: inc/core/data.php:1020
1420
  msgid "Always visible"
1421
  msgstr "Всегда видима"
1422
 
1423
- #: inc/core/data.php:1023
1424
  msgid "Behavior"
1425
  msgstr "Поведение"
1426
 
1427
- #: inc/core/data.php:1024
1428
  msgid "Select tooltip behavior"
1429
  msgstr "Выберите поведение подсказки"
1430
 
1431
- #: inc/core/data.php:1029
1432
  msgid "Close button"
1433
  msgstr "Кнопка закрыть"
1434
 
1435
- #: inc/core/data.php:1030
1436
  msgid "Show close button"
1437
  msgstr "Показывать кнопку закрыть"
1438
 
1439
- #: inc/core/data.php:1038
1440
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1441
  msgstr ""
1442
  "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
1443
 
1444
- #: inc/core/data.php:1039
1445
  msgid "Tooltip window with custom content"
1446
  msgstr "Всплывающая подсказка с произвольным содержимым"
1447
 
1448
- #: inc/core/data.php:1044
1449
  msgid "Private"
1450
  msgstr "Заметка для авторов"
1451
 
1452
- #: inc/core/data.php:1054
1453
  msgid "Private note text"
1454
  msgstr "Текст приватной заметки"
1455
 
1456
- #: inc/core/data.php:1055
1457
  msgid "Private note for post authors"
1458
  msgstr "Приватный текст для других авторов"
1459
 
1460
- #: inc/core/data.php:1060
1461
  msgid "YouTube"
1462
  msgstr "YouTube"
1463
 
1464
- #: inc/core/data.php:1067 inc/core/data.php:1118 inc/core/data.php:1236
1465
- #: inc/core/data.php:1285 inc/core/data.php:1539 inc/core/data.php:1636
 
1466
  msgid "Url"
1467
  msgstr "Ссылка"
1468
 
1469
- #: inc/core/data.php:1068 inc/core/data.php:1119
1470
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1471
  msgstr ""
1472
  "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1473
 
1474
- #: inc/core/data.php:1076 inc/core/data.php:1132 inc/core/data.php:1244
1475
- #: inc/core/data.php:1293 inc/core/data.php:1335 inc/core/data.php:1389
1476
- #: inc/core/data.php:1645 inc/core/data.php:1684 inc/core/data.php:1768
1477
- #: inc/core/data.php:1887 inc/core/data.php:2025 inc/core/data.php:2241
 
1478
  msgid "Width"
1479
  msgstr "Ширина"
1480
 
1481
- #: inc/core/data.php:1077 inc/core/data.php:1133 inc/core/data.php:1245
1482
- #: inc/core/data.php:1294 inc/core/data.php:1390
1483
  msgid "Player width"
1484
  msgstr "Ширина плеера"
1485
 
1486
- #: inc/core/data.php:1086 inc/core/data.php:1142 inc/core/data.php:1254
1487
- #: inc/core/data.php:1303 inc/core/data.php:1399
1488
  msgid "Player height"
1489
  msgstr "Высота плеера"
1490
 
1491
- #: inc/core/data.php:1091 inc/core/data.php:1147 inc/core/data.php:1259
1492
- #: inc/core/data.php:1308 inc/core/data.php:1660 inc/core/data.php:1699
1493
- #: inc/core/data.php:1781 inc/core/data.php:1902
1494
  msgid "Responsive"
1495
  msgstr "Отзывчивость (responsive)"
1496
 
1497
- #: inc/core/data.php:1092 inc/core/data.php:1148 inc/core/data.php:1260
1498
- #: inc/core/data.php:1309
1499
  msgid "Ignore width and height parameters and make player responsive"
1500
  msgstr ""
1501
  "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1502
 
1503
- #: inc/core/data.php:1097 inc/core/data.php:1181 inc/core/data.php:1265
1504
- #: inc/core/data.php:1341 inc/core/data.php:1410 inc/core/data.php:1816
1505
- #: inc/core/data.php:1954
1506
  msgid "Autoplay"
1507
  msgstr "Автовоспроизведение"
1508
 
1509
- #: inc/core/data.php:1098 inc/core/data.php:1182 inc/core/data.php:1266
1510
  msgid "Play video automatically when page is loaded"
1511
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1512
 
1513
- #: inc/core/data.php:1106
1514
  msgid "YouTube video"
1515
  msgstr "Видео YouTube"
1516
 
1517
- #: inc/core/data.php:1111
1518
  msgid "YouTube Advanced"
1519
  msgstr "YouTube продвинутый"
1520
 
1521
- #: inc/core/data.php:1123
1522
  msgid "Playlist"
1523
  msgstr "Плейлист"
1524
 
1525
- #: inc/core/data.php:1124
1526
  msgid ""
1527
  "Value is a comma-separated list of video IDs to play. If you specify a "
1528
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
@@ -1532,44 +1549,44 @@ msgstr ""
1532
  "значение, то первым будет проиграно видео из параметра URL, а указанные "
1533
  "здесь видео будут проиграны после него"
1534
 
1535
- #: inc/core/data.php:1153
1536
  msgid "0 - Hide controls"
1537
  msgstr "0 - Спрятать панель"
1538
 
1539
- #: inc/core/data.php:1154
1540
  msgid "1 - Show controls"
1541
  msgstr "1 - Показать панель"
1542
 
1543
- #: inc/core/data.php:1155
1544
  msgid "2 - Show controls when playback is started"
1545
  msgstr "2 - Показать панель при начале воспроизведения"
1546
 
1547
- #: inc/core/data.php:1158 inc/core/data.php:1404
1548
  msgid "Controls"
1549
  msgstr "Элементы управления"
1550
 
1551
- #: inc/core/data.php:1159
1552
  msgid "This parameter indicates whether the video player controls will display"
1553
  msgstr ""
1554
  "Этот параметр определяет как показывать панель управления воспроизведением"
1555
 
1556
- #: inc/core/data.php:1164
1557
  msgid "0 - Do not hide controls"
1558
  msgstr "0 - Не прятать панель"
1559
 
1560
- #: inc/core/data.php:1165
1561
  msgid "1 - Hide all controls on mouse out"
1562
  msgstr "1 - Спрятать панель при уходе мыши"
1563
 
1564
- #: inc/core/data.php:1166
1565
  msgid "2 - Hide progress bar on mouse out"
1566
  msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
1567
 
1568
- #: inc/core/data.php:1169
1569
  msgid "Autohide"
1570
  msgstr "Авто-скрытие"
1571
 
1572
- #: inc/core/data.php:1170
1573
  msgid ""
1574
  "This parameter indicates whether the video controls will automatically hide "
1575
  "after a video begins playing"
@@ -1577,11 +1594,11 @@ msgstr ""
1577
  "Этот параметр определяет как скрывать панель управления воспроизведением во "
1578
  "время проигрывания ролика"
1579
 
1580
- #: inc/core/data.php:1175
1581
  msgid "Show title bar"
1582
  msgstr "Показывать заголовок"
1583
 
1584
- #: inc/core/data.php:1176
1585
  msgid ""
1586
  "If you set the parameter value to NO, then the player will not display "
1587
  "information like the video title and uploader before the video starts "
@@ -1590,21 +1607,21 @@ msgstr ""
1590
  "Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
1591
  "названием видео и имя автора видео"
1592
 
1593
- #: inc/core/data.php:1187 inc/core/data.php:1347 inc/core/data.php:1416
1594
  msgid "Loop"
1595
  msgstr "Повтор"
1596
 
1597
- #: inc/core/data.php:1188
1598
  msgid ""
1599
  "Setting of YES will cause the player to play the initial video again and "
1600
  "again"
1601
  msgstr "Видео будет снова проиграно по окнчании воспроизведения"
1602
 
1603
- #: inc/core/data.php:1193
1604
  msgid "Related videos"
1605
  msgstr "Похожие видео"
1606
 
1607
- #: inc/core/data.php:1194
1608
  msgid ""
1609
  "This parameter indicates whether the player should show related videos when "
1610
  "playback of the initial video ends"
@@ -1612,17 +1629,17 @@ msgstr ""
1612
  "Этот параметр позволяет отключать показ похожих видео по окончании "
1613
  "воспроизведения"
1614
 
1615
- #: inc/core/data.php:1199
1616
  msgid "Show full-screen button"
1617
  msgstr "Показывать кнопку полноэкранного режима"
1618
 
1619
- #: inc/core/data.php:1200
1620
  msgid ""
1621
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1622
  msgstr ""
1623
  "Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
1624
 
1625
- #: inc/core/data.php:1206
1626
  msgid ""
1627
  "This parameter lets you use a YouTube player that does not show a YouTube "
1628
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
@@ -1634,66 +1651,150 @@ msgstr ""
1634
  "управления воспроизведением. Вместо он будет показан либо в панели заголовка "
1635
  "видео, либо как полупрозрачный над видео"
1636
 
1637
- #: inc/core/data.php:1211
1638
  msgid "Dark theme"
1639
  msgstr "Темная тема"
1640
 
1641
- #: inc/core/data.php:1212
1642
  msgid "Light theme"
1643
  msgstr "Светлая тема"
1644
 
1645
- #: inc/core/data.php:1215 inc/core/data.php:2272
1646
  msgid "Theme"
1647
  msgstr "Тема"
1648
 
1649
- #: inc/core/data.php:1216
1650
  msgid ""
1651
  "This parameter indicates whether the embedded player will display player "
1652
  "controls (like a play button or volume control) within a dark or light "
1653
  "control bar"
1654
  msgstr "Выберите тему для проигрывателя"
1655
 
1656
- #: inc/core/data.php:1224
 
 
 
 
 
 
 
 
1657
  msgid "YouTube video player with advanced settings"
1658
  msgstr "YouTube видео плеер с расширенными настройками"
1659
 
1660
- #: inc/core/data.php:1229
1661
  msgid "Vimeo"
1662
  msgstr "Vimeo"
1663
 
1664
- #: inc/core/data.php:1236
1665
  msgid "Url of Vimeo page with video"
1666
  msgstr "Ссылка на страницу Vimeo с видео"
1667
 
1668
- #: inc/core/data.php:1274
1669
  msgid "Vimeo video"
1670
  msgstr "Видео Vimeo"
1671
 
1672
- #: inc/core/data.php:1279
1673
  msgid "Screenr"
1674
  msgstr "Screenr"
1675
 
1676
- #: inc/core/data.php:1285
1677
  msgid "Url of Screenr page with video"
1678
  msgstr "Ссылка на страницу Screenr с видео"
1679
 
1680
- #: inc/core/data.php:1317
1681
  msgid "Screenr video"
1682
  msgstr "Видео Screenr"
1683
 
1684
- #: inc/core/data.php:1322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1685
  msgid "Audio"
1686
  msgstr "Аудио"
1687
 
1688
- #: inc/core/data.php:1329 inc/core/data.php:1368
1689
  msgid "File"
1690
  msgstr "Файл"
1691
 
1692
- #: inc/core/data.php:1330
1693
  msgid "Audio file url. Supported formats: mp3, ogg"
1694
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1695
 
1696
- #: inc/core/data.php:1336
1697
  msgid ""
1698
  "Player width. You can specify width in percents and player will be "
1699
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
@@ -1702,63 +1803,63 @@ msgstr ""
1702
  "отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
1703
  "%value>100&#37;</b>"
1704
 
1705
- #: inc/core/data.php:1342 inc/core/data.php:1411
1706
  msgid "Play file automatically when page is loaded"
1707
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1708
 
1709
- #: inc/core/data.php:1348 inc/core/data.php:1417
1710
  msgid "Repeat when playback is ended"
1711
  msgstr "Повторять, когда воспроизведение окночено"
1712
 
1713
- #: inc/core/data.php:1356
1714
  msgid "Custom audio player"
1715
  msgstr "Настраиваемый аудио-плеер"
1716
 
1717
- #: inc/core/data.php:1361
1718
  msgid "Video"
1719
  msgstr "Видео"
1720
 
1721
- #: inc/core/data.php:1369
1722
  msgid "Url to mp4/flv video-file"
1723
  msgstr "Ссылка на mp4/flv видео-файл"
1724
 
1725
- #: inc/core/data.php:1374
1726
  msgid "Poster"
1727
  msgstr "Постер"
1728
 
1729
- #: inc/core/data.php:1375
1730
  msgid "Url to poster image, that will be shown before playback"
1731
  msgstr ""
1732
  "Ссылка на изображение постера. Изображение будет показано перед началом "
1733
  "воспроизведения"
1734
 
1735
- #: inc/core/data.php:1381
1736
  msgid "Player title"
1737
  msgstr "Заголовок плеера"
1738
 
1739
- #: inc/core/data.php:1405
1740
  msgid "Show player controls (play/pause etc.) or not"
1741
  msgstr ""
1742
  "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1743
 
1744
- #: inc/core/data.php:1425
1745
  msgid "Custom video player"
1746
  msgstr "Настраиваемый видео-плеер"
1747
 
1748
- #: inc/core/data.php:1430
1749
  msgid "Table"
1750
  msgstr "Таблица"
1751
 
1752
- #: inc/core/data.php:1437
1753
  msgid "CSV file"
1754
  msgstr "CSV файл"
1755
 
1756
- #: inc/core/data.php:1438
1757
  msgid "Upload CSV file if you want to create HTML-table from file"
1758
  msgstr ""
1759
  "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1760
 
1761
- #: inc/core/data.php:1446
1762
  msgid ""
1763
  "<table>\n"
1764
  "<tr>\n"
@@ -1782,231 +1883,231 @@ msgstr ""
1782
  "</tr>\n"
1783
  "</table>"
1784
 
1785
- #: inc/core/data.php:1447
1786
  msgid "Styled table from HTML or CSV file"
1787
  msgstr "Стильная таблица из HTML или CSV файла"
1788
 
1789
- #: inc/core/data.php:1452
1790
  msgid "Permalink"
1791
  msgstr "Постоянная ссылка"
1792
 
1793
- #: inc/core/data.php:1458 inc/core/data.php:2381
1794
  msgid "ID"
1795
  msgstr "ID"
1796
 
1797
- #: inc/core/data.php:1459
1798
  msgid "Post or page ID"
1799
  msgstr "ID записи или страницы"
1800
 
1801
- #: inc/core/data.php:1469
1802
  msgid "Link target. blank - link will be opened in new window/tab"
1803
  msgstr ""
1804
  "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
1805
  "вкладке"
1806
 
1807
- #: inc/core/data.php:1478
1808
  msgid "Permalink to specified post/page"
1809
  msgstr "Постоянная ссылка на страницу"
1810
 
1811
- #: inc/core/data.php:1483
1812
  msgid "Members"
1813
  msgstr "Участники"
1814
 
1815
- #: inc/core/data.php:1488 inc/core/shortcodes.php:756
1816
  msgid "This content is for registered users only. Please %login%."
1817
  msgstr ""
1818
  "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1819
 
1820
- #: inc/core/data.php:1489
1821
  msgid "Message"
1822
  msgstr "Сообщение"
1823
 
1824
- #: inc/core/data.php:1489
1825
  msgid "Message for not logged users"
1826
  msgstr "Собщение для неавторизованных"
1827
 
1828
- #: inc/core/data.php:1494
1829
  msgid "Box color"
1830
  msgstr "Цвет блока"
1831
 
1832
- #: inc/core/data.php:1494
1833
  msgid "This color will applied only to box for not logged users"
1834
  msgstr ""
1835
  "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1836
 
1837
- #: inc/core/data.php:1497 inc/core/shortcodes.php:759
1838
  msgid "login"
1839
  msgstr "войдите"
1840
 
1841
- #: inc/core/data.php:1498
1842
  msgid "Login link text"
1843
  msgstr "Текст ссылки войти"
1844
 
1845
- #: inc/core/data.php:1498
1846
  msgid "Text for the login link"
1847
  msgstr "Текст ссылки ВОЙТИ"
1848
 
1849
- #: inc/core/data.php:1502
1850
  msgid "Login link url"
1851
  msgstr "Адрес ссылки войти"
1852
 
1853
- #: inc/core/data.php:1510
1854
  msgid "Content for logged members"
1855
  msgstr "Содержимое для авторизованых пользователей"
1856
 
1857
- #: inc/core/data.php:1511
1858
  msgid "Content for logged in members only"
1859
  msgstr "Ссодержимое для авторизованых"
1860
 
1861
- #: inc/core/data.php:1516
1862
  msgid "Guests"
1863
  msgstr "Гости"
1864
 
1865
- #: inc/core/data.php:1526
1866
  msgid "Content for guests"
1867
  msgstr "Содержимое для гостей"
1868
 
1869
- #: inc/core/data.php:1527
1870
  msgid "Content for guests only"
1871
  msgstr "Ссодержимое только для гостей"
1872
 
1873
- #: inc/core/data.php:1532
1874
  msgid "RSS Feed"
1875
  msgstr "RSS лента"
1876
 
1877
- #: inc/core/data.php:1540
1878
  msgid "Url to RSS-feed"
1879
  msgstr "Ссылка на RSS-ленту"
1880
 
1881
- #: inc/core/data.php:1548 inc/core/data.php:1735 inc/core/data.php:1854
1882
- #: inc/core/data.php:1992
1883
  msgid "Limit"
1884
  msgstr "Лимит"
1885
 
1886
- #: inc/core/data.php:1548
1887
  msgid "Number of items to show"
1888
  msgstr "Количество элементов для отображения"
1889
 
1890
- #: inc/core/data.php:1556
1891
  msgid "Feed grabber"
1892
  msgstr "Граббер новостных лент"
1893
 
1894
- #: inc/core/data.php:1561
1895
  msgid "Menu"
1896
  msgstr "Меню"
1897
 
1898
- #: inc/core/data.php:1568
1899
  msgid "Menu name"
1900
  msgstr "Имя меню"
1901
 
1902
- #: inc/core/data.php:1568
1903
  msgid "Custom menu name. Ex: Main menu"
1904
  msgstr "Имя произвольного меню. Например: Главное меню"
1905
 
1906
- #: inc/core/data.php:1576
1907
  msgid "Custom menu by name"
1908
  msgstr "Произвольное меню"
1909
 
1910
- #: inc/core/data.php:1581
1911
  msgid "Sub pages"
1912
  msgstr "Подстраницы"
1913
 
1914
- #: inc/core/data.php:1588 inc/core/data.php:1615
1915
  msgid "Depth"
1916
  msgstr "Глубина"
1917
 
1918
- #: inc/core/data.php:1589
1919
  msgid "Max depth level of children pages"
1920
  msgstr "Максимальная глубина дочерних страниц"
1921
 
1922
- #: inc/core/data.php:1594
1923
  msgid "Parent ID"
1924
  msgstr "ID родителя"
1925
 
1926
- #: inc/core/data.php:1595
1927
  msgid "ID of the parent page. Leave blank to use current page"
1928
  msgstr ""
1929
  "ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
1930
  "страницу"
1931
 
1932
- #: inc/core/data.php:1603
1933
  msgid "List of sub pages"
1934
  msgstr "Список дочерних страниц"
1935
 
1936
- #: inc/core/data.php:1608
1937
  msgid "Siblings"
1938
  msgstr "Соседние страницы"
1939
 
1940
- #: inc/core/data.php:1616
1941
  msgid "Max depth level"
1942
  msgstr "Максимальный уровень вложенности"
1943
 
1944
- #: inc/core/data.php:1624
1945
  msgid "List of cureent page siblings"
1946
  msgstr "Список страниц, соседних с текущей"
1947
 
1948
- #: inc/core/data.php:1629
1949
  msgid "Document"
1950
  msgstr "Документ"
1951
 
1952
- #: inc/core/data.php:1637
1953
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1954
  msgstr ""
1955
  "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
1956
 
1957
- #: inc/core/data.php:1646
1958
  msgid "Viewer width"
1959
  msgstr "Ширина просмотрщика"
1960
 
1961
- #: inc/core/data.php:1655
1962
  msgid "Viewer height"
1963
  msgstr "Высота просмотрщика"
1964
 
1965
- #: inc/core/data.php:1661
1966
  msgid "Ignore width and height parameters and make viewer responsive"
1967
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
1968
 
1969
- #: inc/core/data.php:1669
1970
  msgid "Document viewer by Google"
1971
  msgstr "Просмотрщик документов от Google"
1972
 
1973
- #: inc/core/data.php:1674
1974
  msgid "Gmap"
1975
  msgstr "Google карта"
1976
 
1977
- #: inc/core/data.php:1685
1978
  msgid "Map width"
1979
  msgstr "Ширина карты"
1980
 
1981
- #: inc/core/data.php:1694
1982
  msgid "Map height"
1983
  msgstr "Высота карты"
1984
 
1985
- #: inc/core/data.php:1700
1986
  msgid "Ignore width and height parameters and make map responsive"
1987
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
1988
 
1989
- #: inc/core/data.php:1705
1990
  msgid "Marker"
1991
  msgstr "Маркер"
1992
 
1993
- #: inc/core/data.php:1706
1994
  msgid "Address for the marker. You can type it in any language"
1995
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
1996
 
1997
- #: inc/core/data.php:1714
1998
  msgid "Maps by Google"
1999
  msgstr "Карты от Google"
2000
 
2001
- #: inc/core/data.php:1719
2002
  msgid "Slider"
2003
  msgstr "Слайдер"
2004
 
2005
- #: inc/core/data.php:1726 inc/core/data.php:1845 inc/core/data.php:1983
2006
  msgid "Source"
2007
  msgstr "Источник"
2008
 
2009
- #: inc/core/data.php:1727 inc/core/data.php:1846 inc/core/data.php:1984
2010
  msgid ""
2011
  "Choose images source. You can use images from Media library or retrieve it "
2012
  "from posts (thumbnails) posted under specified blog category. You can also "
@@ -2017,7 +2118,7 @@ msgstr ""
2017
  "опубликованных в выбранной категории. Вы также можете выбрать произвольную "
2018
  "таксономию и её рубрики"
2019
 
2020
- #: inc/core/data.php:1736 inc/core/data.php:1855 inc/core/data.php:1993
2021
  msgid ""
2022
  "Maximum number of image source posts (for recent posts, category and custom "
2023
  "taxonomy)"
@@ -2025,203 +2126,203 @@ msgstr ""
2025
  "Максимальное кол-во записей с изображениями (для последних записей, "
2026
  "категорий и произвольных таксономий)"
2027
 
2028
- #: inc/core/data.php:1742 inc/core/data.php:1861 inc/core/data.php:1999
2029
  msgid "Full-size image"
2030
  msgstr "Полноразмерное изображение"
2031
 
2032
- #: inc/core/data.php:1744 inc/core/data.php:1863 inc/core/data.php:2001
2033
  msgid "Slide link (added in media editor)"
2034
  msgstr "Ссылка слайда (добавленная в медиа редакторе)"
2035
 
2036
- #: inc/core/data.php:1745 inc/core/data.php:1864 inc/core/data.php:2002
2037
  msgid "Attachment page"
2038
  msgstr "Страница медиа-файла"
2039
 
2040
- #: inc/core/data.php:1746 inc/core/data.php:1865 inc/core/data.php:2003
2041
  msgid "Post permalink"
2042
  msgstr "Ссылка записи"
2043
 
2044
- #: inc/core/data.php:1749 inc/core/data.php:1868 inc/core/data.php:2006
2045
  msgid "Links"
2046
  msgstr "Ссылки"
2047
 
2048
- #: inc/core/data.php:1750 inc/core/data.php:1869 inc/core/data.php:2007
2049
  msgid "Select which links will be used for images in this gallery"
2050
  msgstr "Выберите какие ссылки использовать для элементов этой галереи"
2051
 
2052
- #: inc/core/data.php:1755 inc/core/data.php:1874 inc/core/data.php:2012
2053
  msgid "Same window"
2054
  msgstr "То же окно"
2055
 
2056
- #: inc/core/data.php:1756 inc/core/data.php:1875 inc/core/data.php:2013
2057
  msgid "New window"
2058
  msgstr "Новое окно"
2059
 
2060
- #: inc/core/data.php:1759 inc/core/data.php:1878 inc/core/data.php:2016
2061
  msgid "Links target"
2062
  msgstr "Цель ссылок"
2063
 
2064
- #: inc/core/data.php:1760 inc/core/data.php:1879 inc/core/data.php:2017
2065
  msgid "Open links in"
2066
  msgstr "Открывать ссылки в"
2067
 
2068
- #: inc/core/data.php:1768
2069
  msgid "Slider width (in pixels)"
2070
  msgstr "Ширина слайдера (в пикселях)"
2071
 
2072
- #: inc/core/data.php:1776
2073
  msgid "Slider height (in pixels)"
2074
  msgstr "Высота слайдера (в пикселях)"
2075
 
2076
- #: inc/core/data.php:1782
2077
  msgid "Ignore width and height parameters and make slider responsive"
2078
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
2079
 
2080
- #: inc/core/data.php:1787 inc/core/data.php:1925 inc/core/data.php:2043
2081
  msgid "Show titles"
2082
  msgstr "Показывать заголовки"
2083
 
2084
- #: inc/core/data.php:1787
2085
  msgid "Display slide titles"
2086
  msgstr "Отображать заголовки слайдов"
2087
 
2088
- #: inc/core/data.php:1792
2089
  msgid "Is slider centered on the page"
2090
  msgstr "Слайдер выровнен по центру страницы"
2091
 
2092
- #: inc/core/data.php:1797 inc/core/data.php:1935
2093
  msgid "Arrows"
2094
  msgstr "Стрелки"
2095
 
2096
- #: inc/core/data.php:1797 inc/core/data.php:1935
2097
  msgid "Show left and right arrows"
2098
  msgstr "Показывать стрелки влево/вправо"
2099
 
2100
- #: inc/core/data.php:1802 inc/core/data.php:1940
2101
  msgid "Pagination"
2102
  msgstr "Страницы"
2103
 
2104
- #: inc/core/data.php:1803 inc/core/data.php:1941
2105
  msgid "Show pagination"
2106
  msgstr "Показывать страницы"
2107
 
2108
- #: inc/core/data.php:1807 inc/core/data.php:1945
2109
  msgid "Mouse wheel control"
2110
  msgstr "Управление колесом мыши"
2111
 
2112
- #: inc/core/data.php:1808
2113
  msgid "Allow to change slides with mouse wheel"
2114
  msgstr "Разрешить перелистывание слайдов колесом мышки"
2115
 
2116
- #: inc/core/data.php:1817
2117
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2118
  msgstr ""
2119
  "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
2120
  "отключить автовоспроизведение"
2121
 
2122
- #: inc/core/data.php:1825 inc/core/data.php:1963
2123
  msgid "Speed"
2124
  msgstr "Скорость"
2125
 
2126
- #: inc/core/data.php:1825 inc/core/data.php:1963
2127
  msgid "Specify animation speed"
2128
  msgstr "Укажите скорость анимации"
2129
 
2130
- #: inc/core/data.php:1833
2131
  msgid "Customizable image slider"
2132
  msgstr "Настраиваемый слайдер изображений"
2133
 
2134
- #: inc/core/data.php:1838
2135
  msgid "Carousel"
2136
  msgstr "Карусель"
2137
 
2138
- #: inc/core/data.php:1888
2139
  msgid "Carousel width (in pixels)"
2140
  msgstr "Ширина карусели (в пикселях)"
2141
 
2142
- #: inc/core/data.php:1897
2143
  msgid "Carousel height (in pixels)"
2144
  msgstr "Высота карусели (в пикселях)"
2145
 
2146
- #: inc/core/data.php:1903
2147
  msgid "Ignore width and height parameters and make carousel responsive"
2148
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
2149
 
2150
- #: inc/core/data.php:1911
2151
  msgid "Items to show"
2152
  msgstr "Количество элементов для отображения"
2153
 
2154
- #: inc/core/data.php:1912
2155
  msgid "How much carousel items is visible"
2156
  msgstr "Сколько элементов карусели видны постоянно"
2157
 
2158
- #: inc/core/data.php:1919
2159
  msgid "Scroll number"
2160
  msgstr "Кол-во прокручиваемых"
2161
 
2162
- #: inc/core/data.php:1920
2163
  msgid "How much items are scrolled in one transition"
2164
  msgstr "Сколько элементов карусели прокручивается за один переход"
2165
 
2166
- #: inc/core/data.php:1925
2167
  msgid "Display titles for each item"
2168
  msgstr "Показывать заголовки для каждого элемента карусели"
2169
 
2170
- #: inc/core/data.php:1930
2171
  msgid "Is carousel centered on the page"
2172
  msgstr "Карусель выровнена по центру страницы"
2173
 
2174
- #: inc/core/data.php:1946
2175
  msgid "Allow to rotate carousel with mouse wheel"
2176
  msgstr "Разрешить прокрутку карусели колесом мыши"
2177
 
2178
- #: inc/core/data.php:1955
2179
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2180
  msgstr ""
2181
  "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
2182
  "автовоспроизведение"
2183
 
2184
- #: inc/core/data.php:1971
2185
  msgid "Customizable image carousel"
2186
  msgstr "Настраиваемая карусель изображений"
2187
 
2188
- #: inc/core/data.php:2025
2189
  msgid "Single item width (in pixels)"
2190
  msgstr "Ширина одного изображения (в пикселях)"
2191
 
2192
- #: inc/core/data.php:2033
2193
  msgid "Single item height (in pixels)"
2194
  msgstr "Высота одного изображения (в пикселях)"
2195
 
2196
- #: inc/core/data.php:2038
2197
  msgid "Never"
2198
  msgstr "Никогда"
2199
 
2200
- #: inc/core/data.php:2039
2201
  msgid "On mouse over"
2202
  msgstr "При наведении мыши"
2203
 
2204
- #: inc/core/data.php:2040
2205
  msgid "Always"
2206
  msgstr "Всегда"
2207
 
2208
- #: inc/core/data.php:2044
2209
  msgid "Title display mode"
2210
  msgstr "Режим отображения заголовков"
2211
 
2212
- #: inc/core/data.php:2052
2213
  msgid "Customizable image gallery"
2214
  msgstr "Настраиваемая галерея изображений"
2215
 
2216
- #: inc/core/data.php:2057
2217
  msgid "Posts"
2218
  msgstr "Записи"
2219
 
2220
- #: inc/core/data.php:2062 inc/core/data.php:2488
2221
  msgid "Template"
2222
  msgstr "Шаблон"
2223
 
2224
- #: inc/core/data.php:2063
2225
  msgid ""
2226
  "<b>Do not change this field value if you do not understand description below."
2227
  "</b><br/>Relative path to the template file. Default templates is placed "
@@ -2244,55 +2345,55 @@ msgstr ""
2244
  "одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
2245
  "маркированный список с заголовками постов"
2246
 
2247
- #: inc/core/data.php:2067
2248
  msgid "Post ID's"
2249
  msgstr "ID постов"
2250
 
2251
- #: inc/core/data.php:2068
2252
  msgid "Enter comma separated ID's of the posts that you want to show"
2253
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
2254
 
2255
- #: inc/core/data.php:2076
2256
  msgid "Posts per page"
2257
  msgstr "Кол-во записей"
2258
 
2259
- #: inc/core/data.php:2077
2260
  msgid ""
2261
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2262
  msgstr ""
2263
  "Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
2264
  "отобразить все найденные записи"
2265
 
2266
- #: inc/core/data.php:2084
2267
  msgid "Post types"
2268
  msgstr "Типы постов"
2269
 
2270
- #: inc/core/data.php:2085
2271
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2272
  msgstr ""
2273
  "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
2274
 
2275
- #: inc/core/data.php:2091 inc/core/generator-views.php:123
2276
  msgid "Taxonomy"
2277
  msgstr "Таксономия"
2278
 
2279
- #: inc/core/data.php:2092
2280
  msgid "Select taxonomy to show posts from"
2281
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
2282
 
2283
- #: inc/core/data.php:2099
2284
  msgid "Terms"
2285
  msgstr "Категории (terms)"
2286
 
2287
- #: inc/core/data.php:2100
2288
  msgid "Select terms to show posts from"
2289
  msgstr "Выберите категории, из которых нужно показать записи"
2290
 
2291
- #: inc/core/data.php:2105
2292
  msgid "Taxonomy term operator"
2293
  msgstr "Оператор выбора категорий"
2294
 
2295
- #: inc/core/data.php:2106
2296
  msgid ""
2297
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2298
  "that is does not have any of selected terms<br/>AND - posts that have all "
@@ -2302,203 +2403,203 @@ msgstr ""
2302
  "будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
2303
  ">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
2304
 
2305
- #: inc/core/data.php:2113
2306
  msgid "Authors"
2307
  msgstr "Авторы"
2308
 
2309
- #: inc/core/data.php:2114
2310
  msgid "Choose the authors whose posts you want to show"
2311
  msgstr "Выберите авторов, чьи записи хотите показать"
2312
 
2313
- #: inc/core/data.php:2118
2314
  msgid "Meta key"
2315
  msgstr "Произвольное поле"
2316
 
2317
- #: inc/core/data.php:2119
2318
  msgid "Enter meta key name to show posts that have this key"
2319
  msgstr ""
2320
  "Введите оригинальное имя произвольного поля, чтобы показать все записи у "
2321
  "которых это поле задано"
2322
 
2323
- #: inc/core/data.php:2126
2324
  msgid "Offset"
2325
  msgstr "Смещение (offset)"
2326
 
2327
- #: inc/core/data.php:2127
2328
  msgid "Specify offset to start posts loop not from first post"
2329
  msgstr ""
2330
  "Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
2331
  "если указать 2, то будут показаны записи начиная со третьей"
2332
 
2333
- #: inc/core/data.php:2132
2334
  msgid "Descending"
2335
  msgstr "По убыванию"
2336
 
2337
- #: inc/core/data.php:2133
2338
  msgid "Ascending"
2339
  msgstr "По возрастанию"
2340
 
2341
- #: inc/core/data.php:2136
2342
  msgid "Order"
2343
  msgstr "Порядок"
2344
 
2345
- #: inc/core/data.php:2137
2346
  msgid "Posts order"
2347
  msgstr "Порядок сортировки записей"
2348
 
2349
- #: inc/core/data.php:2143 inc/core/data.php:2359 inc/core/data.php:2432
2350
- #: inc/core/data.php:2474
2351
  msgid "Post ID"
2352
  msgstr "ID записи"
2353
 
2354
- #: inc/core/data.php:2144 inc/core/data.php:2433
2355
  msgid "Post author"
2356
  msgstr "Автор записи"
2357
 
2358
- #: inc/core/data.php:2145 inc/core/data.php:2437
2359
  msgid "Post title"
2360
  msgstr "Заголовок записи"
2361
 
2362
- #: inc/core/data.php:2146
2363
  msgid "Post slug"
2364
  msgstr "Ссылка записи (slug)"
2365
 
2366
- #: inc/core/data.php:2147
2367
  msgid "Date"
2368
  msgstr "Дата"
2369
 
2370
- #: inc/core/data.php:2147
2371
  msgid "Last modified date"
2372
  msgstr "Дата изменения"
2373
 
2374
- #: inc/core/data.php:2148 inc/core/data.php:2158 inc/core/data.php:2446
2375
  msgid "Post parent"
2376
  msgstr "Родитель"
2377
 
2378
- #: inc/core/data.php:2149
2379
  msgid "Random"
2380
  msgstr "Случайно"
2381
 
2382
- #: inc/core/data.php:2149
2383
  msgid "Comments number"
2384
  msgstr "Кол-во комментариев"
2385
 
2386
- #: inc/core/data.php:2150 inc/core/data.php:2448
2387
  msgid "Menu order"
2388
  msgstr "Порядок меню"
2389
 
2390
- #: inc/core/data.php:2150
2391
  msgid "Meta key values"
2392
  msgstr "Значение произвольного поля"
2393
 
2394
- #: inc/core/data.php:2153
2395
  msgid "Order by"
2396
  msgstr "Сортировать по"
2397
 
2398
- #: inc/core/data.php:2154
2399
  msgid "Order posts by"
2400
  msgstr "Сортировать записи по следующему признаку"
2401
 
2402
- #: inc/core/data.php:2159
2403
  msgid "Show childrens of entered post (enter post ID)"
2404
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
2405
 
2406
- #: inc/core/data.php:2164
2407
  msgid "Published"
2408
  msgstr "Опубликован"
2409
 
2410
- #: inc/core/data.php:2165
2411
  msgid "Pending"
2412
  msgstr "Ожидает"
2413
 
2414
- #: inc/core/data.php:2166
2415
  msgid "Draft"
2416
  msgstr "Черновик"
2417
 
2418
- #: inc/core/data.php:2167
2419
  msgid "Auto-draft"
2420
  msgstr "Авто-черновик"
2421
 
2422
- #: inc/core/data.php:2168
2423
  msgid "Future post"
2424
  msgstr "Запланирован"
2425
 
2426
- #: inc/core/data.php:2169
2427
  msgid "Private post"
2428
  msgstr "Приватная запись"
2429
 
2430
- #: inc/core/data.php:2170
2431
  msgid "Inherit"
2432
  msgstr "Вложенный"
2433
 
2434
- #: inc/core/data.php:2171
2435
  msgid "Trashed"
2436
  msgstr "В корзине"
2437
 
2438
- #: inc/core/data.php:2172 inc/core/data.php:2256
2439
  msgid "Any"
2440
  msgstr "Любой"
2441
 
2442
- #: inc/core/data.php:2175 inc/core/data.php:2439
2443
  msgid "Post status"
2444
  msgstr "Статус записи"
2445
 
2446
- #: inc/core/data.php:2176
2447
  msgid "Show only posts with selected status"
2448
  msgstr "Показать только записи с выбранным статусом"
2449
 
2450
- #: inc/core/data.php:2181
2451
  msgid "Ignore sticky"
2452
  msgstr "Игнорировать прикрепленные"
2453
 
2454
- #: inc/core/data.php:2182
2455
  msgid "Select Yes to ignore posts that is sticked"
2456
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
2457
 
2458
- #: inc/core/data.php:2185
2459
  msgid "Custom posts query with customizable template"
2460
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
2461
 
2462
- #: inc/core/data.php:2190
2463
  msgid "Dummy text"
2464
  msgstr "Текст рыба"
2465
 
2466
- #: inc/core/data.php:2197
2467
  msgid "Paragraphs"
2468
  msgstr "Параграфы"
2469
 
2470
- #: inc/core/data.php:2198
2471
  msgid "Words"
2472
  msgstr "Слова"
2473
 
2474
- #: inc/core/data.php:2199
2475
  msgid "Bytes"
2476
  msgstr "Байты"
2477
 
2478
- #: inc/core/data.php:2202
2479
  msgid "What"
2480
  msgstr "Что"
2481
 
2482
- #: inc/core/data.php:2203
2483
  msgid "What to generate"
2484
  msgstr "Что генерировать"
2485
 
2486
- #: inc/core/data.php:2211
2487
  msgid "Amount"
2488
  msgstr "Количество"
2489
 
2490
- #: inc/core/data.php:2212
2491
  msgid ""
2492
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2493
  msgstr ""
2494
  "Какое количество (параграфов или слов) генерировать. Минимальное количество "
2495
  "слов - 5"
2496
 
2497
- #: inc/core/data.php:2217
2498
  msgid "Cache"
2499
  msgstr "Кеш"
2500
 
2501
- #: inc/core/data.php:2218
2502
  msgid ""
2503
  "Generated text will be cached. Be careful with this option. If you disable "
2504
  "it and insert many dummy_text shortcodes the page load time will be highly "
@@ -2508,111 +2609,111 @@ msgstr ""
2508
  "вы отключите её и вставите много таких шорткодов на странице, то время "
2509
  "загрузки страницы может сильно возрости"
2510
 
2511
- #: inc/core/data.php:2226
2512
  msgid "Text placeholder"
2513
  msgstr "Текст болванка"
2514
 
2515
- #: inc/core/data.php:2231 inc/core/shortcodes.php:1264
2516
  msgid "Dummy image"
2517
  msgstr "Изображение болванка"
2518
 
2519
- #: inc/core/data.php:2242
2520
  msgid "Image width"
2521
  msgstr "Ширина изображения"
2522
 
2523
- #: inc/core/data.php:2251
2524
  msgid "Image height"
2525
  msgstr "Высота изображения"
2526
 
2527
- #: inc/core/data.php:2257
2528
  msgid "Abstract"
2529
  msgstr "Абстрактное"
2530
 
2531
- #: inc/core/data.php:2258
2532
  msgid "Animals"
2533
  msgstr "Животные"
2534
 
2535
- #: inc/core/data.php:2259
2536
  msgid "Business"
2537
  msgstr "Бизнес"
2538
 
2539
- #: inc/core/data.php:2260
2540
  msgid "Cats"
2541
  msgstr "Котэ"
2542
 
2543
- #: inc/core/data.php:2261
2544
  msgid "City"
2545
  msgstr "Город"
2546
 
2547
- #: inc/core/data.php:2262
2548
  msgid "Food"
2549
  msgstr "Еда"
2550
 
2551
- #: inc/core/data.php:2263
2552
  msgid "Night life"
2553
  msgstr "Ночная жизнь"
2554
 
2555
- #: inc/core/data.php:2264
2556
  msgid "Fashion"
2557
  msgstr "Мода"
2558
 
2559
- #: inc/core/data.php:2265
2560
  msgid "People"
2561
  msgstr "Люди"
2562
 
2563
- #: inc/core/data.php:2266
2564
  msgid "Nature"
2565
  msgstr "Природа"
2566
 
2567
- #: inc/core/data.php:2267
2568
  msgid "Sports"
2569
  msgstr "Спорт"
2570
 
2571
- #: inc/core/data.php:2268
2572
  msgid "Technics"
2573
  msgstr "Техника"
2574
 
2575
- #: inc/core/data.php:2269
2576
  msgid "Transport"
2577
  msgstr "Транспорт"
2578
 
2579
- #: inc/core/data.php:2273
2580
  msgid "Select the theme for this image"
2581
  msgstr "Выберите тему изображений"
2582
 
2583
- #: inc/core/data.php:2281
2584
  msgid "Image placeholder with random image"
2585
  msgstr "Изображение болванка со случайным изображением"
2586
 
2587
- #: inc/core/data.php:2286 inc/core/data.php:2294
2588
  msgid "Animation"
2589
  msgstr "Анимация"
2590
 
2591
- #: inc/core/data.php:2295
2592
  msgid "Select animation type"
2593
  msgstr "Выберите тип анимации"
2594
 
2595
- #: inc/core/data.php:2303
2596
  msgid "Duration"
2597
  msgstr "Продолжительность"
2598
 
2599
- #: inc/core/data.php:2304
2600
  msgid "Animation duration (seconds)"
2601
  msgstr "Продолжительность анимации (секунды)"
2602
 
2603
- #: inc/core/data.php:2312
2604
  msgid "Delay"
2605
  msgstr "Задержка"
2606
 
2607
- #: inc/core/data.php:2313
2608
  msgid "Animation delay (seconds)"
2609
  msgstr "Задержка перед началом анимации (секунды)"
2610
 
2611
- #: inc/core/data.php:2318
2612
  msgid "Inline"
2613
  msgstr "Строковый"
2614
 
2615
- #: inc/core/data.php:2319
2616
  msgid ""
2617
  "This parameter determines what HTML tag will be used for animation wrapper. "
2618
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
@@ -2622,49 +2723,49 @@ msgstr ""
2622
  "Переключите этот параметр на ДА и будет использован тег span вместо div. "
2623
  "Данная опция полезна для анимации строковых жлементов, например кнопок"
2624
 
2625
- #: inc/core/data.php:2327
2626
  msgid "Animated content"
2627
  msgstr "Анимированное содержимое"
2628
 
2629
- #: inc/core/data.php:2328
2630
  msgid "Wrapper for animation. Any nested element will be animated"
2631
  msgstr ""
2632
  "Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
2633
  "анимирован"
2634
 
2635
- #: inc/core/data.php:2333
2636
  msgid "Meta"
2637
  msgstr "Мета"
2638
 
2639
- #: inc/core/data.php:2339
2640
  msgid "Key"
2641
  msgstr "Ключ"
2642
 
2643
- #: inc/core/data.php:2340
2644
  msgid "Meta key name"
2645
  msgstr "Имя произвольного поля"
2646
 
2647
- #: inc/core/data.php:2345 inc/core/data.php:2397 inc/core/data.php:2460
2648
  msgid "This text will be shown if data is not found"
2649
  msgstr "Этот текст будет показан если не будет найдено запрошенное значение"
2650
 
2651
- #: inc/core/data.php:2349 inc/core/data.php:2401 inc/core/data.php:2464
2652
  msgid "Before"
2653
  msgstr "Перед"
2654
 
2655
- #: inc/core/data.php:2350 inc/core/data.php:2402 inc/core/data.php:2465
2656
  msgid "This content will be shown before the value"
2657
  msgstr "Этот текст будет показан перед результатом"
2658
 
2659
- #: inc/core/data.php:2354 inc/core/data.php:2406 inc/core/data.php:2469
2660
  msgid "After"
2661
  msgstr "После"
2662
 
2663
- #: inc/core/data.php:2355 inc/core/data.php:2407 inc/core/data.php:2470
2664
  msgid "This content will be shown after the value"
2665
  msgstr "Этот текст будет показан после результата"
2666
 
2667
- #: inc/core/data.php:2360 inc/core/data.php:2475
2668
  msgid ""
2669
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2670
  "current post. Current post ID may not work in Live Preview mode"
@@ -2673,11 +2774,11 @@ msgstr ""
2673
  "использовать ID текущей записи. ID текущей записи может не работать в режиме "
2674
  "предпросмотра"
2675
 
2676
- #: inc/core/data.php:2364 inc/core/data.php:2416 inc/core/data.php:2479
2677
  msgid "Filter"
2678
  msgstr "Фильтр"
2679
 
2680
- #: inc/core/data.php:2365 inc/core/data.php:2417 inc/core/data.php:2480
2681
  msgid ""
2682
  "You can apply custom filter to the retrieved value. Enter here function "
2683
  "name. Your function must accept one argument and return modified value. "
@@ -2687,59 +2788,59 @@ msgstr ""
2687
  "здесь имя функции. Ваша функция должна принимать один аргумент и возвращать "
2688
  "измененное значение. Пример функции: "
2689
 
2690
- #: inc/core/data.php:2368
2691
  msgid "Post meta"
2692
  msgstr "Произвольное поле"
2693
 
2694
- #: inc/core/data.php:2373
2695
  msgid "User"
2696
  msgstr "Пользователь"
2697
 
2698
- #: inc/core/data.php:2380
2699
  msgid "Display name"
2700
  msgstr "Отображаемое имя"
2701
 
2702
- #: inc/core/data.php:2382
2703
  msgid "Login"
2704
  msgstr "Логин"
2705
 
2706
- #: inc/core/data.php:2383
2707
  msgid "Nice name"
2708
  msgstr "Красивое имя"
2709
 
2710
- #: inc/core/data.php:2384
2711
  msgid "Email"
2712
  msgstr "Email"
2713
 
2714
- #: inc/core/data.php:2385
2715
  msgid "URL"
2716
  msgstr "URL"
2717
 
2718
- #: inc/core/data.php:2386
2719
  msgid "Registered"
2720
  msgstr "Зарегистрирован"
2721
 
2722
- #: inc/core/data.php:2387
2723
  msgid "Activation key"
2724
  msgstr "Ключ активации"
2725
 
2726
- #: inc/core/data.php:2388
2727
  msgid "Status"
2728
  msgstr "Статус"
2729
 
2730
- #: inc/core/data.php:2391 inc/core/data.php:2454
2731
  msgid "Field"
2732
  msgstr "Поле"
2733
 
2734
- #: inc/core/data.php:2392
2735
  msgid "User data field name"
2736
  msgstr "Имя поля с информацией о пользователе"
2737
 
2738
- #: inc/core/data.php:2411
2739
  msgid "User ID"
2740
  msgstr "ID пользователя"
2741
 
2742
- #: inc/core/data.php:2412
2743
  msgid ""
2744
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2745
  "current user"
@@ -2747,75 +2848,75 @@ msgstr ""
2747
  "Вы можете указать ID любого пользователя. Оставьте это поле пустым, чтобы "
2748
  "использовать ID текущего пользователя"
2749
 
2750
- #: inc/core/data.php:2420
2751
  msgid "User data"
2752
  msgstr "Данные пользователя"
2753
 
2754
- #: inc/core/data.php:2425
2755
  msgid "Post"
2756
  msgstr "Запись"
2757
 
2758
- #: inc/core/data.php:2434 inc/core/data.php:2435
2759
  msgid "Post date"
2760
  msgstr "Дата записи"
2761
 
2762
- #: inc/core/data.php:2436
2763
  msgid "Post content"
2764
  msgstr "Содержимое записи"
2765
 
2766
- #: inc/core/data.php:2438
2767
  msgid "Post excerpt"
2768
  msgstr "Цитата записи"
2769
 
2770
- #: inc/core/data.php:2440
2771
  msgid "Comment status"
2772
  msgstr "Статус комментариев"
2773
 
2774
- #: inc/core/data.php:2441
2775
  msgid "Ping status"
2776
  msgstr "Статус пингов"
2777
 
2778
- #: inc/core/data.php:2442
2779
  msgid "Post name"
2780
  msgstr "Имя записи"
2781
 
2782
- #: inc/core/data.php:2443 inc/core/data.php:2444
2783
  msgid "Post modified"
2784
  msgstr "Дата изменения"
2785
 
2786
- #: inc/core/data.php:2445
2787
  msgid "Filtered post content"
2788
  msgstr "Фильтрованное содержимое записи"
2789
 
2790
- #: inc/core/data.php:2447
2791
  msgid "GUID"
2792
  msgstr "GUID"
2793
 
2794
- #: inc/core/data.php:2449
2795
  msgid "Post type"
2796
  msgstr "Тип записи"
2797
 
2798
- #: inc/core/data.php:2450
2799
  msgid "Post mime type"
2800
  msgstr "Типы файла записи (mime-type)"
2801
 
2802
- #: inc/core/data.php:2451
2803
  msgid "Comment count"
2804
  msgstr "Количество комментариев"
2805
 
2806
- #: inc/core/data.php:2455
2807
  msgid "Post data field name"
2808
  msgstr "Имя поля с информацией записи"
2809
 
2810
- #: inc/core/data.php:2483
2811
  msgid "Post data"
2812
  msgstr "Данные записи"
2813
 
2814
- #: inc/core/data.php:2494
2815
  msgid "Template name"
2816
  msgstr "Имя шаблона"
2817
 
2818
- #: inc/core/data.php:2495
2819
  #, php-format
2820
  msgid ""
2821
  "Use template file name (with optional .php extension). If you need to use "
@@ -2826,7 +2927,7 @@ msgstr ""
2826
  "обязательно). Если нужно использовать шаблоны из под-папки темы, используйте "
2827
  "относительный путь. Примеры значений: %s, %s, %s"
2828
 
2829
- #: inc/core/data.php:2498
2830
  msgid "Theme template"
2831
  msgstr "Шаблон темы"
2832
 
@@ -2988,32 +3089,36 @@ msgstr "Нажмите, чтобы вернуться к списку шортк
2988
  msgid "All shortcodes"
2989
  msgstr "Все шорткоды"
2990
 
2991
- #: inc/core/generator.php:163
 
 
 
 
2992
  msgid "Click to set this value"
2993
  msgstr "Нажмите чтобы установить это значение"
2994
 
2995
- #: inc/core/generator.php:187
2996
  msgid "Preview"
2997
  msgstr "Предпросмотр"
2998
 
2999
- #: inc/core/generator.php:196 inc/core/tools.php:866
3000
  msgid "Access denied"
3001
  msgstr "Доступ запрещен"
3002
 
3003
- #: inc/core/generator.php:231
3004
  msgid "Presets"
3005
  msgstr "Шаблоны"
3006
 
3007
- #: inc/core/generator.php:234
3008
  msgid "Save current settings as preset"
3009
  msgstr "Сохранить настройки как новый шаблон"
3010
 
3011
- #: inc/core/generator.php:263 inc/core/generator.php:266
3012
  msgid "Presets not found"
3013
  msgstr "Шаблоны не найдены"
3014
 
3015
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
3016
- #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:878
3017
  #: inc/core/widget.php:14 inc/core/widget.php:40
3018
  msgid "Shortcodes Ultimate"
3019
  msgstr "Шорткоды"
@@ -3151,60 +3256,61 @@ msgid "please specify correct source"
3151
  msgstr "пожалуйста укажите корректную ссылку"
3152
 
3153
  #: inc/core/shortcodes.php:561 inc/core/shortcodes.php:565
3154
- #: inc/core/shortcodes.php:598 inc/core/shortcodes.php:602
3155
- #: inc/core/shortcodes.php:629 inc/core/shortcodes.php:633
3156
- #: inc/core/shortcodes.php:657 inc/core/shortcodes.php:661
3157
- #: inc/core/shortcodes.php:681 inc/core/shortcodes.php:688
3158
- #: inc/core/shortcodes.php:710 inc/core/shortcodes.php:715
 
3159
  msgid "please specify correct url"
3160
  msgstr "пожалуйста укажите корректную ссылку"
3161
 
3162
- #: inc/core/shortcodes.php:846
3163
  msgid "This menu doesn't exists, or has no elements"
3164
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
3165
 
3166
- #: inc/core/shortcodes.php:952 inc/core/shortcodes.php:1035
3167
- #: inc/core/shortcodes.php:1090
3168
  msgid "images not found"
3169
  msgstr "изображения не найдены"
3170
 
3171
- #: inc/core/shortcodes.php:1226
3172
  msgid "template not found"
3173
  msgstr "шаблон не найден"
3174
 
3175
- #: inc/core/shortcodes.php:1304 inc/core/shortcodes.php:1354
3176
  msgid "post ID is incorrect"
3177
  msgstr "ID записи указан неверно"
3178
 
3179
- #: inc/core/shortcodes.php:1306
3180
  msgid "please specify meta key name"
3181
  msgstr "пожалуйста укажите имя ключа произвольного поля"
3182
 
3183
- #: inc/core/shortcodes.php:1327
3184
  msgid "password field is not allowed"
3185
  msgstr "поле пароль запрещено"
3186
 
3187
- #: inc/core/shortcodes.php:1331
3188
  msgid "user ID is incorrect"
3189
  msgstr "ID пользователя указан неверно"
3190
 
3191
- #: inc/core/shortcodes.php:1370
3192
  msgid "please specify template name"
3193
  msgstr "пожалуйста укажите имя шаблона"
3194
 
3195
- #: inc/core/tools.php:785
3196
  msgid "Example code does not found, please check it later"
3197
  msgstr "Код примера не найден, возвращайтесь позже"
3198
 
3199
- #: inc/core/tools.php:801
3200
  msgid "Get the code"
3201
  msgstr "Получить код"
3202
 
3203
- #: inc/core/tools.php:875
3204
  msgid "Slide link"
3205
  msgstr "Ссылка слайда"
3206
 
3207
- #: inc/core/tools.php:878
3208
  msgid ""
3209
  "Use this field to add custom links to slides used with Slider, Carousel and "
3210
  "Custom Gallery shortcodes"
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-02 21:13+0400\n"
6
+ "PO-Revision-Date: 2014-04-02 21:20+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
132
  msgid "plugin url"
133
  msgstr "url папки этого плагина"
134
 
135
+ #: inc/core/admin-views.php:117
136
  msgid "New Shortcodes"
137
  msgstr "Новые Шорткоды"
138
 
139
+ #: inc/core/admin-views.php:118
140
  msgid ""
141
  "Parallax sections, responsive content slider, pricing tables, vector icons, "
142
  "testimonials, progress bars and even more"
144
  "Секции с параллакс эффектом, адаптивный слайдер контента, тарифные таблицы, "
145
  "векторные иконки, отзывы, прогресс бары и даже больше"
146
 
147
+ #: inc/core/admin-views.php:123
148
  msgid "Maker"
149
  msgstr "Maker"
150
 
151
+ #: inc/core/admin-views.php:124
152
  msgid ""
153
  "This add-on allows you to create custom shortcodes. You can easily create "
154
  "any shortcode with different parameters or even override default shortcodes"
156
  "Это дополнение позволит вам создавать собственные шорткоды. Вы можете с "
157
  "легкостью создать новый шорткод или даже перезаписать оригинальный"
158
 
159
+ #: inc/core/admin-views.php:129
160
  msgid "Skins"
161
  msgstr "Скины"
162
 
163
+ #: inc/core/admin-views.php:130
164
  msgid ""
165
  "Set of additional skins for Shortcodes Ultimate. It includes skins for "
166
  "accordeons/spoilers, tabs and some other shortcodes"
168
  "Набор дополнительных скинов для шорткодов плагина. Набор включает в себя "
169
  "скины для аккордеонов/спойлеров, вкладок и некоторых других шорткодов"
170
 
171
+ #: inc/core/admin-views.php:136
172
  msgid "Shortcodes Ultimate Add-ons"
173
  msgstr "Дополнения для Shortcodes Ultimate"
174
 
175
+ #: inc/core/admin-views.php:139 inc/core/admin-views.php:146
176
  msgid "Learn more"
177
  msgstr "Узнать больше"
178
 
179
+ #: inc/core/admin-views.php:143
180
  msgid "Other WordPress Plugins"
181
  msgstr "Другие плагины для WordPress"
182
 
262
  msgid "All"
263
  msgstr "Все"
264
 
265
+ #: inc/core/data.php:18 inc/core/generator.php:177
266
  msgid "Content"
267
  msgstr "Содержимое"
268
 
269
+ #: inc/core/data.php:19 inc/core/data.php:826
270
  msgid "Box"
271
  msgstr "Блок"
272
 
274
  msgid "Media"
275
  msgstr "Медиа"
276
 
277
+ #: inc/core/data.php:21 inc/core/data.php:2096
278
  msgid "Gallery"
279
  msgstr "Галерея"
280
 
286
  msgid "Other"
287
  msgstr "Другое"
288
 
289
+ #: inc/core/data.php:32 inc/core/data.php:1861 inc/core/data.php:1980
290
+ #: inc/core/data.php:2118 inc/core/data.php:2262
291
  msgid "None"
292
  msgstr "Нет"
293
 
362
  msgid "Heading"
363
  msgstr "Заголовок"
364
 
365
+ #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:274
366
+ #: inc/core/data.php:426 inc/core/data.php:456 inc/core/data.php:517
367
+ #: inc/core/data.php:684 inc/core/data.php:838 inc/core/data.php:1002
368
+ #: inc/core/data.php:2465 inc/core/data.php:2517 inc/core/data.php:2580
369
  msgid "Default"
370
  msgstr "По умолчанию"
371
 
372
+ #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:279
373
+ #: inc/core/data.php:459 inc/core/data.php:523 inc/core/data.php:694
374
+ #: inc/core/data.php:845 inc/core/data.php:972
375
  msgid "Style"
376
  msgstr "Стиль"
377
 
379
  msgid "Choose style for this heading"
380
  msgstr "Выберите стиль для этого заголовка"
381
 
382
+ #: inc/core/data.php:140 inc/core/data.php:194 inc/core/data.php:280
383
+ #: inc/core/data.php:460
384
  msgid "Install additional styles"
385
  msgstr "Установить дополнительные стили"
386
 
387
+ #: inc/core/data.php:148 inc/core/data.php:531 inc/core/data.php:610
388
+ #: inc/core/data.php:715
389
  msgid "Size"
390
  msgstr "Размер"
391
 
393
  msgid "Select heading size (pixels)"
394
  msgstr "Выберите размер заголовка (в пикселях)"
395
 
396
+ #: inc/core/data.php:154 inc/core/data.php:492 inc/core/data.php:553
397
+ #: inc/core/data.php:980
398
  msgid "Left"
399
  msgstr "Слева"
400
 
401
+ #: inc/core/data.php:155 inc/core/data.php:554 inc/core/data.php:1912
402
+ #: inc/core/data.php:2050
403
  msgid "Center"
404
  msgstr "По центру"
405
 
406
+ #: inc/core/data.php:156 inc/core/data.php:493 inc/core/data.php:555
407
+ #: inc/core/data.php:981
408
  msgid "Right"
409
  msgstr "Справа"
410
 
411
+ #: inc/core/data.php:159 inc/core/data.php:496 inc/core/data.php:558
412
  msgid "Align"
413
  msgstr "Выравнивание"
414
 
424
  msgid "Bottom margin (pixels)"
425
  msgstr "Отступ снизу (в пикселях)"
426
 
427
+ #: inc/core/data.php:173 inc/core/data.php:213 inc/core/data.php:246
428
+ #: inc/core/data.php:310 inc/core/data.php:328 inc/core/data.php:357
429
+ #: inc/core/data.php:381 inc/core/data.php:409 inc/core/data.php:439
430
+ #: inc/core/data.php:475 inc/core/data.php:500 inc/core/data.php:536
431
+ #: inc/core/data.php:563 inc/core/data.php:579 inc/core/data.php:621
432
+ #: inc/core/data.php:651 inc/core/data.php:772 inc/core/data.php:816
433
+ #: inc/core/data.php:872 inc/core/data.php:909 inc/core/data.php:941
434
+ #: inc/core/data.php:1043 inc/core/data.php:1059 inc/core/data.php:1111
435
+ #: inc/core/data.php:1236 inc/core/data.php:1287 inc/core/data.php:1332
436
+ #: inc/core/data.php:1431 inc/core/data.php:1470 inc/core/data.php:1540
437
+ #: inc/core/data.php:1562 inc/core/data.php:1593 inc/core/data.php:1626
438
+ #: inc/core/data.php:1642 inc/core/data.php:1672 inc/core/data.php:1692
439
+ #: inc/core/data.php:1719 inc/core/data.php:1740 inc/core/data.php:1785
440
+ #: inc/core/data.php:1830 inc/core/data.php:1949 inc/core/data.php:2087
441
+ #: inc/core/data.php:2168 inc/core/data.php:2342 inc/core/data.php:2397
442
+ #: inc/core/data.php:2443
443
  msgid "Class"
444
  msgstr "Класс"
445
 
446
+ #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
447
+ #: inc/core/data.php:311 inc/core/data.php:329 inc/core/data.php:358
448
+ #: inc/core/data.php:382 inc/core/data.php:410 inc/core/data.php:440
449
+ #: inc/core/data.php:476 inc/core/data.php:501 inc/core/data.php:537
450
+ #: inc/core/data.php:564 inc/core/data.php:580 inc/core/data.php:622
451
+ #: inc/core/data.php:652 inc/core/data.php:773 inc/core/data.php:817
452
+ #: inc/core/data.php:873 inc/core/data.php:910 inc/core/data.php:942
453
+ #: inc/core/data.php:1044 inc/core/data.php:1060 inc/core/data.php:1112
454
+ #: inc/core/data.php:1237 inc/core/data.php:1288 inc/core/data.php:1333
455
+ #: inc/core/data.php:1432 inc/core/data.php:1471 inc/core/data.php:1541
456
+ #: inc/core/data.php:1563 inc/core/data.php:1594 inc/core/data.php:1627
457
+ #: inc/core/data.php:1643 inc/core/data.php:1673 inc/core/data.php:1693
458
+ #: inc/core/data.php:1720 inc/core/data.php:1741 inc/core/data.php:1786
459
+ #: inc/core/data.php:1831 inc/core/data.php:1950 inc/core/data.php:2088
460
+ #: inc/core/data.php:2169 inc/core/data.php:2343 inc/core/data.php:2398
461
+ #: inc/core/data.php:2444
462
  msgid "Extra CSS class"
463
  msgstr "Дополнительный CSS класс"
464
 
508
  msgid "Tabs container"
509
  msgstr "Контейнер вкладок"
510
 
511
+ #: inc/core/data.php:224
512
  msgid "Tab"
513
  msgstr "Вкладка"
514
 
515
+ #: inc/core/data.php:229
516
  msgid "Tab name"
517
  msgstr "Имя вкладки"
518
 
519
+ #: inc/core/data.php:230 inc/core/data.php:263 inc/core/data.php:790
520
+ #: inc/core/data.php:833 inc/core/data.php:1499
521
  msgid "Title"
522
  msgstr "Заголовок"
523
 
524
+ #: inc/core/data.php:231
525
  msgid "Enter tab name"
526
  msgstr "Введите имя вкладки"
527
 
528
+ #: inc/core/data.php:236
529
  msgid "Disabled"
530
  msgstr "Отключено"
531
 
532
+ #: inc/core/data.php:237
533
  msgid "Is this tab disabled"
534
  msgstr "Эта вкладка отключена"
535
 
536
+ #: inc/core/data.php:241 inc/core/data.php:305
537
  msgid "Anchor"
538
  msgstr "Якорь"
539
 
540
+ #: inc/core/data.php:242
541
  msgid ""
542
  "You can use unique anchor for this tab to access it with hash in page url. "
543
  "For example: type here <b%value>Hello</b> and then use url like http://"
548
  "используйте ссылку вида http://example.com/page-utl#Hello. Эта вкладка будет "
549
  "активирована и страница будет прокручена к ней"
550
 
551
+ #: inc/core/data.php:250
552
  msgid "Tab content"
553
  msgstr "Содержимое вкладки"
554
 
555
+ #: inc/core/data.php:251
556
  msgid "Single tab"
557
  msgstr "Одиночная вкладка"
558
 
559
+ #: inc/core/data.php:257
560
  msgid "Spoiler"
561
  msgstr "Спойлер"
562
 
563
+ #: inc/core/data.php:262 inc/core/shortcodes.php:72
564
  msgid "Spoiler title"
565
  msgstr "Скрытый текст"
566
 
567
+ #: inc/core/data.php:263
568
  msgid "Text in spoiler title"
569
  msgstr "Текст для заголовка спойлера"
570
 
571
+ #: inc/core/data.php:268
572
  msgid "Open"
573
  msgstr "Открыт"
574
 
575
+ #: inc/core/data.php:269
576
  msgid "Is spoiler content visible by default"
577
  msgstr "Виден ли контент спойлера по умолчанию"
578
 
579
+ #: inc/core/data.php:275
580
  msgid "Fancy"
581
  msgstr "Стильный"
582
 
583
+ #: inc/core/data.php:276 inc/core/data.php:520
584
  msgid "Simple"
585
  msgstr "Простой"
586
 
587
+ #: inc/core/data.php:280
588
  msgid "Choose style for this spoiler"
589
  msgstr "Выберите стиль для этого спойлера"
590
 
591
+ #: inc/core/data.php:285
592
  msgid "Plus"
593
  msgstr "Плюс"
594
 
595
+ #: inc/core/data.php:286
596
  msgid "Plus circle"
597
  msgstr "Плюс в круге"
598
 
599
+ #: inc/core/data.php:287
600
  msgid "Plus square 1"
601
  msgstr "Плюс в квадрате 1"
602
 
603
+ #: inc/core/data.php:288
604
  msgid "Plus square 2"
605
  msgstr "Плюс в квадрате 2"
606
 
607
+ #: inc/core/data.php:289
608
  msgid "Arrow"
609
  msgstr "Стрелка"
610
 
611
+ #: inc/core/data.php:290
612
  msgid "Arrow circle 1"
613
  msgstr "Стрелка в круге 1"
614
 
615
+ #: inc/core/data.php:291
616
  msgid "Arrow circle 2"
617
  msgstr "Стрелка в круге 2"
618
 
619
+ #: inc/core/data.php:292
620
  msgid "Chevron"
621
  msgstr "Уголок"
622
 
623
+ #: inc/core/data.php:293
624
  msgid "Chevron circle"
625
  msgstr "Уголок в круге"
626
 
627
+ #: inc/core/data.php:294
628
  msgid "Caret"
629
  msgstr "Треугольник"
630
 
631
+ #: inc/core/data.php:295
632
  msgid "Caret square"
633
  msgstr "Треугольник в квадрате"
634
 
635
+ #: inc/core/data.php:296
636
  msgid "Folder 1"
637
  msgstr "Папка 1"
638
 
639
+ #: inc/core/data.php:297
640
  msgid "Folder 2"
641
  msgstr "Папка 2"
642
 
643
+ #: inc/core/data.php:300 inc/core/data.php:640 inc/core/data.php:745
644
+ #: inc/core/data.php:796
645
  msgid "Icon"
646
  msgstr "Иконка"
647
 
648
+ #: inc/core/data.php:301
649
  msgid "Icons for spoiler"
650
  msgstr "Иконка для спойлера"
651
 
652
+ #: inc/core/data.php:306
653
  msgid ""
654
  "You can use unique anchor for this spoiler to access it with hash in page "
655
  "url. For example: type here <b%value>Hello</b> and then use url like http://"
660
  "используйте ссылку вида http://example.com/page-utl#Hello. Этот спойлер "
661
  "будет открыт и страница будет прокручена к нему"
662
 
663
+ #: inc/core/data.php:314
664
  msgid "Hidden content"
665
  msgstr "Скрытое содержимое"
666
 
667
+ #: inc/core/data.php:315
668
  msgid "Spoiler with hidden content"
669
  msgstr "Спойлер со скрытым содержимым"
670
 
671
+ #: inc/core/data.php:316 inc/core/data.php:334
672
+ msgid ""
673
+ "Did you know that you can wrap multiple spoilers with [accordion] shortcode "
674
+ "to create accordion effect?"
675
+ msgstr ""
676
+ "Знаете ли вы что вы можете обернуть несколько спойлеров в шорткод "
677
+ "[accordion] чтобы создать эффект аккордеона?"
678
+
679
+ #: inc/core/data.php:322
680
  msgid "Accordion"
681
  msgstr "Аккордеон"
682
 
683
+ #: inc/core/data.php:332
684
  msgid ""
685
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
686
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
690
  "[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
691
  "[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
692
 
693
+ #: inc/core/data.php:333
694
  msgid "Accordion with spoilers"
695
  msgstr "Аккордеон со спойлерами"
696
 
697
+ #: inc/core/data.php:340
698
  msgid "Divider"
699
  msgstr "Разделитель"
700
 
701
+ #: inc/core/data.php:347
702
  msgid "Show TOP link"
703
  msgstr "Показать ссылку ВВЕРХ"
704
 
705
+ #: inc/core/data.php:348
706
  msgid "Show link to top of the page or not"
707
  msgstr "Показывать ссылку ВВЕРХ или нет"
708
 
709
+ #: inc/core/data.php:352 inc/core/shortcodes.php:99
710
  msgid "Go to top"
711
  msgstr "Вверх"
712
 
713
+ #: inc/core/data.php:353
714
  msgid "Link text"
715
  msgstr "Текст ссылки"
716
 
717
+ #: inc/core/data.php:353
718
  msgid "Text for the GO TOP link"
719
  msgstr "Текст ссылки ВВЕРХ"
720
 
721
+ #: inc/core/data.php:361
722
  msgid "Content divider with optional TOP link"
723
  msgstr "Разделитель текста со ссылкой ВВЕРХ"
724
 
725
+ #: inc/core/data.php:366
726
  msgid "Spacer"
727
  msgstr "Пробел"
728
 
729
+ #: inc/core/data.php:376 inc/core/data.php:1094 inc/core/data.php:1151
730
+ #: inc/core/data.php:1270 inc/core/data.php:1321 inc/core/data.php:1365
731
+ #: inc/core/data.php:1517 inc/core/data.php:1774 inc/core/data.php:1813
732
+ #: inc/core/data.php:1896 inc/core/data.php:2016 inc/core/data.php:2153
733
+ #: inc/core/data.php:2370
734
  msgid "Height"
735
  msgstr "Высота"
736
 
737
+ #: inc/core/data.php:377
738
  msgid "Height of the spacer in pixels"
739
  msgstr "Высота пробела в пикселях"
740
 
741
+ #: inc/core/data.php:385
742
  msgid "Empty space with adjustable height"
743
  msgstr "Пробел с настраиваемой высотой"
744
 
745
+ #: inc/core/data.php:390
746
  msgid "Highlight"
747
  msgstr "Выделитель"
748
 
749
+ #: inc/core/data.php:398 inc/core/data.php:700 inc/core/data.php:890
750
  msgid "Background"
751
  msgstr "Фон"
752
 
753
+ #: inc/core/data.php:399
754
  msgid "Highlighted text background color"
755
  msgstr "Цвет фона выделяемого текста"
756
 
757
+ #: inc/core/data.php:405 inc/core/data.php:706 inc/core/data.php:896
758
  msgid "Text color"
759
  msgstr "Цвет текста"
760
 
761
+ #: inc/core/data.php:405
762
  msgid "Highlighted text color"
763
  msgstr "Цвет выделяемого текста"
764
 
765
+ #: inc/core/data.php:413 inc/core/data.php:414
766
  msgid "Highlighted text"
767
  msgstr "Подсвеченный текст"
768
 
769
+ #: inc/core/data.php:419 inc/core/data.php:443 inc/vendor/sunrise.php:409
770
  msgid "Label"
771
  msgstr "Ярлык"
772
 
773
+ #: inc/core/data.php:427
774
  msgid "Success"
775
  msgstr "Успех"
776
 
777
+ #: inc/core/data.php:428
778
  msgid "Warning"
779
  msgstr "Внимание"
780
 
781
+ #: inc/core/data.php:429
782
  msgid "Important"
783
  msgstr "Важно"
784
 
785
+ #: inc/core/data.php:430
786
  msgid "Black"
787
  msgstr "Черный"
788
 
789
+ #: inc/core/data.php:431
790
  msgid "Info"
791
  msgstr "Инфо"
792
 
793
+ #: inc/core/data.php:434
794
  msgid "Type"
795
  msgstr "Тип"
796
 
797
+ #: inc/core/data.php:435
798
  msgid "Style of the label"
799
  msgstr "Стиль ярлыка"
800
 
801
+ #: inc/core/data.php:444
802
  msgid "Styled label"
803
  msgstr "Стильный ярлык"
804
 
805
+ #: inc/core/data.php:449 inc/core/data.php:479
806
  msgid "Quote"
807
  msgstr "Цитата"
808
 
809
+ #: inc/core/data.php:460
810
  msgid "Choose style for this quote"
811
  msgstr "Выберите стиль для этой цитаты"
812
 
813
+ #: inc/core/data.php:464
814
  msgid "Cite"
815
  msgstr "Автор"
816
 
817
+ #: inc/core/data.php:465
818
  msgid "Quote author name"
819
  msgstr "Имя автора цитаты"
820
 
821
+ #: inc/core/data.php:470
822
  msgid "Cite url"
823
  msgstr "Ссылка автора"
824
 
825
+ #: inc/core/data.php:471
826
  msgid "Url of the quote author. Leave empty to disable link"
827
  msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
828
 
829
+ #: inc/core/data.php:480
830
  msgid "Blockquote alternative"
831
  msgstr "Альтернатива цитаты"
832
 
833
+ #: inc/core/data.php:485 inc/core/data.php:504 inc/core/data.php:505
834
  msgid "Pullquote"
835
  msgstr "Цитата с обтеканием"
836
 
837
+ #: inc/core/data.php:496
838
  msgid "Pullquote alignment (float)"
839
  msgstr "Выравнивание цитаты (обтекание)"
840
 
841
+ #: inc/core/data.php:510 inc/core/data.php:541
842
  msgid "Dropcap"
843
  msgstr "Буквица"
844
 
845
+ #: inc/core/data.php:518 inc/core/data.php:685
846
  msgid "Flat"
847
  msgstr "Плоский"
848
 
849
+ #: inc/core/data.php:519
850
  msgid "Light"
851
  msgstr "Светлый"
852
 
853
+ #: inc/core/data.php:523
854
  msgid "Dropcap style preset"
855
  msgstr "Стиль буквицы"
856
 
857
+ #: inc/core/data.php:532
858
  msgid "Choose dropcap size"
859
  msgstr "Выберите размер буквицы"
860
 
861
+ #: inc/core/data.php:540
862
  msgid "D"
863
  msgstr "D"
864
 
865
+ #: inc/core/data.php:546
866
  msgid "Frame"
867
  msgstr "Рамка"
868
 
869
+ #: inc/core/data.php:559
870
  msgid "Frame alignment"
871
  msgstr "Выравнивание рамки"
872
 
873
+ #: inc/core/data.php:568
874
  msgid "Styled image frame"
875
  msgstr "Стильный рамка изображения"
876
 
877
+ #: inc/core/data.php:573
878
  msgid "Row"
879
  msgstr "Колонки"
880
 
881
+ #: inc/core/data.php:583
882
  msgid ""
883
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
884
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
888
  "[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
889
  "[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
890
 
891
+ #: inc/core/data.php:584
892
  msgid "Row for flexible columns"
893
  msgstr "Контейнер с резиновыми колонками"
894
 
895
+ #: inc/core/data.php:589
896
  msgid "Column"
897
  msgstr "Колонка"
898
 
899
+ #: inc/core/data.php:596
900
  msgid "Full width"
901
  msgstr "Во всю ширину"
902
 
903
+ #: inc/core/data.php:597
904
  msgid "One half"
905
  msgstr "Одна вторая"
906
 
907
+ #: inc/core/data.php:598
908
  msgid "One third"
909
  msgstr "Одна третья"
910
 
911
+ #: inc/core/data.php:599
912
  msgid "Two third"
913
  msgstr "Две трети"
914
 
915
+ #: inc/core/data.php:600
916
  msgid "One fourth"
917
  msgstr "Одна четвертая"
918
 
919
+ #: inc/core/data.php:601
920
  msgid "Three fourth"
921
  msgstr "Три четвертых"
922
 
923
+ #: inc/core/data.php:602
924
  msgid "One fifth"
925
  msgstr "Одна пятая"
926
 
927
+ #: inc/core/data.php:603
928
  msgid "Two fifth"
929
  msgstr "Две пятых"
930
 
931
+ #: inc/core/data.php:604
932
  msgid "Three fifth"
933
  msgstr "Три пятых"
934
 
935
+ #: inc/core/data.php:605
936
  msgid "Four fifth"
937
  msgstr "Четыре пятых"
938
 
939
+ #: inc/core/data.php:606
940
  msgid "One sixth"
941
  msgstr "Одна шестая"
942
 
943
+ #: inc/core/data.php:607
944
  msgid "Five sixth"
945
  msgstr "Пять шестых"
946
 
947
+ #: inc/core/data.php:611
948
  msgid "Select column width. This width will be calculated depend page width"
949
  msgstr ""
950
  "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
951
 
952
+ #: inc/core/data.php:616 inc/core/data.php:726
953
  msgid "Centered"
954
  msgstr "По центру"
955
 
956
+ #: inc/core/data.php:617
957
  msgid "Is this column centered on the page"
958
  msgstr "Колонка выровнена по центру страницы"
959
 
960
+ #: inc/core/data.php:625
961
  msgid "Column content"
962
  msgstr "Содержимое колонки"
963
 
964
+ #: inc/core/data.php:626
965
  msgid "Flexible and responsive columns"
966
  msgstr "Резновые колонки"
967
 
968
+ #: inc/core/data.php:627
969
+ msgid "Did you know that you need to wrap columns with [row] shortcode?"
970
+ msgstr "Знаете ли вы что несколько колонок нужно оборачивать в шорткод [row]?"
971
+
972
+ #: inc/core/data.php:633
973
  msgid "List"
974
  msgstr "Список"
975
 
976
+ #: inc/core/data.php:641
977
  msgid "You can upload custom icon for this list or pick a built-in icon"
978
  msgstr "Вы можете загрузить свою иконку для этого списка или выбрать из списка"
979
 
980
+ #: inc/core/data.php:646 inc/core/data.php:751 inc/core/data.php:802
981
  msgid "Icon color"
982
  msgstr "Цвет иконки"
983
 
984
+ #: inc/core/data.php:647 inc/core/data.php:752 inc/core/data.php:803
985
  msgid ""
986
  "This color will be applied to the selected icon. Does not works with "
987
  "uploaded icons"
989
  "Этот цвет будет применен только к иконке выбранной из списка. Не работает "
990
  "для загруженных иконок"
991
 
992
+ #: inc/core/data.php:655
993
  msgid ""
994
  "<ul>\n"
995
  "<li>List item</li>\n"
1003
  "<li>Элемент списка</li>\n"
1004
  "</ul>"
1005
 
1006
+ #: inc/core/data.php:656
1007
  msgid "Styled unordered list"
1008
  msgstr "Стильный неупорядоченный список"
1009
 
1010
+ #: inc/core/data.php:661
1011
  msgid "Button"
1012
  msgstr "Кнопка"
1013
 
1014
+ #: inc/core/data.php:668
1015
  msgid "Link"
1016
  msgstr "Ссылка"
1017
 
1018
+ #: inc/core/data.php:669
1019
  msgid "Button link"
1020
  msgstr "Ссылка кнопки"
1021
 
1022
+ #: inc/core/data.php:674 inc/core/data.php:1584
1023
  msgid "Same tab"
1024
  msgstr "Та же вкладка"
1025
 
1026
+ #: inc/core/data.php:675 inc/core/data.php:1585
1027
  msgid "New tab"
1028
  msgstr "Новая вкладка"
1029
 
1030
+ #: inc/core/data.php:678 inc/core/data.php:1588
1031
  msgid "Target"
1032
  msgstr "Цель"
1033
 
1034
+ #: inc/core/data.php:679
1035
  msgid "Button link target"
1036
  msgstr "Цель ссылки кнопки"
1037
 
1038
+ #: inc/core/data.php:686 inc/core/data.php:839
1039
  msgid "Soft"
1040
  msgstr "Мягкий"
1041
 
1042
+ #: inc/core/data.php:687 inc/core/data.php:840
1043
  msgid "Glass"
1044
  msgstr "Стекло"
1045
 
1046
+ #: inc/core/data.php:688 inc/core/data.php:841
1047
  msgid "Bubbles"
1048
  msgstr "Пузыри"
1049
 
1050
+ #: inc/core/data.php:689 inc/core/data.php:842
1051
  msgid "Noise"
1052
  msgstr "Шум"
1053
 
1054
+ #: inc/core/data.php:690
1055
  msgid "Stroked"
1056
  msgstr "Прошитый"
1057
 
1058
+ #: inc/core/data.php:691
1059
  msgid "3D"
1060
  msgstr "3D"
1061
 
1062
+ #: inc/core/data.php:694
1063
  msgid "Button background style preset"
1064
  msgstr "Стиль фона кнопки"
1065
 
1066
+ #: inc/core/data.php:700
1067
  msgid "Button background color"
1068
  msgstr "Цвет фона кнопки"
1069
 
1070
+ #: inc/core/data.php:707
1071
  msgid "Button text color"
1072
  msgstr "Цвет текста кнопки"
1073
 
1074
+ #: inc/core/data.php:716
1075
  msgid "Button size"
1076
  msgstr "Размер кнопки"
1077
 
1078
+ #: inc/core/data.php:721
1079
  msgid "Fluid"
1080
  msgstr "Резиновая"
1081
 
1082
+ #: inc/core/data.php:721
1083
  msgid "Fluid buttons has 100% width"
1084
  msgstr "Резиновые кнопки имеют ширину 100%"
1085
 
1086
+ #: inc/core/data.php:726
1087
  msgid "Is button centered on the page"
1088
  msgstr "Кнопка выровнена по центру страницы"
1089
 
1090
+ #: inc/core/data.php:731
1091
  msgid "Auto"
1092
  msgstr "Авто"
1093
 
1094
+ #: inc/core/data.php:732
1095
  msgid "Round"
1096
  msgstr "Круглый"
1097
 
1098
+ #: inc/core/data.php:733
1099
  msgid "Square"
1100
  msgstr "Квадратный"
1101
 
1102
+ #: inc/core/data.php:739 inc/core/data.php:867 inc/core/data.php:905
1103
  msgid "Radius"
1104
  msgstr "Радиус"
1105
 
1106
+ #: inc/core/data.php:740
1107
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1108
  msgstr ""
1109
  "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
1110
 
1111
+ #: inc/core/data.php:746
1112
  msgid "You can upload custom icon for this button or pick a built-in icon"
1113
  msgstr "Вы можете загрузить свою иконку для этой кнопки или выбрать из списка"
1114
 
1115
+ #: inc/core/data.php:757
1116
  msgid "Text shadow"
1117
  msgstr "Тень текста"
1118
 
1119
+ #: inc/core/data.php:758
1120
  msgid "Button text shadow"
1121
  msgstr "Тень текста на кнопке"
1122
 
1123
+ #: inc/core/data.php:762
1124
  msgid "Description"
1125
  msgstr "Описание"
1126
 
1127
+ #: inc/core/data.php:763
1128
  msgid ""
1129
  "Small description under button text. This option is incompatible with icon."
1130
  msgstr ""
1131
  "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками "
1132
  "кнопок."
1133
 
1134
+ #: inc/core/data.php:767
1135
  msgid "onClick"
1136
  msgstr "onClick"
1137
 
1138
+ #: inc/core/data.php:768
1139
  msgid "Advanced JavaScript code for onClick action"
1140
  msgstr "JavaScript код для атрибута onClick"
1141
 
1142
+ #: inc/core/data.php:776
1143
  msgid "Button text"
1144
  msgstr "Текст кнопки"
1145
 
1146
+ #: inc/core/data.php:777
1147
  msgid "Styled button"
1148
  msgstr "Стильная кнопка"
1149
 
1150
+ #: inc/core/data.php:783
1151
  msgid "Service"
1152
  msgstr "Услуга"
1153
 
1154
+ #: inc/core/data.php:789 inc/core/shortcodes.php:430
1155
  msgid "Service title"
1156
  msgstr "Название услуги"
1157
 
1158
+ #: inc/core/data.php:791
1159
  msgid "Service name"
1160
  msgstr "Название услуги"
1161
 
1162
+ #: inc/core/data.php:797
1163
  msgid "You can upload custom icon for this box"
1164
  msgstr "Вы можете загрузить свою иконку для этого блока"
1165
 
1166
+ #: inc/core/data.php:811
1167
  msgid "Icon size"
1168
  msgstr "Размер иконки"
1169
 
1170
+ #: inc/core/data.php:812
1171
  msgid "Size of the uploaded icon in pixels"
1172
  msgstr "Размер загруженной иконки в пикселях"
1173
 
1174
+ #: inc/core/data.php:820
1175
  msgid "Service description"
1176
  msgstr "Описание услуги"
1177
 
1178
+ #: inc/core/data.php:821
1179
  msgid "Service box with title"
1180
  msgstr "Блок услуга с заголовком"
1181
 
1182
+ #: inc/core/data.php:832
1183
  msgid "Box title"
1184
  msgstr "Заголовок блока"
1185
 
1186
+ #: inc/core/data.php:833
1187
  msgid "Text for the box title"
1188
  msgstr "Текст для заголовка блока"
1189
 
1190
+ #: inc/core/data.php:846
1191
  msgid "Box style preset"
1192
  msgstr "Стиль блока"
1193
 
1194
+ #: inc/core/data.php:852 inc/core/generator-views.php:99
1195
  msgid "Color"
1196
  msgstr "Цвет"
1197
 
1198
+ #: inc/core/data.php:853
1199
  msgid "Color for the box title and borders"
1200
  msgstr "Цвет заголовка блока и его рамки"
1201
 
1202
+ #: inc/core/data.php:859
1203
  msgid "Title text color"
1204
  msgstr "Цвет текста заголовка"
1205
 
1206
+ #: inc/core/data.php:859
1207
  msgid "Color for the box title text"
1208
  msgstr "Цвет текста в заголовке блока"
1209
 
1210
+ #: inc/core/data.php:868
1211
  msgid "Box corners radius"
1212
  msgstr "Радиус углов"
1213
 
1214
+ #: inc/core/data.php:876
1215
  msgid "Box content"
1216
  msgstr "Содержимое блока"
1217
 
1218
+ #: inc/core/data.php:877
1219
  msgid "Colored box with caption"
1220
  msgstr "Цветной блок с заголовком"
1221
 
1222
+ #: inc/core/data.php:882
1223
  msgid "Note"
1224
  msgstr "Заметка"
1225
 
1226
+ #: inc/core/data.php:890
1227
  msgid "Note background color"
1228
  msgstr "Цвет фона заметки"
1229
 
1230
+ #: inc/core/data.php:897
1231
  msgid "Note text color"
1232
  msgstr "Цвет текста заметки"
1233
 
1234
+ #: inc/core/data.php:905
1235
  msgid "Note corners radius"
1236
  msgstr "Радиус углов"
1237
 
1238
+ #: inc/core/data.php:913
1239
  msgid "Note text"
1240
  msgstr "Текст заметки"
1241
 
1242
+ #: inc/core/data.php:914
1243
  msgid "Colored box"
1244
  msgstr "Цветной блок"
1245
 
1246
+ #: inc/core/data.php:919 inc/core/data.php:1863 inc/core/data.php:1982
1247
+ #: inc/core/data.php:2120
1248
  msgid "Lightbox"
1249
  msgstr "Лайтбокс"
1250
 
1251
+ #: inc/core/data.php:926
1252
  msgid "Iframe"
1253
  msgstr "Фрейм (iframe)"
1254
 
1255
+ #: inc/core/data.php:927
1256
  msgid "Image"
1257
  msgstr "Изображение"
1258
 
1259
+ #: inc/core/data.php:928
1260
  msgid "Inline (html content)"
1261
  msgstr "HTML элемент"
1262
 
1263
+ #: inc/core/data.php:931
1264
  msgid "Content type"
1265
  msgstr "Тип содержимого"
1266
 
1267
+ #: inc/core/data.php:932
1268
  msgid "Select type of the lightbox window content"
1269
  msgstr "Выберите тип содержимого в окне лайтбокса"
1270
 
1271
+ #: inc/core/data.php:936
1272
  msgid "Content source"
1273
  msgstr "Источник содержимого"
1274
 
1275
+ #: inc/core/data.php:937
1276
  msgid ""
1277
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1278
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
1289
  "%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b"
1290
  "%value>#contact-form</b> - любой HTML элемент (html элемент)"
1291
 
1292
+ #: inc/core/data.php:945
1293
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1294
  msgstr ""
1295
  "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
1296
 
1297
+ #: inc/core/data.php:946
1298
  msgid "Lightbox window with custom content"
1299
  msgstr "Лайтбокс с произвольным содержимым"
1300
 
1301
+ #: inc/core/data.php:951
1302
  msgid "Tooltip"
1303
  msgstr "Подсказка"
1304
 
1305
+ #: inc/core/data.php:958
1306
  msgid "Basic: Light"
1307
  msgstr "Базовый: Светлый"
1308
 
1309
+ #: inc/core/data.php:959
1310
  msgid "Basic: Dark"
1311
  msgstr "Базовый: Темный"
1312
 
1313
+ #: inc/core/data.php:960
1314
  msgid "Basic: Yellow"
1315
  msgstr "Базовый: Желтый"
1316
 
1317
+ #: inc/core/data.php:961
1318
  msgid "Basic: Green"
1319
  msgstr "Базовый: Зеленый"
1320
 
1321
+ #: inc/core/data.php:962
1322
  msgid "Basic: Red"
1323
  msgstr "Базовый: Красный"
1324
 
1325
+ #: inc/core/data.php:963
1326
  msgid "Basic: Blue"
1327
  msgstr "Базовый: Голубой"
1328
 
1329
+ #: inc/core/data.php:964
1330
  msgid "Youtube"
1331
  msgstr "Youtube"
1332
 
1333
+ #: inc/core/data.php:965
1334
  msgid "Tipsy"
1335
  msgstr "Tipsy"
1336
 
1337
+ #: inc/core/data.php:966
1338
  msgid "Bootstrap"
1339
  msgstr "Bootstrap"
1340
 
1341
+ #: inc/core/data.php:967
1342
  msgid "jTools"
1343
  msgstr "jTools"
1344
 
1345
+ #: inc/core/data.php:968
1346
  msgid "Tipped"
1347
  msgstr "Tipped"
1348
 
1349
+ #: inc/core/data.php:969
1350
  msgid "Cluetip"
1351
  msgstr "Cluetip"
1352
 
1353
+ #: inc/core/data.php:973
1354
  msgid "Tooltip window style"
1355
  msgstr "Стиль окна подсказки"
1356
 
1357
+ #: inc/core/data.php:978
1358
  msgid "Top"
1359
  msgstr "Сверху"
1360
 
1361
+ #: inc/core/data.php:979
1362
  msgid "Bottom"
1363
  msgstr "Снизу"
1364
 
1365
+ #: inc/core/data.php:984
1366
  msgid "Position"
1367
  msgstr "Положение"
1368
 
1369
+ #: inc/core/data.php:985
1370
  msgid "Tooltip position"
1371
  msgstr "Положение всплывающей подсказки"
1372
 
1373
+ #: inc/core/data.php:990
1374
  msgid "Shadow"
1375
  msgstr "Тень"
1376
 
1377
+ #: inc/core/data.php:991
1378
  msgid ""
1379
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1380
  "blue, green etc."
1381
  msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
1382
 
1383
+ #: inc/core/data.php:996
1384
  msgid "Rounded corners"
1385
  msgstr "Скругление"
1386
 
1387
+ #: inc/core/data.php:997
1388
  msgid ""
1389
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1390
  "blue, green etc."
1392
  "Добавить скругленные уголки окну подсказки. Скругление работает только для "
1393
  "базовых стилей."
1394
 
1395
+ #: inc/core/data.php:1011
1396
  msgid "Font size"
1397
  msgstr "Размер шрифта"
1398
 
1399
+ #: inc/core/data.php:1012
1400
  msgid "Tooltip font size"
1401
  msgstr "Размер шрифта подсказки"
1402
 
1403
+ #: inc/core/data.php:1016
1404
  msgid "Tooltip title"
1405
  msgstr "Заголовок подсказки"
1406
 
1407
+ #: inc/core/data.php:1017
1408
  msgid ""
1409
  "Enter title for tooltip window. Leave this field empty to hide the title"
1410
  msgstr ""
1411
  "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть "
1412
  "заголовок"
1413
 
1414
+ #: inc/core/data.php:1020 inc/core/shortcodes.php:508
1415
  msgid "Tooltip text"
1416
  msgstr "Текст подсказки"
1417
 
1418
+ #: inc/core/data.php:1021
1419
  msgid "Tooltip content"
1420
  msgstr "Содержимое подсказки"
1421
 
1422
+ #: inc/core/data.php:1022
1423
  msgid "Enter tooltip content here"
1424
  msgstr "Введите сюда содержимое подсказки"
1425
 
1426
+ #: inc/core/data.php:1027
1427
  msgid "Show and hide on mouse hover"
1428
  msgstr "Показать и скрыть при наведении мыши"
1429
 
1430
+ #: inc/core/data.php:1028
1431
  msgid "Show and hide by mouse click"
1432
  msgstr "Показать и скрыть по клику мыши"
1433
 
1434
+ #: inc/core/data.php:1029
1435
  msgid "Always visible"
1436
  msgstr "Всегда видима"
1437
 
1438
+ #: inc/core/data.php:1032
1439
  msgid "Behavior"
1440
  msgstr "Поведение"
1441
 
1442
+ #: inc/core/data.php:1033
1443
  msgid "Select tooltip behavior"
1444
  msgstr "Выберите поведение подсказки"
1445
 
1446
+ #: inc/core/data.php:1038
1447
  msgid "Close button"
1448
  msgstr "Кнопка закрыть"
1449
 
1450
+ #: inc/core/data.php:1039
1451
  msgid "Show close button"
1452
  msgstr "Показывать кнопку закрыть"
1453
 
1454
+ #: inc/core/data.php:1047
1455
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1456
  msgstr ""
1457
  "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
1458
 
1459
+ #: inc/core/data.php:1048
1460
  msgid "Tooltip window with custom content"
1461
  msgstr "Всплывающая подсказка с произвольным содержимым"
1462
 
1463
+ #: inc/core/data.php:1053
1464
  msgid "Private"
1465
  msgstr "Заметка для авторов"
1466
 
1467
+ #: inc/core/data.php:1063
1468
  msgid "Private note text"
1469
  msgstr "Текст приватной заметки"
1470
 
1471
+ #: inc/core/data.php:1064
1472
  msgid "Private note for post authors"
1473
  msgstr "Приватный текст для других авторов"
1474
 
1475
+ #: inc/core/data.php:1069
1476
  msgid "YouTube"
1477
  msgstr "YouTube"
1478
 
1479
+ #: inc/core/data.php:1076 inc/core/data.php:1128 inc/core/data.php:1253
1480
+ #: inc/core/data.php:1303 inc/core/data.php:1347 inc/core/data.php:1659
1481
+ #: inc/core/data.php:1756
1482
  msgid "Url"
1483
  msgstr "Ссылка"
1484
 
1485
+ #: inc/core/data.php:1077 inc/core/data.php:1129
1486
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1487
  msgstr ""
1488
  "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
1489
 
1490
+ #: inc/core/data.php:1085 inc/core/data.php:1142 inc/core/data.php:1261
1491
+ #: inc/core/data.php:1312 inc/core/data.php:1356 inc/core/data.php:1453
1492
+ #: inc/core/data.php:1508 inc/core/data.php:1765 inc/core/data.php:1804
1493
+ #: inc/core/data.php:1888 inc/core/data.php:2007 inc/core/data.php:2145
1494
+ #: inc/core/data.php:2361
1495
  msgid "Width"
1496
  msgstr "Ширина"
1497
 
1498
+ #: inc/core/data.php:1086 inc/core/data.php:1143 inc/core/data.php:1262
1499
+ #: inc/core/data.php:1313 inc/core/data.php:1357 inc/core/data.php:1509
1500
  msgid "Player width"
1501
  msgstr "Ширина плеера"
1502
 
1503
+ #: inc/core/data.php:1095 inc/core/data.php:1152 inc/core/data.php:1271
1504
+ #: inc/core/data.php:1322 inc/core/data.php:1366 inc/core/data.php:1518
1505
  msgid "Player height"
1506
  msgstr "Высота плеера"
1507
 
1508
+ #: inc/core/data.php:1100 inc/core/data.php:1157 inc/core/data.php:1276
1509
+ #: inc/core/data.php:1327 inc/core/data.php:1371 inc/core/data.php:1780
1510
+ #: inc/core/data.php:1819 inc/core/data.php:1901 inc/core/data.php:2022
1511
  msgid "Responsive"
1512
  msgstr "Отзывчивость (responsive)"
1513
 
1514
+ #: inc/core/data.php:1101 inc/core/data.php:1158 inc/core/data.php:1277
1515
+ #: inc/core/data.php:1328 inc/core/data.php:1372
1516
  msgid "Ignore width and height parameters and make player responsive"
1517
  msgstr ""
1518
  "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
1519
 
1520
+ #: inc/core/data.php:1106 inc/core/data.php:1191 inc/core/data.php:1282
1521
+ #: inc/core/data.php:1377 inc/core/data.php:1459 inc/core/data.php:1529
1522
+ #: inc/core/data.php:1936 inc/core/data.php:2074
1523
  msgid "Autoplay"
1524
  msgstr "Автовоспроизведение"
1525
 
1526
+ #: inc/core/data.php:1107 inc/core/data.php:1192 inc/core/data.php:1283
1527
  msgid "Play video automatically when page is loaded"
1528
  msgstr "Воспроизвести видео автоматически при открытии страницы"
1529
 
1530
+ #: inc/core/data.php:1115
1531
  msgid "YouTube video"
1532
  msgstr "Видео YouTube"
1533
 
1534
+ #: inc/core/data.php:1121
1535
  msgid "YouTube Advanced"
1536
  msgstr "YouTube продвинутый"
1537
 
1538
+ #: inc/core/data.php:1133
1539
  msgid "Playlist"
1540
  msgstr "Плейлист"
1541
 
1542
+ #: inc/core/data.php:1134
1543
  msgid ""
1544
  "Value is a comma-separated list of video IDs to play. If you specify a "
1545
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
1549
  "значение, то первым будет проиграно видео из параметра URL, а указанные "
1550
  "здесь видео будут проиграны после него"
1551
 
1552
+ #: inc/core/data.php:1163
1553
  msgid "0 - Hide controls"
1554
  msgstr "0 - Спрятать панель"
1555
 
1556
+ #: inc/core/data.php:1164
1557
  msgid "1 - Show controls"
1558
  msgstr "1 - Показать панель"
1559
 
1560
+ #: inc/core/data.php:1165
1561
  msgid "2 - Show controls when playback is started"
1562
  msgstr "2 - Показать панель при начале воспроизведения"
1563
 
1564
+ #: inc/core/data.php:1168 inc/core/data.php:1523
1565
  msgid "Controls"
1566
  msgstr "Элементы управления"
1567
 
1568
+ #: inc/core/data.php:1169
1569
  msgid "This parameter indicates whether the video player controls will display"
1570
  msgstr ""
1571
  "Этот параметр определяет как показывать панель управления воспроизведением"
1572
 
1573
+ #: inc/core/data.php:1174
1574
  msgid "0 - Do not hide controls"
1575
  msgstr "0 - Не прятать панель"
1576
 
1577
+ #: inc/core/data.php:1175
1578
  msgid "1 - Hide all controls on mouse out"
1579
  msgstr "1 - Спрятать панель при уходе мыши"
1580
 
1581
+ #: inc/core/data.php:1176
1582
  msgid "2 - Hide progress bar on mouse out"
1583
  msgstr "2 - Спрятать полосу прокрутки при уходе мыши"
1584
 
1585
+ #: inc/core/data.php:1179
1586
  msgid "Autohide"
1587
  msgstr "Авто-скрытие"
1588
 
1589
+ #: inc/core/data.php:1180
1590
  msgid ""
1591
  "This parameter indicates whether the video controls will automatically hide "
1592
  "after a video begins playing"
1594
  "Этот параметр определяет как скрывать панель управления воспроизведением во "
1595
  "время проигрывания ролика"
1596
 
1597
+ #: inc/core/data.php:1185
1598
  msgid "Show title bar"
1599
  msgstr "Показывать заголовок"
1600
 
1601
+ #: inc/core/data.php:1186
1602
  msgid ""
1603
  "If you set the parameter value to NO, then the player will not display "
1604
  "information like the video title and uploader before the video starts "
1607
  "Если вы установите параметр на НЕТ, то в плеере не будет показан заголовок с "
1608
  "названием видео и имя автора видео"
1609
 
1610
+ #: inc/core/data.php:1197 inc/core/data.php:1465 inc/core/data.php:1535
1611
  msgid "Loop"
1612
  msgstr "Повтор"
1613
 
1614
+ #: inc/core/data.php:1198
1615
  msgid ""
1616
  "Setting of YES will cause the player to play the initial video again and "
1617
  "again"
1618
  msgstr "Видео будет снова проиграно по окнчании воспроизведения"
1619
 
1620
+ #: inc/core/data.php:1203
1621
  msgid "Related videos"
1622
  msgstr "Похожие видео"
1623
 
1624
+ #: inc/core/data.php:1204
1625
  msgid ""
1626
  "This parameter indicates whether the player should show related videos when "
1627
  "playback of the initial video ends"
1629
  "Этот параметр позволяет отключать показ похожих видео по окончании "
1630
  "воспроизведения"
1631
 
1632
+ #: inc/core/data.php:1209
1633
  msgid "Show full-screen button"
1634
  msgstr "Показывать кнопку полноэкранного режима"
1635
 
1636
+ #: inc/core/data.php:1210
1637
  msgid ""
1638
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1639
  msgstr ""
1640
  "Установка этого параметра на НЕТ скроет кнопку перехода в полноэкранный режим"
1641
 
1642
+ #: inc/core/data.php:1216
1643
  msgid ""
1644
  "This parameter lets you use a YouTube player that does not show a YouTube "
1645
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
1651
  "управления воспроизведением. Вместо он будет показан либо в панели заголовка "
1652
  "видео, либо как полупрозрачный над видео"
1653
 
1654
+ #: inc/core/data.php:1221
1655
  msgid "Dark theme"
1656
  msgstr "Темная тема"
1657
 
1658
+ #: inc/core/data.php:1222
1659
  msgid "Light theme"
1660
  msgstr "Светлая тема"
1661
 
1662
+ #: inc/core/data.php:1225 inc/core/data.php:2392
1663
  msgid "Theme"
1664
  msgstr "Тема"
1665
 
1666
+ #: inc/core/data.php:1226
1667
  msgid ""
1668
  "This parameter indicates whether the embedded player will display player "
1669
  "controls (like a play button or volume control) within a dark or light "
1670
  "control bar"
1671
  msgstr "Выберите тему для проигрывателя"
1672
 
1673
+ #: inc/core/data.php:1231
1674
+ msgid "Force HTTPS"
1675
+ msgstr "Принудительный HTTPS"
1676
+
1677
+ #: inc/core/data.php:1232
1678
+ msgid "Use HTTPS in player iframe"
1679
+ msgstr "Использовать протокол HTTPS во фрейме проигрывателя"
1680
+
1681
+ #: inc/core/data.php:1240
1682
  msgid "YouTube video player with advanced settings"
1683
  msgstr "YouTube видео плеер с расширенными настройками"
1684
 
1685
+ #: inc/core/data.php:1246
1686
  msgid "Vimeo"
1687
  msgstr "Vimeo"
1688
 
1689
+ #: inc/core/data.php:1253
1690
  msgid "Url of Vimeo page with video"
1691
  msgstr "Ссылка на страницу Vimeo с видео"
1692
 
1693
+ #: inc/core/data.php:1291
1694
  msgid "Vimeo video"
1695
  msgstr "Видео Vimeo"
1696
 
1697
+ #: inc/core/data.php:1297
1698
  msgid "Screenr"
1699
  msgstr "Screenr"
1700
 
1701
+ #: inc/core/data.php:1304
1702
  msgid "Url of Screenr page with video"
1703
  msgstr "Ссылка на страницу Screenr с видео"
1704
 
1705
+ #: inc/core/data.php:1336
1706
  msgid "Screenr video"
1707
  msgstr "Видео Screenr"
1708
 
1709
+ #: inc/core/data.php:1341
1710
+ msgid "Dailymotion"
1711
+ msgstr "Dailymotion"
1712
+
1713
+ #: inc/core/data.php:1348
1714
+ msgid "Url of Dailymotion page with video"
1715
+ msgstr "Ссылка на страницу Dailymotion с видео"
1716
+
1717
+ #: inc/core/data.php:1378
1718
+ msgid ""
1719
+ "Start the playback of the video automatically after the player load. May not "
1720
+ "work on some mobile OS versions"
1721
+ msgstr ""
1722
+ "Автоматически начать воспроизведение видео. Может не работать на некоторых "
1723
+ "моильных ОС"
1724
+
1725
+ #: inc/core/data.php:1383
1726
+ msgid "Background color"
1727
+ msgstr "Цвет фона"
1728
+
1729
+ #: inc/core/data.php:1384
1730
+ msgid "HTML color of the background of controls elements"
1731
+ msgstr "HTML цвет фона элементов управления"
1732
+
1733
+ #: inc/core/data.php:1389
1734
+ msgid "Foreground color"
1735
+ msgstr "Цвет переднего плана"
1736
+
1737
+ #: inc/core/data.php:1390
1738
+ msgid "HTML color of the foreground of controls elements"
1739
+ msgstr "HTML цвет передней части элементов управления"
1740
+
1741
+ #: inc/core/data.php:1395
1742
+ msgid "Highlight color"
1743
+ msgstr "Цвет подсветки"
1744
+
1745
+ #: inc/core/data.php:1396
1746
+ msgid "HTML color of the controls elements' highlights"
1747
+ msgstr "HTML цвет подсветки элементов управления"
1748
+
1749
+ #: inc/core/data.php:1401
1750
+ msgid "Show logo"
1751
+ msgstr "Показать логотип"
1752
+
1753
+ #: inc/core/data.php:1402
1754
+ msgid "Allows to hide or show the Dailymotion logo"
1755
+ msgstr "Показать или нет лого Dailymotion"
1756
+
1757
+ #: inc/core/data.php:1414
1758
+ msgid "Quality"
1759
+ msgstr "Качество"
1760
+
1761
+ #: inc/core/data.php:1415
1762
+ msgid "Determines the quality that must be played by default if available"
1763
+ msgstr "Определите качество, которое нужно воспроизвести, если доступно"
1764
+
1765
+ #: inc/core/data.php:1420
1766
+ msgid "Show related videos"
1767
+ msgstr "Показать похожие видео"
1768
+
1769
+ #: inc/core/data.php:1421
1770
+ msgid "Show related videos at the end of the video"
1771
+ msgstr "Показать похожие видео в конце воспроизведения"
1772
+
1773
+ #: inc/core/data.php:1426
1774
+ msgid "Show video info"
1775
+ msgstr "Показывать инфо видео"
1776
+
1777
+ #: inc/core/data.php:1427
1778
+ msgid "Show videos info (title/author) on the start screen"
1779
+ msgstr "Показать информацию о видео (заголовок/автор) на начальном экране"
1780
+
1781
+ #: inc/core/data.php:1435
1782
+ msgid "Dailymotion video"
1783
+ msgstr "Видео Dailymotion"
1784
+
1785
+ #: inc/core/data.php:1440
1786
  msgid "Audio"
1787
  msgstr "Аудио"
1788
 
1789
+ #: inc/core/data.php:1447 inc/core/data.php:1487
1790
  msgid "File"
1791
  msgstr "Файл"
1792
 
1793
+ #: inc/core/data.php:1448
1794
  msgid "Audio file url. Supported formats: mp3, ogg"
1795
  msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
1796
 
1797
+ #: inc/core/data.php:1454
1798
  msgid ""
1799
  "Player width. You can specify width in percents and player will be "
1800
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1803
  "отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b"
1804
  "%value>100&#37;</b>"
1805
 
1806
+ #: inc/core/data.php:1460 inc/core/data.php:1530
1807
  msgid "Play file automatically when page is loaded"
1808
  msgstr "Воспроизводить файл автоматически при открытии страницы"
1809
 
1810
+ #: inc/core/data.php:1466 inc/core/data.php:1536
1811
  msgid "Repeat when playback is ended"
1812
  msgstr "Повторять, когда воспроизведение окночено"
1813
 
1814
+ #: inc/core/data.php:1474
1815
  msgid "Custom audio player"
1816
  msgstr "Настраиваемый аудио-плеер"
1817
 
1818
+ #: inc/core/data.php:1480
1819
  msgid "Video"
1820
  msgstr "Видео"
1821
 
1822
+ #: inc/core/data.php:1488
1823
  msgid "Url to mp4/flv video-file"
1824
  msgstr "Ссылка на mp4/flv видео-файл"
1825
 
1826
+ #: inc/core/data.php:1493
1827
  msgid "Poster"
1828
  msgstr "Постер"
1829
 
1830
+ #: inc/core/data.php:1494
1831
  msgid "Url to poster image, that will be shown before playback"
1832
  msgstr ""
1833
  "Ссылка на изображение постера. Изображение будет показано перед началом "
1834
  "воспроизведения"
1835
 
1836
+ #: inc/core/data.php:1500
1837
  msgid "Player title"
1838
  msgstr "Заголовок плеера"
1839
 
1840
+ #: inc/core/data.php:1524
1841
  msgid "Show player controls (play/pause etc.) or not"
1842
  msgstr ""
1843
  "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
1844
 
1845
+ #: inc/core/data.php:1544
1846
  msgid "Custom video player"
1847
  msgstr "Настраиваемый видео-плеер"
1848
 
1849
+ #: inc/core/data.php:1550
1850
  msgid "Table"
1851
  msgstr "Таблица"
1852
 
1853
+ #: inc/core/data.php:1557
1854
  msgid "CSV file"
1855
  msgstr "CSV файл"
1856
 
1857
+ #: inc/core/data.php:1558
1858
  msgid "Upload CSV file if you want to create HTML-table from file"
1859
  msgstr ""
1860
  "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
1861
 
1862
+ #: inc/core/data.php:1566
1863
  msgid ""
1864
  "<table>\n"
1865
  "<tr>\n"
1883
  "</tr>\n"
1884
  "</table>"
1885
 
1886
+ #: inc/core/data.php:1567
1887
  msgid "Styled table from HTML or CSV file"
1888
  msgstr "Стильная таблица из HTML или CSV файла"
1889
 
1890
+ #: inc/core/data.php:1572
1891
  msgid "Permalink"
1892
  msgstr "Постоянная ссылка"
1893
 
1894
+ #: inc/core/data.php:1578 inc/core/data.php:2502
1895
  msgid "ID"
1896
  msgstr "ID"
1897
 
1898
+ #: inc/core/data.php:1579
1899
  msgid "Post or page ID"
1900
  msgstr "ID записи или страницы"
1901
 
1902
+ #: inc/core/data.php:1589
1903
  msgid "Link target. blank - link will be opened in new window/tab"
1904
  msgstr ""
1905
  "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или "
1906
  "вкладке"
1907
 
1908
+ #: inc/core/data.php:1598
1909
  msgid "Permalink to specified post/page"
1910
  msgstr "Постоянная ссылка на страницу"
1911
 
1912
+ #: inc/core/data.php:1603
1913
  msgid "Members"
1914
  msgstr "Участники"
1915
 
1916
+ #: inc/core/data.php:1608 inc/core/shortcodes.php:794
1917
  msgid "This content is for registered users only. Please %login%."
1918
  msgstr ""
1919
  "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
1920
 
1921
+ #: inc/core/data.php:1609
1922
  msgid "Message"
1923
  msgstr "Сообщение"
1924
 
1925
+ #: inc/core/data.php:1609
1926
  msgid "Message for not logged users"
1927
  msgstr "Собщение для неавторизованных"
1928
 
1929
+ #: inc/core/data.php:1614
1930
  msgid "Box color"
1931
  msgstr "Цвет блока"
1932
 
1933
+ #: inc/core/data.php:1614
1934
  msgid "This color will applied only to box for not logged users"
1935
  msgstr ""
1936
  "Этот цвет будет применен только к блоку для не авторизованных посетителей"
1937
 
1938
+ #: inc/core/data.php:1617 inc/core/shortcodes.php:797
1939
  msgid "login"
1940
  msgstr "войдите"
1941
 
1942
+ #: inc/core/data.php:1618
1943
  msgid "Login link text"
1944
  msgstr "Текст ссылки войти"
1945
 
1946
+ #: inc/core/data.php:1618
1947
  msgid "Text for the login link"
1948
  msgstr "Текст ссылки ВОЙТИ"
1949
 
1950
+ #: inc/core/data.php:1622
1951
  msgid "Login link url"
1952
  msgstr "Адрес ссылки войти"
1953
 
1954
+ #: inc/core/data.php:1630
1955
  msgid "Content for logged members"
1956
  msgstr "Содержимое для авторизованых пользователей"
1957
 
1958
+ #: inc/core/data.php:1631
1959
  msgid "Content for logged in members only"
1960
  msgstr "Ссодержимое для авторизованых"
1961
 
1962
+ #: inc/core/data.php:1636
1963
  msgid "Guests"
1964
  msgstr "Гости"
1965
 
1966
+ #: inc/core/data.php:1646
1967
  msgid "Content for guests"
1968
  msgstr "Содержимое для гостей"
1969
 
1970
+ #: inc/core/data.php:1647
1971
  msgid "Content for guests only"
1972
  msgstr "Ссодержимое только для гостей"
1973
 
1974
+ #: inc/core/data.php:1652
1975
  msgid "RSS Feed"
1976
  msgstr "RSS лента"
1977
 
1978
+ #: inc/core/data.php:1660
1979
  msgid "Url to RSS-feed"
1980
  msgstr "Ссылка на RSS-ленту"
1981
 
1982
+ #: inc/core/data.php:1668 inc/core/data.php:1855 inc/core/data.php:1974
1983
+ #: inc/core/data.php:2112
1984
  msgid "Limit"
1985
  msgstr "Лимит"
1986
 
1987
+ #: inc/core/data.php:1668
1988
  msgid "Number of items to show"
1989
  msgstr "Количество элементов для отображения"
1990
 
1991
+ #: inc/core/data.php:1676
1992
  msgid "Feed grabber"
1993
  msgstr "Граббер новостных лент"
1994
 
1995
+ #: inc/core/data.php:1681
1996
  msgid "Menu"
1997
  msgstr "Меню"
1998
 
1999
+ #: inc/core/data.php:1688
2000
  msgid "Menu name"
2001
  msgstr "Имя меню"
2002
 
2003
+ #: inc/core/data.php:1688
2004
  msgid "Custom menu name. Ex: Main menu"
2005
  msgstr "Имя произвольного меню. Например: Главное меню"
2006
 
2007
+ #: inc/core/data.php:1696
2008
  msgid "Custom menu by name"
2009
  msgstr "Произвольное меню"
2010
 
2011
+ #: inc/core/data.php:1701
2012
  msgid "Sub pages"
2013
  msgstr "Подстраницы"
2014
 
2015
+ #: inc/core/data.php:1708 inc/core/data.php:1735
2016
  msgid "Depth"
2017
  msgstr "Глубина"
2018
 
2019
+ #: inc/core/data.php:1709
2020
  msgid "Max depth level of children pages"
2021
  msgstr "Максимальная глубина дочерних страниц"
2022
 
2023
+ #: inc/core/data.php:1714
2024
  msgid "Parent ID"
2025
  msgstr "ID родителя"
2026
 
2027
+ #: inc/core/data.php:1715
2028
  msgid "ID of the parent page. Leave blank to use current page"
2029
  msgstr ""
2030
  "ID родительской страницы. Оставьте пустым, чтобы использовать текущую "
2031
  "страницу"
2032
 
2033
+ #: inc/core/data.php:1723
2034
  msgid "List of sub pages"
2035
  msgstr "Список дочерних страниц"
2036
 
2037
+ #: inc/core/data.php:1728
2038
  msgid "Siblings"
2039
  msgstr "Соседние страницы"
2040
 
2041
+ #: inc/core/data.php:1736
2042
  msgid "Max depth level"
2043
  msgstr "Максимальный уровень вложенности"
2044
 
2045
+ #: inc/core/data.php:1744
2046
  msgid "List of cureent page siblings"
2047
  msgstr "Список страниц, соседних с текущей"
2048
 
2049
+ #: inc/core/data.php:1749
2050
  msgid "Document"
2051
  msgstr "Документ"
2052
 
2053
+ #: inc/core/data.php:1757
2054
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
2055
  msgstr ""
2056
  "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
2057
 
2058
+ #: inc/core/data.php:1766
2059
  msgid "Viewer width"
2060
  msgstr "Ширина просмотрщика"
2061
 
2062
+ #: inc/core/data.php:1775
2063
  msgid "Viewer height"
2064
  msgstr "Высота просмотрщика"
2065
 
2066
+ #: inc/core/data.php:1781
2067
  msgid "Ignore width and height parameters and make viewer responsive"
2068
  msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
2069
 
2070
+ #: inc/core/data.php:1789
2071
  msgid "Document viewer by Google"
2072
  msgstr "Просмотрщик документов от Google"
2073
 
2074
+ #: inc/core/data.php:1794
2075
  msgid "Gmap"
2076
  msgstr "Google карта"
2077
 
2078
+ #: inc/core/data.php:1805
2079
  msgid "Map width"
2080
  msgstr "Ширина карты"
2081
 
2082
+ #: inc/core/data.php:1814
2083
  msgid "Map height"
2084
  msgstr "Высота карты"
2085
 
2086
+ #: inc/core/data.php:1820
2087
  msgid "Ignore width and height parameters and make map responsive"
2088
  msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
2089
 
2090
+ #: inc/core/data.php:1825
2091
  msgid "Marker"
2092
  msgstr "Маркер"
2093
 
2094
+ #: inc/core/data.php:1826
2095
  msgid "Address for the marker. You can type it in any language"
2096
  msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
2097
 
2098
+ #: inc/core/data.php:1834
2099
  msgid "Maps by Google"
2100
  msgstr "Карты от Google"
2101
 
2102
+ #: inc/core/data.php:1839
2103
  msgid "Slider"
2104
  msgstr "Слайдер"
2105
 
2106
+ #: inc/core/data.php:1846 inc/core/data.php:1965 inc/core/data.php:2103
2107
  msgid "Source"
2108
  msgstr "Источник"
2109
 
2110
+ #: inc/core/data.php:1847 inc/core/data.php:1966 inc/core/data.php:2104
2111
  msgid ""
2112
  "Choose images source. You can use images from Media library or retrieve it "
2113
  "from posts (thumbnails) posted under specified blog category. You can also "
2118
  "опубликованных в выбранной категории. Вы также можете выбрать произвольную "
2119
  "таксономию и её рубрики"
2120
 
2121
+ #: inc/core/data.php:1856 inc/core/data.php:1975 inc/core/data.php:2113
2122
  msgid ""
2123
  "Maximum number of image source posts (for recent posts, category and custom "
2124
  "taxonomy)"
2126
  "Максимальное кол-во записей с изображениями (для последних записей, "
2127
  "категорий и произвольных таксономий)"
2128
 
2129
+ #: inc/core/data.php:1862 inc/core/data.php:1981 inc/core/data.php:2119
2130
  msgid "Full-size image"
2131
  msgstr "Полноразмерное изображение"
2132
 
2133
+ #: inc/core/data.php:1864 inc/core/data.php:1983 inc/core/data.php:2121
2134
  msgid "Slide link (added in media editor)"
2135
  msgstr "Ссылка слайда (добавленная в медиа редакторе)"
2136
 
2137
+ #: inc/core/data.php:1865 inc/core/data.php:1984 inc/core/data.php:2122
2138
  msgid "Attachment page"
2139
  msgstr "Страница медиа-файла"
2140
 
2141
+ #: inc/core/data.php:1866 inc/core/data.php:1985 inc/core/data.php:2123
2142
  msgid "Post permalink"
2143
  msgstr "Ссылка записи"
2144
 
2145
+ #: inc/core/data.php:1869 inc/core/data.php:1988 inc/core/data.php:2126
2146
  msgid "Links"
2147
  msgstr "Ссылки"
2148
 
2149
+ #: inc/core/data.php:1870 inc/core/data.php:1989 inc/core/data.php:2127
2150
  msgid "Select which links will be used for images in this gallery"
2151
  msgstr "Выберите какие ссылки использовать для элементов этой галереи"
2152
 
2153
+ #: inc/core/data.php:1875 inc/core/data.php:1994 inc/core/data.php:2132
2154
  msgid "Same window"
2155
  msgstr "То же окно"
2156
 
2157
+ #: inc/core/data.php:1876 inc/core/data.php:1995 inc/core/data.php:2133
2158
  msgid "New window"
2159
  msgstr "Новое окно"
2160
 
2161
+ #: inc/core/data.php:1879 inc/core/data.php:1998 inc/core/data.php:2136
2162
  msgid "Links target"
2163
  msgstr "Цель ссылок"
2164
 
2165
+ #: inc/core/data.php:1880 inc/core/data.php:1999 inc/core/data.php:2137
2166
  msgid "Open links in"
2167
  msgstr "Открывать ссылки в"
2168
 
2169
+ #: inc/core/data.php:1888
2170
  msgid "Slider width (in pixels)"
2171
  msgstr "Ширина слайдера (в пикселях)"
2172
 
2173
+ #: inc/core/data.php:1896
2174
  msgid "Slider height (in pixels)"
2175
  msgstr "Высота слайдера (в пикселях)"
2176
 
2177
+ #: inc/core/data.php:1902
2178
  msgid "Ignore width and height parameters and make slider responsive"
2179
  msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
2180
 
2181
+ #: inc/core/data.php:1907 inc/core/data.php:2045 inc/core/data.php:2163
2182
  msgid "Show titles"
2183
  msgstr "Показывать заголовки"
2184
 
2185
+ #: inc/core/data.php:1907
2186
  msgid "Display slide titles"
2187
  msgstr "Отображать заголовки слайдов"
2188
 
2189
+ #: inc/core/data.php:1912
2190
  msgid "Is slider centered on the page"
2191
  msgstr "Слайдер выровнен по центру страницы"
2192
 
2193
+ #: inc/core/data.php:1917 inc/core/data.php:2055
2194
  msgid "Arrows"
2195
  msgstr "Стрелки"
2196
 
2197
+ #: inc/core/data.php:1917 inc/core/data.php:2055
2198
  msgid "Show left and right arrows"
2199
  msgstr "Показывать стрелки влево/вправо"
2200
 
2201
+ #: inc/core/data.php:1922 inc/core/data.php:2060
2202
  msgid "Pagination"
2203
  msgstr "Страницы"
2204
 
2205
+ #: inc/core/data.php:1923 inc/core/data.php:2061
2206
  msgid "Show pagination"
2207
  msgstr "Показывать страницы"
2208
 
2209
+ #: inc/core/data.php:1927 inc/core/data.php:2065
2210
  msgid "Mouse wheel control"
2211
  msgstr "Управление колесом мыши"
2212
 
2213
+ #: inc/core/data.php:1928
2214
  msgid "Allow to change slides with mouse wheel"
2215
  msgstr "Разрешить перелистывание слайдов колесом мышки"
2216
 
2217
+ #: inc/core/data.php:1937
2218
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2219
  msgstr ""
2220
  "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы "
2221
  "отключить автовоспроизведение"
2222
 
2223
+ #: inc/core/data.php:1945 inc/core/data.php:2083
2224
  msgid "Speed"
2225
  msgstr "Скорость"
2226
 
2227
+ #: inc/core/data.php:1945 inc/core/data.php:2083
2228
  msgid "Specify animation speed"
2229
  msgstr "Укажите скорость анимации"
2230
 
2231
+ #: inc/core/data.php:1953
2232
  msgid "Customizable image slider"
2233
  msgstr "Настраиваемый слайдер изображений"
2234
 
2235
+ #: inc/core/data.php:1958
2236
  msgid "Carousel"
2237
  msgstr "Карусель"
2238
 
2239
+ #: inc/core/data.php:2008
2240
  msgid "Carousel width (in pixels)"
2241
  msgstr "Ширина карусели (в пикселях)"
2242
 
2243
+ #: inc/core/data.php:2017
2244
  msgid "Carousel height (in pixels)"
2245
  msgstr "Высота карусели (в пикселях)"
2246
 
2247
+ #: inc/core/data.php:2023
2248
  msgid "Ignore width and height parameters and make carousel responsive"
2249
  msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
2250
 
2251
+ #: inc/core/data.php:2031
2252
  msgid "Items to show"
2253
  msgstr "Количество элементов для отображения"
2254
 
2255
+ #: inc/core/data.php:2032
2256
  msgid "How much carousel items is visible"
2257
  msgstr "Сколько элементов карусели видны постоянно"
2258
 
2259
+ #: inc/core/data.php:2039
2260
  msgid "Scroll number"
2261
  msgstr "Кол-во прокручиваемых"
2262
 
2263
+ #: inc/core/data.php:2040
2264
  msgid "How much items are scrolled in one transition"
2265
  msgstr "Сколько элементов карусели прокручивается за один переход"
2266
 
2267
+ #: inc/core/data.php:2045
2268
  msgid "Display titles for each item"
2269
  msgstr "Показывать заголовки для каждого элемента карусели"
2270
 
2271
+ #: inc/core/data.php:2050
2272
  msgid "Is carousel centered on the page"
2273
  msgstr "Карусель выровнена по центру страницы"
2274
 
2275
+ #: inc/core/data.php:2066
2276
  msgid "Allow to rotate carousel with mouse wheel"
2277
  msgstr "Разрешить прокрутку карусели колесом мыши"
2278
 
2279
+ #: inc/core/data.php:2075
2280
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2281
  msgstr ""
2282
  "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить "
2283
  "автовоспроизведение"
2284
 
2285
+ #: inc/core/data.php:2091
2286
  msgid "Customizable image carousel"
2287
  msgstr "Настраиваемая карусель изображений"
2288
 
2289
+ #: inc/core/data.php:2145
2290
  msgid "Single item width (in pixels)"
2291
  msgstr "Ширина одного изображения (в пикселях)"
2292
 
2293
+ #: inc/core/data.php:2153
2294
  msgid "Single item height (in pixels)"
2295
  msgstr "Высота одного изображения (в пикселях)"
2296
 
2297
+ #: inc/core/data.php:2158
2298
  msgid "Never"
2299
  msgstr "Никогда"
2300
 
2301
+ #: inc/core/data.php:2159
2302
  msgid "On mouse over"
2303
  msgstr "При наведении мыши"
2304
 
2305
+ #: inc/core/data.php:2160
2306
  msgid "Always"
2307
  msgstr "Всегда"
2308
 
2309
+ #: inc/core/data.php:2164
2310
  msgid "Title display mode"
2311
  msgstr "Режим отображения заголовков"
2312
 
2313
+ #: inc/core/data.php:2172
2314
  msgid "Customizable image gallery"
2315
  msgstr "Настраиваемая галерея изображений"
2316
 
2317
+ #: inc/core/data.php:2177
2318
  msgid "Posts"
2319
  msgstr "Записи"
2320
 
2321
+ #: inc/core/data.php:2182 inc/core/data.php:2609
2322
  msgid "Template"
2323
  msgstr "Шаблон"
2324
 
2325
+ #: inc/core/data.php:2183
2326
  msgid ""
2327
  "<b>Do not change this field value if you do not understand description below."
2328
  "</b><br/>Relative path to the template file. Default templates is placed "
2345
  "одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - "
2346
  "маркированный список с заголовками постов"
2347
 
2348
+ #: inc/core/data.php:2187
2349
  msgid "Post ID's"
2350
  msgstr "ID постов"
2351
 
2352
+ #: inc/core/data.php:2188
2353
  msgid "Enter comma separated ID's of the posts that you want to show"
2354
  msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
2355
 
2356
+ #: inc/core/data.php:2196
2357
  msgid "Posts per page"
2358
  msgstr "Кол-во записей"
2359
 
2360
+ #: inc/core/data.php:2197
2361
  msgid ""
2362
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2363
  msgstr ""
2364
  "Укажите число записей, которое хотите отобразить. Введите -1 чтобы "
2365
  "отобразить все найденные записи"
2366
 
2367
+ #: inc/core/data.php:2204
2368
  msgid "Post types"
2369
  msgstr "Типы постов"
2370
 
2371
+ #: inc/core/data.php:2205
2372
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2373
  msgstr ""
2374
  "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
2375
 
2376
+ #: inc/core/data.php:2211 inc/core/generator-views.php:123
2377
  msgid "Taxonomy"
2378
  msgstr "Таксономия"
2379
 
2380
+ #: inc/core/data.php:2212
2381
  msgid "Select taxonomy to show posts from"
2382
  msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
2383
 
2384
+ #: inc/core/data.php:2219
2385
  msgid "Terms"
2386
  msgstr "Категории (terms)"
2387
 
2388
+ #: inc/core/data.php:2220
2389
  msgid "Select terms to show posts from"
2390
  msgstr "Выберите категории, из которых нужно показать записи"
2391
 
2392
+ #: inc/core/data.php:2225
2393
  msgid "Taxonomy term operator"
2394
  msgstr "Оператор выбора категорий"
2395
 
2396
+ #: inc/core/data.php:2226
2397
  msgid ""
2398
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2399
  "that is does not have any of selected terms<br/>AND - posts that have all "
2403
  "будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/"
2404
  ">AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
2405
 
2406
+ #: inc/core/data.php:2233
2407
  msgid "Authors"
2408
  msgstr "Авторы"
2409
 
2410
+ #: inc/core/data.php:2234
2411
  msgid "Choose the authors whose posts you want to show"
2412
  msgstr "Выберите авторов, чьи записи хотите показать"
2413
 
2414
+ #: inc/core/data.php:2238
2415
  msgid "Meta key"
2416
  msgstr "Произвольное поле"
2417
 
2418
+ #: inc/core/data.php:2239
2419
  msgid "Enter meta key name to show posts that have this key"
2420
  msgstr ""
2421
  "Введите оригинальное имя произвольного поля, чтобы показать все записи у "
2422
  "которых это поле задано"
2423
 
2424
+ #: inc/core/data.php:2246
2425
  msgid "Offset"
2426
  msgstr "Смещение (offset)"
2427
 
2428
+ #: inc/core/data.php:2247
2429
  msgid "Specify offset to start posts loop not from first post"
2430
  msgstr ""
2431
  "Укажите кол-во записей, которые будут пропущены и не показаны. Например, "
2432
  "если указать 2, то будут показаны записи начиная со третьей"
2433
 
2434
+ #: inc/core/data.php:2252
2435
  msgid "Descending"
2436
  msgstr "По убыванию"
2437
 
2438
+ #: inc/core/data.php:2253
2439
  msgid "Ascending"
2440
  msgstr "По возрастанию"
2441
 
2442
+ #: inc/core/data.php:2256
2443
  msgid "Order"
2444
  msgstr "Порядок"
2445
 
2446
+ #: inc/core/data.php:2257
2447
  msgid "Posts order"
2448
  msgstr "Порядок сортировки записей"
2449
 
2450
+ #: inc/core/data.php:2263 inc/core/data.php:2480 inc/core/data.php:2553
2451
+ #: inc/core/data.php:2595
2452
  msgid "Post ID"
2453
  msgstr "ID записи"
2454
 
2455
+ #: inc/core/data.php:2264 inc/core/data.php:2554
2456
  msgid "Post author"
2457
  msgstr "Автор записи"
2458
 
2459
+ #: inc/core/data.php:2265 inc/core/data.php:2558
2460
  msgid "Post title"
2461
  msgstr "Заголовок записи"
2462
 
2463
+ #: inc/core/data.php:2266
2464
  msgid "Post slug"
2465
  msgstr "Ссылка записи (slug)"
2466
 
2467
+ #: inc/core/data.php:2267
2468
  msgid "Date"
2469
  msgstr "Дата"
2470
 
2471
+ #: inc/core/data.php:2267
2472
  msgid "Last modified date"
2473
  msgstr "Дата изменения"
2474
 
2475
+ #: inc/core/data.php:2268 inc/core/data.php:2278 inc/core/data.php:2567
2476
  msgid "Post parent"
2477
  msgstr "Родитель"
2478
 
2479
+ #: inc/core/data.php:2269
2480
  msgid "Random"
2481
  msgstr "Случайно"
2482
 
2483
+ #: inc/core/data.php:2269
2484
  msgid "Comments number"
2485
  msgstr "Кол-во комментариев"
2486
 
2487
+ #: inc/core/data.php:2270 inc/core/data.php:2569
2488
  msgid "Menu order"
2489
  msgstr "Порядок меню"
2490
 
2491
+ #: inc/core/data.php:2270
2492
  msgid "Meta key values"
2493
  msgstr "Значение произвольного поля"
2494
 
2495
+ #: inc/core/data.php:2273
2496
  msgid "Order by"
2497
  msgstr "Сортировать по"
2498
 
2499
+ #: inc/core/data.php:2274
2500
  msgid "Order posts by"
2501
  msgstr "Сортировать записи по следующему признаку"
2502
 
2503
+ #: inc/core/data.php:2279
2504
  msgid "Show childrens of entered post (enter post ID)"
2505
  msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
2506
 
2507
+ #: inc/core/data.php:2284
2508
  msgid "Published"
2509
  msgstr "Опубликован"
2510
 
2511
+ #: inc/core/data.php:2285
2512
  msgid "Pending"
2513
  msgstr "Ожидает"
2514
 
2515
+ #: inc/core/data.php:2286
2516
  msgid "Draft"
2517
  msgstr "Черновик"
2518
 
2519
+ #: inc/core/data.php:2287
2520
  msgid "Auto-draft"
2521
  msgstr "Авто-черновик"
2522
 
2523
+ #: inc/core/data.php:2288
2524
  msgid "Future post"
2525
  msgstr "Запланирован"
2526
 
2527
+ #: inc/core/data.php:2289
2528
  msgid "Private post"
2529
  msgstr "Приватная запись"
2530
 
2531
+ #: inc/core/data.php:2290
2532
  msgid "Inherit"
2533
  msgstr "Вложенный"
2534
 
2535
+ #: inc/core/data.php:2291
2536
  msgid "Trashed"
2537
  msgstr "В корзине"
2538
 
2539
+ #: inc/core/data.php:2292 inc/core/data.php:2376
2540
  msgid "Any"
2541
  msgstr "Любой"
2542
 
2543
+ #: inc/core/data.php:2295 inc/core/data.php:2560
2544
  msgid "Post status"
2545
  msgstr "Статус записи"
2546
 
2547
+ #: inc/core/data.php:2296
2548
  msgid "Show only posts with selected status"
2549
  msgstr "Показать только записи с выбранным статусом"
2550
 
2551
+ #: inc/core/data.php:2301
2552
  msgid "Ignore sticky"
2553
  msgstr "Игнорировать прикрепленные"
2554
 
2555
+ #: inc/core/data.php:2302
2556
  msgid "Select Yes to ignore posts that is sticked"
2557
  msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
2558
 
2559
+ #: inc/core/data.php:2305
2560
  msgid "Custom posts query with customizable template"
2561
  msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
2562
 
2563
+ #: inc/core/data.php:2310
2564
  msgid "Dummy text"
2565
  msgstr "Текст рыба"
2566
 
2567
+ #: inc/core/data.php:2317
2568
  msgid "Paragraphs"
2569
  msgstr "Параграфы"
2570
 
2571
+ #: inc/core/data.php:2318
2572
  msgid "Words"
2573
  msgstr "Слова"
2574
 
2575
+ #: inc/core/data.php:2319
2576
  msgid "Bytes"
2577
  msgstr "Байты"
2578
 
2579
+ #: inc/core/data.php:2322
2580
  msgid "What"
2581
  msgstr "Что"
2582
 
2583
+ #: inc/core/data.php:2323
2584
  msgid "What to generate"
2585
  msgstr "Что генерировать"
2586
 
2587
+ #: inc/core/data.php:2331
2588
  msgid "Amount"
2589
  msgstr "Количество"
2590
 
2591
+ #: inc/core/data.php:2332
2592
  msgid ""
2593
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2594
  msgstr ""
2595
  "Какое количество (параграфов или слов) генерировать. Минимальное количество "
2596
  "слов - 5"
2597
 
2598
+ #: inc/core/data.php:2337
2599
  msgid "Cache"
2600
  msgstr "Кеш"
2601
 
2602
+ #: inc/core/data.php:2338
2603
  msgid ""
2604
  "Generated text will be cached. Be careful with this option. If you disable "
2605
  "it and insert many dummy_text shortcodes the page load time will be highly "
2609
  "вы отключите её и вставите много таких шорткодов на странице, то время "
2610
  "загрузки страницы может сильно возрости"
2611
 
2612
+ #: inc/core/data.php:2346
2613
  msgid "Text placeholder"
2614
  msgstr "Текст болванка"
2615
 
2616
+ #: inc/core/data.php:2351 inc/core/shortcodes.php:1302
2617
  msgid "Dummy image"
2618
  msgstr "Изображение болванка"
2619
 
2620
+ #: inc/core/data.php:2362
2621
  msgid "Image width"
2622
  msgstr "Ширина изображения"
2623
 
2624
+ #: inc/core/data.php:2371
2625
  msgid "Image height"
2626
  msgstr "Высота изображения"
2627
 
2628
+ #: inc/core/data.php:2377
2629
  msgid "Abstract"
2630
  msgstr "Абстрактное"
2631
 
2632
+ #: inc/core/data.php:2378
2633
  msgid "Animals"
2634
  msgstr "Животные"
2635
 
2636
+ #: inc/core/data.php:2379
2637
  msgid "Business"
2638
  msgstr "Бизнес"
2639
 
2640
+ #: inc/core/data.php:2380
2641
  msgid "Cats"
2642
  msgstr "Котэ"
2643
 
2644
+ #: inc/core/data.php:2381
2645
  msgid "City"
2646
  msgstr "Город"
2647
 
2648
+ #: inc/core/data.php:2382
2649
  msgid "Food"
2650
  msgstr "Еда"
2651
 
2652
+ #: inc/core/data.php:2383
2653
  msgid "Night life"
2654
  msgstr "Ночная жизнь"
2655
 
2656
+ #: inc/core/data.php:2384
2657
  msgid "Fashion"
2658
  msgstr "Мода"
2659
 
2660
+ #: inc/core/data.php:2385
2661
  msgid "People"
2662
  msgstr "Люди"
2663
 
2664
+ #: inc/core/data.php:2386
2665
  msgid "Nature"
2666
  msgstr "Природа"
2667
 
2668
+ #: inc/core/data.php:2387
2669
  msgid "Sports"
2670
  msgstr "Спорт"
2671
 
2672
+ #: inc/core/data.php:2388
2673
  msgid "Technics"
2674
  msgstr "Техника"
2675
 
2676
+ #: inc/core/data.php:2389
2677
  msgid "Transport"
2678
  msgstr "Транспорт"
2679
 
2680
+ #: inc/core/data.php:2393
2681
  msgid "Select the theme for this image"
2682
  msgstr "Выберите тему изображений"
2683
 
2684
+ #: inc/core/data.php:2401
2685
  msgid "Image placeholder with random image"
2686
  msgstr "Изображение болванка со случайным изображением"
2687
 
2688
+ #: inc/core/data.php:2406 inc/core/data.php:2414
2689
  msgid "Animation"
2690
  msgstr "Анимация"
2691
 
2692
+ #: inc/core/data.php:2415
2693
  msgid "Select animation type"
2694
  msgstr "Выберите тип анимации"
2695
 
2696
+ #: inc/core/data.php:2423
2697
  msgid "Duration"
2698
  msgstr "Продолжительность"
2699
 
2700
+ #: inc/core/data.php:2424
2701
  msgid "Animation duration (seconds)"
2702
  msgstr "Продолжительность анимации (секунды)"
2703
 
2704
+ #: inc/core/data.php:2432
2705
  msgid "Delay"
2706
  msgstr "Задержка"
2707
 
2708
+ #: inc/core/data.php:2433
2709
  msgid "Animation delay (seconds)"
2710
  msgstr "Задержка перед началом анимации (секунды)"
2711
 
2712
+ #: inc/core/data.php:2438
2713
  msgid "Inline"
2714
  msgstr "Строковый"
2715
 
2716
+ #: inc/core/data.php:2439
2717
  msgid ""
2718
  "This parameter determines what HTML tag will be used for animation wrapper. "
2719
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
2723
  "Переключите этот параметр на ДА и будет использован тег span вместо div. "
2724
  "Данная опция полезна для анимации строковых жлементов, например кнопок"
2725
 
2726
+ #: inc/core/data.php:2447
2727
  msgid "Animated content"
2728
  msgstr "Анимированное содержимое"
2729
 
2730
+ #: inc/core/data.php:2448
2731
  msgid "Wrapper for animation. Any nested element will be animated"
2732
  msgstr ""
2733
  "Контейнер для анимации. Любой элемент помещенный в этот контейнер будет "
2734
  "анимирован"
2735
 
2736
+ #: inc/core/data.php:2454
2737
  msgid "Meta"
2738
  msgstr "Мета"
2739
 
2740
+ #: inc/core/data.php:2460
2741
  msgid "Key"
2742
  msgstr "Ключ"
2743
 
2744
+ #: inc/core/data.php:2461
2745
  msgid "Meta key name"
2746
  msgstr "Имя произвольного поля"
2747
 
2748
+ #: inc/core/data.php:2466 inc/core/data.php:2518 inc/core/data.php:2581
2749
  msgid "This text will be shown if data is not found"
2750
  msgstr "Этот текст будет показан если не будет найдено запрошенное значение"
2751
 
2752
+ #: inc/core/data.php:2470 inc/core/data.php:2522 inc/core/data.php:2585
2753
  msgid "Before"
2754
  msgstr "Перед"
2755
 
2756
+ #: inc/core/data.php:2471 inc/core/data.php:2523 inc/core/data.php:2586
2757
  msgid "This content will be shown before the value"
2758
  msgstr "Этот текст будет показан перед результатом"
2759
 
2760
+ #: inc/core/data.php:2475 inc/core/data.php:2527 inc/core/data.php:2590
2761
  msgid "After"
2762
  msgstr "После"
2763
 
2764
+ #: inc/core/data.php:2476 inc/core/data.php:2528 inc/core/data.php:2591
2765
  msgid "This content will be shown after the value"
2766
  msgstr "Этот текст будет показан после результата"
2767
 
2768
+ #: inc/core/data.php:2481 inc/core/data.php:2596
2769
  msgid ""
2770
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2771
  "current post. Current post ID may not work in Live Preview mode"
2774
  "использовать ID текущей записи. ID текущей записи может не работать в режиме "
2775
  "предпросмотра"
2776
 
2777
+ #: inc/core/data.php:2485 inc/core/data.php:2537 inc/core/data.php:2600
2778
  msgid "Filter"
2779
  msgstr "Фильтр"
2780
 
2781
+ #: inc/core/data.php:2486 inc/core/data.php:2538 inc/core/data.php:2601
2782
  msgid ""
2783
  "You can apply custom filter to the retrieved value. Enter here function "
2784
  "name. Your function must accept one argument and return modified value. "
2788
  "здесь имя функции. Ваша функция должна принимать один аргумент и возвращать "
2789
  "измененное значение. Пример функции: "
2790
 
2791
+ #: inc/core/data.php:2489
2792
  msgid "Post meta"
2793
  msgstr "Произвольное поле"
2794
 
2795
+ #: inc/core/data.php:2494
2796
  msgid "User"
2797
  msgstr "Пользователь"
2798
 
2799
+ #: inc/core/data.php:2501
2800
  msgid "Display name"
2801
  msgstr "Отображаемое имя"
2802
 
2803
+ #: inc/core/data.php:2503
2804
  msgid "Login"
2805
  msgstr "Логин"
2806
 
2807
+ #: inc/core/data.php:2504
2808
  msgid "Nice name"
2809
  msgstr "Красивое имя"
2810
 
2811
+ #: inc/core/data.php:2505
2812
  msgid "Email"
2813
  msgstr "Email"
2814
 
2815
+ #: inc/core/data.php:2506
2816
  msgid "URL"
2817
  msgstr "URL"
2818
 
2819
+ #: inc/core/data.php:2507
2820
  msgid "Registered"
2821
  msgstr "Зарегистрирован"
2822
 
2823
+ #: inc/core/data.php:2508
2824
  msgid "Activation key"
2825
  msgstr "Ключ активации"
2826
 
2827
+ #: inc/core/data.php:2509
2828
  msgid "Status"
2829
  msgstr "Статус"
2830
 
2831
+ #: inc/core/data.php:2512 inc/core/data.php:2575
2832
  msgid "Field"
2833
  msgstr "Поле"
2834
 
2835
+ #: inc/core/data.php:2513
2836
  msgid "User data field name"
2837
  msgstr "Имя поля с информацией о пользователе"
2838
 
2839
+ #: inc/core/data.php:2532
2840
  msgid "User ID"
2841
  msgstr "ID пользователя"
2842
 
2843
+ #: inc/core/data.php:2533
2844
  msgid ""
2845
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2846
  "current user"
2848
  "Вы можете указать ID любого пользователя. Оставьте это поле пустым, чтобы "
2849
  "использовать ID текущего пользователя"
2850
 
2851
+ #: inc/core/data.php:2541
2852
  msgid "User data"
2853
  msgstr "Данные пользователя"
2854
 
2855
+ #: inc/core/data.php:2546
2856
  msgid "Post"
2857
  msgstr "Запись"
2858
 
2859
+ #: inc/core/data.php:2555 inc/core/data.php:2556
2860
  msgid "Post date"
2861
  msgstr "Дата записи"
2862
 
2863
+ #: inc/core/data.php:2557
2864
  msgid "Post content"
2865
  msgstr "Содержимое записи"
2866
 
2867
+ #: inc/core/data.php:2559
2868
  msgid "Post excerpt"
2869
  msgstr "Цитата записи"
2870
 
2871
+ #: inc/core/data.php:2561
2872
  msgid "Comment status"
2873
  msgstr "Статус комментариев"
2874
 
2875
+ #: inc/core/data.php:2562
2876
  msgid "Ping status"
2877
  msgstr "Статус пингов"
2878
 
2879
+ #: inc/core/data.php:2563
2880
  msgid "Post name"
2881
  msgstr "Имя записи"
2882
 
2883
+ #: inc/core/data.php:2564 inc/core/data.php:2565
2884
  msgid "Post modified"
2885
  msgstr "Дата изменения"
2886
 
2887
+ #: inc/core/data.php:2566
2888
  msgid "Filtered post content"
2889
  msgstr "Фильтрованное содержимое записи"
2890
 
2891
+ #: inc/core/data.php:2568
2892
  msgid "GUID"
2893
  msgstr "GUID"
2894
 
2895
+ #: inc/core/data.php:2570
2896
  msgid "Post type"
2897
  msgstr "Тип записи"
2898
 
2899
+ #: inc/core/data.php:2571
2900
  msgid "Post mime type"
2901
  msgstr "Типы файла записи (mime-type)"
2902
 
2903
+ #: inc/core/data.php:2572
2904
  msgid "Comment count"
2905
  msgstr "Количество комментариев"
2906
 
2907
+ #: inc/core/data.php:2576
2908
  msgid "Post data field name"
2909
  msgstr "Имя поля с информацией записи"
2910
 
2911
+ #: inc/core/data.php:2604
2912
  msgid "Post data"
2913
  msgstr "Данные записи"
2914
 
2915
+ #: inc/core/data.php:2615
2916
  msgid "Template name"
2917
  msgstr "Имя шаблона"
2918
 
2919
+ #: inc/core/data.php:2616
2920
  #, php-format
2921
  msgid ""
2922
  "Use template file name (with optional .php extension). If you need to use "
2927
  "обязательно). Если нужно использовать шаблоны из под-папки темы, используйте "
2928
  "относительный путь. Примеры значений: %s, %s, %s"
2929
 
2930
+ #: inc/core/data.php:2619
2931
  msgid "Theme template"
2932
  msgstr "Шаблон темы"
2933
 
3089
  msgid "All shortcodes"
3090
  msgstr "Все шорткоды"
3091
 
3092
+ #: inc/core/generator.php:153
3093
+ msgid "Examples of use"
3094
+ msgstr "Примеры использования"
3095
+
3096
+ #: inc/core/generator.php:170
3097
  msgid "Click to set this value"
3098
  msgstr "Нажмите чтобы установить это значение"
3099
 
3100
+ #: inc/core/generator.php:194
3101
  msgid "Preview"
3102
  msgstr "Предпросмотр"
3103
 
3104
+ #: inc/core/generator.php:203 inc/core/tools.php:882
3105
  msgid "Access denied"
3106
  msgstr "Доступ запрещен"
3107
 
3108
+ #: inc/core/generator.php:238
3109
  msgid "Presets"
3110
  msgstr "Шаблоны"
3111
 
3112
+ #: inc/core/generator.php:241
3113
  msgid "Save current settings as preset"
3114
  msgstr "Сохранить настройки как новый шаблон"
3115
 
3116
+ #: inc/core/generator.php:270 inc/core/generator.php:273
3117
  msgid "Presets not found"
3118
  msgstr "Шаблоны не найдены"
3119
 
3120
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
3121
+ #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:894
3122
  #: inc/core/widget.php:14 inc/core/widget.php:40
3123
  msgid "Shortcodes Ultimate"
3124
  msgstr "Шорткоды"
3256
  msgstr "пожалуйста укажите корректную ссылку"
3257
 
3258
  #: inc/core/shortcodes.php:561 inc/core/shortcodes.php:565
3259
+ #: inc/core/shortcodes.php:599 inc/core/shortcodes.php:603
3260
+ #: inc/core/shortcodes.php:632 inc/core/shortcodes.php:636
3261
+ #: inc/core/shortcodes.php:660 inc/core/shortcodes.php:664
3262
+ #: inc/core/shortcodes.php:692 inc/core/shortcodes.php:696
3263
+ #: inc/core/shortcodes.php:719 inc/core/shortcodes.php:726
3264
+ #: inc/core/shortcodes.php:748 inc/core/shortcodes.php:753
3265
  msgid "please specify correct url"
3266
  msgstr "пожалуйста укажите корректную ссылку"
3267
 
3268
+ #: inc/core/shortcodes.php:884
3269
  msgid "This menu doesn't exists, or has no elements"
3270
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
3271
 
3272
+ #: inc/core/shortcodes.php:990 inc/core/shortcodes.php:1073
3273
+ #: inc/core/shortcodes.php:1128
3274
  msgid "images not found"
3275
  msgstr "изображения не найдены"
3276
 
3277
+ #: inc/core/shortcodes.php:1264
3278
  msgid "template not found"
3279
  msgstr "шаблон не найден"
3280
 
3281
+ #: inc/core/shortcodes.php:1342 inc/core/shortcodes.php:1392
3282
  msgid "post ID is incorrect"
3283
  msgstr "ID записи указан неверно"
3284
 
3285
+ #: inc/core/shortcodes.php:1344
3286
  msgid "please specify meta key name"
3287
  msgstr "пожалуйста укажите имя ключа произвольного поля"
3288
 
3289
+ #: inc/core/shortcodes.php:1365
3290
  msgid "password field is not allowed"
3291
  msgstr "поле пароль запрещено"
3292
 
3293
+ #: inc/core/shortcodes.php:1369
3294
  msgid "user ID is incorrect"
3295
  msgstr "ID пользователя указан неверно"
3296
 
3297
+ #: inc/core/shortcodes.php:1408
3298
  msgid "please specify template name"
3299
  msgstr "пожалуйста укажите имя шаблона"
3300
 
3301
+ #: inc/core/tools.php:801
3302
  msgid "Example code does not found, please check it later"
3303
  msgstr "Код примера не найден, возвращайтесь позже"
3304
 
3305
+ #: inc/core/tools.php:817
3306
  msgid "Get the code"
3307
  msgstr "Получить код"
3308
 
3309
+ #: inc/core/tools.php:891
3310
  msgid "Slide link"
3311
  msgstr "Ссылка слайда"
3312
 
3313
+ #: inc/core/tools.php:894
3314
  msgid ""
3315
  "Use this field to add custom links to slides used with Slider, Carousel and "
3316
  "Custom Gallery shortcodes"
languages/su.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Shortcodes Ultimate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-25 00:47+0400\n"
6
- "PO-Revision-Date: 2014-03-25 00:47+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: su\n"
@@ -128,45 +128,45 @@ msgstr ""
128
  msgid "plugin url"
129
  msgstr ""
130
 
131
- #: inc/core/admin-views.php:115
132
  msgid "New Shortcodes"
133
  msgstr ""
134
 
135
- #: inc/core/admin-views.php:116
136
  msgid ""
137
  "Parallax sections, responsive content slider, pricing tables, vector icons, "
138
  "testimonials, progress bars and even more"
139
  msgstr ""
140
 
141
- #: inc/core/admin-views.php:121
142
  msgid "Maker"
143
  msgstr ""
144
 
145
- #: inc/core/admin-views.php:122
146
  msgid ""
147
  "This add-on allows you to create custom shortcodes. You can easily create "
148
  "any shortcode with different parameters or even override default shortcodes"
149
  msgstr ""
150
 
151
- #: inc/core/admin-views.php:127
152
  msgid "Skins"
153
  msgstr ""
154
 
155
- #: inc/core/admin-views.php:128
156
  msgid ""
157
  "Set of additional skins for Shortcodes Ultimate. It includes skins for "
158
  "accordeons/spoilers, tabs and some other shortcodes"
159
  msgstr ""
160
 
161
- #: inc/core/admin-views.php:134
162
  msgid "Shortcodes Ultimate Add-ons"
163
  msgstr ""
164
 
165
- #: inc/core/admin-views.php:137 inc/core/admin-views.php:144
166
  msgid "Learn more"
167
  msgstr ""
168
 
169
- #: inc/core/admin-views.php:141
170
  msgid "Other WordPress Plugins"
171
  msgstr ""
172
 
@@ -250,11 +250,11 @@ msgstr ""
250
  msgid "All"
251
  msgstr ""
252
 
253
- #: inc/core/data.php:18 inc/core/generator.php:170
254
  msgid "Content"
255
  msgstr ""
256
 
257
- #: inc/core/data.php:19 inc/core/data.php:817
258
  msgid "Box"
259
  msgstr ""
260
 
@@ -262,7 +262,7 @@ msgstr ""
262
  msgid "Media"
263
  msgstr ""
264
 
265
- #: inc/core/data.php:21 inc/core/data.php:1976
266
  msgid "Gallery"
267
  msgstr ""
268
 
@@ -274,8 +274,8 @@ msgstr ""
274
  msgid "Other"
275
  msgstr ""
276
 
277
- #: inc/core/data.php:32 inc/core/data.php:1741 inc/core/data.php:1860
278
- #: inc/core/data.php:1998 inc/core/data.php:2142
279
  msgid "None"
280
  msgstr ""
281
 
@@ -348,16 +348,16 @@ msgstr ""
348
  msgid "Heading"
349
  msgstr ""
350
 
351
- #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:272
352
- #: inc/core/data.php:420 inc/core/data.php:450 inc/core/data.php:511
353
- #: inc/core/data.php:676 inc/core/data.php:829 inc/core/data.php:993
354
- #: inc/core/data.php:2344 inc/core/data.php:2396 inc/core/data.php:2459
355
  msgid "Default"
356
  msgstr ""
357
 
358
- #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:277
359
- #: inc/core/data.php:453 inc/core/data.php:517 inc/core/data.php:686
360
- #: inc/core/data.php:836 inc/core/data.php:963
361
  msgid "Style"
362
  msgstr ""
363
 
@@ -365,13 +365,13 @@ msgstr ""
365
  msgid "Choose style for this heading"
366
  msgstr ""
367
 
368
- #: inc/core/data.php:140 inc/core/data.php:194 inc/core/data.php:278
369
- #: inc/core/data.php:454
370
  msgid "Install additional styles"
371
  msgstr ""
372
 
373
- #: inc/core/data.php:148 inc/core/data.php:525 inc/core/data.php:604
374
- #: inc/core/data.php:707
375
  msgid "Size"
376
  msgstr ""
377
 
@@ -379,22 +379,22 @@ msgstr ""
379
  msgid "Select heading size (pixels)"
380
  msgstr ""
381
 
382
- #: inc/core/data.php:154 inc/core/data.php:486 inc/core/data.php:547
383
- #: inc/core/data.php:971
384
  msgid "Left"
385
  msgstr ""
386
 
387
- #: inc/core/data.php:155 inc/core/data.php:548 inc/core/data.php:1792
388
- #: inc/core/data.php:1930
389
  msgid "Center"
390
  msgstr ""
391
 
392
- #: inc/core/data.php:156 inc/core/data.php:487 inc/core/data.php:549
393
- #: inc/core/data.php:972
394
  msgid "Right"
395
  msgstr ""
396
 
397
- #: inc/core/data.php:159 inc/core/data.php:490 inc/core/data.php:552
398
  msgid "Align"
399
  msgstr ""
400
 
@@ -410,39 +410,41 @@ msgstr ""
410
  msgid "Bottom margin (pixels)"
411
  msgstr ""
412
 
413
- #: inc/core/data.php:173 inc/core/data.php:213 inc/core/data.php:245
414
- #: inc/core/data.php:308 inc/core/data.php:324 inc/core/data.php:351
415
- #: inc/core/data.php:375 inc/core/data.php:403 inc/core/data.php:433
416
- #: inc/core/data.php:469 inc/core/data.php:494 inc/core/data.php:530
417
- #: inc/core/data.php:557 inc/core/data.php:573 inc/core/data.php:615
418
- #: inc/core/data.php:643 inc/core/data.php:764 inc/core/data.php:807
419
- #: inc/core/data.php:863 inc/core/data.php:900 inc/core/data.php:932
420
- #: inc/core/data.php:1034 inc/core/data.php:1050 inc/core/data.php:1102
421
- #: inc/core/data.php:1220 inc/core/data.php:1270 inc/core/data.php:1313
422
- #: inc/core/data.php:1352 inc/core/data.php:1421 inc/core/data.php:1442
423
- #: inc/core/data.php:1473 inc/core/data.php:1506 inc/core/data.php:1522
424
- #: inc/core/data.php:1552 inc/core/data.php:1572 inc/core/data.php:1599
425
- #: inc/core/data.php:1620 inc/core/data.php:1665 inc/core/data.php:1710
426
- #: inc/core/data.php:1829 inc/core/data.php:1967 inc/core/data.php:2048
427
- #: inc/core/data.php:2222 inc/core/data.php:2277 inc/core/data.php:2323
 
428
  msgid "Class"
429
  msgstr ""
430
 
431
- #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:246
432
- #: inc/core/data.php:309 inc/core/data.php:325 inc/core/data.php:352
433
- #: inc/core/data.php:376 inc/core/data.php:404 inc/core/data.php:434
434
- #: inc/core/data.php:470 inc/core/data.php:495 inc/core/data.php:531
435
- #: inc/core/data.php:558 inc/core/data.php:574 inc/core/data.php:616
436
- #: inc/core/data.php:644 inc/core/data.php:765 inc/core/data.php:808
437
- #: inc/core/data.php:864 inc/core/data.php:901 inc/core/data.php:933
438
- #: inc/core/data.php:1035 inc/core/data.php:1051 inc/core/data.php:1103
439
- #: inc/core/data.php:1221 inc/core/data.php:1271 inc/core/data.php:1314
440
- #: inc/core/data.php:1353 inc/core/data.php:1422 inc/core/data.php:1443
441
- #: inc/core/data.php:1474 inc/core/data.php:1507 inc/core/data.php:1523
442
- #: inc/core/data.php:1553 inc/core/data.php:1573 inc/core/data.php:1600
443
- #: inc/core/data.php:1621 inc/core/data.php:1666 inc/core/data.php:1711
444
- #: inc/core/data.php:1830 inc/core/data.php:1968 inc/core/data.php:2049
445
- #: inc/core/data.php:2223 inc/core/data.php:2278 inc/core/data.php:2324
 
446
  msgid "Extra CSS class"
447
  msgstr ""
448
 
@@ -489,458 +491,469 @@ msgstr ""
489
  msgid "Tabs container"
490
  msgstr ""
491
 
492
- #: inc/core/data.php:223
493
  msgid "Tab"
494
  msgstr ""
495
 
496
- #: inc/core/data.php:228
497
  msgid "Tab name"
498
  msgstr ""
499
 
500
- #: inc/core/data.php:229 inc/core/data.php:261 inc/core/data.php:781
501
- #: inc/core/data.php:824 inc/core/data.php:1380
502
  msgid "Title"
503
  msgstr ""
504
 
505
- #: inc/core/data.php:230
506
  msgid "Enter tab name"
507
  msgstr ""
508
 
509
- #: inc/core/data.php:235
510
  msgid "Disabled"
511
  msgstr ""
512
 
513
- #: inc/core/data.php:236
514
  msgid "Is this tab disabled"
515
  msgstr ""
516
 
517
- #: inc/core/data.php:240 inc/core/data.php:303
518
  msgid "Anchor"
519
  msgstr ""
520
 
521
- #: inc/core/data.php:241
522
  msgid ""
523
  "You can use unique anchor for this tab to access it with hash in page url. "
524
  "For example: type here <b%value>Hello</b> and then use url like http://"
525
  "example.com/page-url#Hello. This tab will be activated and scrolled in"
526
  msgstr ""
527
 
528
- #: inc/core/data.php:249
529
  msgid "Tab content"
530
  msgstr ""
531
 
532
- #: inc/core/data.php:250
533
  msgid "Single tab"
534
  msgstr ""
535
 
536
- #: inc/core/data.php:255
537
  msgid "Spoiler"
538
  msgstr ""
539
 
540
- #: inc/core/data.php:260 inc/core/shortcodes.php:72
541
  msgid "Spoiler title"
542
  msgstr ""
543
 
544
- #: inc/core/data.php:261
545
  msgid "Text in spoiler title"
546
  msgstr ""
547
 
548
- #: inc/core/data.php:266
549
  msgid "Open"
550
  msgstr ""
551
 
552
- #: inc/core/data.php:267
553
  msgid "Is spoiler content visible by default"
554
  msgstr ""
555
 
556
- #: inc/core/data.php:273
557
  msgid "Fancy"
558
  msgstr ""
559
 
560
- #: inc/core/data.php:274 inc/core/data.php:514
561
  msgid "Simple"
562
  msgstr ""
563
 
564
- #: inc/core/data.php:278
565
  msgid "Choose style for this spoiler"
566
  msgstr ""
567
 
568
- #: inc/core/data.php:283
569
  msgid "Plus"
570
  msgstr ""
571
 
572
- #: inc/core/data.php:284
573
  msgid "Plus circle"
574
  msgstr ""
575
 
576
- #: inc/core/data.php:285
577
  msgid "Plus square 1"
578
  msgstr ""
579
 
580
- #: inc/core/data.php:286
581
  msgid "Plus square 2"
582
  msgstr ""
583
 
584
- #: inc/core/data.php:287
585
  msgid "Arrow"
586
  msgstr ""
587
 
588
- #: inc/core/data.php:288
589
  msgid "Arrow circle 1"
590
  msgstr ""
591
 
592
- #: inc/core/data.php:289
593
  msgid "Arrow circle 2"
594
  msgstr ""
595
 
596
- #: inc/core/data.php:290
597
  msgid "Chevron"
598
  msgstr ""
599
 
600
- #: inc/core/data.php:291
601
  msgid "Chevron circle"
602
  msgstr ""
603
 
604
- #: inc/core/data.php:292
605
  msgid "Caret"
606
  msgstr ""
607
 
608
- #: inc/core/data.php:293
609
  msgid "Caret square"
610
  msgstr ""
611
 
612
- #: inc/core/data.php:294
613
  msgid "Folder 1"
614
  msgstr ""
615
 
616
- #: inc/core/data.php:295
617
  msgid "Folder 2"
618
  msgstr ""
619
 
620
- #: inc/core/data.php:298 inc/core/data.php:632 inc/core/data.php:737
621
- #: inc/core/data.php:787
622
  msgid "Icon"
623
  msgstr ""
624
 
625
- #: inc/core/data.php:299
626
  msgid "Icons for spoiler"
627
  msgstr ""
628
 
629
- #: inc/core/data.php:304
630
  msgid ""
631
  "You can use unique anchor for this spoiler to access it with hash in page "
632
  "url. For example: type here <b%value>Hello</b> and then use url like http://"
633
  "example.com/page-url#Hello. This spoiler will be open and scrolled in"
634
  msgstr ""
635
 
636
- #: inc/core/data.php:312
637
  msgid "Hidden content"
638
  msgstr ""
639
 
640
- #: inc/core/data.php:313
641
  msgid "Spoiler with hidden content"
642
  msgstr ""
643
 
644
- #: inc/core/data.php:318
 
 
 
 
 
 
645
  msgid "Accordion"
646
  msgstr ""
647
 
648
- #: inc/core/data.php:328
649
  msgid ""
650
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
651
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
652
  "[%prefix_spoiler]Content[/%prefix_spoiler]"
653
  msgstr ""
654
 
655
- #: inc/core/data.php:329
656
  msgid "Accordion with spoilers"
657
  msgstr ""
658
 
659
- #: inc/core/data.php:334
660
  msgid "Divider"
661
  msgstr ""
662
 
663
- #: inc/core/data.php:341
664
  msgid "Show TOP link"
665
  msgstr ""
666
 
667
- #: inc/core/data.php:342
668
  msgid "Show link to top of the page or not"
669
  msgstr ""
670
 
671
- #: inc/core/data.php:346 inc/core/shortcodes.php:99
672
  msgid "Go to top"
673
  msgstr ""
674
 
675
- #: inc/core/data.php:347
676
  msgid "Link text"
677
  msgstr ""
678
 
679
- #: inc/core/data.php:347
680
  msgid "Text for the GO TOP link"
681
  msgstr ""
682
 
683
- #: inc/core/data.php:355
684
  msgid "Content divider with optional TOP link"
685
  msgstr ""
686
 
687
- #: inc/core/data.php:360
688
  msgid "Spacer"
689
  msgstr ""
690
 
691
- #: inc/core/data.php:370 inc/core/data.php:1085 inc/core/data.php:1141
692
- #: inc/core/data.php:1253 inc/core/data.php:1302 inc/core/data.php:1398
693
- #: inc/core/data.php:1654 inc/core/data.php:1693 inc/core/data.php:1776
694
- #: inc/core/data.php:1896 inc/core/data.php:2033 inc/core/data.php:2250
 
695
  msgid "Height"
696
  msgstr ""
697
 
698
- #: inc/core/data.php:371
699
  msgid "Height of the spacer in pixels"
700
  msgstr ""
701
 
702
- #: inc/core/data.php:379
703
  msgid "Empty space with adjustable height"
704
  msgstr ""
705
 
706
- #: inc/core/data.php:384
707
  msgid "Highlight"
708
  msgstr ""
709
 
710
- #: inc/core/data.php:392 inc/core/data.php:692 inc/core/data.php:881
711
  msgid "Background"
712
  msgstr ""
713
 
714
- #: inc/core/data.php:393
715
  msgid "Highlighted text background color"
716
  msgstr ""
717
 
718
- #: inc/core/data.php:399 inc/core/data.php:698 inc/core/data.php:887
719
  msgid "Text color"
720
  msgstr ""
721
 
722
- #: inc/core/data.php:399
723
  msgid "Highlighted text color"
724
  msgstr ""
725
 
726
- #: inc/core/data.php:407 inc/core/data.php:408
727
  msgid "Highlighted text"
728
  msgstr ""
729
 
730
- #: inc/core/data.php:413 inc/core/data.php:437 inc/vendor/sunrise.php:409
731
  msgid "Label"
732
  msgstr ""
733
 
734
- #: inc/core/data.php:421
735
  msgid "Success"
736
  msgstr ""
737
 
738
- #: inc/core/data.php:422
739
  msgid "Warning"
740
  msgstr ""
741
 
742
- #: inc/core/data.php:423
743
  msgid "Important"
744
  msgstr ""
745
 
746
- #: inc/core/data.php:424
747
  msgid "Black"
748
  msgstr ""
749
 
750
- #: inc/core/data.php:425
751
  msgid "Info"
752
  msgstr ""
753
 
754
- #: inc/core/data.php:428
755
  msgid "Type"
756
  msgstr ""
757
 
758
- #: inc/core/data.php:429
759
  msgid "Style of the label"
760
  msgstr ""
761
 
762
- #: inc/core/data.php:438
763
  msgid "Styled label"
764
  msgstr ""
765
 
766
- #: inc/core/data.php:443 inc/core/data.php:473
767
  msgid "Quote"
768
  msgstr ""
769
 
770
- #: inc/core/data.php:454
771
  msgid "Choose style for this quote"
772
  msgstr ""
773
 
774
- #: inc/core/data.php:458
775
  msgid "Cite"
776
  msgstr ""
777
 
778
- #: inc/core/data.php:459
779
  msgid "Quote author name"
780
  msgstr ""
781
 
782
- #: inc/core/data.php:464
783
  msgid "Cite url"
784
  msgstr ""
785
 
786
- #: inc/core/data.php:465
787
  msgid "Url of the quote author. Leave empty to disable link"
788
  msgstr ""
789
 
790
- #: inc/core/data.php:474
791
  msgid "Blockquote alternative"
792
  msgstr ""
793
 
794
- #: inc/core/data.php:479 inc/core/data.php:498 inc/core/data.php:499
795
  msgid "Pullquote"
796
  msgstr ""
797
 
798
- #: inc/core/data.php:490
799
  msgid "Pullquote alignment (float)"
800
  msgstr ""
801
 
802
- #: inc/core/data.php:504 inc/core/data.php:535
803
  msgid "Dropcap"
804
  msgstr ""
805
 
806
- #: inc/core/data.php:512 inc/core/data.php:677
807
  msgid "Flat"
808
  msgstr ""
809
 
810
- #: inc/core/data.php:513
811
  msgid "Light"
812
  msgstr ""
813
 
814
- #: inc/core/data.php:517
815
  msgid "Dropcap style preset"
816
  msgstr ""
817
 
818
- #: inc/core/data.php:526
819
  msgid "Choose dropcap size"
820
  msgstr ""
821
 
822
- #: inc/core/data.php:534
823
  msgid "D"
824
  msgstr ""
825
 
826
- #: inc/core/data.php:540
827
  msgid "Frame"
828
  msgstr ""
829
 
830
- #: inc/core/data.php:553
831
  msgid "Frame alignment"
832
  msgstr ""
833
 
834
- #: inc/core/data.php:562
835
  msgid "Styled image frame"
836
  msgstr ""
837
 
838
- #: inc/core/data.php:567
839
  msgid "Row"
840
  msgstr ""
841
 
842
- #: inc/core/data.php:577
843
  msgid ""
844
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
845
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
846
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]"
847
  msgstr ""
848
 
849
- #: inc/core/data.php:578
850
  msgid "Row for flexible columns"
851
  msgstr ""
852
 
853
- #: inc/core/data.php:583
854
  msgid "Column"
855
  msgstr ""
856
 
857
- #: inc/core/data.php:590
858
  msgid "Full width"
859
  msgstr ""
860
 
861
- #: inc/core/data.php:591
862
  msgid "One half"
863
  msgstr ""
864
 
865
- #: inc/core/data.php:592
866
  msgid "One third"
867
  msgstr ""
868
 
869
- #: inc/core/data.php:593
870
  msgid "Two third"
871
  msgstr ""
872
 
873
- #: inc/core/data.php:594
874
  msgid "One fourth"
875
  msgstr ""
876
 
877
- #: inc/core/data.php:595
878
  msgid "Three fourth"
879
  msgstr ""
880
 
881
- #: inc/core/data.php:596
882
  msgid "One fifth"
883
  msgstr ""
884
 
885
- #: inc/core/data.php:597
886
  msgid "Two fifth"
887
  msgstr ""
888
 
889
- #: inc/core/data.php:598
890
  msgid "Three fifth"
891
  msgstr ""
892
 
893
- #: inc/core/data.php:599
894
  msgid "Four fifth"
895
  msgstr ""
896
 
897
- #: inc/core/data.php:600
898
  msgid "One sixth"
899
  msgstr ""
900
 
901
- #: inc/core/data.php:601
902
  msgid "Five sixth"
903
  msgstr ""
904
 
905
- #: inc/core/data.php:605
906
  msgid "Select column width. This width will be calculated depend page width"
907
  msgstr ""
908
 
909
- #: inc/core/data.php:610 inc/core/data.php:718
910
  msgid "Centered"
911
  msgstr ""
912
 
913
- #: inc/core/data.php:611
914
  msgid "Is this column centered on the page"
915
  msgstr ""
916
 
917
- #: inc/core/data.php:619
918
  msgid "Column content"
919
  msgstr ""
920
 
921
- #: inc/core/data.php:620
922
  msgid "Flexible and responsive columns"
923
  msgstr ""
924
 
925
- #: inc/core/data.php:625
926
- msgid "List"
927
  msgstr ""
928
 
929
  #: inc/core/data.php:633
 
 
 
 
930
  msgid "You can upload custom icon for this list or pick a built-in icon"
931
  msgstr ""
932
 
933
- #: inc/core/data.php:638 inc/core/data.php:743 inc/core/data.php:793
934
  msgid "Icon color"
935
  msgstr ""
936
 
937
- #: inc/core/data.php:639 inc/core/data.php:744 inc/core/data.php:794
938
  msgid ""
939
  "This color will be applied to the selected icon. Does not works with "
940
  "uploaded icons"
941
  msgstr ""
942
 
943
- #: inc/core/data.php:647
944
  msgid ""
945
  "<ul>\n"
946
  "<li>List item</li>\n"
@@ -949,273 +962,273 @@ msgid ""
949
  "</ul>"
950
  msgstr ""
951
 
952
- #: inc/core/data.php:648
953
  msgid "Styled unordered list"
954
  msgstr ""
955
 
956
- #: inc/core/data.php:653
957
  msgid "Button"
958
  msgstr ""
959
 
960
- #: inc/core/data.php:660
961
  msgid "Link"
962
  msgstr ""
963
 
964
- #: inc/core/data.php:661
965
  msgid "Button link"
966
  msgstr ""
967
 
968
- #: inc/core/data.php:666 inc/core/data.php:1464
969
  msgid "Same tab"
970
  msgstr ""
971
 
972
- #: inc/core/data.php:667 inc/core/data.php:1465
973
  msgid "New tab"
974
  msgstr ""
975
 
976
- #: inc/core/data.php:670 inc/core/data.php:1468
977
  msgid "Target"
978
  msgstr ""
979
 
980
- #: inc/core/data.php:671
981
  msgid "Button link target"
982
  msgstr ""
983
 
984
- #: inc/core/data.php:678 inc/core/data.php:830
985
  msgid "Soft"
986
  msgstr ""
987
 
988
- #: inc/core/data.php:679 inc/core/data.php:831
989
  msgid "Glass"
990
  msgstr ""
991
 
992
- #: inc/core/data.php:680 inc/core/data.php:832
993
  msgid "Bubbles"
994
  msgstr ""
995
 
996
- #: inc/core/data.php:681 inc/core/data.php:833
997
  msgid "Noise"
998
  msgstr ""
999
 
1000
- #: inc/core/data.php:682
1001
  msgid "Stroked"
1002
  msgstr ""
1003
 
1004
- #: inc/core/data.php:683
1005
  msgid "3D"
1006
  msgstr ""
1007
 
1008
- #: inc/core/data.php:686
1009
  msgid "Button background style preset"
1010
  msgstr ""
1011
 
1012
- #: inc/core/data.php:692
1013
  msgid "Button background color"
1014
  msgstr ""
1015
 
1016
- #: inc/core/data.php:699
1017
  msgid "Button text color"
1018
  msgstr ""
1019
 
1020
- #: inc/core/data.php:708
1021
  msgid "Button size"
1022
  msgstr ""
1023
 
1024
- #: inc/core/data.php:713
1025
  msgid "Fluid"
1026
  msgstr ""
1027
 
1028
- #: inc/core/data.php:713
1029
  msgid "Fluid buttons has 100% width"
1030
  msgstr ""
1031
 
1032
- #: inc/core/data.php:718
1033
  msgid "Is button centered on the page"
1034
  msgstr ""
1035
 
1036
- #: inc/core/data.php:723
1037
  msgid "Auto"
1038
  msgstr ""
1039
 
1040
- #: inc/core/data.php:724
1041
  msgid "Round"
1042
  msgstr ""
1043
 
1044
- #: inc/core/data.php:725
1045
  msgid "Square"
1046
  msgstr ""
1047
 
1048
- #: inc/core/data.php:731 inc/core/data.php:858 inc/core/data.php:896
1049
  msgid "Radius"
1050
  msgstr ""
1051
 
1052
- #: inc/core/data.php:732
1053
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1054
  msgstr ""
1055
 
1056
- #: inc/core/data.php:738
1057
  msgid "You can upload custom icon for this button or pick a built-in icon"
1058
  msgstr ""
1059
 
1060
- #: inc/core/data.php:749
1061
  msgid "Text shadow"
1062
  msgstr ""
1063
 
1064
- #: inc/core/data.php:750
1065
  msgid "Button text shadow"
1066
  msgstr ""
1067
 
1068
- #: inc/core/data.php:754
1069
  msgid "Description"
1070
  msgstr ""
1071
 
1072
- #: inc/core/data.php:755
1073
  msgid ""
1074
  "Small description under button text. This option is incompatible with icon."
1075
  msgstr ""
1076
 
1077
- #: inc/core/data.php:759
1078
  msgid "onClick"
1079
  msgstr ""
1080
 
1081
- #: inc/core/data.php:760
1082
  msgid "Advanced JavaScript code for onClick action"
1083
  msgstr ""
1084
 
1085
- #: inc/core/data.php:768
1086
  msgid "Button text"
1087
  msgstr ""
1088
 
1089
- #: inc/core/data.php:769
1090
  msgid "Styled button"
1091
  msgstr ""
1092
 
1093
- #: inc/core/data.php:774
1094
  msgid "Service"
1095
  msgstr ""
1096
 
1097
- #: inc/core/data.php:780 inc/core/shortcodes.php:430
1098
  msgid "Service title"
1099
  msgstr ""
1100
 
1101
- #: inc/core/data.php:782
1102
  msgid "Service name"
1103
  msgstr ""
1104
 
1105
- #: inc/core/data.php:788
1106
  msgid "You can upload custom icon for this box"
1107
  msgstr ""
1108
 
1109
- #: inc/core/data.php:802
1110
  msgid "Icon size"
1111
  msgstr ""
1112
 
1113
- #: inc/core/data.php:803
1114
  msgid "Size of the uploaded icon in pixels"
1115
  msgstr ""
1116
 
1117
- #: inc/core/data.php:811
1118
  msgid "Service description"
1119
  msgstr ""
1120
 
1121
- #: inc/core/data.php:812
1122
  msgid "Service box with title"
1123
  msgstr ""
1124
 
1125
- #: inc/core/data.php:823
1126
  msgid "Box title"
1127
  msgstr ""
1128
 
1129
- #: inc/core/data.php:824
1130
  msgid "Text for the box title"
1131
  msgstr ""
1132
 
1133
- #: inc/core/data.php:837
1134
  msgid "Box style preset"
1135
  msgstr ""
1136
 
1137
- #: inc/core/data.php:843 inc/core/generator-views.php:99
1138
  msgid "Color"
1139
  msgstr ""
1140
 
1141
- #: inc/core/data.php:844
1142
  msgid "Color for the box title and borders"
1143
  msgstr ""
1144
 
1145
- #: inc/core/data.php:850
1146
  msgid "Title text color"
1147
  msgstr ""
1148
 
1149
- #: inc/core/data.php:850
1150
  msgid "Color for the box title text"
1151
  msgstr ""
1152
 
1153
- #: inc/core/data.php:859
1154
  msgid "Box corners radius"
1155
  msgstr ""
1156
 
1157
- #: inc/core/data.php:867
1158
  msgid "Box content"
1159
  msgstr ""
1160
 
1161
- #: inc/core/data.php:868
1162
  msgid "Colored box with caption"
1163
  msgstr ""
1164
 
1165
- #: inc/core/data.php:873
1166
  msgid "Note"
1167
  msgstr ""
1168
 
1169
- #: inc/core/data.php:881
1170
  msgid "Note background color"
1171
  msgstr ""
1172
 
1173
- #: inc/core/data.php:888
1174
  msgid "Note text color"
1175
  msgstr ""
1176
 
1177
- #: inc/core/data.php:896
1178
  msgid "Note corners radius"
1179
  msgstr ""
1180
 
1181
- #: inc/core/data.php:904
1182
  msgid "Note text"
1183
  msgstr ""
1184
 
1185
- #: inc/core/data.php:905
1186
  msgid "Colored box"
1187
  msgstr ""
1188
 
1189
- #: inc/core/data.php:910 inc/core/data.php:1743 inc/core/data.php:1862
1190
- #: inc/core/data.php:2000
1191
  msgid "Lightbox"
1192
  msgstr ""
1193
 
1194
- #: inc/core/data.php:917
1195
  msgid "Iframe"
1196
  msgstr ""
1197
 
1198
- #: inc/core/data.php:918
1199
  msgid "Image"
1200
  msgstr ""
1201
 
1202
- #: inc/core/data.php:919
1203
  msgid "Inline (html content)"
1204
  msgstr ""
1205
 
1206
- #: inc/core/data.php:922
1207
  msgid "Content type"
1208
  msgstr ""
1209
 
1210
- #: inc/core/data.php:923
1211
  msgid "Select type of the lightbox window content"
1212
  msgstr ""
1213
 
1214
- #: inc/core/data.php:927
1215
  msgid "Content source"
1216
  msgstr ""
1217
 
1218
- #: inc/core/data.php:928
1219
  msgid ""
1220
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1221
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
@@ -1225,336 +1238,338 @@ msgid ""
1225
  "(iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1226
  msgstr ""
1227
 
1228
- #: inc/core/data.php:936
1229
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1230
  msgstr ""
1231
 
1232
- #: inc/core/data.php:937
1233
  msgid "Lightbox window with custom content"
1234
  msgstr ""
1235
 
1236
- #: inc/core/data.php:942
1237
  msgid "Tooltip"
1238
  msgstr ""
1239
 
1240
- #: inc/core/data.php:949
1241
  msgid "Basic: Light"
1242
  msgstr ""
1243
 
1244
- #: inc/core/data.php:950
1245
  msgid "Basic: Dark"
1246
  msgstr ""
1247
 
1248
- #: inc/core/data.php:951
1249
  msgid "Basic: Yellow"
1250
  msgstr ""
1251
 
1252
- #: inc/core/data.php:952
1253
  msgid "Basic: Green"
1254
  msgstr ""
1255
 
1256
- #: inc/core/data.php:953
1257
  msgid "Basic: Red"
1258
  msgstr ""
1259
 
1260
- #: inc/core/data.php:954
1261
  msgid "Basic: Blue"
1262
  msgstr ""
1263
 
1264
- #: inc/core/data.php:955
1265
  msgid "Youtube"
1266
  msgstr ""
1267
 
1268
- #: inc/core/data.php:956
1269
  msgid "Tipsy"
1270
  msgstr ""
1271
 
1272
- #: inc/core/data.php:957
1273
  msgid "Bootstrap"
1274
  msgstr ""
1275
 
1276
- #: inc/core/data.php:958
1277
  msgid "jTools"
1278
  msgstr ""
1279
 
1280
- #: inc/core/data.php:959
1281
  msgid "Tipped"
1282
  msgstr ""
1283
 
1284
- #: inc/core/data.php:960
1285
  msgid "Cluetip"
1286
  msgstr ""
1287
 
1288
- #: inc/core/data.php:964
1289
  msgid "Tooltip window style"
1290
  msgstr ""
1291
 
1292
- #: inc/core/data.php:969
1293
  msgid "Top"
1294
  msgstr ""
1295
 
1296
- #: inc/core/data.php:970
1297
  msgid "Bottom"
1298
  msgstr ""
1299
 
1300
- #: inc/core/data.php:975
1301
  msgid "Position"
1302
  msgstr ""
1303
 
1304
- #: inc/core/data.php:976
1305
  msgid "Tooltip position"
1306
  msgstr ""
1307
 
1308
- #: inc/core/data.php:981
1309
  msgid "Shadow"
1310
  msgstr ""
1311
 
1312
- #: inc/core/data.php:982
1313
  msgid ""
1314
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1315
  "blue, green etc."
1316
  msgstr ""
1317
 
1318
- #: inc/core/data.php:987
1319
  msgid "Rounded corners"
1320
  msgstr ""
1321
 
1322
- #: inc/core/data.php:988
1323
  msgid ""
1324
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1325
  "blue, green etc."
1326
  msgstr ""
1327
 
1328
- #: inc/core/data.php:1002
1329
  msgid "Font size"
1330
  msgstr ""
1331
 
1332
- #: inc/core/data.php:1003
1333
  msgid "Tooltip font size"
1334
  msgstr ""
1335
 
1336
- #: inc/core/data.php:1007
1337
  msgid "Tooltip title"
1338
  msgstr ""
1339
 
1340
- #: inc/core/data.php:1008
1341
  msgid ""
1342
  "Enter title for tooltip window. Leave this field empty to hide the title"
1343
  msgstr ""
1344
 
1345
- #: inc/core/data.php:1011 inc/core/shortcodes.php:508
1346
  msgid "Tooltip text"
1347
  msgstr ""
1348
 
1349
- #: inc/core/data.php:1012
1350
  msgid "Tooltip content"
1351
  msgstr ""
1352
 
1353
- #: inc/core/data.php:1013
1354
  msgid "Enter tooltip content here"
1355
  msgstr ""
1356
 
1357
- #: inc/core/data.php:1018
1358
  msgid "Show and hide on mouse hover"
1359
  msgstr ""
1360
 
1361
- #: inc/core/data.php:1019
1362
  msgid "Show and hide by mouse click"
1363
  msgstr ""
1364
 
1365
- #: inc/core/data.php:1020
1366
  msgid "Always visible"
1367
  msgstr ""
1368
 
1369
- #: inc/core/data.php:1023
1370
  msgid "Behavior"
1371
  msgstr ""
1372
 
1373
- #: inc/core/data.php:1024
1374
  msgid "Select tooltip behavior"
1375
  msgstr ""
1376
 
1377
- #: inc/core/data.php:1029
1378
  msgid "Close button"
1379
  msgstr ""
1380
 
1381
- #: inc/core/data.php:1030
1382
  msgid "Show close button"
1383
  msgstr ""
1384
 
1385
- #: inc/core/data.php:1038
1386
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1387
  msgstr ""
1388
 
1389
- #: inc/core/data.php:1039
1390
  msgid "Tooltip window with custom content"
1391
  msgstr ""
1392
 
1393
- #: inc/core/data.php:1044
1394
  msgid "Private"
1395
  msgstr ""
1396
 
1397
- #: inc/core/data.php:1054
1398
  msgid "Private note text"
1399
  msgstr ""
1400
 
1401
- #: inc/core/data.php:1055
1402
  msgid "Private note for post authors"
1403
  msgstr ""
1404
 
1405
- #: inc/core/data.php:1060
1406
  msgid "YouTube"
1407
  msgstr ""
1408
 
1409
- #: inc/core/data.php:1067 inc/core/data.php:1118 inc/core/data.php:1236
1410
- #: inc/core/data.php:1285 inc/core/data.php:1539 inc/core/data.php:1636
 
1411
  msgid "Url"
1412
  msgstr ""
1413
 
1414
- #: inc/core/data.php:1068 inc/core/data.php:1119
1415
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1416
  msgstr ""
1417
 
1418
- #: inc/core/data.php:1076 inc/core/data.php:1132 inc/core/data.php:1244
1419
- #: inc/core/data.php:1293 inc/core/data.php:1335 inc/core/data.php:1389
1420
- #: inc/core/data.php:1645 inc/core/data.php:1684 inc/core/data.php:1768
1421
- #: inc/core/data.php:1887 inc/core/data.php:2025 inc/core/data.php:2241
 
1422
  msgid "Width"
1423
  msgstr ""
1424
 
1425
- #: inc/core/data.php:1077 inc/core/data.php:1133 inc/core/data.php:1245
1426
- #: inc/core/data.php:1294 inc/core/data.php:1390
1427
  msgid "Player width"
1428
  msgstr ""
1429
 
1430
- #: inc/core/data.php:1086 inc/core/data.php:1142 inc/core/data.php:1254
1431
- #: inc/core/data.php:1303 inc/core/data.php:1399
1432
  msgid "Player height"
1433
  msgstr ""
1434
 
1435
- #: inc/core/data.php:1091 inc/core/data.php:1147 inc/core/data.php:1259
1436
- #: inc/core/data.php:1308 inc/core/data.php:1660 inc/core/data.php:1699
1437
- #: inc/core/data.php:1781 inc/core/data.php:1902
1438
  msgid "Responsive"
1439
  msgstr ""
1440
 
1441
- #: inc/core/data.php:1092 inc/core/data.php:1148 inc/core/data.php:1260
1442
- #: inc/core/data.php:1309
1443
  msgid "Ignore width and height parameters and make player responsive"
1444
  msgstr ""
1445
 
1446
- #: inc/core/data.php:1097 inc/core/data.php:1181 inc/core/data.php:1265
1447
- #: inc/core/data.php:1341 inc/core/data.php:1410 inc/core/data.php:1816
1448
- #: inc/core/data.php:1954
1449
  msgid "Autoplay"
1450
  msgstr ""
1451
 
1452
- #: inc/core/data.php:1098 inc/core/data.php:1182 inc/core/data.php:1266
1453
  msgid "Play video automatically when page is loaded"
1454
  msgstr ""
1455
 
1456
- #: inc/core/data.php:1106
1457
  msgid "YouTube video"
1458
  msgstr ""
1459
 
1460
- #: inc/core/data.php:1111
1461
  msgid "YouTube Advanced"
1462
  msgstr ""
1463
 
1464
- #: inc/core/data.php:1123
1465
  msgid "Playlist"
1466
  msgstr ""
1467
 
1468
- #: inc/core/data.php:1124
1469
  msgid ""
1470
  "Value is a comma-separated list of video IDs to play. If you specify a "
1471
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
1472
  "path, and the videos specified in the playlist parameter will play thereafter"
1473
  msgstr ""
1474
 
1475
- #: inc/core/data.php:1153
1476
  msgid "0 - Hide controls"
1477
  msgstr ""
1478
 
1479
- #: inc/core/data.php:1154
1480
  msgid "1 - Show controls"
1481
  msgstr ""
1482
 
1483
- #: inc/core/data.php:1155
1484
  msgid "2 - Show controls when playback is started"
1485
  msgstr ""
1486
 
1487
- #: inc/core/data.php:1158 inc/core/data.php:1404
1488
  msgid "Controls"
1489
  msgstr ""
1490
 
1491
- #: inc/core/data.php:1159
1492
  msgid "This parameter indicates whether the video player controls will display"
1493
  msgstr ""
1494
 
1495
- #: inc/core/data.php:1164
1496
  msgid "0 - Do not hide controls"
1497
  msgstr ""
1498
 
1499
- #: inc/core/data.php:1165
1500
  msgid "1 - Hide all controls on mouse out"
1501
  msgstr ""
1502
 
1503
- #: inc/core/data.php:1166
1504
  msgid "2 - Hide progress bar on mouse out"
1505
  msgstr ""
1506
 
1507
- #: inc/core/data.php:1169
1508
  msgid "Autohide"
1509
  msgstr ""
1510
 
1511
- #: inc/core/data.php:1170
1512
  msgid ""
1513
  "This parameter indicates whether the video controls will automatically hide "
1514
  "after a video begins playing"
1515
  msgstr ""
1516
 
1517
- #: inc/core/data.php:1175
1518
  msgid "Show title bar"
1519
  msgstr ""
1520
 
1521
- #: inc/core/data.php:1176
1522
  msgid ""
1523
  "If you set the parameter value to NO, then the player will not display "
1524
  "information like the video title and uploader before the video starts "
1525
  "playing."
1526
  msgstr ""
1527
 
1528
- #: inc/core/data.php:1187 inc/core/data.php:1347 inc/core/data.php:1416
1529
  msgid "Loop"
1530
  msgstr ""
1531
 
1532
- #: inc/core/data.php:1188
1533
  msgid ""
1534
  "Setting of YES will cause the player to play the initial video again and "
1535
  "again"
1536
  msgstr ""
1537
 
1538
- #: inc/core/data.php:1193
1539
  msgid "Related videos"
1540
  msgstr ""
1541
 
1542
- #: inc/core/data.php:1194
1543
  msgid ""
1544
  "This parameter indicates whether the player should show related videos when "
1545
  "playback of the initial video ends"
1546
  msgstr ""
1547
 
1548
- #: inc/core/data.php:1199
1549
  msgid "Show full-screen button"
1550
  msgstr ""
1551
 
1552
- #: inc/core/data.php:1200
1553
  msgid ""
1554
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1555
  msgstr ""
1556
 
1557
- #: inc/core/data.php:1206
1558
  msgid ""
1559
  "This parameter lets you use a YouTube player that does not show a YouTube "
1560
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
@@ -1563,124 +1578,206 @@ msgid ""
1563
  "mouse pointer hovers over the player"
1564
  msgstr ""
1565
 
1566
- #: inc/core/data.php:1211
1567
  msgid "Dark theme"
1568
  msgstr ""
1569
 
1570
- #: inc/core/data.php:1212
1571
  msgid "Light theme"
1572
  msgstr ""
1573
 
1574
- #: inc/core/data.php:1215 inc/core/data.php:2272
1575
  msgid "Theme"
1576
  msgstr ""
1577
 
1578
- #: inc/core/data.php:1216
1579
  msgid ""
1580
  "This parameter indicates whether the embedded player will display player "
1581
  "controls (like a play button or volume control) within a dark or light "
1582
  "control bar"
1583
  msgstr ""
1584
 
1585
- #: inc/core/data.php:1224
 
 
 
 
 
 
 
 
1586
  msgid "YouTube video player with advanced settings"
1587
  msgstr ""
1588
 
1589
- #: inc/core/data.php:1229
1590
  msgid "Vimeo"
1591
  msgstr ""
1592
 
1593
- #: inc/core/data.php:1236
1594
  msgid "Url of Vimeo page with video"
1595
  msgstr ""
1596
 
1597
- #: inc/core/data.php:1274
1598
  msgid "Vimeo video"
1599
  msgstr ""
1600
 
1601
- #: inc/core/data.php:1279
1602
  msgid "Screenr"
1603
  msgstr ""
1604
 
1605
- #: inc/core/data.php:1285
1606
  msgid "Url of Screenr page with video"
1607
  msgstr ""
1608
 
1609
- #: inc/core/data.php:1317
1610
  msgid "Screenr video"
1611
  msgstr ""
1612
 
1613
- #: inc/core/data.php:1322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1614
  msgid "Audio"
1615
  msgstr ""
1616
 
1617
- #: inc/core/data.php:1329 inc/core/data.php:1368
1618
  msgid "File"
1619
  msgstr ""
1620
 
1621
- #: inc/core/data.php:1330
1622
  msgid "Audio file url. Supported formats: mp3, ogg"
1623
  msgstr ""
1624
 
1625
- #: inc/core/data.php:1336
1626
  msgid ""
1627
  "Player width. You can specify width in percents and player will be "
1628
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1629
  msgstr ""
1630
 
1631
- #: inc/core/data.php:1342 inc/core/data.php:1411
1632
  msgid "Play file automatically when page is loaded"
1633
  msgstr ""
1634
 
1635
- #: inc/core/data.php:1348 inc/core/data.php:1417
1636
  msgid "Repeat when playback is ended"
1637
  msgstr ""
1638
 
1639
- #: inc/core/data.php:1356
1640
  msgid "Custom audio player"
1641
  msgstr ""
1642
 
1643
- #: inc/core/data.php:1361
1644
  msgid "Video"
1645
  msgstr ""
1646
 
1647
- #: inc/core/data.php:1369
1648
  msgid "Url to mp4/flv video-file"
1649
  msgstr ""
1650
 
1651
- #: inc/core/data.php:1374
1652
  msgid "Poster"
1653
  msgstr ""
1654
 
1655
- #: inc/core/data.php:1375
1656
  msgid "Url to poster image, that will be shown before playback"
1657
  msgstr ""
1658
 
1659
- #: inc/core/data.php:1381
1660
  msgid "Player title"
1661
  msgstr ""
1662
 
1663
- #: inc/core/data.php:1405
1664
  msgid "Show player controls (play/pause etc.) or not"
1665
  msgstr ""
1666
 
1667
- #: inc/core/data.php:1425
1668
  msgid "Custom video player"
1669
  msgstr ""
1670
 
1671
- #: inc/core/data.php:1430
1672
  msgid "Table"
1673
  msgstr ""
1674
 
1675
- #: inc/core/data.php:1437
1676
  msgid "CSV file"
1677
  msgstr ""
1678
 
1679
- #: inc/core/data.php:1438
1680
  msgid "Upload CSV file if you want to create HTML-table from file"
1681
  msgstr ""
1682
 
1683
- #: inc/core/data.php:1446
1684
  msgid ""
1685
  "<table>\n"
1686
  "<tr>\n"
@@ -1694,429 +1791,429 @@ msgid ""
1694
  "</table>"
1695
  msgstr ""
1696
 
1697
- #: inc/core/data.php:1447
1698
  msgid "Styled table from HTML or CSV file"
1699
  msgstr ""
1700
 
1701
- #: inc/core/data.php:1452
1702
  msgid "Permalink"
1703
  msgstr ""
1704
 
1705
- #: inc/core/data.php:1458 inc/core/data.php:2381
1706
  msgid "ID"
1707
  msgstr ""
1708
 
1709
- #: inc/core/data.php:1459
1710
  msgid "Post or page ID"
1711
  msgstr ""
1712
 
1713
- #: inc/core/data.php:1469
1714
  msgid "Link target. blank - link will be opened in new window/tab"
1715
  msgstr ""
1716
 
1717
- #: inc/core/data.php:1478
1718
  msgid "Permalink to specified post/page"
1719
  msgstr ""
1720
 
1721
- #: inc/core/data.php:1483
1722
  msgid "Members"
1723
  msgstr ""
1724
 
1725
- #: inc/core/data.php:1488 inc/core/shortcodes.php:756
1726
  msgid "This content is for registered users only. Please %login%."
1727
  msgstr ""
1728
 
1729
- #: inc/core/data.php:1489
1730
  msgid "Message"
1731
  msgstr ""
1732
 
1733
- #: inc/core/data.php:1489
1734
  msgid "Message for not logged users"
1735
  msgstr ""
1736
 
1737
- #: inc/core/data.php:1494
1738
  msgid "Box color"
1739
  msgstr ""
1740
 
1741
- #: inc/core/data.php:1494
1742
  msgid "This color will applied only to box for not logged users"
1743
  msgstr ""
1744
 
1745
- #: inc/core/data.php:1497 inc/core/shortcodes.php:759
1746
  msgid "login"
1747
  msgstr ""
1748
 
1749
- #: inc/core/data.php:1498
1750
  msgid "Login link text"
1751
  msgstr ""
1752
 
1753
- #: inc/core/data.php:1498
1754
  msgid "Text for the login link"
1755
  msgstr ""
1756
 
1757
- #: inc/core/data.php:1502
1758
  msgid "Login link url"
1759
  msgstr ""
1760
 
1761
- #: inc/core/data.php:1510
1762
  msgid "Content for logged members"
1763
  msgstr ""
1764
 
1765
- #: inc/core/data.php:1511
1766
  msgid "Content for logged in members only"
1767
  msgstr ""
1768
 
1769
- #: inc/core/data.php:1516
1770
  msgid "Guests"
1771
  msgstr ""
1772
 
1773
- #: inc/core/data.php:1526
1774
  msgid "Content for guests"
1775
  msgstr ""
1776
 
1777
- #: inc/core/data.php:1527
1778
  msgid "Content for guests only"
1779
  msgstr ""
1780
 
1781
- #: inc/core/data.php:1532
1782
  msgid "RSS Feed"
1783
  msgstr ""
1784
 
1785
- #: inc/core/data.php:1540
1786
  msgid "Url to RSS-feed"
1787
  msgstr ""
1788
 
1789
- #: inc/core/data.php:1548 inc/core/data.php:1735 inc/core/data.php:1854
1790
- #: inc/core/data.php:1992
1791
  msgid "Limit"
1792
  msgstr ""
1793
 
1794
- #: inc/core/data.php:1548
1795
  msgid "Number of items to show"
1796
  msgstr ""
1797
 
1798
- #: inc/core/data.php:1556
1799
  msgid "Feed grabber"
1800
  msgstr ""
1801
 
1802
- #: inc/core/data.php:1561
1803
  msgid "Menu"
1804
  msgstr ""
1805
 
1806
- #: inc/core/data.php:1568
1807
  msgid "Menu name"
1808
  msgstr ""
1809
 
1810
- #: inc/core/data.php:1568
1811
  msgid "Custom menu name. Ex: Main menu"
1812
  msgstr ""
1813
 
1814
- #: inc/core/data.php:1576
1815
  msgid "Custom menu by name"
1816
  msgstr ""
1817
 
1818
- #: inc/core/data.php:1581
1819
  msgid "Sub pages"
1820
  msgstr ""
1821
 
1822
- #: inc/core/data.php:1588 inc/core/data.php:1615
1823
  msgid "Depth"
1824
  msgstr ""
1825
 
1826
- #: inc/core/data.php:1589
1827
  msgid "Max depth level of children pages"
1828
  msgstr ""
1829
 
1830
- #: inc/core/data.php:1594
1831
  msgid "Parent ID"
1832
  msgstr ""
1833
 
1834
- #: inc/core/data.php:1595
1835
  msgid "ID of the parent page. Leave blank to use current page"
1836
  msgstr ""
1837
 
1838
- #: inc/core/data.php:1603
1839
  msgid "List of sub pages"
1840
  msgstr ""
1841
 
1842
- #: inc/core/data.php:1608
1843
  msgid "Siblings"
1844
  msgstr ""
1845
 
1846
- #: inc/core/data.php:1616
1847
  msgid "Max depth level"
1848
  msgstr ""
1849
 
1850
- #: inc/core/data.php:1624
1851
  msgid "List of cureent page siblings"
1852
  msgstr ""
1853
 
1854
- #: inc/core/data.php:1629
1855
  msgid "Document"
1856
  msgstr ""
1857
 
1858
- #: inc/core/data.php:1637
1859
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1860
  msgstr ""
1861
 
1862
- #: inc/core/data.php:1646
1863
  msgid "Viewer width"
1864
  msgstr ""
1865
 
1866
- #: inc/core/data.php:1655
1867
  msgid "Viewer height"
1868
  msgstr ""
1869
 
1870
- #: inc/core/data.php:1661
1871
  msgid "Ignore width and height parameters and make viewer responsive"
1872
  msgstr ""
1873
 
1874
- #: inc/core/data.php:1669
1875
  msgid "Document viewer by Google"
1876
  msgstr ""
1877
 
1878
- #: inc/core/data.php:1674
1879
  msgid "Gmap"
1880
  msgstr ""
1881
 
1882
- #: inc/core/data.php:1685
1883
  msgid "Map width"
1884
  msgstr ""
1885
 
1886
- #: inc/core/data.php:1694
1887
  msgid "Map height"
1888
  msgstr ""
1889
 
1890
- #: inc/core/data.php:1700
1891
  msgid "Ignore width and height parameters and make map responsive"
1892
  msgstr ""
1893
 
1894
- #: inc/core/data.php:1705
1895
  msgid "Marker"
1896
  msgstr ""
1897
 
1898
- #: inc/core/data.php:1706
1899
  msgid "Address for the marker. You can type it in any language"
1900
  msgstr ""
1901
 
1902
- #: inc/core/data.php:1714
1903
  msgid "Maps by Google"
1904
  msgstr ""
1905
 
1906
- #: inc/core/data.php:1719
1907
  msgid "Slider"
1908
  msgstr ""
1909
 
1910
- #: inc/core/data.php:1726 inc/core/data.php:1845 inc/core/data.php:1983
1911
  msgid "Source"
1912
  msgstr ""
1913
 
1914
- #: inc/core/data.php:1727 inc/core/data.php:1846 inc/core/data.php:1984
1915
  msgid ""
1916
  "Choose images source. You can use images from Media library or retrieve it "
1917
  "from posts (thumbnails) posted under specified blog category. You can also "
1918
  "pick any custom taxonomy"
1919
  msgstr ""
1920
 
1921
- #: inc/core/data.php:1736 inc/core/data.php:1855 inc/core/data.php:1993
1922
  msgid ""
1923
  "Maximum number of image source posts (for recent posts, category and custom "
1924
  "taxonomy)"
1925
  msgstr ""
1926
 
1927
- #: inc/core/data.php:1742 inc/core/data.php:1861 inc/core/data.php:1999
1928
  msgid "Full-size image"
1929
  msgstr ""
1930
 
1931
- #: inc/core/data.php:1744 inc/core/data.php:1863 inc/core/data.php:2001
1932
  msgid "Slide link (added in media editor)"
1933
  msgstr ""
1934
 
1935
- #: inc/core/data.php:1745 inc/core/data.php:1864 inc/core/data.php:2002
1936
  msgid "Attachment page"
1937
  msgstr ""
1938
 
1939
- #: inc/core/data.php:1746 inc/core/data.php:1865 inc/core/data.php:2003
1940
  msgid "Post permalink"
1941
  msgstr ""
1942
 
1943
- #: inc/core/data.php:1749 inc/core/data.php:1868 inc/core/data.php:2006
1944
  msgid "Links"
1945
  msgstr ""
1946
 
1947
- #: inc/core/data.php:1750 inc/core/data.php:1869 inc/core/data.php:2007
1948
  msgid "Select which links will be used for images in this gallery"
1949
  msgstr ""
1950
 
1951
- #: inc/core/data.php:1755 inc/core/data.php:1874 inc/core/data.php:2012
1952
  msgid "Same window"
1953
  msgstr ""
1954
 
1955
- #: inc/core/data.php:1756 inc/core/data.php:1875 inc/core/data.php:2013
1956
  msgid "New window"
1957
  msgstr ""
1958
 
1959
- #: inc/core/data.php:1759 inc/core/data.php:1878 inc/core/data.php:2016
1960
  msgid "Links target"
1961
  msgstr ""
1962
 
1963
- #: inc/core/data.php:1760 inc/core/data.php:1879 inc/core/data.php:2017
1964
  msgid "Open links in"
1965
  msgstr ""
1966
 
1967
- #: inc/core/data.php:1768
1968
  msgid "Slider width (in pixels)"
1969
  msgstr ""
1970
 
1971
- #: inc/core/data.php:1776
1972
  msgid "Slider height (in pixels)"
1973
  msgstr ""
1974
 
1975
- #: inc/core/data.php:1782
1976
  msgid "Ignore width and height parameters and make slider responsive"
1977
  msgstr ""
1978
 
1979
- #: inc/core/data.php:1787 inc/core/data.php:1925 inc/core/data.php:2043
1980
  msgid "Show titles"
1981
  msgstr ""
1982
 
1983
- #: inc/core/data.php:1787
1984
  msgid "Display slide titles"
1985
  msgstr ""
1986
 
1987
- #: inc/core/data.php:1792
1988
  msgid "Is slider centered on the page"
1989
  msgstr ""
1990
 
1991
- #: inc/core/data.php:1797 inc/core/data.php:1935
1992
  msgid "Arrows"
1993
  msgstr ""
1994
 
1995
- #: inc/core/data.php:1797 inc/core/data.php:1935
1996
  msgid "Show left and right arrows"
1997
  msgstr ""
1998
 
1999
- #: inc/core/data.php:1802 inc/core/data.php:1940
2000
  msgid "Pagination"
2001
  msgstr ""
2002
 
2003
- #: inc/core/data.php:1803 inc/core/data.php:1941
2004
  msgid "Show pagination"
2005
  msgstr ""
2006
 
2007
- #: inc/core/data.php:1807 inc/core/data.php:1945
2008
  msgid "Mouse wheel control"
2009
  msgstr ""
2010
 
2011
- #: inc/core/data.php:1808
2012
  msgid "Allow to change slides with mouse wheel"
2013
  msgstr ""
2014
 
2015
- #: inc/core/data.php:1817
2016
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2017
  msgstr ""
2018
 
2019
- #: inc/core/data.php:1825 inc/core/data.php:1963
2020
  msgid "Speed"
2021
  msgstr ""
2022
 
2023
- #: inc/core/data.php:1825 inc/core/data.php:1963
2024
  msgid "Specify animation speed"
2025
  msgstr ""
2026
 
2027
- #: inc/core/data.php:1833
2028
  msgid "Customizable image slider"
2029
  msgstr ""
2030
 
2031
- #: inc/core/data.php:1838
2032
  msgid "Carousel"
2033
  msgstr ""
2034
 
2035
- #: inc/core/data.php:1888
2036
  msgid "Carousel width (in pixels)"
2037
  msgstr ""
2038
 
2039
- #: inc/core/data.php:1897
2040
  msgid "Carousel height (in pixels)"
2041
  msgstr ""
2042
 
2043
- #: inc/core/data.php:1903
2044
  msgid "Ignore width and height parameters and make carousel responsive"
2045
  msgstr ""
2046
 
2047
- #: inc/core/data.php:1911
2048
  msgid "Items to show"
2049
  msgstr ""
2050
 
2051
- #: inc/core/data.php:1912
2052
  msgid "How much carousel items is visible"
2053
  msgstr ""
2054
 
2055
- #: inc/core/data.php:1919
2056
  msgid "Scroll number"
2057
  msgstr ""
2058
 
2059
- #: inc/core/data.php:1920
2060
  msgid "How much items are scrolled in one transition"
2061
  msgstr ""
2062
 
2063
- #: inc/core/data.php:1925
2064
  msgid "Display titles for each item"
2065
  msgstr ""
2066
 
2067
- #: inc/core/data.php:1930
2068
  msgid "Is carousel centered on the page"
2069
  msgstr ""
2070
 
2071
- #: inc/core/data.php:1946
2072
  msgid "Allow to rotate carousel with mouse wheel"
2073
  msgstr ""
2074
 
2075
- #: inc/core/data.php:1955
2076
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2077
  msgstr ""
2078
 
2079
- #: inc/core/data.php:1971
2080
  msgid "Customizable image carousel"
2081
  msgstr ""
2082
 
2083
- #: inc/core/data.php:2025
2084
  msgid "Single item width (in pixels)"
2085
  msgstr ""
2086
 
2087
- #: inc/core/data.php:2033
2088
  msgid "Single item height (in pixels)"
2089
  msgstr ""
2090
 
2091
- #: inc/core/data.php:2038
2092
  msgid "Never"
2093
  msgstr ""
2094
 
2095
- #: inc/core/data.php:2039
2096
  msgid "On mouse over"
2097
  msgstr ""
2098
 
2099
- #: inc/core/data.php:2040
2100
  msgid "Always"
2101
  msgstr ""
2102
 
2103
- #: inc/core/data.php:2044
2104
  msgid "Title display mode"
2105
  msgstr ""
2106
 
2107
- #: inc/core/data.php:2052
2108
  msgid "Customizable image gallery"
2109
  msgstr ""
2110
 
2111
- #: inc/core/data.php:2057
2112
  msgid "Posts"
2113
  msgstr ""
2114
 
2115
- #: inc/core/data.php:2062 inc/core/data.php:2488
2116
  msgid "Template"
2117
  msgstr ""
2118
 
2119
- #: inc/core/data.php:2063
2120
  msgid ""
2121
  "<b>Do not change this field value if you do not understand description below."
2122
  "</b><br/>Relative path to the template file. Default templates is placed "
@@ -2129,550 +2226,550 @@ msgid ""
2129
  "%value>templates/list-loop.php</b> - unordered list with posts titles"
2130
  msgstr ""
2131
 
2132
- #: inc/core/data.php:2067
2133
  msgid "Post ID's"
2134
  msgstr ""
2135
 
2136
- #: inc/core/data.php:2068
2137
  msgid "Enter comma separated ID's of the posts that you want to show"
2138
  msgstr ""
2139
 
2140
- #: inc/core/data.php:2076
2141
  msgid "Posts per page"
2142
  msgstr ""
2143
 
2144
- #: inc/core/data.php:2077
2145
  msgid ""
2146
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2147
  msgstr ""
2148
 
2149
- #: inc/core/data.php:2084
2150
  msgid "Post types"
2151
  msgstr ""
2152
 
2153
- #: inc/core/data.php:2085
2154
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2155
  msgstr ""
2156
 
2157
- #: inc/core/data.php:2091 inc/core/generator-views.php:123
2158
  msgid "Taxonomy"
2159
  msgstr ""
2160
 
2161
- #: inc/core/data.php:2092
2162
  msgid "Select taxonomy to show posts from"
2163
  msgstr ""
2164
 
2165
- #: inc/core/data.php:2099
2166
  msgid "Terms"
2167
  msgstr ""
2168
 
2169
- #: inc/core/data.php:2100
2170
  msgid "Select terms to show posts from"
2171
  msgstr ""
2172
 
2173
- #: inc/core/data.php:2105
2174
  msgid "Taxonomy term operator"
2175
  msgstr ""
2176
 
2177
- #: inc/core/data.php:2106
2178
  msgid ""
2179
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2180
  "that is does not have any of selected terms<br/>AND - posts that have all "
2181
  "selected terms"
2182
  msgstr ""
2183
 
2184
- #: inc/core/data.php:2113
2185
  msgid "Authors"
2186
  msgstr ""
2187
 
2188
- #: inc/core/data.php:2114
2189
  msgid "Choose the authors whose posts you want to show"
2190
  msgstr ""
2191
 
2192
- #: inc/core/data.php:2118
2193
  msgid "Meta key"
2194
  msgstr ""
2195
 
2196
- #: inc/core/data.php:2119
2197
  msgid "Enter meta key name to show posts that have this key"
2198
  msgstr ""
2199
 
2200
- #: inc/core/data.php:2126
2201
  msgid "Offset"
2202
  msgstr ""
2203
 
2204
- #: inc/core/data.php:2127
2205
  msgid "Specify offset to start posts loop not from first post"
2206
  msgstr ""
2207
 
2208
- #: inc/core/data.php:2132
2209
  msgid "Descending"
2210
  msgstr ""
2211
 
2212
- #: inc/core/data.php:2133
2213
  msgid "Ascending"
2214
  msgstr ""
2215
 
2216
- #: inc/core/data.php:2136
2217
  msgid "Order"
2218
  msgstr ""
2219
 
2220
- #: inc/core/data.php:2137
2221
  msgid "Posts order"
2222
  msgstr ""
2223
 
2224
- #: inc/core/data.php:2143 inc/core/data.php:2359 inc/core/data.php:2432
2225
- #: inc/core/data.php:2474
2226
  msgid "Post ID"
2227
  msgstr ""
2228
 
2229
- #: inc/core/data.php:2144 inc/core/data.php:2433
2230
  msgid "Post author"
2231
  msgstr ""
2232
 
2233
- #: inc/core/data.php:2145 inc/core/data.php:2437
2234
  msgid "Post title"
2235
  msgstr ""
2236
 
2237
- #: inc/core/data.php:2146
2238
  msgid "Post slug"
2239
  msgstr ""
2240
 
2241
- #: inc/core/data.php:2147
2242
  msgid "Date"
2243
  msgstr ""
2244
 
2245
- #: inc/core/data.php:2147
2246
  msgid "Last modified date"
2247
  msgstr ""
2248
 
2249
- #: inc/core/data.php:2148 inc/core/data.php:2158 inc/core/data.php:2446
2250
  msgid "Post parent"
2251
  msgstr ""
2252
 
2253
- #: inc/core/data.php:2149
2254
  msgid "Random"
2255
  msgstr ""
2256
 
2257
- #: inc/core/data.php:2149
2258
  msgid "Comments number"
2259
  msgstr ""
2260
 
2261
- #: inc/core/data.php:2150 inc/core/data.php:2448
2262
  msgid "Menu order"
2263
  msgstr ""
2264
 
2265
- #: inc/core/data.php:2150
2266
  msgid "Meta key values"
2267
  msgstr ""
2268
 
2269
- #: inc/core/data.php:2153
2270
  msgid "Order by"
2271
  msgstr ""
2272
 
2273
- #: inc/core/data.php:2154
2274
  msgid "Order posts by"
2275
  msgstr ""
2276
 
2277
- #: inc/core/data.php:2159
2278
  msgid "Show childrens of entered post (enter post ID)"
2279
  msgstr ""
2280
 
2281
- #: inc/core/data.php:2164
2282
  msgid "Published"
2283
  msgstr ""
2284
 
2285
- #: inc/core/data.php:2165
2286
  msgid "Pending"
2287
  msgstr ""
2288
 
2289
- #: inc/core/data.php:2166
2290
  msgid "Draft"
2291
  msgstr ""
2292
 
2293
- #: inc/core/data.php:2167
2294
  msgid "Auto-draft"
2295
  msgstr ""
2296
 
2297
- #: inc/core/data.php:2168
2298
  msgid "Future post"
2299
  msgstr ""
2300
 
2301
- #: inc/core/data.php:2169
2302
  msgid "Private post"
2303
  msgstr ""
2304
 
2305
- #: inc/core/data.php:2170
2306
  msgid "Inherit"
2307
  msgstr ""
2308
 
2309
- #: inc/core/data.php:2171
2310
  msgid "Trashed"
2311
  msgstr ""
2312
 
2313
- #: inc/core/data.php:2172 inc/core/data.php:2256
2314
  msgid "Any"
2315
  msgstr ""
2316
 
2317
- #: inc/core/data.php:2175 inc/core/data.php:2439
2318
  msgid "Post status"
2319
  msgstr ""
2320
 
2321
- #: inc/core/data.php:2176
2322
  msgid "Show only posts with selected status"
2323
  msgstr ""
2324
 
2325
- #: inc/core/data.php:2181
2326
  msgid "Ignore sticky"
2327
  msgstr ""
2328
 
2329
- #: inc/core/data.php:2182
2330
  msgid "Select Yes to ignore posts that is sticked"
2331
  msgstr ""
2332
 
2333
- #: inc/core/data.php:2185
2334
  msgid "Custom posts query with customizable template"
2335
  msgstr ""
2336
 
2337
- #: inc/core/data.php:2190
2338
  msgid "Dummy text"
2339
  msgstr ""
2340
 
2341
- #: inc/core/data.php:2197
2342
  msgid "Paragraphs"
2343
  msgstr ""
2344
 
2345
- #: inc/core/data.php:2198
2346
  msgid "Words"
2347
  msgstr ""
2348
 
2349
- #: inc/core/data.php:2199
2350
  msgid "Bytes"
2351
  msgstr ""
2352
 
2353
- #: inc/core/data.php:2202
2354
  msgid "What"
2355
  msgstr ""
2356
 
2357
- #: inc/core/data.php:2203
2358
  msgid "What to generate"
2359
  msgstr ""
2360
 
2361
- #: inc/core/data.php:2211
2362
  msgid "Amount"
2363
  msgstr ""
2364
 
2365
- #: inc/core/data.php:2212
2366
  msgid ""
2367
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2368
  msgstr ""
2369
 
2370
- #: inc/core/data.php:2217
2371
  msgid "Cache"
2372
  msgstr ""
2373
 
2374
- #: inc/core/data.php:2218
2375
  msgid ""
2376
  "Generated text will be cached. Be careful with this option. If you disable "
2377
  "it and insert many dummy_text shortcodes the page load time will be highly "
2378
  "increased"
2379
  msgstr ""
2380
 
2381
- #: inc/core/data.php:2226
2382
  msgid "Text placeholder"
2383
  msgstr ""
2384
 
2385
- #: inc/core/data.php:2231 inc/core/shortcodes.php:1264
2386
  msgid "Dummy image"
2387
  msgstr ""
2388
 
2389
- #: inc/core/data.php:2242
2390
  msgid "Image width"
2391
  msgstr ""
2392
 
2393
- #: inc/core/data.php:2251
2394
  msgid "Image height"
2395
  msgstr ""
2396
 
2397
- #: inc/core/data.php:2257
2398
  msgid "Abstract"
2399
  msgstr ""
2400
 
2401
- #: inc/core/data.php:2258
2402
  msgid "Animals"
2403
  msgstr ""
2404
 
2405
- #: inc/core/data.php:2259
2406
  msgid "Business"
2407
  msgstr ""
2408
 
2409
- #: inc/core/data.php:2260
2410
  msgid "Cats"
2411
  msgstr ""
2412
 
2413
- #: inc/core/data.php:2261
2414
  msgid "City"
2415
  msgstr ""
2416
 
2417
- #: inc/core/data.php:2262
2418
  msgid "Food"
2419
  msgstr ""
2420
 
2421
- #: inc/core/data.php:2263
2422
  msgid "Night life"
2423
  msgstr ""
2424
 
2425
- #: inc/core/data.php:2264
2426
  msgid "Fashion"
2427
  msgstr ""
2428
 
2429
- #: inc/core/data.php:2265
2430
  msgid "People"
2431
  msgstr ""
2432
 
2433
- #: inc/core/data.php:2266
2434
  msgid "Nature"
2435
  msgstr ""
2436
 
2437
- #: inc/core/data.php:2267
2438
  msgid "Sports"
2439
  msgstr ""
2440
 
2441
- #: inc/core/data.php:2268
2442
  msgid "Technics"
2443
  msgstr ""
2444
 
2445
- #: inc/core/data.php:2269
2446
  msgid "Transport"
2447
  msgstr ""
2448
 
2449
- #: inc/core/data.php:2273
2450
  msgid "Select the theme for this image"
2451
  msgstr ""
2452
 
2453
- #: inc/core/data.php:2281
2454
  msgid "Image placeholder with random image"
2455
  msgstr ""
2456
 
2457
- #: inc/core/data.php:2286 inc/core/data.php:2294
2458
  msgid "Animation"
2459
  msgstr ""
2460
 
2461
- #: inc/core/data.php:2295
2462
  msgid "Select animation type"
2463
  msgstr ""
2464
 
2465
- #: inc/core/data.php:2303
2466
  msgid "Duration"
2467
  msgstr ""
2468
 
2469
- #: inc/core/data.php:2304
2470
  msgid "Animation duration (seconds)"
2471
  msgstr ""
2472
 
2473
- #: inc/core/data.php:2312
2474
  msgid "Delay"
2475
  msgstr ""
2476
 
2477
- #: inc/core/data.php:2313
2478
  msgid "Animation delay (seconds)"
2479
  msgstr ""
2480
 
2481
- #: inc/core/data.php:2318
2482
  msgid "Inline"
2483
  msgstr ""
2484
 
2485
- #: inc/core/data.php:2319
2486
  msgid ""
2487
  "This parameter determines what HTML tag will be used for animation wrapper. "
2488
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
2489
  "of DIV. Useful for inline animations, like buttons"
2490
  msgstr ""
2491
 
2492
- #: inc/core/data.php:2327
2493
  msgid "Animated content"
2494
  msgstr ""
2495
 
2496
- #: inc/core/data.php:2328
2497
  msgid "Wrapper for animation. Any nested element will be animated"
2498
  msgstr ""
2499
 
2500
- #: inc/core/data.php:2333
2501
  msgid "Meta"
2502
  msgstr ""
2503
 
2504
- #: inc/core/data.php:2339
2505
  msgid "Key"
2506
  msgstr ""
2507
 
2508
- #: inc/core/data.php:2340
2509
  msgid "Meta key name"
2510
  msgstr ""
2511
 
2512
- #: inc/core/data.php:2345 inc/core/data.php:2397 inc/core/data.php:2460
2513
  msgid "This text will be shown if data is not found"
2514
  msgstr ""
2515
 
2516
- #: inc/core/data.php:2349 inc/core/data.php:2401 inc/core/data.php:2464
2517
  msgid "Before"
2518
  msgstr ""
2519
 
2520
- #: inc/core/data.php:2350 inc/core/data.php:2402 inc/core/data.php:2465
2521
  msgid "This content will be shown before the value"
2522
  msgstr ""
2523
 
2524
- #: inc/core/data.php:2354 inc/core/data.php:2406 inc/core/data.php:2469
2525
  msgid "After"
2526
  msgstr ""
2527
 
2528
- #: inc/core/data.php:2355 inc/core/data.php:2407 inc/core/data.php:2470
2529
  msgid "This content will be shown after the value"
2530
  msgstr ""
2531
 
2532
- #: inc/core/data.php:2360 inc/core/data.php:2475
2533
  msgid ""
2534
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2535
  "current post. Current post ID may not work in Live Preview mode"
2536
  msgstr ""
2537
 
2538
- #: inc/core/data.php:2364 inc/core/data.php:2416 inc/core/data.php:2479
2539
  msgid "Filter"
2540
  msgstr ""
2541
 
2542
- #: inc/core/data.php:2365 inc/core/data.php:2417 inc/core/data.php:2480
2543
  msgid ""
2544
  "You can apply custom filter to the retrieved value. Enter here function "
2545
  "name. Your function must accept one argument and return modified value. "
2546
  "Example function: "
2547
  msgstr ""
2548
 
2549
- #: inc/core/data.php:2368
2550
  msgid "Post meta"
2551
  msgstr ""
2552
 
2553
- #: inc/core/data.php:2373
2554
  msgid "User"
2555
  msgstr ""
2556
 
2557
- #: inc/core/data.php:2380
2558
  msgid "Display name"
2559
  msgstr ""
2560
 
2561
- #: inc/core/data.php:2382
2562
  msgid "Login"
2563
  msgstr ""
2564
 
2565
- #: inc/core/data.php:2383
2566
  msgid "Nice name"
2567
  msgstr ""
2568
 
2569
- #: inc/core/data.php:2384
2570
  msgid "Email"
2571
  msgstr ""
2572
 
2573
- #: inc/core/data.php:2385
2574
  msgid "URL"
2575
  msgstr ""
2576
 
2577
- #: inc/core/data.php:2386
2578
  msgid "Registered"
2579
  msgstr ""
2580
 
2581
- #: inc/core/data.php:2387
2582
  msgid "Activation key"
2583
  msgstr ""
2584
 
2585
- #: inc/core/data.php:2388
2586
  msgid "Status"
2587
  msgstr ""
2588
 
2589
- #: inc/core/data.php:2391 inc/core/data.php:2454
2590
  msgid "Field"
2591
  msgstr ""
2592
 
2593
- #: inc/core/data.php:2392
2594
  msgid "User data field name"
2595
  msgstr ""
2596
 
2597
- #: inc/core/data.php:2411
2598
  msgid "User ID"
2599
  msgstr ""
2600
 
2601
- #: inc/core/data.php:2412
2602
  msgid ""
2603
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2604
  "current user"
2605
  msgstr ""
2606
 
2607
- #: inc/core/data.php:2420
2608
  msgid "User data"
2609
  msgstr ""
2610
 
2611
- #: inc/core/data.php:2425
2612
  msgid "Post"
2613
  msgstr ""
2614
 
2615
- #: inc/core/data.php:2434 inc/core/data.php:2435
2616
  msgid "Post date"
2617
  msgstr ""
2618
 
2619
- #: inc/core/data.php:2436
2620
  msgid "Post content"
2621
  msgstr ""
2622
 
2623
- #: inc/core/data.php:2438
2624
  msgid "Post excerpt"
2625
  msgstr ""
2626
 
2627
- #: inc/core/data.php:2440
2628
  msgid "Comment status"
2629
  msgstr ""
2630
 
2631
- #: inc/core/data.php:2441
2632
  msgid "Ping status"
2633
  msgstr ""
2634
 
2635
- #: inc/core/data.php:2442
2636
  msgid "Post name"
2637
  msgstr ""
2638
 
2639
- #: inc/core/data.php:2443 inc/core/data.php:2444
2640
  msgid "Post modified"
2641
  msgstr ""
2642
 
2643
- #: inc/core/data.php:2445
2644
  msgid "Filtered post content"
2645
  msgstr ""
2646
 
2647
- #: inc/core/data.php:2447
2648
  msgid "GUID"
2649
  msgstr ""
2650
 
2651
- #: inc/core/data.php:2449
2652
  msgid "Post type"
2653
  msgstr ""
2654
 
2655
- #: inc/core/data.php:2450
2656
  msgid "Post mime type"
2657
  msgstr ""
2658
 
2659
- #: inc/core/data.php:2451
2660
  msgid "Comment count"
2661
  msgstr ""
2662
 
2663
- #: inc/core/data.php:2455
2664
  msgid "Post data field name"
2665
  msgstr ""
2666
 
2667
- #: inc/core/data.php:2483
2668
  msgid "Post data"
2669
  msgstr ""
2670
 
2671
- #: inc/core/data.php:2494
2672
  msgid "Template name"
2673
  msgstr ""
2674
 
2675
- #: inc/core/data.php:2495
2676
  #, php-format
2677
  msgid ""
2678
  "Use template file name (with optional .php extension). If you need to use "
@@ -2680,7 +2777,7 @@ msgid ""
2680
  "%s"
2681
  msgstr ""
2682
 
2683
- #: inc/core/data.php:2498
2684
  msgid "Theme template"
2685
  msgstr ""
2686
 
@@ -2836,32 +2933,36 @@ msgstr ""
2836
  msgid "All shortcodes"
2837
  msgstr ""
2838
 
2839
- #: inc/core/generator.php:163
 
 
 
 
2840
  msgid "Click to set this value"
2841
  msgstr ""
2842
 
2843
- #: inc/core/generator.php:187
2844
  msgid "Preview"
2845
  msgstr ""
2846
 
2847
- #: inc/core/generator.php:196 inc/core/tools.php:866
2848
  msgid "Access denied"
2849
  msgstr ""
2850
 
2851
- #: inc/core/generator.php:231
2852
  msgid "Presets"
2853
  msgstr ""
2854
 
2855
- #: inc/core/generator.php:234
2856
  msgid "Save current settings as preset"
2857
  msgstr ""
2858
 
2859
- #: inc/core/generator.php:263 inc/core/generator.php:266
2860
  msgid "Presets not found"
2861
  msgstr ""
2862
 
2863
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
2864
- #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:878
2865
  #: inc/core/widget.php:14 inc/core/widget.php:40
2866
  msgid "Shortcodes Ultimate"
2867
  msgstr ""
@@ -2980,60 +3081,61 @@ msgid "please specify correct source"
2980
  msgstr ""
2981
 
2982
  #: inc/core/shortcodes.php:561 inc/core/shortcodes.php:565
2983
- #: inc/core/shortcodes.php:598 inc/core/shortcodes.php:602
2984
- #: inc/core/shortcodes.php:629 inc/core/shortcodes.php:633
2985
- #: inc/core/shortcodes.php:657 inc/core/shortcodes.php:661
2986
- #: inc/core/shortcodes.php:681 inc/core/shortcodes.php:688
2987
- #: inc/core/shortcodes.php:710 inc/core/shortcodes.php:715
 
2988
  msgid "please specify correct url"
2989
  msgstr ""
2990
 
2991
- #: inc/core/shortcodes.php:846
2992
  msgid "This menu doesn't exists, or has no elements"
2993
  msgstr ""
2994
 
2995
- #: inc/core/shortcodes.php:952 inc/core/shortcodes.php:1035
2996
- #: inc/core/shortcodes.php:1090
2997
  msgid "images not found"
2998
  msgstr ""
2999
 
3000
- #: inc/core/shortcodes.php:1226
3001
  msgid "template not found"
3002
  msgstr ""
3003
 
3004
- #: inc/core/shortcodes.php:1304 inc/core/shortcodes.php:1354
3005
  msgid "post ID is incorrect"
3006
  msgstr ""
3007
 
3008
- #: inc/core/shortcodes.php:1306
3009
  msgid "please specify meta key name"
3010
  msgstr ""
3011
 
3012
- #: inc/core/shortcodes.php:1327
3013
  msgid "password field is not allowed"
3014
  msgstr ""
3015
 
3016
- #: inc/core/shortcodes.php:1331
3017
  msgid "user ID is incorrect"
3018
  msgstr ""
3019
 
3020
- #: inc/core/shortcodes.php:1370
3021
  msgid "please specify template name"
3022
  msgstr ""
3023
 
3024
- #: inc/core/tools.php:785
3025
  msgid "Example code does not found, please check it later"
3026
  msgstr ""
3027
 
3028
- #: inc/core/tools.php:801
3029
  msgid "Get the code"
3030
  msgstr ""
3031
 
3032
- #: inc/core/tools.php:875
3033
  msgid "Slide link"
3034
  msgstr ""
3035
 
3036
- #: inc/core/tools.php:878
3037
  msgid ""
3038
  "Use this field to add custom links to slides used with Slider, Carousel and "
3039
  "Custom Gallery shortcodes"
2
  msgstr ""
3
  "Project-Id-Version: Shortcodes Ultimate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-04-02 21:21+0400\n"
6
+ "PO-Revision-Date: 2014-04-02 21:21+0400\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: su\n"
128
  msgid "plugin url"
129
  msgstr ""
130
 
131
+ #: inc/core/admin-views.php:117
132
  msgid "New Shortcodes"
133
  msgstr ""
134
 
135
+ #: inc/core/admin-views.php:118
136
  msgid ""
137
  "Parallax sections, responsive content slider, pricing tables, vector icons, "
138
  "testimonials, progress bars and even more"
139
  msgstr ""
140
 
141
+ #: inc/core/admin-views.php:123
142
  msgid "Maker"
143
  msgstr ""
144
 
145
+ #: inc/core/admin-views.php:124
146
  msgid ""
147
  "This add-on allows you to create custom shortcodes. You can easily create "
148
  "any shortcode with different parameters or even override default shortcodes"
149
  msgstr ""
150
 
151
+ #: inc/core/admin-views.php:129
152
  msgid "Skins"
153
  msgstr ""
154
 
155
+ #: inc/core/admin-views.php:130
156
  msgid ""
157
  "Set of additional skins for Shortcodes Ultimate. It includes skins for "
158
  "accordeons/spoilers, tabs and some other shortcodes"
159
  msgstr ""
160
 
161
+ #: inc/core/admin-views.php:136
162
  msgid "Shortcodes Ultimate Add-ons"
163
  msgstr ""
164
 
165
+ #: inc/core/admin-views.php:139 inc/core/admin-views.php:146
166
  msgid "Learn more"
167
  msgstr ""
168
 
169
+ #: inc/core/admin-views.php:143
170
  msgid "Other WordPress Plugins"
171
  msgstr ""
172
 
250
  msgid "All"
251
  msgstr ""
252
 
253
+ #: inc/core/data.php:18 inc/core/generator.php:177
254
  msgid "Content"
255
  msgstr ""
256
 
257
+ #: inc/core/data.php:19 inc/core/data.php:826
258
  msgid "Box"
259
  msgstr ""
260
 
262
  msgid "Media"
263
  msgstr ""
264
 
265
+ #: inc/core/data.php:21 inc/core/data.php:2096
266
  msgid "Gallery"
267
  msgstr ""
268
 
274
  msgid "Other"
275
  msgstr ""
276
 
277
+ #: inc/core/data.php:32 inc/core/data.php:1861 inc/core/data.php:1980
278
+ #: inc/core/data.php:2118 inc/core/data.php:2262
279
  msgid "None"
280
  msgstr ""
281
 
348
  msgid "Heading"
349
  msgstr ""
350
 
351
+ #: inc/core/data.php:136 inc/core/data.php:190 inc/core/data.php:274
352
+ #: inc/core/data.php:426 inc/core/data.php:456 inc/core/data.php:517
353
+ #: inc/core/data.php:684 inc/core/data.php:838 inc/core/data.php:1002
354
+ #: inc/core/data.php:2465 inc/core/data.php:2517 inc/core/data.php:2580
355
  msgid "Default"
356
  msgstr ""
357
 
358
+ #: inc/core/data.php:139 inc/core/data.php:193 inc/core/data.php:279
359
+ #: inc/core/data.php:459 inc/core/data.php:523 inc/core/data.php:694
360
+ #: inc/core/data.php:845 inc/core/data.php:972
361
  msgid "Style"
362
  msgstr ""
363
 
365
  msgid "Choose style for this heading"
366
  msgstr ""
367
 
368
+ #: inc/core/data.php:140 inc/core/data.php:194 inc/core/data.php:280
369
+ #: inc/core/data.php:460
370
  msgid "Install additional styles"
371
  msgstr ""
372
 
373
+ #: inc/core/data.php:148 inc/core/data.php:531 inc/core/data.php:610
374
+ #: inc/core/data.php:715
375
  msgid "Size"
376
  msgstr ""
377
 
379
  msgid "Select heading size (pixels)"
380
  msgstr ""
381
 
382
+ #: inc/core/data.php:154 inc/core/data.php:492 inc/core/data.php:553
383
+ #: inc/core/data.php:980
384
  msgid "Left"
385
  msgstr ""
386
 
387
+ #: inc/core/data.php:155 inc/core/data.php:554 inc/core/data.php:1912
388
+ #: inc/core/data.php:2050
389
  msgid "Center"
390
  msgstr ""
391
 
392
+ #: inc/core/data.php:156 inc/core/data.php:493 inc/core/data.php:555
393
+ #: inc/core/data.php:981
394
  msgid "Right"
395
  msgstr ""
396
 
397
+ #: inc/core/data.php:159 inc/core/data.php:496 inc/core/data.php:558
398
  msgid "Align"
399
  msgstr ""
400
 
410
  msgid "Bottom margin (pixels)"
411
  msgstr ""
412
 
413
+ #: inc/core/data.php:173 inc/core/data.php:213 inc/core/data.php:246
414
+ #: inc/core/data.php:310 inc/core/data.php:328 inc/core/data.php:357
415
+ #: inc/core/data.php:381 inc/core/data.php:409 inc/core/data.php:439
416
+ #: inc/core/data.php:475 inc/core/data.php:500 inc/core/data.php:536
417
+ #: inc/core/data.php:563 inc/core/data.php:579 inc/core/data.php:621
418
+ #: inc/core/data.php:651 inc/core/data.php:772 inc/core/data.php:816
419
+ #: inc/core/data.php:872 inc/core/data.php:909 inc/core/data.php:941
420
+ #: inc/core/data.php:1043 inc/core/data.php:1059 inc/core/data.php:1111
421
+ #: inc/core/data.php:1236 inc/core/data.php:1287 inc/core/data.php:1332
422
+ #: inc/core/data.php:1431 inc/core/data.php:1470 inc/core/data.php:1540
423
+ #: inc/core/data.php:1562 inc/core/data.php:1593 inc/core/data.php:1626
424
+ #: inc/core/data.php:1642 inc/core/data.php:1672 inc/core/data.php:1692
425
+ #: inc/core/data.php:1719 inc/core/data.php:1740 inc/core/data.php:1785
426
+ #: inc/core/data.php:1830 inc/core/data.php:1949 inc/core/data.php:2087
427
+ #: inc/core/data.php:2168 inc/core/data.php:2342 inc/core/data.php:2397
428
+ #: inc/core/data.php:2443
429
  msgid "Class"
430
  msgstr ""
431
 
432
+ #: inc/core/data.php:174 inc/core/data.php:214 inc/core/data.php:247
433
+ #: inc/core/data.php:311 inc/core/data.php:329 inc/core/data.php:358
434
+ #: inc/core/data.php:382 inc/core/data.php:410 inc/core/data.php:440
435
+ #: inc/core/data.php:476 inc/core/data.php:501 inc/core/data.php:537
436
+ #: inc/core/data.php:564 inc/core/data.php:580 inc/core/data.php:622
437
+ #: inc/core/data.php:652 inc/core/data.php:773 inc/core/data.php:817
438
+ #: inc/core/data.php:873 inc/core/data.php:910 inc/core/data.php:942
439
+ #: inc/core/data.php:1044 inc/core/data.php:1060 inc/core/data.php:1112
440
+ #: inc/core/data.php:1237 inc/core/data.php:1288 inc/core/data.php:1333
441
+ #: inc/core/data.php:1432 inc/core/data.php:1471 inc/core/data.php:1541
442
+ #: inc/core/data.php:1563 inc/core/data.php:1594 inc/core/data.php:1627
443
+ #: inc/core/data.php:1643 inc/core/data.php:1673 inc/core/data.php:1693
444
+ #: inc/core/data.php:1720 inc/core/data.php:1741 inc/core/data.php:1786
445
+ #: inc/core/data.php:1831 inc/core/data.php:1950 inc/core/data.php:2088
446
+ #: inc/core/data.php:2169 inc/core/data.php:2343 inc/core/data.php:2398
447
+ #: inc/core/data.php:2444
448
  msgid "Extra CSS class"
449
  msgstr ""
450
 
491
  msgid "Tabs container"
492
  msgstr ""
493
 
494
+ #: inc/core/data.php:224
495
  msgid "Tab"
496
  msgstr ""
497
 
498
+ #: inc/core/data.php:229
499
  msgid "Tab name"
500
  msgstr ""
501
 
502
+ #: inc/core/data.php:230 inc/core/data.php:263 inc/core/data.php:790
503
+ #: inc/core/data.php:833 inc/core/data.php:1499
504
  msgid "Title"
505
  msgstr ""
506
 
507
+ #: inc/core/data.php:231
508
  msgid "Enter tab name"
509
  msgstr ""
510
 
511
+ #: inc/core/data.php:236
512
  msgid "Disabled"
513
  msgstr ""
514
 
515
+ #: inc/core/data.php:237
516
  msgid "Is this tab disabled"
517
  msgstr ""
518
 
519
+ #: inc/core/data.php:241 inc/core/data.php:305
520
  msgid "Anchor"
521
  msgstr ""
522
 
523
+ #: inc/core/data.php:242
524
  msgid ""
525
  "You can use unique anchor for this tab to access it with hash in page url. "
526
  "For example: type here <b%value>Hello</b> and then use url like http://"
527
  "example.com/page-url#Hello. This tab will be activated and scrolled in"
528
  msgstr ""
529
 
530
+ #: inc/core/data.php:250
531
  msgid "Tab content"
532
  msgstr ""
533
 
534
+ #: inc/core/data.php:251
535
  msgid "Single tab"
536
  msgstr ""
537
 
538
+ #: inc/core/data.php:257
539
  msgid "Spoiler"
540
  msgstr ""
541
 
542
+ #: inc/core/data.php:262 inc/core/shortcodes.php:72
543
  msgid "Spoiler title"
544
  msgstr ""
545
 
546
+ #: inc/core/data.php:263
547
  msgid "Text in spoiler title"
548
  msgstr ""
549
 
550
+ #: inc/core/data.php:268
551
  msgid "Open"
552
  msgstr ""
553
 
554
+ #: inc/core/data.php:269
555
  msgid "Is spoiler content visible by default"
556
  msgstr ""
557
 
558
+ #: inc/core/data.php:275
559
  msgid "Fancy"
560
  msgstr ""
561
 
562
+ #: inc/core/data.php:276 inc/core/data.php:520
563
  msgid "Simple"
564
  msgstr ""
565
 
566
+ #: inc/core/data.php:280
567
  msgid "Choose style for this spoiler"
568
  msgstr ""
569
 
570
+ #: inc/core/data.php:285
571
  msgid "Plus"
572
  msgstr ""
573
 
574
+ #: inc/core/data.php:286
575
  msgid "Plus circle"
576
  msgstr ""
577
 
578
+ #: inc/core/data.php:287
579
  msgid "Plus square 1"
580
  msgstr ""
581
 
582
+ #: inc/core/data.php:288
583
  msgid "Plus square 2"
584
  msgstr ""
585
 
586
+ #: inc/core/data.php:289
587
  msgid "Arrow"
588
  msgstr ""
589
 
590
+ #: inc/core/data.php:290
591
  msgid "Arrow circle 1"
592
  msgstr ""
593
 
594
+ #: inc/core/data.php:291
595
  msgid "Arrow circle 2"
596
  msgstr ""
597
 
598
+ #: inc/core/data.php:292
599
  msgid "Chevron"
600
  msgstr ""
601
 
602
+ #: inc/core/data.php:293
603
  msgid "Chevron circle"
604
  msgstr ""
605
 
606
+ #: inc/core/data.php:294
607
  msgid "Caret"
608
  msgstr ""
609
 
610
+ #: inc/core/data.php:295
611
  msgid "Caret square"
612
  msgstr ""
613
 
614
+ #: inc/core/data.php:296
615
  msgid "Folder 1"
616
  msgstr ""
617
 
618
+ #: inc/core/data.php:297
619
  msgid "Folder 2"
620
  msgstr ""
621
 
622
+ #: inc/core/data.php:300 inc/core/data.php:640 inc/core/data.php:745
623
+ #: inc/core/data.php:796
624
  msgid "Icon"
625
  msgstr ""
626
 
627
+ #: inc/core/data.php:301
628
  msgid "Icons for spoiler"
629
  msgstr ""
630
 
631
+ #: inc/core/data.php:306
632
  msgid ""
633
  "You can use unique anchor for this spoiler to access it with hash in page "
634
  "url. For example: type here <b%value>Hello</b> and then use url like http://"
635
  "example.com/page-url#Hello. This spoiler will be open and scrolled in"
636
  msgstr ""
637
 
638
+ #: inc/core/data.php:314
639
  msgid "Hidden content"
640
  msgstr ""
641
 
642
+ #: inc/core/data.php:315
643
  msgid "Spoiler with hidden content"
644
  msgstr ""
645
 
646
+ #: inc/core/data.php:316 inc/core/data.php:334
647
+ msgid ""
648
+ "Did you know that you can wrap multiple spoilers with [accordion] shortcode "
649
+ "to create accordion effect?"
650
+ msgstr ""
651
+
652
+ #: inc/core/data.php:322
653
  msgid "Accordion"
654
  msgstr ""
655
 
656
+ #: inc/core/data.php:332
657
  msgid ""
658
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
659
  "[%prefix_spoiler]Content[/%prefix_spoiler]\n"
660
  "[%prefix_spoiler]Content[/%prefix_spoiler]"
661
  msgstr ""
662
 
663
+ #: inc/core/data.php:333
664
  msgid "Accordion with spoilers"
665
  msgstr ""
666
 
667
+ #: inc/core/data.php:340
668
  msgid "Divider"
669
  msgstr ""
670
 
671
+ #: inc/core/data.php:347
672
  msgid "Show TOP link"
673
  msgstr ""
674
 
675
+ #: inc/core/data.php:348
676
  msgid "Show link to top of the page or not"
677
  msgstr ""
678
 
679
+ #: inc/core/data.php:352 inc/core/shortcodes.php:99
680
  msgid "Go to top"
681
  msgstr ""
682
 
683
+ #: inc/core/data.php:353
684
  msgid "Link text"
685
  msgstr ""
686
 
687
+ #: inc/core/data.php:353
688
  msgid "Text for the GO TOP link"
689
  msgstr ""
690
 
691
+ #: inc/core/data.php:361
692
  msgid "Content divider with optional TOP link"
693
  msgstr ""
694
 
695
+ #: inc/core/data.php:366
696
  msgid "Spacer"
697
  msgstr ""
698
 
699
+ #: inc/core/data.php:376 inc/core/data.php:1094 inc/core/data.php:1151
700
+ #: inc/core/data.php:1270 inc/core/data.php:1321 inc/core/data.php:1365
701
+ #: inc/core/data.php:1517 inc/core/data.php:1774 inc/core/data.php:1813
702
+ #: inc/core/data.php:1896 inc/core/data.php:2016 inc/core/data.php:2153
703
+ #: inc/core/data.php:2370
704
  msgid "Height"
705
  msgstr ""
706
 
707
+ #: inc/core/data.php:377
708
  msgid "Height of the spacer in pixels"
709
  msgstr ""
710
 
711
+ #: inc/core/data.php:385
712
  msgid "Empty space with adjustable height"
713
  msgstr ""
714
 
715
+ #: inc/core/data.php:390
716
  msgid "Highlight"
717
  msgstr ""
718
 
719
+ #: inc/core/data.php:398 inc/core/data.php:700 inc/core/data.php:890
720
  msgid "Background"
721
  msgstr ""
722
 
723
+ #: inc/core/data.php:399
724
  msgid "Highlighted text background color"
725
  msgstr ""
726
 
727
+ #: inc/core/data.php:405 inc/core/data.php:706 inc/core/data.php:896
728
  msgid "Text color"
729
  msgstr ""
730
 
731
+ #: inc/core/data.php:405
732
  msgid "Highlighted text color"
733
  msgstr ""
734
 
735
+ #: inc/core/data.php:413 inc/core/data.php:414
736
  msgid "Highlighted text"
737
  msgstr ""
738
 
739
+ #: inc/core/data.php:419 inc/core/data.php:443 inc/vendor/sunrise.php:409
740
  msgid "Label"
741
  msgstr ""
742
 
743
+ #: inc/core/data.php:427
744
  msgid "Success"
745
  msgstr ""
746
 
747
+ #: inc/core/data.php:428
748
  msgid "Warning"
749
  msgstr ""
750
 
751
+ #: inc/core/data.php:429
752
  msgid "Important"
753
  msgstr ""
754
 
755
+ #: inc/core/data.php:430
756
  msgid "Black"
757
  msgstr ""
758
 
759
+ #: inc/core/data.php:431
760
  msgid "Info"
761
  msgstr ""
762
 
763
+ #: inc/core/data.php:434
764
  msgid "Type"
765
  msgstr ""
766
 
767
+ #: inc/core/data.php:435
768
  msgid "Style of the label"
769
  msgstr ""
770
 
771
+ #: inc/core/data.php:444
772
  msgid "Styled label"
773
  msgstr ""
774
 
775
+ #: inc/core/data.php:449 inc/core/data.php:479
776
  msgid "Quote"
777
  msgstr ""
778
 
779
+ #: inc/core/data.php:460
780
  msgid "Choose style for this quote"
781
  msgstr ""
782
 
783
+ #: inc/core/data.php:464
784
  msgid "Cite"
785
  msgstr ""
786
 
787
+ #: inc/core/data.php:465
788
  msgid "Quote author name"
789
  msgstr ""
790
 
791
+ #: inc/core/data.php:470
792
  msgid "Cite url"
793
  msgstr ""
794
 
795
+ #: inc/core/data.php:471
796
  msgid "Url of the quote author. Leave empty to disable link"
797
  msgstr ""
798
 
799
+ #: inc/core/data.php:480
800
  msgid "Blockquote alternative"
801
  msgstr ""
802
 
803
+ #: inc/core/data.php:485 inc/core/data.php:504 inc/core/data.php:505
804
  msgid "Pullquote"
805
  msgstr ""
806
 
807
+ #: inc/core/data.php:496
808
  msgid "Pullquote alignment (float)"
809
  msgstr ""
810
 
811
+ #: inc/core/data.php:510 inc/core/data.php:541
812
  msgid "Dropcap"
813
  msgstr ""
814
 
815
+ #: inc/core/data.php:518 inc/core/data.php:685
816
  msgid "Flat"
817
  msgstr ""
818
 
819
+ #: inc/core/data.php:519
820
  msgid "Light"
821
  msgstr ""
822
 
823
+ #: inc/core/data.php:523
824
  msgid "Dropcap style preset"
825
  msgstr ""
826
 
827
+ #: inc/core/data.php:532
828
  msgid "Choose dropcap size"
829
  msgstr ""
830
 
831
+ #: inc/core/data.php:540
832
  msgid "D"
833
  msgstr ""
834
 
835
+ #: inc/core/data.php:546
836
  msgid "Frame"
837
  msgstr ""
838
 
839
+ #: inc/core/data.php:559
840
  msgid "Frame alignment"
841
  msgstr ""
842
 
843
+ #: inc/core/data.php:568
844
  msgid "Styled image frame"
845
  msgstr ""
846
 
847
+ #: inc/core/data.php:573
848
  msgid "Row"
849
  msgstr ""
850
 
851
+ #: inc/core/data.php:583
852
  msgid ""
853
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
854
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
855
  "[%prefix_column size=\"1/3\"]Content[/%prefix_column]"
856
  msgstr ""
857
 
858
+ #: inc/core/data.php:584
859
  msgid "Row for flexible columns"
860
  msgstr ""
861
 
862
+ #: inc/core/data.php:589
863
  msgid "Column"
864
  msgstr ""
865
 
866
+ #: inc/core/data.php:596
867
  msgid "Full width"
868
  msgstr ""
869
 
870
+ #: inc/core/data.php:597
871
  msgid "One half"
872
  msgstr ""
873
 
874
+ #: inc/core/data.php:598
875
  msgid "One third"
876
  msgstr ""
877
 
878
+ #: inc/core/data.php:599
879
  msgid "Two third"
880
  msgstr ""
881
 
882
+ #: inc/core/data.php:600
883
  msgid "One fourth"
884
  msgstr ""
885
 
886
+ #: inc/core/data.php:601
887
  msgid "Three fourth"
888
  msgstr ""
889
 
890
+ #: inc/core/data.php:602
891
  msgid "One fifth"
892
  msgstr ""
893
 
894
+ #: inc/core/data.php:603
895
  msgid "Two fifth"
896
  msgstr ""
897
 
898
+ #: inc/core/data.php:604
899
  msgid "Three fifth"
900
  msgstr ""
901
 
902
+ #: inc/core/data.php:605
903
  msgid "Four fifth"
904
  msgstr ""
905
 
906
+ #: inc/core/data.php:606
907
  msgid "One sixth"
908
  msgstr ""
909
 
910
+ #: inc/core/data.php:607
911
  msgid "Five sixth"
912
  msgstr ""
913
 
914
+ #: inc/core/data.php:611
915
  msgid "Select column width. This width will be calculated depend page width"
916
  msgstr ""
917
 
918
+ #: inc/core/data.php:616 inc/core/data.php:726
919
  msgid "Centered"
920
  msgstr ""
921
 
922
+ #: inc/core/data.php:617
923
  msgid "Is this column centered on the page"
924
  msgstr ""
925
 
926
+ #: inc/core/data.php:625
927
  msgid "Column content"
928
  msgstr ""
929
 
930
+ #: inc/core/data.php:626
931
  msgid "Flexible and responsive columns"
932
  msgstr ""
933
 
934
+ #: inc/core/data.php:627
935
+ msgid "Did you know that you need to wrap columns with [row] shortcode?"
936
  msgstr ""
937
 
938
  #: inc/core/data.php:633
939
+ msgid "List"
940
+ msgstr ""
941
+
942
+ #: inc/core/data.php:641
943
  msgid "You can upload custom icon for this list or pick a built-in icon"
944
  msgstr ""
945
 
946
+ #: inc/core/data.php:646 inc/core/data.php:751 inc/core/data.php:802
947
  msgid "Icon color"
948
  msgstr ""
949
 
950
+ #: inc/core/data.php:647 inc/core/data.php:752 inc/core/data.php:803
951
  msgid ""
952
  "This color will be applied to the selected icon. Does not works with "
953
  "uploaded icons"
954
  msgstr ""
955
 
956
+ #: inc/core/data.php:655
957
  msgid ""
958
  "<ul>\n"
959
  "<li>List item</li>\n"
962
  "</ul>"
963
  msgstr ""
964
 
965
+ #: inc/core/data.php:656
966
  msgid "Styled unordered list"
967
  msgstr ""
968
 
969
+ #: inc/core/data.php:661
970
  msgid "Button"
971
  msgstr ""
972
 
973
+ #: inc/core/data.php:668
974
  msgid "Link"
975
  msgstr ""
976
 
977
+ #: inc/core/data.php:669
978
  msgid "Button link"
979
  msgstr ""
980
 
981
+ #: inc/core/data.php:674 inc/core/data.php:1584
982
  msgid "Same tab"
983
  msgstr ""
984
 
985
+ #: inc/core/data.php:675 inc/core/data.php:1585
986
  msgid "New tab"
987
  msgstr ""
988
 
989
+ #: inc/core/data.php:678 inc/core/data.php:1588
990
  msgid "Target"
991
  msgstr ""
992
 
993
+ #: inc/core/data.php:679
994
  msgid "Button link target"
995
  msgstr ""
996
 
997
+ #: inc/core/data.php:686 inc/core/data.php:839
998
  msgid "Soft"
999
  msgstr ""
1000
 
1001
+ #: inc/core/data.php:687 inc/core/data.php:840
1002
  msgid "Glass"
1003
  msgstr ""
1004
 
1005
+ #: inc/core/data.php:688 inc/core/data.php:841
1006
  msgid "Bubbles"
1007
  msgstr ""
1008
 
1009
+ #: inc/core/data.php:689 inc/core/data.php:842
1010
  msgid "Noise"
1011
  msgstr ""
1012
 
1013
+ #: inc/core/data.php:690
1014
  msgid "Stroked"
1015
  msgstr ""
1016
 
1017
+ #: inc/core/data.php:691
1018
  msgid "3D"
1019
  msgstr ""
1020
 
1021
+ #: inc/core/data.php:694
1022
  msgid "Button background style preset"
1023
  msgstr ""
1024
 
1025
+ #: inc/core/data.php:700
1026
  msgid "Button background color"
1027
  msgstr ""
1028
 
1029
+ #: inc/core/data.php:707
1030
  msgid "Button text color"
1031
  msgstr ""
1032
 
1033
+ #: inc/core/data.php:716
1034
  msgid "Button size"
1035
  msgstr ""
1036
 
1037
+ #: inc/core/data.php:721
1038
  msgid "Fluid"
1039
  msgstr ""
1040
 
1041
+ #: inc/core/data.php:721
1042
  msgid "Fluid buttons has 100% width"
1043
  msgstr ""
1044
 
1045
+ #: inc/core/data.php:726
1046
  msgid "Is button centered on the page"
1047
  msgstr ""
1048
 
1049
+ #: inc/core/data.php:731
1050
  msgid "Auto"
1051
  msgstr ""
1052
 
1053
+ #: inc/core/data.php:732
1054
  msgid "Round"
1055
  msgstr ""
1056
 
1057
+ #: inc/core/data.php:733
1058
  msgid "Square"
1059
  msgstr ""
1060
 
1061
+ #: inc/core/data.php:739 inc/core/data.php:867 inc/core/data.php:905
1062
  msgid "Radius"
1063
  msgstr ""
1064
 
1065
+ #: inc/core/data.php:740
1066
  msgid "Radius of button corners. Auto-radius calculation based on button size"
1067
  msgstr ""
1068
 
1069
+ #: inc/core/data.php:746
1070
  msgid "You can upload custom icon for this button or pick a built-in icon"
1071
  msgstr ""
1072
 
1073
+ #: inc/core/data.php:757
1074
  msgid "Text shadow"
1075
  msgstr ""
1076
 
1077
+ #: inc/core/data.php:758
1078
  msgid "Button text shadow"
1079
  msgstr ""
1080
 
1081
+ #: inc/core/data.php:762
1082
  msgid "Description"
1083
  msgstr ""
1084
 
1085
+ #: inc/core/data.php:763
1086
  msgid ""
1087
  "Small description under button text. This option is incompatible with icon."
1088
  msgstr ""
1089
 
1090
+ #: inc/core/data.php:767
1091
  msgid "onClick"
1092
  msgstr ""
1093
 
1094
+ #: inc/core/data.php:768
1095
  msgid "Advanced JavaScript code for onClick action"
1096
  msgstr ""
1097
 
1098
+ #: inc/core/data.php:776
1099
  msgid "Button text"
1100
  msgstr ""
1101
 
1102
+ #: inc/core/data.php:777
1103
  msgid "Styled button"
1104
  msgstr ""
1105
 
1106
+ #: inc/core/data.php:783
1107
  msgid "Service"
1108
  msgstr ""
1109
 
1110
+ #: inc/core/data.php:789 inc/core/shortcodes.php:430
1111
  msgid "Service title"
1112
  msgstr ""
1113
 
1114
+ #: inc/core/data.php:791
1115
  msgid "Service name"
1116
  msgstr ""
1117
 
1118
+ #: inc/core/data.php:797
1119
  msgid "You can upload custom icon for this box"
1120
  msgstr ""
1121
 
1122
+ #: inc/core/data.php:811
1123
  msgid "Icon size"
1124
  msgstr ""
1125
 
1126
+ #: inc/core/data.php:812
1127
  msgid "Size of the uploaded icon in pixels"
1128
  msgstr ""
1129
 
1130
+ #: inc/core/data.php:820
1131
  msgid "Service description"
1132
  msgstr ""
1133
 
1134
+ #: inc/core/data.php:821
1135
  msgid "Service box with title"
1136
  msgstr ""
1137
 
1138
+ #: inc/core/data.php:832
1139
  msgid "Box title"
1140
  msgstr ""
1141
 
1142
+ #: inc/core/data.php:833
1143
  msgid "Text for the box title"
1144
  msgstr ""
1145
 
1146
+ #: inc/core/data.php:846
1147
  msgid "Box style preset"
1148
  msgstr ""
1149
 
1150
+ #: inc/core/data.php:852 inc/core/generator-views.php:99
1151
  msgid "Color"
1152
  msgstr ""
1153
 
1154
+ #: inc/core/data.php:853
1155
  msgid "Color for the box title and borders"
1156
  msgstr ""
1157
 
1158
+ #: inc/core/data.php:859
1159
  msgid "Title text color"
1160
  msgstr ""
1161
 
1162
+ #: inc/core/data.php:859
1163
  msgid "Color for the box title text"
1164
  msgstr ""
1165
 
1166
+ #: inc/core/data.php:868
1167
  msgid "Box corners radius"
1168
  msgstr ""
1169
 
1170
+ #: inc/core/data.php:876
1171
  msgid "Box content"
1172
  msgstr ""
1173
 
1174
+ #: inc/core/data.php:877
1175
  msgid "Colored box with caption"
1176
  msgstr ""
1177
 
1178
+ #: inc/core/data.php:882
1179
  msgid "Note"
1180
  msgstr ""
1181
 
1182
+ #: inc/core/data.php:890
1183
  msgid "Note background color"
1184
  msgstr ""
1185
 
1186
+ #: inc/core/data.php:897
1187
  msgid "Note text color"
1188
  msgstr ""
1189
 
1190
+ #: inc/core/data.php:905
1191
  msgid "Note corners radius"
1192
  msgstr ""
1193
 
1194
+ #: inc/core/data.php:913
1195
  msgid "Note text"
1196
  msgstr ""
1197
 
1198
+ #: inc/core/data.php:914
1199
  msgid "Colored box"
1200
  msgstr ""
1201
 
1202
+ #: inc/core/data.php:919 inc/core/data.php:1863 inc/core/data.php:1982
1203
+ #: inc/core/data.php:2120
1204
  msgid "Lightbox"
1205
  msgstr ""
1206
 
1207
+ #: inc/core/data.php:926
1208
  msgid "Iframe"
1209
  msgstr ""
1210
 
1211
+ #: inc/core/data.php:927
1212
  msgid "Image"
1213
  msgstr ""
1214
 
1215
+ #: inc/core/data.php:928
1216
  msgid "Inline (html content)"
1217
  msgstr ""
1218
 
1219
+ #: inc/core/data.php:931
1220
  msgid "Content type"
1221
  msgstr ""
1222
 
1223
+ #: inc/core/data.php:932
1224
  msgid "Select type of the lightbox window content"
1225
  msgstr ""
1226
 
1227
+ #: inc/core/data.php:936
1228
  msgid "Content source"
1229
  msgstr ""
1230
 
1231
+ #: inc/core/data.php:937
1232
  msgid ""
1233
  "Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
1234
  "Use CSS selector for Inline content type.<br />Example values:<br /><b"
1238
  "(iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
1239
  msgstr ""
1240
 
1241
+ #: inc/core/data.php:945
1242
  msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
1243
  msgstr ""
1244
 
1245
+ #: inc/core/data.php:946
1246
  msgid "Lightbox window with custom content"
1247
  msgstr ""
1248
 
1249
+ #: inc/core/data.php:951
1250
  msgid "Tooltip"
1251
  msgstr ""
1252
 
1253
+ #: inc/core/data.php:958
1254
  msgid "Basic: Light"
1255
  msgstr ""
1256
 
1257
+ #: inc/core/data.php:959
1258
  msgid "Basic: Dark"
1259
  msgstr ""
1260
 
1261
+ #: inc/core/data.php:960
1262
  msgid "Basic: Yellow"
1263
  msgstr ""
1264
 
1265
+ #: inc/core/data.php:961
1266
  msgid "Basic: Green"
1267
  msgstr ""
1268
 
1269
+ #: inc/core/data.php:962
1270
  msgid "Basic: Red"
1271
  msgstr ""
1272
 
1273
+ #: inc/core/data.php:963
1274
  msgid "Basic: Blue"
1275
  msgstr ""
1276
 
1277
+ #: inc/core/data.php:964
1278
  msgid "Youtube"
1279
  msgstr ""
1280
 
1281
+ #: inc/core/data.php:965
1282
  msgid "Tipsy"
1283
  msgstr ""
1284
 
1285
+ #: inc/core/data.php:966
1286
  msgid "Bootstrap"
1287
  msgstr ""
1288
 
1289
+ #: inc/core/data.php:967
1290
  msgid "jTools"
1291
  msgstr ""
1292
 
1293
+ #: inc/core/data.php:968
1294
  msgid "Tipped"
1295
  msgstr ""
1296
 
1297
+ #: inc/core/data.php:969
1298
  msgid "Cluetip"
1299
  msgstr ""
1300
 
1301
+ #: inc/core/data.php:973
1302
  msgid "Tooltip window style"
1303
  msgstr ""
1304
 
1305
+ #: inc/core/data.php:978
1306
  msgid "Top"
1307
  msgstr ""
1308
 
1309
+ #: inc/core/data.php:979
1310
  msgid "Bottom"
1311
  msgstr ""
1312
 
1313
+ #: inc/core/data.php:984
1314
  msgid "Position"
1315
  msgstr ""
1316
 
1317
+ #: inc/core/data.php:985
1318
  msgid "Tooltip position"
1319
  msgstr ""
1320
 
1321
+ #: inc/core/data.php:990
1322
  msgid "Shadow"
1323
  msgstr ""
1324
 
1325
+ #: inc/core/data.php:991
1326
  msgid ""
1327
  "Add shadow to tooltip. This option is only works with basic styes, e.g. "
1328
  "blue, green etc."
1329
  msgstr ""
1330
 
1331
+ #: inc/core/data.php:996
1332
  msgid "Rounded corners"
1333
  msgstr ""
1334
 
1335
+ #: inc/core/data.php:997
1336
  msgid ""
1337
  "Use rounded for tooltip. This option is only works with basic styes, e.g. "
1338
  "blue, green etc."
1339
  msgstr ""
1340
 
1341
+ #: inc/core/data.php:1011
1342
  msgid "Font size"
1343
  msgstr ""
1344
 
1345
+ #: inc/core/data.php:1012
1346
  msgid "Tooltip font size"
1347
  msgstr ""
1348
 
1349
+ #: inc/core/data.php:1016
1350
  msgid "Tooltip title"
1351
  msgstr ""
1352
 
1353
+ #: inc/core/data.php:1017
1354
  msgid ""
1355
  "Enter title for tooltip window. Leave this field empty to hide the title"
1356
  msgstr ""
1357
 
1358
+ #: inc/core/data.php:1020 inc/core/shortcodes.php:508
1359
  msgid "Tooltip text"
1360
  msgstr ""
1361
 
1362
+ #: inc/core/data.php:1021
1363
  msgid "Tooltip content"
1364
  msgstr ""
1365
 
1366
+ #: inc/core/data.php:1022
1367
  msgid "Enter tooltip content here"
1368
  msgstr ""
1369
 
1370
+ #: inc/core/data.php:1027
1371
  msgid "Show and hide on mouse hover"
1372
  msgstr ""
1373
 
1374
+ #: inc/core/data.php:1028
1375
  msgid "Show and hide by mouse click"
1376
  msgstr ""
1377
 
1378
+ #: inc/core/data.php:1029
1379
  msgid "Always visible"
1380
  msgstr ""
1381
 
1382
+ #: inc/core/data.php:1032
1383
  msgid "Behavior"
1384
  msgstr ""
1385
 
1386
+ #: inc/core/data.php:1033
1387
  msgid "Select tooltip behavior"
1388
  msgstr ""
1389
 
1390
+ #: inc/core/data.php:1038
1391
  msgid "Close button"
1392
  msgstr ""
1393
 
1394
+ #: inc/core/data.php:1039
1395
  msgid "Show close button"
1396
  msgstr ""
1397
 
1398
+ #: inc/core/data.php:1047
1399
  msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
1400
  msgstr ""
1401
 
1402
+ #: inc/core/data.php:1048
1403
  msgid "Tooltip window with custom content"
1404
  msgstr ""
1405
 
1406
+ #: inc/core/data.php:1053
1407
  msgid "Private"
1408
  msgstr ""
1409
 
1410
+ #: inc/core/data.php:1063
1411
  msgid "Private note text"
1412
  msgstr ""
1413
 
1414
+ #: inc/core/data.php:1064
1415
  msgid "Private note for post authors"
1416
  msgstr ""
1417
 
1418
+ #: inc/core/data.php:1069
1419
  msgid "YouTube"
1420
  msgstr ""
1421
 
1422
+ #: inc/core/data.php:1076 inc/core/data.php:1128 inc/core/data.php:1253
1423
+ #: inc/core/data.php:1303 inc/core/data.php:1347 inc/core/data.php:1659
1424
+ #: inc/core/data.php:1756
1425
  msgid "Url"
1426
  msgstr ""
1427
 
1428
+ #: inc/core/data.php:1077 inc/core/data.php:1129
1429
  msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
1430
  msgstr ""
1431
 
1432
+ #: inc/core/data.php:1085 inc/core/data.php:1142 inc/core/data.php:1261
1433
+ #: inc/core/data.php:1312 inc/core/data.php:1356 inc/core/data.php:1453
1434
+ #: inc/core/data.php:1508 inc/core/data.php:1765 inc/core/data.php:1804
1435
+ #: inc/core/data.php:1888 inc/core/data.php:2007 inc/core/data.php:2145
1436
+ #: inc/core/data.php:2361
1437
  msgid "Width"
1438
  msgstr ""
1439
 
1440
+ #: inc/core/data.php:1086 inc/core/data.php:1143 inc/core/data.php:1262
1441
+ #: inc/core/data.php:1313 inc/core/data.php:1357 inc/core/data.php:1509
1442
  msgid "Player width"
1443
  msgstr ""
1444
 
1445
+ #: inc/core/data.php:1095 inc/core/data.php:1152 inc/core/data.php:1271
1446
+ #: inc/core/data.php:1322 inc/core/data.php:1366 inc/core/data.php:1518
1447
  msgid "Player height"
1448
  msgstr ""
1449
 
1450
+ #: inc/core/data.php:1100 inc/core/data.php:1157 inc/core/data.php:1276
1451
+ #: inc/core/data.php:1327 inc/core/data.php:1371 inc/core/data.php:1780
1452
+ #: inc/core/data.php:1819 inc/core/data.php:1901 inc/core/data.php:2022
1453
  msgid "Responsive"
1454
  msgstr ""
1455
 
1456
+ #: inc/core/data.php:1101 inc/core/data.php:1158 inc/core/data.php:1277
1457
+ #: inc/core/data.php:1328 inc/core/data.php:1372
1458
  msgid "Ignore width and height parameters and make player responsive"
1459
  msgstr ""
1460
 
1461
+ #: inc/core/data.php:1106 inc/core/data.php:1191 inc/core/data.php:1282
1462
+ #: inc/core/data.php:1377 inc/core/data.php:1459 inc/core/data.php:1529
1463
+ #: inc/core/data.php:1936 inc/core/data.php:2074
1464
  msgid "Autoplay"
1465
  msgstr ""
1466
 
1467
+ #: inc/core/data.php:1107 inc/core/data.php:1192 inc/core/data.php:1283
1468
  msgid "Play video automatically when page is loaded"
1469
  msgstr ""
1470
 
1471
+ #: inc/core/data.php:1115
1472
  msgid "YouTube video"
1473
  msgstr ""
1474
 
1475
+ #: inc/core/data.php:1121
1476
  msgid "YouTube Advanced"
1477
  msgstr ""
1478
 
1479
+ #: inc/core/data.php:1133
1480
  msgid "Playlist"
1481
  msgstr ""
1482
 
1483
+ #: inc/core/data.php:1134
1484
  msgid ""
1485
  "Value is a comma-separated list of video IDs to play. If you specify a "
1486
  "value, the first video that plays will be the VIDEO_ID specified in the URL "
1487
  "path, and the videos specified in the playlist parameter will play thereafter"
1488
  msgstr ""
1489
 
1490
+ #: inc/core/data.php:1163
1491
  msgid "0 - Hide controls"
1492
  msgstr ""
1493
 
1494
+ #: inc/core/data.php:1164
1495
  msgid "1 - Show controls"
1496
  msgstr ""
1497
 
1498
+ #: inc/core/data.php:1165
1499
  msgid "2 - Show controls when playback is started"
1500
  msgstr ""
1501
 
1502
+ #: inc/core/data.php:1168 inc/core/data.php:1523
1503
  msgid "Controls"
1504
  msgstr ""
1505
 
1506
+ #: inc/core/data.php:1169
1507
  msgid "This parameter indicates whether the video player controls will display"
1508
  msgstr ""
1509
 
1510
+ #: inc/core/data.php:1174
1511
  msgid "0 - Do not hide controls"
1512
  msgstr ""
1513
 
1514
+ #: inc/core/data.php:1175
1515
  msgid "1 - Hide all controls on mouse out"
1516
  msgstr ""
1517
 
1518
+ #: inc/core/data.php:1176
1519
  msgid "2 - Hide progress bar on mouse out"
1520
  msgstr ""
1521
 
1522
+ #: inc/core/data.php:1179
1523
  msgid "Autohide"
1524
  msgstr ""
1525
 
1526
+ #: inc/core/data.php:1180
1527
  msgid ""
1528
  "This parameter indicates whether the video controls will automatically hide "
1529
  "after a video begins playing"
1530
  msgstr ""
1531
 
1532
+ #: inc/core/data.php:1185
1533
  msgid "Show title bar"
1534
  msgstr ""
1535
 
1536
+ #: inc/core/data.php:1186
1537
  msgid ""
1538
  "If you set the parameter value to NO, then the player will not display "
1539
  "information like the video title and uploader before the video starts "
1540
  "playing."
1541
  msgstr ""
1542
 
1543
+ #: inc/core/data.php:1197 inc/core/data.php:1465 inc/core/data.php:1535
1544
  msgid "Loop"
1545
  msgstr ""
1546
 
1547
+ #: inc/core/data.php:1198
1548
  msgid ""
1549
  "Setting of YES will cause the player to play the initial video again and "
1550
  "again"
1551
  msgstr ""
1552
 
1553
+ #: inc/core/data.php:1203
1554
  msgid "Related videos"
1555
  msgstr ""
1556
 
1557
+ #: inc/core/data.php:1204
1558
  msgid ""
1559
  "This parameter indicates whether the player should show related videos when "
1560
  "playback of the initial video ends"
1561
  msgstr ""
1562
 
1563
+ #: inc/core/data.php:1209
1564
  msgid "Show full-screen button"
1565
  msgstr ""
1566
 
1567
+ #: inc/core/data.php:1210
1568
  msgid ""
1569
  "Setting this parameter to NO prevents the fullscreen button from displaying"
1570
  msgstr ""
1571
 
1572
+ #: inc/core/data.php:1216
1573
  msgid ""
1574
  "This parameter lets you use a YouTube player that does not show a YouTube "
1575
  "logo. Set the parameter value to YES to prevent the YouTube logo from "
1578
  "mouse pointer hovers over the player"
1579
  msgstr ""
1580
 
1581
+ #: inc/core/data.php:1221
1582
  msgid "Dark theme"
1583
  msgstr ""
1584
 
1585
+ #: inc/core/data.php:1222
1586
  msgid "Light theme"
1587
  msgstr ""
1588
 
1589
+ #: inc/core/data.php:1225 inc/core/data.php:2392
1590
  msgid "Theme"
1591
  msgstr ""
1592
 
1593
+ #: inc/core/data.php:1226
1594
  msgid ""
1595
  "This parameter indicates whether the embedded player will display player "
1596
  "controls (like a play button or volume control) within a dark or light "
1597
  "control bar"
1598
  msgstr ""
1599
 
1600
+ #: inc/core/data.php:1231
1601
+ msgid "Force HTTPS"
1602
+ msgstr ""
1603
+
1604
+ #: inc/core/data.php:1232
1605
+ msgid "Use HTTPS in player iframe"
1606
+ msgstr ""
1607
+
1608
+ #: inc/core/data.php:1240
1609
  msgid "YouTube video player with advanced settings"
1610
  msgstr ""
1611
 
1612
+ #: inc/core/data.php:1246
1613
  msgid "Vimeo"
1614
  msgstr ""
1615
 
1616
+ #: inc/core/data.php:1253
1617
  msgid "Url of Vimeo page with video"
1618
  msgstr ""
1619
 
1620
+ #: inc/core/data.php:1291
1621
  msgid "Vimeo video"
1622
  msgstr ""
1623
 
1624
+ #: inc/core/data.php:1297
1625
  msgid "Screenr"
1626
  msgstr ""
1627
 
1628
+ #: inc/core/data.php:1304
1629
  msgid "Url of Screenr page with video"
1630
  msgstr ""
1631
 
1632
+ #: inc/core/data.php:1336
1633
  msgid "Screenr video"
1634
  msgstr ""
1635
 
1636
+ #: inc/core/data.php:1341
1637
+ msgid "Dailymotion"
1638
+ msgstr ""
1639
+
1640
+ #: inc/core/data.php:1348
1641
+ msgid "Url of Dailymotion page with video"
1642
+ msgstr ""
1643
+
1644
+ #: inc/core/data.php:1378
1645
+ msgid ""
1646
+ "Start the playback of the video automatically after the player load. May not "
1647
+ "work on some mobile OS versions"
1648
+ msgstr ""
1649
+
1650
+ #: inc/core/data.php:1383
1651
+ msgid "Background color"
1652
+ msgstr ""
1653
+
1654
+ #: inc/core/data.php:1384
1655
+ msgid "HTML color of the background of controls elements"
1656
+ msgstr ""
1657
+
1658
+ #: inc/core/data.php:1389
1659
+ msgid "Foreground color"
1660
+ msgstr ""
1661
+
1662
+ #: inc/core/data.php:1390
1663
+ msgid "HTML color of the foreground of controls elements"
1664
+ msgstr ""
1665
+
1666
+ #: inc/core/data.php:1395
1667
+ msgid "Highlight color"
1668
+ msgstr ""
1669
+
1670
+ #: inc/core/data.php:1396
1671
+ msgid "HTML color of the controls elements' highlights"
1672
+ msgstr ""
1673
+
1674
+ #: inc/core/data.php:1401
1675
+ msgid "Show logo"
1676
+ msgstr ""
1677
+
1678
+ #: inc/core/data.php:1402
1679
+ msgid "Allows to hide or show the Dailymotion logo"
1680
+ msgstr ""
1681
+
1682
+ #: inc/core/data.php:1414
1683
+ msgid "Quality"
1684
+ msgstr ""
1685
+
1686
+ #: inc/core/data.php:1415
1687
+ msgid "Determines the quality that must be played by default if available"
1688
+ msgstr ""
1689
+
1690
+ #: inc/core/data.php:1420
1691
+ msgid "Show related videos"
1692
+ msgstr ""
1693
+
1694
+ #: inc/core/data.php:1421
1695
+ msgid "Show related videos at the end of the video"
1696
+ msgstr ""
1697
+
1698
+ #: inc/core/data.php:1426
1699
+ msgid "Show video info"
1700
+ msgstr ""
1701
+
1702
+ #: inc/core/data.php:1427
1703
+ msgid "Show videos info (title/author) on the start screen"
1704
+ msgstr ""
1705
+
1706
+ #: inc/core/data.php:1435
1707
+ msgid "Dailymotion video"
1708
+ msgstr ""
1709
+
1710
+ #: inc/core/data.php:1440
1711
  msgid "Audio"
1712
  msgstr ""
1713
 
1714
+ #: inc/core/data.php:1447 inc/core/data.php:1487
1715
  msgid "File"
1716
  msgstr ""
1717
 
1718
+ #: inc/core/data.php:1448
1719
  msgid "Audio file url. Supported formats: mp3, ogg"
1720
  msgstr ""
1721
 
1722
+ #: inc/core/data.php:1454
1723
  msgid ""
1724
  "Player width. You can specify width in percents and player will be "
1725
  "responsive. Example values: <b%value>200px</b>, <b%value>100&#37;</b>"
1726
  msgstr ""
1727
 
1728
+ #: inc/core/data.php:1460 inc/core/data.php:1530
1729
  msgid "Play file automatically when page is loaded"
1730
  msgstr ""
1731
 
1732
+ #: inc/core/data.php:1466 inc/core/data.php:1536
1733
  msgid "Repeat when playback is ended"
1734
  msgstr ""
1735
 
1736
+ #: inc/core/data.php:1474
1737
  msgid "Custom audio player"
1738
  msgstr ""
1739
 
1740
+ #: inc/core/data.php:1480
1741
  msgid "Video"
1742
  msgstr ""
1743
 
1744
+ #: inc/core/data.php:1488
1745
  msgid "Url to mp4/flv video-file"
1746
  msgstr ""
1747
 
1748
+ #: inc/core/data.php:1493
1749
  msgid "Poster"
1750
  msgstr ""
1751
 
1752
+ #: inc/core/data.php:1494
1753
  msgid "Url to poster image, that will be shown before playback"
1754
  msgstr ""
1755
 
1756
+ #: inc/core/data.php:1500
1757
  msgid "Player title"
1758
  msgstr ""
1759
 
1760
+ #: inc/core/data.php:1524
1761
  msgid "Show player controls (play/pause etc.) or not"
1762
  msgstr ""
1763
 
1764
+ #: inc/core/data.php:1544
1765
  msgid "Custom video player"
1766
  msgstr ""
1767
 
1768
+ #: inc/core/data.php:1550
1769
  msgid "Table"
1770
  msgstr ""
1771
 
1772
+ #: inc/core/data.php:1557
1773
  msgid "CSV file"
1774
  msgstr ""
1775
 
1776
+ #: inc/core/data.php:1558
1777
  msgid "Upload CSV file if you want to create HTML-table from file"
1778
  msgstr ""
1779
 
1780
+ #: inc/core/data.php:1566
1781
  msgid ""
1782
  "<table>\n"
1783
  "<tr>\n"
1791
  "</table>"
1792
  msgstr ""
1793
 
1794
+ #: inc/core/data.php:1567
1795
  msgid "Styled table from HTML or CSV file"
1796
  msgstr ""
1797
 
1798
+ #: inc/core/data.php:1572
1799
  msgid "Permalink"
1800
  msgstr ""
1801
 
1802
+ #: inc/core/data.php:1578 inc/core/data.php:2502
1803
  msgid "ID"
1804
  msgstr ""
1805
 
1806
+ #: inc/core/data.php:1579
1807
  msgid "Post or page ID"
1808
  msgstr ""
1809
 
1810
+ #: inc/core/data.php:1589
1811
  msgid "Link target. blank - link will be opened in new window/tab"
1812
  msgstr ""
1813
 
1814
+ #: inc/core/data.php:1598
1815
  msgid "Permalink to specified post/page"
1816
  msgstr ""
1817
 
1818
+ #: inc/core/data.php:1603
1819
  msgid "Members"
1820
  msgstr ""
1821
 
1822
+ #: inc/core/data.php:1608 inc/core/shortcodes.php:794
1823
  msgid "This content is for registered users only. Please %login%."
1824
  msgstr ""
1825
 
1826
+ #: inc/core/data.php:1609
1827
  msgid "Message"
1828
  msgstr ""
1829
 
1830
+ #: inc/core/data.php:1609
1831
  msgid "Message for not logged users"
1832
  msgstr ""
1833
 
1834
+ #: inc/core/data.php:1614
1835
  msgid "Box color"
1836
  msgstr ""
1837
 
1838
+ #: inc/core/data.php:1614
1839
  msgid "This color will applied only to box for not logged users"
1840
  msgstr ""
1841
 
1842
+ #: inc/core/data.php:1617 inc/core/shortcodes.php:797
1843
  msgid "login"
1844
  msgstr ""
1845
 
1846
+ #: inc/core/data.php:1618
1847
  msgid "Login link text"
1848
  msgstr ""
1849
 
1850
+ #: inc/core/data.php:1618
1851
  msgid "Text for the login link"
1852
  msgstr ""
1853
 
1854
+ #: inc/core/data.php:1622
1855
  msgid "Login link url"
1856
  msgstr ""
1857
 
1858
+ #: inc/core/data.php:1630
1859
  msgid "Content for logged members"
1860
  msgstr ""
1861
 
1862
+ #: inc/core/data.php:1631
1863
  msgid "Content for logged in members only"
1864
  msgstr ""
1865
 
1866
+ #: inc/core/data.php:1636
1867
  msgid "Guests"
1868
  msgstr ""
1869
 
1870
+ #: inc/core/data.php:1646
1871
  msgid "Content for guests"
1872
  msgstr ""
1873
 
1874
+ #: inc/core/data.php:1647
1875
  msgid "Content for guests only"
1876
  msgstr ""
1877
 
1878
+ #: inc/core/data.php:1652
1879
  msgid "RSS Feed"
1880
  msgstr ""
1881
 
1882
+ #: inc/core/data.php:1660
1883
  msgid "Url to RSS-feed"
1884
  msgstr ""
1885
 
1886
+ #: inc/core/data.php:1668 inc/core/data.php:1855 inc/core/data.php:1974
1887
+ #: inc/core/data.php:2112
1888
  msgid "Limit"
1889
  msgstr ""
1890
 
1891
+ #: inc/core/data.php:1668
1892
  msgid "Number of items to show"
1893
  msgstr ""
1894
 
1895
+ #: inc/core/data.php:1676
1896
  msgid "Feed grabber"
1897
  msgstr ""
1898
 
1899
+ #: inc/core/data.php:1681
1900
  msgid "Menu"
1901
  msgstr ""
1902
 
1903
+ #: inc/core/data.php:1688
1904
  msgid "Menu name"
1905
  msgstr ""
1906
 
1907
+ #: inc/core/data.php:1688
1908
  msgid "Custom menu name. Ex: Main menu"
1909
  msgstr ""
1910
 
1911
+ #: inc/core/data.php:1696
1912
  msgid "Custom menu by name"
1913
  msgstr ""
1914
 
1915
+ #: inc/core/data.php:1701
1916
  msgid "Sub pages"
1917
  msgstr ""
1918
 
1919
+ #: inc/core/data.php:1708 inc/core/data.php:1735
1920
  msgid "Depth"
1921
  msgstr ""
1922
 
1923
+ #: inc/core/data.php:1709
1924
  msgid "Max depth level of children pages"
1925
  msgstr ""
1926
 
1927
+ #: inc/core/data.php:1714
1928
  msgid "Parent ID"
1929
  msgstr ""
1930
 
1931
+ #: inc/core/data.php:1715
1932
  msgid "ID of the parent page. Leave blank to use current page"
1933
  msgstr ""
1934
 
1935
+ #: inc/core/data.php:1723
1936
  msgid "List of sub pages"
1937
  msgstr ""
1938
 
1939
+ #: inc/core/data.php:1728
1940
  msgid "Siblings"
1941
  msgstr ""
1942
 
1943
+ #: inc/core/data.php:1736
1944
  msgid "Max depth level"
1945
  msgstr ""
1946
 
1947
+ #: inc/core/data.php:1744
1948
  msgid "List of cureent page siblings"
1949
  msgstr ""
1950
 
1951
+ #: inc/core/data.php:1749
1952
  msgid "Document"
1953
  msgstr ""
1954
 
1955
+ #: inc/core/data.php:1757
1956
  msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
1957
  msgstr ""
1958
 
1959
+ #: inc/core/data.php:1766
1960
  msgid "Viewer width"
1961
  msgstr ""
1962
 
1963
+ #: inc/core/data.php:1775
1964
  msgid "Viewer height"
1965
  msgstr ""
1966
 
1967
+ #: inc/core/data.php:1781
1968
  msgid "Ignore width and height parameters and make viewer responsive"
1969
  msgstr ""
1970
 
1971
+ #: inc/core/data.php:1789
1972
  msgid "Document viewer by Google"
1973
  msgstr ""
1974
 
1975
+ #: inc/core/data.php:1794
1976
  msgid "Gmap"
1977
  msgstr ""
1978
 
1979
+ #: inc/core/data.php:1805
1980
  msgid "Map width"
1981
  msgstr ""
1982
 
1983
+ #: inc/core/data.php:1814
1984
  msgid "Map height"
1985
  msgstr ""
1986
 
1987
+ #: inc/core/data.php:1820
1988
  msgid "Ignore width and height parameters and make map responsive"
1989
  msgstr ""
1990
 
1991
+ #: inc/core/data.php:1825
1992
  msgid "Marker"
1993
  msgstr ""
1994
 
1995
+ #: inc/core/data.php:1826
1996
  msgid "Address for the marker. You can type it in any language"
1997
  msgstr ""
1998
 
1999
+ #: inc/core/data.php:1834
2000
  msgid "Maps by Google"
2001
  msgstr ""
2002
 
2003
+ #: inc/core/data.php:1839
2004
  msgid "Slider"
2005
  msgstr ""
2006
 
2007
+ #: inc/core/data.php:1846 inc/core/data.php:1965 inc/core/data.php:2103
2008
  msgid "Source"
2009
  msgstr ""
2010
 
2011
+ #: inc/core/data.php:1847 inc/core/data.php:1966 inc/core/data.php:2104
2012
  msgid ""
2013
  "Choose images source. You can use images from Media library or retrieve it "
2014
  "from posts (thumbnails) posted under specified blog category. You can also "
2015
  "pick any custom taxonomy"
2016
  msgstr ""
2017
 
2018
+ #: inc/core/data.php:1856 inc/core/data.php:1975 inc/core/data.php:2113
2019
  msgid ""
2020
  "Maximum number of image source posts (for recent posts, category and custom "
2021
  "taxonomy)"
2022
  msgstr ""
2023
 
2024
+ #: inc/core/data.php:1862 inc/core/data.php:1981 inc/core/data.php:2119
2025
  msgid "Full-size image"
2026
  msgstr ""
2027
 
2028
+ #: inc/core/data.php:1864 inc/core/data.php:1983 inc/core/data.php:2121
2029
  msgid "Slide link (added in media editor)"
2030
  msgstr ""
2031
 
2032
+ #: inc/core/data.php:1865 inc/core/data.php:1984 inc/core/data.php:2122
2033
  msgid "Attachment page"
2034
  msgstr ""
2035
 
2036
+ #: inc/core/data.php:1866 inc/core/data.php:1985 inc/core/data.php:2123
2037
  msgid "Post permalink"
2038
  msgstr ""
2039
 
2040
+ #: inc/core/data.php:1869 inc/core/data.php:1988 inc/core/data.php:2126
2041
  msgid "Links"
2042
  msgstr ""
2043
 
2044
+ #: inc/core/data.php:1870 inc/core/data.php:1989 inc/core/data.php:2127
2045
  msgid "Select which links will be used for images in this gallery"
2046
  msgstr ""
2047
 
2048
+ #: inc/core/data.php:1875 inc/core/data.php:1994 inc/core/data.php:2132
2049
  msgid "Same window"
2050
  msgstr ""
2051
 
2052
+ #: inc/core/data.php:1876 inc/core/data.php:1995 inc/core/data.php:2133
2053
  msgid "New window"
2054
  msgstr ""
2055
 
2056
+ #: inc/core/data.php:1879 inc/core/data.php:1998 inc/core/data.php:2136
2057
  msgid "Links target"
2058
  msgstr ""
2059
 
2060
+ #: inc/core/data.php:1880 inc/core/data.php:1999 inc/core/data.php:2137
2061
  msgid "Open links in"
2062
  msgstr ""
2063
 
2064
+ #: inc/core/data.php:1888
2065
  msgid "Slider width (in pixels)"
2066
  msgstr ""
2067
 
2068
+ #: inc/core/data.php:1896
2069
  msgid "Slider height (in pixels)"
2070
  msgstr ""
2071
 
2072
+ #: inc/core/data.php:1902
2073
  msgid "Ignore width and height parameters and make slider responsive"
2074
  msgstr ""
2075
 
2076
+ #: inc/core/data.php:1907 inc/core/data.php:2045 inc/core/data.php:2163
2077
  msgid "Show titles"
2078
  msgstr ""
2079
 
2080
+ #: inc/core/data.php:1907
2081
  msgid "Display slide titles"
2082
  msgstr ""
2083
 
2084
+ #: inc/core/data.php:1912
2085
  msgid "Is slider centered on the page"
2086
  msgstr ""
2087
 
2088
+ #: inc/core/data.php:1917 inc/core/data.php:2055
2089
  msgid "Arrows"
2090
  msgstr ""
2091
 
2092
+ #: inc/core/data.php:1917 inc/core/data.php:2055
2093
  msgid "Show left and right arrows"
2094
  msgstr ""
2095
 
2096
+ #: inc/core/data.php:1922 inc/core/data.php:2060
2097
  msgid "Pagination"
2098
  msgstr ""
2099
 
2100
+ #: inc/core/data.php:1923 inc/core/data.php:2061
2101
  msgid "Show pagination"
2102
  msgstr ""
2103
 
2104
+ #: inc/core/data.php:1927 inc/core/data.php:2065
2105
  msgid "Mouse wheel control"
2106
  msgstr ""
2107
 
2108
+ #: inc/core/data.php:1928
2109
  msgid "Allow to change slides with mouse wheel"
2110
  msgstr ""
2111
 
2112
+ #: inc/core/data.php:1937
2113
  msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
2114
  msgstr ""
2115
 
2116
+ #: inc/core/data.php:1945 inc/core/data.php:2083
2117
  msgid "Speed"
2118
  msgstr ""
2119
 
2120
+ #: inc/core/data.php:1945 inc/core/data.php:2083
2121
  msgid "Specify animation speed"
2122
  msgstr ""
2123
 
2124
+ #: inc/core/data.php:1953
2125
  msgid "Customizable image slider"
2126
  msgstr ""
2127
 
2128
+ #: inc/core/data.php:1958
2129
  msgid "Carousel"
2130
  msgstr ""
2131
 
2132
+ #: inc/core/data.php:2008
2133
  msgid "Carousel width (in pixels)"
2134
  msgstr ""
2135
 
2136
+ #: inc/core/data.php:2017
2137
  msgid "Carousel height (in pixels)"
2138
  msgstr ""
2139
 
2140
+ #: inc/core/data.php:2023
2141
  msgid "Ignore width and height parameters and make carousel responsive"
2142
  msgstr ""
2143
 
2144
+ #: inc/core/data.php:2031
2145
  msgid "Items to show"
2146
  msgstr ""
2147
 
2148
+ #: inc/core/data.php:2032
2149
  msgid "How much carousel items is visible"
2150
  msgstr ""
2151
 
2152
+ #: inc/core/data.php:2039
2153
  msgid "Scroll number"
2154
  msgstr ""
2155
 
2156
+ #: inc/core/data.php:2040
2157
  msgid "How much items are scrolled in one transition"
2158
  msgstr ""
2159
 
2160
+ #: inc/core/data.php:2045
2161
  msgid "Display titles for each item"
2162
  msgstr ""
2163
 
2164
+ #: inc/core/data.php:2050
2165
  msgid "Is carousel centered on the page"
2166
  msgstr ""
2167
 
2168
+ #: inc/core/data.php:2066
2169
  msgid "Allow to rotate carousel with mouse wheel"
2170
  msgstr ""
2171
 
2172
+ #: inc/core/data.php:2075
2173
  msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
2174
  msgstr ""
2175
 
2176
+ #: inc/core/data.php:2091
2177
  msgid "Customizable image carousel"
2178
  msgstr ""
2179
 
2180
+ #: inc/core/data.php:2145
2181
  msgid "Single item width (in pixels)"
2182
  msgstr ""
2183
 
2184
+ #: inc/core/data.php:2153
2185
  msgid "Single item height (in pixels)"
2186
  msgstr ""
2187
 
2188
+ #: inc/core/data.php:2158
2189
  msgid "Never"
2190
  msgstr ""
2191
 
2192
+ #: inc/core/data.php:2159
2193
  msgid "On mouse over"
2194
  msgstr ""
2195
 
2196
+ #: inc/core/data.php:2160
2197
  msgid "Always"
2198
  msgstr ""
2199
 
2200
+ #: inc/core/data.php:2164
2201
  msgid "Title display mode"
2202
  msgstr ""
2203
 
2204
+ #: inc/core/data.php:2172
2205
  msgid "Customizable image gallery"
2206
  msgstr ""
2207
 
2208
+ #: inc/core/data.php:2177
2209
  msgid "Posts"
2210
  msgstr ""
2211
 
2212
+ #: inc/core/data.php:2182 inc/core/data.php:2609
2213
  msgid "Template"
2214
  msgstr ""
2215
 
2216
+ #: inc/core/data.php:2183
2217
  msgid ""
2218
  "<b>Do not change this field value if you do not understand description below."
2219
  "</b><br/>Relative path to the template file. Default templates is placed "
2226
  "%value>templates/list-loop.php</b> - unordered list with posts titles"
2227
  msgstr ""
2228
 
2229
+ #: inc/core/data.php:2187
2230
  msgid "Post ID's"
2231
  msgstr ""
2232
 
2233
+ #: inc/core/data.php:2188
2234
  msgid "Enter comma separated ID's of the posts that you want to show"
2235
  msgstr ""
2236
 
2237
+ #: inc/core/data.php:2196
2238
  msgid "Posts per page"
2239
  msgstr ""
2240
 
2241
+ #: inc/core/data.php:2197
2242
  msgid ""
2243
  "Specify number of posts that you want to show. Enter -1 to get all posts"
2244
  msgstr ""
2245
 
2246
+ #: inc/core/data.php:2204
2247
  msgid "Post types"
2248
  msgstr ""
2249
 
2250
+ #: inc/core/data.php:2205
2251
  msgid "Select post types. Hold Ctrl key to select multiple post types"
2252
  msgstr ""
2253
 
2254
+ #: inc/core/data.php:2211 inc/core/generator-views.php:123
2255
  msgid "Taxonomy"
2256
  msgstr ""
2257
 
2258
+ #: inc/core/data.php:2212
2259
  msgid "Select taxonomy to show posts from"
2260
  msgstr ""
2261
 
2262
+ #: inc/core/data.php:2219
2263
  msgid "Terms"
2264
  msgstr ""
2265
 
2266
+ #: inc/core/data.php:2220
2267
  msgid "Select terms to show posts from"
2268
  msgstr ""
2269
 
2270
+ #: inc/core/data.php:2225
2271
  msgid "Taxonomy term operator"
2272
  msgstr ""
2273
 
2274
+ #: inc/core/data.php:2226
2275
  msgid ""
2276
  "IN - posts that have any of selected categories terms<br/>NOT IN - posts "
2277
  "that is does not have any of selected terms<br/>AND - posts that have all "
2278
  "selected terms"
2279
  msgstr ""
2280
 
2281
+ #: inc/core/data.php:2233
2282
  msgid "Authors"
2283
  msgstr ""
2284
 
2285
+ #: inc/core/data.php:2234
2286
  msgid "Choose the authors whose posts you want to show"
2287
  msgstr ""
2288
 
2289
+ #: inc/core/data.php:2238
2290
  msgid "Meta key"
2291
  msgstr ""
2292
 
2293
+ #: inc/core/data.php:2239
2294
  msgid "Enter meta key name to show posts that have this key"
2295
  msgstr ""
2296
 
2297
+ #: inc/core/data.php:2246
2298
  msgid "Offset"
2299
  msgstr ""
2300
 
2301
+ #: inc/core/data.php:2247
2302
  msgid "Specify offset to start posts loop not from first post"
2303
  msgstr ""
2304
 
2305
+ #: inc/core/data.php:2252
2306
  msgid "Descending"
2307
  msgstr ""
2308
 
2309
+ #: inc/core/data.php:2253
2310
  msgid "Ascending"
2311
  msgstr ""
2312
 
2313
+ #: inc/core/data.php:2256
2314
  msgid "Order"
2315
  msgstr ""
2316
 
2317
+ #: inc/core/data.php:2257
2318
  msgid "Posts order"
2319
  msgstr ""
2320
 
2321
+ #: inc/core/data.php:2263 inc/core/data.php:2480 inc/core/data.php:2553
2322
+ #: inc/core/data.php:2595
2323
  msgid "Post ID"
2324
  msgstr ""
2325
 
2326
+ #: inc/core/data.php:2264 inc/core/data.php:2554
2327
  msgid "Post author"
2328
  msgstr ""
2329
 
2330
+ #: inc/core/data.php:2265 inc/core/data.php:2558
2331
  msgid "Post title"
2332
  msgstr ""
2333
 
2334
+ #: inc/core/data.php:2266
2335
  msgid "Post slug"
2336
  msgstr ""
2337
 
2338
+ #: inc/core/data.php:2267
2339
  msgid "Date"
2340
  msgstr ""
2341
 
2342
+ #: inc/core/data.php:2267
2343
  msgid "Last modified date"
2344
  msgstr ""
2345
 
2346
+ #: inc/core/data.php:2268 inc/core/data.php:2278 inc/core/data.php:2567
2347
  msgid "Post parent"
2348
  msgstr ""
2349
 
2350
+ #: inc/core/data.php:2269
2351
  msgid "Random"
2352
  msgstr ""
2353
 
2354
+ #: inc/core/data.php:2269
2355
  msgid "Comments number"
2356
  msgstr ""
2357
 
2358
+ #: inc/core/data.php:2270 inc/core/data.php:2569
2359
  msgid "Menu order"
2360
  msgstr ""
2361
 
2362
+ #: inc/core/data.php:2270
2363
  msgid "Meta key values"
2364
  msgstr ""
2365
 
2366
+ #: inc/core/data.php:2273
2367
  msgid "Order by"
2368
  msgstr ""
2369
 
2370
+ #: inc/core/data.php:2274
2371
  msgid "Order posts by"
2372
  msgstr ""
2373
 
2374
+ #: inc/core/data.php:2279
2375
  msgid "Show childrens of entered post (enter post ID)"
2376
  msgstr ""
2377
 
2378
+ #: inc/core/data.php:2284
2379
  msgid "Published"
2380
  msgstr ""
2381
 
2382
+ #: inc/core/data.php:2285
2383
  msgid "Pending"
2384
  msgstr ""
2385
 
2386
+ #: inc/core/data.php:2286
2387
  msgid "Draft"
2388
  msgstr ""
2389
 
2390
+ #: inc/core/data.php:2287
2391
  msgid "Auto-draft"
2392
  msgstr ""
2393
 
2394
+ #: inc/core/data.php:2288
2395
  msgid "Future post"
2396
  msgstr ""
2397
 
2398
+ #: inc/core/data.php:2289
2399
  msgid "Private post"
2400
  msgstr ""
2401
 
2402
+ #: inc/core/data.php:2290
2403
  msgid "Inherit"
2404
  msgstr ""
2405
 
2406
+ #: inc/core/data.php:2291
2407
  msgid "Trashed"
2408
  msgstr ""
2409
 
2410
+ #: inc/core/data.php:2292 inc/core/data.php:2376
2411
  msgid "Any"
2412
  msgstr ""
2413
 
2414
+ #: inc/core/data.php:2295 inc/core/data.php:2560
2415
  msgid "Post status"
2416
  msgstr ""
2417
 
2418
+ #: inc/core/data.php:2296
2419
  msgid "Show only posts with selected status"
2420
  msgstr ""
2421
 
2422
+ #: inc/core/data.php:2301
2423
  msgid "Ignore sticky"
2424
  msgstr ""
2425
 
2426
+ #: inc/core/data.php:2302
2427
  msgid "Select Yes to ignore posts that is sticked"
2428
  msgstr ""
2429
 
2430
+ #: inc/core/data.php:2305
2431
  msgid "Custom posts query with customizable template"
2432
  msgstr ""
2433
 
2434
+ #: inc/core/data.php:2310
2435
  msgid "Dummy text"
2436
  msgstr ""
2437
 
2438
+ #: inc/core/data.php:2317
2439
  msgid "Paragraphs"
2440
  msgstr ""
2441
 
2442
+ #: inc/core/data.php:2318
2443
  msgid "Words"
2444
  msgstr ""
2445
 
2446
+ #: inc/core/data.php:2319
2447
  msgid "Bytes"
2448
  msgstr ""
2449
 
2450
+ #: inc/core/data.php:2322
2451
  msgid "What"
2452
  msgstr ""
2453
 
2454
+ #: inc/core/data.php:2323
2455
  msgid "What to generate"
2456
  msgstr ""
2457
 
2458
+ #: inc/core/data.php:2331
2459
  msgid "Amount"
2460
  msgstr ""
2461
 
2462
+ #: inc/core/data.php:2332
2463
  msgid ""
2464
  "How many items (paragraphs or words) to generate. Minimum words amount is 5"
2465
  msgstr ""
2466
 
2467
+ #: inc/core/data.php:2337
2468
  msgid "Cache"
2469
  msgstr ""
2470
 
2471
+ #: inc/core/data.php:2338
2472
  msgid ""
2473
  "Generated text will be cached. Be careful with this option. If you disable "
2474
  "it and insert many dummy_text shortcodes the page load time will be highly "
2475
  "increased"
2476
  msgstr ""
2477
 
2478
+ #: inc/core/data.php:2346
2479
  msgid "Text placeholder"
2480
  msgstr ""
2481
 
2482
+ #: inc/core/data.php:2351 inc/core/shortcodes.php:1302
2483
  msgid "Dummy image"
2484
  msgstr ""
2485
 
2486
+ #: inc/core/data.php:2362
2487
  msgid "Image width"
2488
  msgstr ""
2489
 
2490
+ #: inc/core/data.php:2371
2491
  msgid "Image height"
2492
  msgstr ""
2493
 
2494
+ #: inc/core/data.php:2377
2495
  msgid "Abstract"
2496
  msgstr ""
2497
 
2498
+ #: inc/core/data.php:2378
2499
  msgid "Animals"
2500
  msgstr ""
2501
 
2502
+ #: inc/core/data.php:2379
2503
  msgid "Business"
2504
  msgstr ""
2505
 
2506
+ #: inc/core/data.php:2380
2507
  msgid "Cats"
2508
  msgstr ""
2509
 
2510
+ #: inc/core/data.php:2381
2511
  msgid "City"
2512
  msgstr ""
2513
 
2514
+ #: inc/core/data.php:2382
2515
  msgid "Food"
2516
  msgstr ""
2517
 
2518
+ #: inc/core/data.php:2383
2519
  msgid "Night life"
2520
  msgstr ""
2521
 
2522
+ #: inc/core/data.php:2384
2523
  msgid "Fashion"
2524
  msgstr ""
2525
 
2526
+ #: inc/core/data.php:2385
2527
  msgid "People"
2528
  msgstr ""
2529
 
2530
+ #: inc/core/data.php:2386
2531
  msgid "Nature"
2532
  msgstr ""
2533
 
2534
+ #: inc/core/data.php:2387
2535
  msgid "Sports"
2536
  msgstr ""
2537
 
2538
+ #: inc/core/data.php:2388
2539
  msgid "Technics"
2540
  msgstr ""
2541
 
2542
+ #: inc/core/data.php:2389
2543
  msgid "Transport"
2544
  msgstr ""
2545
 
2546
+ #: inc/core/data.php:2393
2547
  msgid "Select the theme for this image"
2548
  msgstr ""
2549
 
2550
+ #: inc/core/data.php:2401
2551
  msgid "Image placeholder with random image"
2552
  msgstr ""
2553
 
2554
+ #: inc/core/data.php:2406 inc/core/data.php:2414
2555
  msgid "Animation"
2556
  msgstr ""
2557
 
2558
+ #: inc/core/data.php:2415
2559
  msgid "Select animation type"
2560
  msgstr ""
2561
 
2562
+ #: inc/core/data.php:2423
2563
  msgid "Duration"
2564
  msgstr ""
2565
 
2566
+ #: inc/core/data.php:2424
2567
  msgid "Animation duration (seconds)"
2568
  msgstr ""
2569
 
2570
+ #: inc/core/data.php:2432
2571
  msgid "Delay"
2572
  msgstr ""
2573
 
2574
+ #: inc/core/data.php:2433
2575
  msgid "Animation delay (seconds)"
2576
  msgstr ""
2577
 
2578
+ #: inc/core/data.php:2438
2579
  msgid "Inline"
2580
  msgstr ""
2581
 
2582
+ #: inc/core/data.php:2439
2583
  msgid ""
2584
  "This parameter determines what HTML tag will be used for animation wrapper. "
2585
  "Turn this option to YES and animated element will be wrapped in SPAN instead "
2586
  "of DIV. Useful for inline animations, like buttons"
2587
  msgstr ""
2588
 
2589
+ #: inc/core/data.php:2447
2590
  msgid "Animated content"
2591
  msgstr ""
2592
 
2593
+ #: inc/core/data.php:2448
2594
  msgid "Wrapper for animation. Any nested element will be animated"
2595
  msgstr ""
2596
 
2597
+ #: inc/core/data.php:2454
2598
  msgid "Meta"
2599
  msgstr ""
2600
 
2601
+ #: inc/core/data.php:2460
2602
  msgid "Key"
2603
  msgstr ""
2604
 
2605
+ #: inc/core/data.php:2461
2606
  msgid "Meta key name"
2607
  msgstr ""
2608
 
2609
+ #: inc/core/data.php:2466 inc/core/data.php:2518 inc/core/data.php:2581
2610
  msgid "This text will be shown if data is not found"
2611
  msgstr ""
2612
 
2613
+ #: inc/core/data.php:2470 inc/core/data.php:2522 inc/core/data.php:2585
2614
  msgid "Before"
2615
  msgstr ""
2616
 
2617
+ #: inc/core/data.php:2471 inc/core/data.php:2523 inc/core/data.php:2586
2618
  msgid "This content will be shown before the value"
2619
  msgstr ""
2620
 
2621
+ #: inc/core/data.php:2475 inc/core/data.php:2527 inc/core/data.php:2590
2622
  msgid "After"
2623
  msgstr ""
2624
 
2625
+ #: inc/core/data.php:2476 inc/core/data.php:2528 inc/core/data.php:2591
2626
  msgid "This content will be shown after the value"
2627
  msgstr ""
2628
 
2629
+ #: inc/core/data.php:2481 inc/core/data.php:2596
2630
  msgid ""
2631
  "You can specify custom post ID. Leave this field empty to use an ID of the "
2632
  "current post. Current post ID may not work in Live Preview mode"
2633
  msgstr ""
2634
 
2635
+ #: inc/core/data.php:2485 inc/core/data.php:2537 inc/core/data.php:2600
2636
  msgid "Filter"
2637
  msgstr ""
2638
 
2639
+ #: inc/core/data.php:2486 inc/core/data.php:2538 inc/core/data.php:2601
2640
  msgid ""
2641
  "You can apply custom filter to the retrieved value. Enter here function "
2642
  "name. Your function must accept one argument and return modified value. "
2643
  "Example function: "
2644
  msgstr ""
2645
 
2646
+ #: inc/core/data.php:2489
2647
  msgid "Post meta"
2648
  msgstr ""
2649
 
2650
+ #: inc/core/data.php:2494
2651
  msgid "User"
2652
  msgstr ""
2653
 
2654
+ #: inc/core/data.php:2501
2655
  msgid "Display name"
2656
  msgstr ""
2657
 
2658
+ #: inc/core/data.php:2503
2659
  msgid "Login"
2660
  msgstr ""
2661
 
2662
+ #: inc/core/data.php:2504
2663
  msgid "Nice name"
2664
  msgstr ""
2665
 
2666
+ #: inc/core/data.php:2505
2667
  msgid "Email"
2668
  msgstr ""
2669
 
2670
+ #: inc/core/data.php:2506
2671
  msgid "URL"
2672
  msgstr ""
2673
 
2674
+ #: inc/core/data.php:2507
2675
  msgid "Registered"
2676
  msgstr ""
2677
 
2678
+ #: inc/core/data.php:2508
2679
  msgid "Activation key"
2680
  msgstr ""
2681
 
2682
+ #: inc/core/data.php:2509
2683
  msgid "Status"
2684
  msgstr ""
2685
 
2686
+ #: inc/core/data.php:2512 inc/core/data.php:2575
2687
  msgid "Field"
2688
  msgstr ""
2689
 
2690
+ #: inc/core/data.php:2513
2691
  msgid "User data field name"
2692
  msgstr ""
2693
 
2694
+ #: inc/core/data.php:2532
2695
  msgid "User ID"
2696
  msgstr ""
2697
 
2698
+ #: inc/core/data.php:2533
2699
  msgid ""
2700
  "You can specify custom user ID. Leave this field empty to use an ID of the "
2701
  "current user"
2702
  msgstr ""
2703
 
2704
+ #: inc/core/data.php:2541
2705
  msgid "User data"
2706
  msgstr ""
2707
 
2708
+ #: inc/core/data.php:2546
2709
  msgid "Post"
2710
  msgstr ""
2711
 
2712
+ #: inc/core/data.php:2555 inc/core/data.php:2556
2713
  msgid "Post date"
2714
  msgstr ""
2715
 
2716
+ #: inc/core/data.php:2557
2717
  msgid "Post content"
2718
  msgstr ""
2719
 
2720
+ #: inc/core/data.php:2559
2721
  msgid "Post excerpt"
2722
  msgstr ""
2723
 
2724
+ #: inc/core/data.php:2561
2725
  msgid "Comment status"
2726
  msgstr ""
2727
 
2728
+ #: inc/core/data.php:2562
2729
  msgid "Ping status"
2730
  msgstr ""
2731
 
2732
+ #: inc/core/data.php:2563
2733
  msgid "Post name"
2734
  msgstr ""
2735
 
2736
+ #: inc/core/data.php:2564 inc/core/data.php:2565
2737
  msgid "Post modified"
2738
  msgstr ""
2739
 
2740
+ #: inc/core/data.php:2566
2741
  msgid "Filtered post content"
2742
  msgstr ""
2743
 
2744
+ #: inc/core/data.php:2568
2745
  msgid "GUID"
2746
  msgstr ""
2747
 
2748
+ #: inc/core/data.php:2570
2749
  msgid "Post type"
2750
  msgstr ""
2751
 
2752
+ #: inc/core/data.php:2571
2753
  msgid "Post mime type"
2754
  msgstr ""
2755
 
2756
+ #: inc/core/data.php:2572
2757
  msgid "Comment count"
2758
  msgstr ""
2759
 
2760
+ #: inc/core/data.php:2576
2761
  msgid "Post data field name"
2762
  msgstr ""
2763
 
2764
+ #: inc/core/data.php:2604
2765
  msgid "Post data"
2766
  msgstr ""
2767
 
2768
+ #: inc/core/data.php:2615
2769
  msgid "Template name"
2770
  msgstr ""
2771
 
2772
+ #: inc/core/data.php:2616
2773
  #, php-format
2774
  msgid ""
2775
  "Use template file name (with optional .php extension). If you need to use "
2777
  "%s"
2778
  msgstr ""
2779
 
2780
+ #: inc/core/data.php:2619
2781
  msgid "Theme template"
2782
  msgstr ""
2783
 
2933
  msgid "All shortcodes"
2934
  msgstr ""
2935
 
2936
+ #: inc/core/generator.php:153
2937
+ msgid "Examples of use"
2938
+ msgstr ""
2939
+
2940
+ #: inc/core/generator.php:170
2941
  msgid "Click to set this value"
2942
  msgstr ""
2943
 
2944
+ #: inc/core/generator.php:194
2945
  msgid "Preview"
2946
  msgstr ""
2947
 
2948
+ #: inc/core/generator.php:203 inc/core/tools.php:882
2949
  msgid "Access denied"
2950
  msgstr ""
2951
 
2952
+ #: inc/core/generator.php:238
2953
  msgid "Presets"
2954
  msgstr ""
2955
 
2956
+ #: inc/core/generator.php:241
2957
  msgid "Save current settings as preset"
2958
  msgstr ""
2959
 
2960
+ #: inc/core/generator.php:270 inc/core/generator.php:273
2961
  msgid "Presets not found"
2962
  msgstr ""
2963
 
2964
  #: inc/core/load.php:30 inc/core/load.php:104 inc/core/load.php:113
2965
+ #: inc/core/load.php:127 inc/core/load.php:139 inc/core/tools.php:894
2966
  #: inc/core/widget.php:14 inc/core/widget.php:40
2967
  msgid "Shortcodes Ultimate"
2968
  msgstr ""
3081
  msgstr ""
3082
 
3083
  #: inc/core/shortcodes.php:561 inc/core/shortcodes.php:565
3084
+ #: inc/core/shortcodes.php:599 inc/core/shortcodes.php:603
3085
+ #: inc/core/shortcodes.php:632 inc/core/shortcodes.php:636
3086
+ #: inc/core/shortcodes.php:660 inc/core/shortcodes.php:664
3087
+ #: inc/core/shortcodes.php:692 inc/core/shortcodes.php:696
3088
+ #: inc/core/shortcodes.php:719 inc/core/shortcodes.php:726
3089
+ #: inc/core/shortcodes.php:748 inc/core/shortcodes.php:753
3090
  msgid "please specify correct url"
3091
  msgstr ""
3092
 
3093
+ #: inc/core/shortcodes.php:884
3094
  msgid "This menu doesn't exists, or has no elements"
3095
  msgstr ""
3096
 
3097
+ #: inc/core/shortcodes.php:990 inc/core/shortcodes.php:1073
3098
+ #: inc/core/shortcodes.php:1128
3099
  msgid "images not found"
3100
  msgstr ""
3101
 
3102
+ #: inc/core/shortcodes.php:1264
3103
  msgid "template not found"
3104
  msgstr ""
3105
 
3106
+ #: inc/core/shortcodes.php:1342 inc/core/shortcodes.php:1392
3107
  msgid "post ID is incorrect"
3108
  msgstr ""
3109
 
3110
+ #: inc/core/shortcodes.php:1344
3111
  msgid "please specify meta key name"
3112
  msgstr ""
3113
 
3114
+ #: inc/core/shortcodes.php:1365
3115
  msgid "password field is not allowed"
3116
  msgstr ""
3117
 
3118
+ #: inc/core/shortcodes.php:1369
3119
  msgid "user ID is incorrect"
3120
  msgstr ""
3121
 
3122
+ #: inc/core/shortcodes.php:1408
3123
  msgid "please specify template name"
3124
  msgstr ""
3125
 
3126
+ #: inc/core/tools.php:801
3127
  msgid "Example code does not found, please check it later"
3128
  msgstr ""
3129
 
3130
+ #: inc/core/tools.php:817
3131
  msgid "Get the code"
3132
  msgstr ""
3133
 
3134
+ #: inc/core/tools.php:891
3135
  msgid "Slide link"
3136
  msgstr ""
3137
 
3138
+ #: inc/core/tools.php:894
3139
  msgid ""
3140
  "Use this field to add custom links to slides used with Slider, Carousel and "
3141
  "Custom Gallery shortcodes"
readme.txt CHANGED
@@ -61,7 +61,7 @@ With this plugin you can easily create tabs, buttons, boxes, different sliders,
61
  * Fr, [Nicolas Leclerc](http://etic-studio.fr/)
62
  * Gr, [Kleanthis Manolopoulos](mailto:akis_manolopoulos_at_hotmail_dot_com)
63
  * Ja, [Stranger](#)
64
- * Unforunately old translations is incompatible with current version
65
 
66
  Have a translation? [Contact me](http://gndev.info/feedback/)
67
 
@@ -106,6 +106,12 @@ Upgrade normally
106
 
107
  == Changelog ==
108
 
 
 
 
 
 
 
109
  = 4.7.0 =
110
  * Long-awaited feature: slider, carousel and custom_gallery links can now be open with lightbox
111
  * Long-awaited feature: custom links in slider, carousel and custom_gallery shortcodes
61
  * Fr, [Nicolas Leclerc](http://etic-studio.fr/)
62
  * Gr, [Kleanthis Manolopoulos](mailto:akis_manolopoulos_at_hotmail_dot_com)
63
  * Ja, [Stranger](#)
64
+ * Sk, [Patrik Žec (PATWIST)](http://patwist.com/)
65
 
66
  Have a translation? [Contact me](http://gndev.info/feedback/)
67
 
106
 
107
  == Changelog ==
108
 
109
+ = 4.7.1 =
110
+ * Slovak language
111
+ * New shortcode [dailymotion]
112
+ * YouTube (advanced) can now use https protocol
113
+ * Additional help notes in Shortcode Generator
114
+
115
  = 4.7.0 =
116
  * Long-awaited feature: slider, carousel and custom_gallery links can now be open with lightbox
117
  * Long-awaited feature: custom links in slider, carousel and custom_gallery shortcodes
shortcodes-ultimate.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Shortcodes Ultimate
4
  Plugin URI: http://gndev.info/shortcodes-ultimate/
5
- Version: 4.7.0
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Supercharge your WordPress theme with mega pack of shortcodes
@@ -13,7 +13,7 @@
13
 
14
  // Define plugin file constants
15
  define( 'SU_PLUGIN_FILE', __FILE__ );
16
- define( 'SU_PLUGIN_VERSION', '4.7.0' );
17
  define( 'SU_ENABLE_CACHE', true );
18
 
19
  // Includes
2
  /*
3
  Plugin Name: Shortcodes Ultimate
4
  Plugin URI: http://gndev.info/shortcodes-ultimate/
5
+ Version: 4.7.1
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Supercharge your WordPress theme with mega pack of shortcodes
13
 
14
  // Define plugin file constants
15
  define( 'SU_PLUGIN_FILE', __FILE__ );
16
+ define( 'SU_PLUGIN_VERSION', '4.7.1' );
17
  define( 'SU_ENABLE_CACHE', true );
18
 
19
  // Includes