Version Description
Be careful! This is a great update and completely new code! Don't forget, you can always install old version.
Upgrade normally via your Wordpress admin -> Plugins panel.
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 4.1.0 |
Comparing to | |
See all releases |
Code changes from version 4.0.9 to 4.1.0
- assets/css/content-shortcodes.css +1 -0
- inc/core/class.data.php +16 -6
- inc/core/class.generator.php +1 -1
- inc/core/shortcodes.php +11 -4
- inc/core/tools.php +1 -1
- inc/vendor/class.sunrise-framework.php +290 -288
- inc/views/about.php +1 -0
- languages/su-ru_RU.mo +0 -0
- languages/su-ru_RU.po +468 -465
- readme.txt +11 -13
- shortcodes-ultimate.php +1 -1
assets/css/content-shortcodes.css
CHANGED
@@ -226,6 +226,7 @@
|
|
226 |
-webkit-transition: all .2s;
|
227 |
}
|
228 |
.su-button-wide { display: block }
|
|
|
229 |
.su-button span {
|
230 |
display: block !important;
|
231 |
text-decoration: none !important;
|
226 |
-webkit-transition: all .2s;
|
227 |
}
|
228 |
.su-button-wide { display: block }
|
229 |
+
.su-button-center { text-align: center; }
|
230 |
.su-button span {
|
231 |
display: block !important;
|
232 |
text-decoration: none !important;
|
inc/core/class.data.php
CHANGED
@@ -106,7 +106,7 @@ class Shortcodes_Ultimate_Data {
|
|
106 |
)
|
107 |
),
|
108 |
'usage' => '[tabs style="default"] [tab title="Tab name"] Tab content [/tab] [/tabs]',
|
109 |
-
'content' => __( "[
|
110 |
'desc' => __( 'Tabs container', 'su' )
|
111 |
),
|
112 |
// tab
|
@@ -409,7 +409,8 @@ class Shortcodes_Ultimate_Data {
|
|
409 |
)
|
410 |
),
|
411 |
'usage' => '[row]<br/>[column size="1/2"] 50% [/column]<br/>[column size="1/4"] 25% [/column]<br/>[column size="1/4"] 25% [/column]<br/>[/row]',
|
412 |
-
'content' => __( "[
|
|
|
413 |
),
|
414 |
// column
|
415 |
'column' => array(
|
@@ -543,6 +544,11 @@ class Shortcodes_Ultimate_Data {
|
|
543 |
'default' => 'no',
|
544 |
'name' => __( 'Fluid', 'su' ), 'desc' => __( 'Fluid buttons has 100% width', 'su' )
|
545 |
),
|
|
|
|
|
|
|
|
|
|
|
546 |
'radius' => array(
|
547 |
'type' => 'select',
|
548 |
'values' => array( 'auto', 'round', '0', '5', '10', '20' ),
|
@@ -742,7 +748,7 @@ class Shortcodes_Ultimate_Data {
|
|
742 |
)
|
743 |
),
|
744 |
'usage' => '[lightbox src="http://example.com/" type="iframe"] Open example.com [/lightbox]',
|
745 |
-
'content' => __( '[
|
746 |
'desc' => __( 'Lightbox window with custom content', 'su' )
|
747 |
),
|
748 |
// private
|
@@ -757,7 +763,9 @@ class Shortcodes_Ultimate_Data {
|
|
757 |
'desc' => __( 'Extra CSS class', 'su' )
|
758 |
)
|
759 |
),
|
760 |
-
'usage' => '[private] Private content [/private]',
|
|
|
|
|
761 |
),
|
762 |
// youtube
|
763 |
'youtube' => array(
|
@@ -1058,7 +1066,8 @@ class Shortcodes_Ultimate_Data {
|
|
1058 |
)
|
1059 |
),
|
1060 |
'usage' => '[permalink id=52]<br/>[permalink id="52" target="blank"] Content [/permalink]',
|
1061 |
-
'content' => '',
|
|
|
1062 |
),
|
1063 |
// members
|
1064 |
'members' => array(
|
@@ -1089,7 +1098,8 @@ class Shortcodes_Ultimate_Data {
|
|
1089 |
'desc' => __( 'Extra CSS class', 'su' )
|
1090 |
)
|
1091 |
),
|
1092 |
-
'usage' => '[members style="default"] Content for logged members [/members]',
|
|
|
1093 |
'desc' => __( 'Content for logged in members only', 'su' )
|
1094 |
),
|
1095 |
// guests
|
106 |
)
|
107 |
),
|
108 |
'usage' => '[tabs style="default"] [tab title="Tab name"] Tab content [/tab] [/tabs]',
|
109 |
+
'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' ),
|
110 |
'desc' => __( 'Tabs container', 'su' )
|
111 |
),
|
112 |
// tab
|
409 |
)
|
410 |
),
|
411 |
'usage' => '[row]<br/>[column size="1/2"] 50% [/column]<br/>[column size="1/4"] 25% [/column]<br/>[column size="1/4"] 25% [/column]<br/>[/row]',
|
412 |
+
'content' => __( "[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n[%prefix_column size=\"1/3\"]Content[/%prefix_column]", 'su' ),
|
413 |
+
'desc' => __( 'Row for flexible columns', 'su' )
|
414 |
),
|
415 |
// column
|
416 |
'column' => array(
|
544 |
'default' => 'no',
|
545 |
'name' => __( 'Fluid', 'su' ), 'desc' => __( 'Fluid buttons has 100% width', 'su' )
|
546 |
),
|
547 |
+
'center' => array(
|
548 |
+
'type' => 'switch',
|
549 |
+
'default' => 'no',
|
550 |
+
'name' => __( 'Centered', 'su' ), 'desc' => __( 'Is button centered on the page', 'su' )
|
551 |
+
),
|
552 |
'radius' => array(
|
553 |
'type' => 'select',
|
554 |
'values' => array( 'auto', 'round', '0', '5', '10', '20' ),
|
748 |
)
|
749 |
),
|
750 |
'usage' => '[lightbox src="http://example.com/" type="iframe"] Open example.com [/lightbox]',
|
751 |
+
'content' => __( '[%prefix_button] Click Here to Watch the Video [/%prefix_button]', 'su' ),
|
752 |
'desc' => __( 'Lightbox window with custom content', 'su' )
|
753 |
),
|
754 |
// private
|
763 |
'desc' => __( 'Extra CSS class', 'su' )
|
764 |
)
|
765 |
),
|
766 |
+
'usage' => '[private] Private content [/private]',
|
767 |
+
'content' => __( 'Private note text', 'su' ),
|
768 |
+
'desc' => __( 'Private note for post authors', 'su' )
|
769 |
),
|
770 |
// youtube
|
771 |
'youtube' => array(
|
1066 |
)
|
1067 |
),
|
1068 |
'usage' => '[permalink id=52]<br/>[permalink id="52" target="blank"] Content [/permalink]',
|
1069 |
+
'content' => '',
|
1070 |
+
'desc' => __( 'Permalink to specified post/page', 'su' )
|
1071 |
),
|
1072 |
// members
|
1073 |
'members' => array(
|
1098 |
'desc' => __( 'Extra CSS class', 'su' )
|
1099 |
)
|
1100 |
),
|
1101 |
+
'usage' => '[members style="default"] Content for logged members [/members]',
|
1102 |
+
'content' => __( 'Content for logged members', 'su' ),
|
1103 |
'desc' => __( 'Content for logged in members only', 'su' )
|
1104 |
),
|
1105 |
// guests
|
inc/core/class.generator.php
CHANGED
@@ -224,7 +224,7 @@ class Shortcodes_Ultimate_Generator {
|
|
224 |
// Single shortcode (not closed)
|
225 |
if ( $shortcode['type'] == 'single' ) $return .= '<input type="hidden" name="su-generator-content" id="su-generator-content" value="false" />';
|
226 |
// Wrapping shortcode
|
227 |
-
else $return .= '<div class="su-generator-attr-container"><h5>' . __( 'Content', 'su' ) . '</h5><textarea name="su-generator-content" id="su-generator-content" rows="3">' . esc_attr( $shortcode['content'] ) . '</textarea></div>';
|
228 |
$return .= '<div id="su-generator-preview"></div>';
|
229 |
$return .= '<div class="su-generator-actions">' . implode( ' ', array_values( $actions ) ) . '</div>';
|
230 |
set_transient( 'su/generator/settings/' . sanitize_text_field( $_REQUEST['shortcode'] ), $return, 60*60*24*30 );
|
224 |
// Single shortcode (not closed)
|
225 |
if ( $shortcode['type'] == 'single' ) $return .= '<input type="hidden" name="su-generator-content" id="su-generator-content" value="false" />';
|
226 |
// Wrapping shortcode
|
227 |
+
else $return .= '<div class="su-generator-attr-container"><h5>' . __( 'Content', 'su' ) . '</h5><textarea name="su-generator-content" id="su-generator-content" rows="3">' . esc_attr( str_replace( '%prefix_', su_compatibility_mode_prefix(), $shortcode['content'] ) ) . '</textarea></div>';
|
228 |
$return .= '<div id="su-generator-preview"></div>';
|
229 |
$return .= '<div class="su-generator-actions">' . implode( ' ', array_values( $actions ) ) . '</div>';
|
230 |
set_transient( 'su/generator/settings/' . sanitize_text_field( $_REQUEST['shortcode'] ), $return, 60*60*24*30 );
|
inc/core/shortcodes.php
CHANGED
@@ -318,6 +318,7 @@ function su_button_shortcode( $atts, $content = null ) {
|
|
318 |
'dark' => null,
|
319 |
'size' => 3,
|
320 |
'wide' => 'no',
|
|
|
321 |
'radius' => 'auto',
|
322 |
'icon' => false,
|
323 |
'ts_color' => 'dark',
|
@@ -339,6 +340,7 @@ function su_button_shortcode( $atts, $content = null ) {
|
|
339 |
$img_css = array();
|
340 |
$small_css = array();
|
341 |
$radius = '0px';
|
|
|
342 |
|
343 |
// Text shadow values
|
344 |
$shadows = array(
|
@@ -422,6 +424,11 @@ function su_button_shortcode( $atts, $content = null ) {
|
|
422 |
$icon = ( $atts['icon'] ) ? '<img src="' . $atts['icon'] . '" alt="' . esc_attr( $content ) . '" style="' . implode( $img_css, ';' ) . '" />' : '';
|
423 |
// Prepare <small> with description
|
424 |
$desc = ( $atts['desc'] ) ? '<small style="' . implode( $small_css, ';' ) . '">' . ( $atts['desc'] ) . '</small>' : '';
|
|
|
|
|
|
|
|
|
|
|
425 |
|
426 |
// Replace icon marker in content,
|
427 |
// add float-icon class to rearrange margins
|
@@ -433,7 +440,7 @@ function su_button_shortcode( $atts, $content = null ) {
|
|
433 |
else $content = $icon . ' ' . $content;
|
434 |
|
435 |
su_query_asset( 'css', 'su-content-shortcodes' );
|
436 |
-
return '<a href="' . $atts['url'] . '" class="' . implode( $classes, ' ' ) . '" style="' . implode( $a_css, ';' ) . '" target="_' . $atts['target'] . '"><span style="' . implode( $span_css, ';' ) . '">' . $content . $desc . '</span></a>';
|
437 |
}
|
438 |
|
439 |
/**
|
@@ -1021,7 +1028,7 @@ function su_slider_shortcode( $atts, $content = null ) {
|
|
1021 |
$mousewheel = ( $atts['mousewheel'] === 'yes' ) ? 'true' : 'false';
|
1022 |
// Prepare gallery
|
1023 |
$galleries = $shult->get_option( 'galleries' );
|
1024 |
-
$gallery = $galleries[$atts['gallery'] - 1];
|
1025 |
// Prepare slides
|
1026 |
$slides = ( count( ( array ) $gallery['items'] ) ) ? $gallery['items'] : array();
|
1027 |
// Prepare width and height
|
@@ -1107,7 +1114,7 @@ function su_carousel_shortcode( $atts, $content = null ) {
|
|
1107 |
$mousewheel = ( $atts['mousewheel'] === 'yes' ) ? 'true' : 'false';
|
1108 |
// Prepare gallery
|
1109 |
$galleries = $shult->get_option( 'galleries' );
|
1110 |
-
$gallery = $galleries[$atts['gallery'] - 1];
|
1111 |
// Prepare slides
|
1112 |
$slides = ( count( ( array ) $gallery['items'] ) ) ? $gallery['items'] : array();
|
1113 |
// Prepare width and height
|
@@ -1178,7 +1185,7 @@ function su_custom_gallery_shortcode( $atts, $content = null ) {
|
|
1178 |
$target = ( $atts['target'] === 'yes' ) ? ' target="_blank"' : '';
|
1179 |
// Prepare gallery
|
1180 |
$galleries = $shult->get_option( 'galleries' );
|
1181 |
-
$gallery = $galleries[$atts['gallery'] - 1];
|
1182 |
// Prepare slides
|
1183 |
$slides = ( count( ( array ) $gallery['items'] ) ) ? $gallery['items'] : array();
|
1184 |
// Slides not found
|
318 |
'dark' => null,
|
319 |
'size' => 3,
|
320 |
'wide' => 'no',
|
321 |
+
'center' => 'no',
|
322 |
'radius' => 'auto',
|
323 |
'icon' => false,
|
324 |
'ts_color' => 'dark',
|
340 |
$img_css = array();
|
341 |
$small_css = array();
|
342 |
$radius = '0px';
|
343 |
+
$before = $after = '';
|
344 |
|
345 |
// Text shadow values
|
346 |
$shadows = array(
|
424 |
$icon = ( $atts['icon'] ) ? '<img src="' . $atts['icon'] . '" alt="' . esc_attr( $content ) . '" style="' . implode( $img_css, ';' ) . '" />' : '';
|
425 |
// Prepare <small> with description
|
426 |
$desc = ( $atts['desc'] ) ? '<small style="' . implode( $small_css, ';' ) . '">' . ( $atts['desc'] ) . '</small>' : '';
|
427 |
+
// Wrap with div if button centered
|
428 |
+
if ( $atts['center'] === 'yes' ) {
|
429 |
+
$before .= '<div class="su-button-center">';
|
430 |
+
$after .= '</div>';
|
431 |
+
}
|
432 |
|
433 |
// Replace icon marker in content,
|
434 |
// add float-icon class to rearrange margins
|
440 |
else $content = $icon . ' ' . $content;
|
441 |
|
442 |
su_query_asset( 'css', 'su-content-shortcodes' );
|
443 |
+
return $before . '<a href="' . $atts['url'] . '" class="' . implode( $classes, ' ' ) . '" style="' . implode( $a_css, ';' ) . '" target="_' . $atts['target'] . '"><span style="' . implode( $span_css, ';' ) . '">' . $content . $desc . '</span></a>' . $after;
|
444 |
}
|
445 |
|
446 |
/**
|
1028 |
$mousewheel = ( $atts['mousewheel'] === 'yes' ) ? 'true' : 'false';
|
1029 |
// Prepare gallery
|
1030 |
$galleries = $shult->get_option( 'galleries' );
|
1031 |
+
$gallery = ( is_numeric( $atts['gallery'] ) && $atts['gallery'] > 0 ) ? $galleries[$atts['gallery'] - 1] : 1;
|
1032 |
// Prepare slides
|
1033 |
$slides = ( count( ( array ) $gallery['items'] ) ) ? $gallery['items'] : array();
|
1034 |
// Prepare width and height
|
1114 |
$mousewheel = ( $atts['mousewheel'] === 'yes' ) ? 'true' : 'false';
|
1115 |
// Prepare gallery
|
1116 |
$galleries = $shult->get_option( 'galleries' );
|
1117 |
+
$gallery = ( is_numeric( $atts['gallery'] ) && $atts['gallery'] > 0 ) ? $galleries[$atts['gallery'] - 1] : 1;
|
1118 |
// Prepare slides
|
1119 |
$slides = ( count( ( array ) $gallery['items'] ) ) ? $gallery['items'] : array();
|
1120 |
// Prepare width and height
|
1185 |
$target = ( $atts['target'] === 'yes' ) ? ' target="_blank"' : '';
|
1186 |
// Prepare gallery
|
1187 |
$galleries = $shult->get_option( 'galleries' );
|
1188 |
+
$gallery = ( is_numeric( $atts['gallery'] ) && $atts['gallery'] > 0 ) ? $galleries[$atts['gallery'] - 1] : 1;
|
1189 |
// Prepare slides
|
1190 |
$slides = ( count( ( array ) $gallery['items'] ) ) ? $gallery['items'] : array();
|
1191 |
// Slides not found
|
inc/core/tools.php
CHANGED
@@ -220,7 +220,7 @@ function su_do_shortcode( $content, $pre ) {
|
|
220 |
* @return string Special prefix
|
221 |
*/
|
222 |
function su_compatibility_mode_prefix() {
|
223 |
-
|
224 |
$option = get_option( 'su_compatibility_mode_prefix' );
|
225 |
if ( $shult->get_option( 'compatibility_mode' ) === 'on' ) return ( $option ) ? $option : 'su_';
|
226 |
else return '';
|
220 |
* @return string Special prefix
|
221 |
*/
|
222 |
function su_compatibility_mode_prefix() {
|
223 |
+
$shult = shortcodes_ultimate();
|
224 |
$option = get_option( 'su_compatibility_mode_prefix' );
|
225 |
if ( $shult->get_option( 'compatibility_mode' ) === 'on' ) return ( $option ) ? $option : 'su_';
|
226 |
else return '';
|
inc/vendor/class.sunrise-framework.php
CHANGED
@@ -1,324 +1,326 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
/**
|
7 |
-
*
|
8 |
*
|
9 |
-
* @
|
10 |
-
* @
|
11 |
*/
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
/** @var string Relative path to views directory */
|
39 |
-
var $views;
|
40 |
-
|
41 |
-
/** @var string Relative path to assets directory */
|
42 |
-
var $assets;
|
43 |
-
|
44 |
-
/** @var string Plugin control panel URL */
|
45 |
-
var $admin_url;
|
46 |
-
|
47 |
-
/** @var string Plugin option name. This option contains all plugin settings */
|
48 |
-
var $option;
|
49 |
-
|
50 |
-
/** @var array Set of fields for options page */
|
51 |
-
var $options;
|
52 |
-
|
53 |
-
/** @var string Options page config */
|
54 |
-
var $settings;
|
55 |
-
|
56 |
-
/**
|
57 |
-
* Constructor
|
58 |
-
*
|
59 |
-
* @param $file
|
60 |
-
* @param array $args
|
61 |
-
*/
|
62 |
-
function __construct( $file, $args = array() ) {
|
63 |
-
// Default args
|
64 |
-
$defaults = array( 'includes' => 'inc', 'views' => 'inc/views', 'assets' => 'assets' );
|
65 |
-
// Prepare initial data
|
66 |
-
$this->file = $file;
|
67 |
-
$this->args = wp_parse_args( $args, $defaults );
|
68 |
-
// Check that function get_plugin_data exists
|
69 |
-
if ( !function_exists( 'get_plugin_data' ) )
|
70 |
-
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
71 |
-
// Read plugin meta
|
72 |
-
$this->meta = get_plugin_data( $this->file, false );
|
73 |
-
// Init plugin data
|
74 |
-
$this->basename = plugin_basename( $this->file );
|
75 |
-
$this->slug = sanitize_key( $this->meta['Name'] );
|
76 |
-
$this->version = sanitize_text_field( $this->meta['Version'] );
|
77 |
-
$this->textdomain = sanitize_html_class( $this->meta['TextDomain'] );
|
78 |
-
$this->name = $this->meta['Name'];
|
79 |
-
$this->url = plugins_url( '', $this->file );
|
80 |
-
$this->option = $this->slug . '_options';
|
81 |
-
$this->includes = trailingslashit( path_join( plugin_dir_path( $this->file ), trim( $this->args['includes'], '/' ) ) );
|
82 |
-
$this->views = trailingslashit( path_join( plugin_dir_path( $this->file ), trim( $this->args['views'], '/' ) ) );
|
83 |
-
$this->assets = trim( $this->args['assets'], '/' );
|
84 |
-
// Make plugin available for translation
|
85 |
-
load_plugin_textdomain( $this->textdomain, false, trailingslashit( path_join( dirname( $this->basename ), trim( $this->meta['DomainPath'], '/' ) ) ) );
|
86 |
-
}
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
}
|
117 |
-
foreach ( array( 'jquery', 'media-upload', 'thickbox', 'farbtastic', 'sunrise-plugin-framework-form',
|
118 |
-
'sunrise-plugin-framework' ) as $script ) {
|
119 |
-
wp_enqueue_script( $script );
|
120 |
-
}
|
121 |
}
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
*/
|
126 |
-
function assets( $type = 'css', $file = 'sunrise.css' ) {
|
127 |
-
return implode( '/', array_filter( array( trim( $this->url, '/' ), trim( $this->assets, '/' ),
|
128 |
-
trim( $type, '/' ), trim( $file, '/' ) ) ) );
|
129 |
}
|
|
|
130 |
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
$defaults = array();
|
139 |
-
// Loop through available options
|
140 |
-
foreach ( (array) $this->options as $value ) $defaults[$value['id']] = $value['std'];
|
141 |
-
// Insert default options
|
142 |
-
update_option( $this->option, $defaults );
|
143 |
-
}
|
144 |
-
}
|
145 |
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
//
|
155 |
-
|
156 |
-
//
|
157 |
-
|
158 |
-
// Return result
|
159 |
-
return ( is_array( $value ) ) ? array_filter( $value, 'esc_attr' ) : esc_attr( stripslashes( $value ) );
|
160 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
// Prepare variables
|
172 |
-
$
|
173 |
-
$new_settings = array();
|
174 |
// Prepare data
|
175 |
-
foreach ( $
|
176 |
-
//
|
177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
}
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
// Prepare variables
|
189 |
-
$new_options = array();
|
190 |
-
// Prepare data
|
191 |
-
foreach ( $this->options as $value ) $new_options[$value['id']] = $value['std'];
|
192 |
-
// Save new options
|
193 |
-
if ( update_option( $this->option, $new_options ) ) {
|
194 |
-
// Redirect
|
195 |
-
wp_redirect( $this->admin_url . '&message=1' );
|
196 |
-
exit;
|
197 |
-
}
|
198 |
-
// Option doesn't updated
|
199 |
-
else {
|
200 |
-
// Redirect
|
201 |
-
wp_redirect( $this->admin_url . '&message=2' );
|
202 |
-
exit;
|
203 |
}
|
204 |
}
|
205 |
-
//
|
206 |
-
|
207 |
-
//
|
208 |
-
$
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
// Redirect
|
217 |
-
wp_redirect( $this->admin_url . '&message=3' );
|
218 |
-
exit;
|
219 |
-
}
|
220 |
-
// Options not saved
|
221 |
-
else {
|
222 |
-
// Redirect
|
223 |
-
wp_redirect( $this->admin_url . '&message=4' );
|
224 |
-
exit;
|
225 |
-
}
|
226 |
}
|
227 |
}
|
|
|
228 |
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
}
|
298 |
}
|
|
|
299 |
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
}
|
310 |
}
|
311 |
}
|
|
|
312 |
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
}
|
320 |
-
|
321 |
}
|
322 |
|
323 |
}
|
324 |
-
|
|
|
|
1 |
<?php
|
2 |
|
3 |
+
// Check that class doesn't exists
|
4 |
+
if ( !class_exists( 'Sunrise_Plugin_Framework_2_1' ) ) {
|
5 |
+
|
6 |
+
/**
|
7 |
+
* Sunrise Plugin Framework Class
|
8 |
+
*
|
9 |
+
* @author Vladimir Anokhin <ano.vladimir@gmail.com>
|
10 |
+
* @link http://gndev.info/sunrise/
|
11 |
+
*/
|
12 |
+
class Sunrise_Plugin_Framework_2_1 {
|
13 |
+
|
14 |
+
/** @var string Plugin meta */
|
15 |
+
var $meta;
|
16 |
+
|
17 |
+
/** @var string Plugin base name */
|
18 |
+
var $basename;
|
19 |
+
|
20 |
+
/** @var string Short plugin slug */
|
21 |
+
var $slug;
|
22 |
+
|
23 |
+
/** @var string Plugin version */
|
24 |
+
var $version;
|
25 |
+
|
26 |
+
/** @var string Plugin textdomain */
|
27 |
+
var $textdomain;
|
28 |
+
|
29 |
+
/** @var string Full plugin name */
|
30 |
+
var $name;
|
31 |
+
|
32 |
+
/** @var string Plugin directory URL - http://example.com/wp-content/plugins/plugin-slug */
|
33 |
+
var $url;
|
34 |
+
|
35 |
+
/** @var string Relative path to includes directory */
|
36 |
+
var $includes;
|
37 |
+
|
38 |
+
/** @var string Relative path to views directory */
|
39 |
+
var $views;
|
40 |
+
|
41 |
+
/** @var string Relative path to assets directory */
|
42 |
+
var $assets;
|
43 |
+
|
44 |
+
/** @var string Plugin control panel URL */
|
45 |
+
var $admin_url;
|
46 |
+
|
47 |
+
/** @var string Plugin option name. This option contains all plugin settings */
|
48 |
+
var $option;
|
49 |
+
|
50 |
+
/** @var array Set of fields for options page */
|
51 |
+
var $options;
|
52 |
+
|
53 |
+
/** @var string Options page config */
|
54 |
+
var $settings;
|
55 |
|
56 |
/**
|
57 |
+
* Constructor
|
58 |
*
|
59 |
+
* @param $file
|
60 |
+
* @param array $args
|
61 |
*/
|
62 |
+
function __construct( $file, $args = array() ) {
|
63 |
+
// Default args
|
64 |
+
$defaults = array( 'includes' => 'inc', 'views' => 'inc/views', 'assets' => 'assets' );
|
65 |
+
// Prepare initial data
|
66 |
+
$this->file = $file;
|
67 |
+
$this->args = wp_parse_args( $args, $defaults );
|
68 |
+
// Check that function get_plugin_data exists
|
69 |
+
if ( !function_exists( 'get_plugin_data' ) )
|
70 |
+
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
71 |
+
// Read plugin meta
|
72 |
+
$this->meta = get_plugin_data( $this->file, false );
|
73 |
+
// Init plugin data
|
74 |
+
$this->basename = plugin_basename( $this->file );
|
75 |
+
$this->slug = sanitize_key( $this->meta['Name'] );
|
76 |
+
$this->version = sanitize_text_field( $this->meta['Version'] );
|
77 |
+
$this->textdomain = sanitize_html_class( $this->meta['TextDomain'] );
|
78 |
+
$this->name = $this->meta['Name'];
|
79 |
+
$this->url = plugins_url( '', $this->file );
|
80 |
+
$this->option = $this->slug . '_options';
|
81 |
+
$this->includes = trailingslashit( path_join( plugin_dir_path( $this->file ), trim( $this->args['includes'], '/' ) ) );
|
82 |
+
$this->views = trailingslashit( path_join( plugin_dir_path( $this->file ), trim( $this->args['views'], '/' ) ) );
|
83 |
+
$this->assets = trim( $this->args['assets'], '/' );
|
84 |
+
// Make plugin available for translation
|
85 |
+
load_plugin_textdomain( $this->textdomain, false, trailingslashit( path_join( dirname( $this->basename ), trim( $this->meta['DomainPath'], '/' ) ) ) );
|
86 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
|
88 |
+
function debug() {
|
89 |
+
die( '<pre>' . print_r( $this, true ) . '</pre>' );
|
90 |
+
}
|
91 |
|
92 |
+
/**
|
93 |
+
* Conditional tag to check there is settings page
|
94 |
+
*/
|
95 |
+
function is_settings() {
|
96 |
+
global $pagenow;
|
97 |
+
return is_admin() && $pagenow == $this->settings['parent'] && $_GET['page'] == $this->slug;
|
98 |
+
}
|
99 |
|
100 |
+
/**
|
101 |
+
* Register assets
|
102 |
+
*/
|
103 |
+
function register_assets() {
|
104 |
+
wp_register_style( 'sunrise-plugin-framework', $this->assets( 'css', 'sunrise.css' ), false, $this->version, 'all' );
|
105 |
+
wp_register_script( 'sunrise-plugin-framework-form', $this->assets( 'js', 'form.js' ), array( 'jquery' ), $this->version, false );
|
106 |
+
wp_register_script( 'sunrise-plugin-framework', $this->assets( 'js', 'sunrise.js' ), array( 'sunrise-plugin-framework-form' ), $this->version, false );
|
107 |
+
}
|
108 |
|
109 |
+
/**
|
110 |
+
* Enqueue assets
|
111 |
+
*/
|
112 |
+
function enqueue_assets() {
|
113 |
+
if ( !$this->is_settings() ) return;
|
114 |
+
foreach ( array( 'thickbox', 'farbtastic', 'sunrise-plugin-framework' ) as $style ) {
|
115 |
+
wp_enqueue_style( $style );
|
|
|
|
|
|
|
|
|
|
|
116 |
}
|
117 |
+
foreach ( array( 'jquery', 'media-upload', 'thickbox', 'farbtastic', 'sunrise-plugin-framework-form',
|
118 |
+
'sunrise-plugin-framework' ) as $script ) {
|
119 |
+
wp_enqueue_script( $script );
|
|
|
|
|
|
|
|
|
120 |
}
|
121 |
+
}
|
122 |
|
123 |
+
/**
|
124 |
+
* Helper function to get assets url by type
|
125 |
+
*/
|
126 |
+
function assets( $type = 'css', $file = 'sunrise.css' ) {
|
127 |
+
return implode( '/', array_filter( array( trim( $this->url, '/' ), trim( $this->assets, '/' ),
|
128 |
+
trim( $type, '/' ), trim( $file, '/' ) ) ) );
|
129 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
|
131 |
+
/**
|
132 |
+
* Set plugin settings to default
|
133 |
+
*/
|
134 |
+
function default_settings( $manual = false ) {
|
135 |
+
// Settings page is created
|
136 |
+
if ( $manual || !get_option( $this->option ) ) {
|
137 |
+
// Create array with default options
|
138 |
+
$defaults = array();
|
139 |
+
// Loop through available options
|
140 |
+
foreach ( (array) $this->options as $value ) $defaults[$value['id']] = $value['std'];
|
141 |
+
// Insert default options
|
142 |
+
update_option( $this->option, $defaults );
|
|
|
|
|
143 |
}
|
144 |
+
}
|
145 |
+
|
146 |
+
/**
|
147 |
+
* Get single option value
|
148 |
+
*
|
149 |
+
* @param mixed $option Option ID to return. If false, all options will be returned
|
150 |
+
*
|
151 |
+
* @return mixed $option Returns option by specified key
|
152 |
+
*/
|
153 |
+
function get_option( $option = false ) {
|
154 |
+
// Get options from database
|
155 |
+
$options = get_option( $this->option );
|
156 |
+
// Check option is specified
|
157 |
+
$value = ( !empty( $option ) ) ? $options[$option] : $options;
|
158 |
+
// Return result
|
159 |
+
return ( is_array( $value ) ) ? array_filter( $value, 'esc_attr' ) : esc_attr( stripslashes( $value ) );
|
160 |
+
}
|
161 |
|
162 |
+
/**
|
163 |
+
* Update single option value
|
164 |
+
*
|
165 |
+
* @param mixed $key Option ID to update
|
166 |
+
* @param mixed $value New value
|
167 |
+
*
|
168 |
+
* @return mixed $option Returns option by specified key
|
169 |
+
*/
|
170 |
+
function update_option( $key = false, $value = false ) {
|
171 |
+
// Prepare variables
|
172 |
+
$settings = get_option( $this->option );
|
173 |
+
$new_settings = array();
|
174 |
+
// Prepare data
|
175 |
+
foreach ( $settings as $id => $val ) $new_settings[$id] = ( $id == $key ) ? $value : $val;
|
176 |
+
// Update option and return operation result
|
177 |
+
return update_option( $this->option, $new_settings );
|
178 |
+
}
|
179 |
+
|
180 |
+
/**
|
181 |
+
* Action to save/reset options
|
182 |
+
*/
|
183 |
+
function manage_options() {
|
184 |
+
// Check this is settings page
|
185 |
+
if ( !$this->is_settings() ) return;
|
186 |
+
// ACTION: RESET
|
187 |
+
if ( isset( $_GET['action'] ) && $_GET['action'] == 'reset' ) {
|
188 |
// Prepare variables
|
189 |
+
$new_options = array();
|
|
|
190 |
// Prepare data
|
191 |
+
foreach ( $this->options as $value ) $new_options[$value['id']] = $value['std'];
|
192 |
+
// Save new options
|
193 |
+
if ( update_option( $this->option, $new_options ) ) {
|
194 |
+
// Redirect
|
195 |
+
wp_redirect( $this->admin_url . '&message=1' );
|
196 |
+
exit;
|
197 |
+
}
|
198 |
+
// Option doesn't updated
|
199 |
+
else {
|
200 |
+
// Redirect
|
201 |
+
wp_redirect( $this->admin_url . '&message=2' );
|
202 |
+
exit;
|
203 |
+
}
|
204 |
}
|
205 |
+
// ACTION: SAVE
|
206 |
+
elseif ( isset( $_POST['action'] ) && $_POST['action'] == 'save' ) {
|
207 |
+
// Prepare vars
|
208 |
+
$new_options = array();
|
209 |
+
// Prepare data
|
210 |
+
foreach ( $this->options as $value ) {
|
211 |
+
if ( isset( $value['id'] ) && isset( $_POST[$value['id']] ) ) {
|
212 |
+
$id = $value['id'];
|
213 |
+
$new_options[$id] = ( is_array( $_POST[$id] ) ) ? $_POST[$id] : htmlspecialchars( $_POST[$id] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
}
|
215 |
}
|
216 |
+
// Save new options
|
217 |
+
if ( update_option( $this->option, $new_options ) ) {
|
218 |
+
// Redirect
|
219 |
+
wp_redirect( $this->admin_url . '&message=3' );
|
220 |
+
exit;
|
221 |
+
}
|
222 |
+
// Options not saved
|
223 |
+
else {
|
224 |
+
// Redirect
|
225 |
+
wp_redirect( $this->admin_url . '&message=4' );
|
226 |
+
exit;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
}
|
228 |
}
|
229 |
+
}
|
230 |
|
231 |
+
/**
|
232 |
+
* Register options page
|
233 |
+
*
|
234 |
+
* @param array $args Options page config
|
235 |
+
* @param array $options Set of fields for options page
|
236 |
+
*/
|
237 |
+
function add_options_page( $args, $options = array() ) {
|
238 |
+
// Save options
|
239 |
+
$this->options = $options;
|
240 |
+
// Prepare defaults
|
241 |
+
$defaults = array( 'parent' => 'options-general.php', 'menu_title' => $this->name,
|
242 |
+
'page_title' => $this->name, 'capability' => 'manage_options', 'link' => true );
|
243 |
+
// Parse args
|
244 |
+
$this->settings = wp_parse_args( $args, $defaults );
|
245 |
+
// Define admin url
|
246 |
+
$this->admin_url = admin_url( $this->settings['parent'] . '?page=' . $this->slug );
|
247 |
+
// Register and enqueue assets
|
248 |
+
add_action( 'admin_head', array( &$this, 'register_assets' ) );
|
249 |
+
add_action( 'admin_footer', array( &$this, 'enqueue_assets' ) );
|
250 |
+
// Insert default settings if it's doesn't exists
|
251 |
+
add_action( 'admin_init', array( &$this, 'default_settings' ) );
|
252 |
+
// Manage options
|
253 |
+
add_action( 'admin_menu', array( &$this, 'manage_options' ) );
|
254 |
+
// Add settings page
|
255 |
+
add_action( 'admin_menu', array( &$this, 'options_page' ) );
|
256 |
+
// Add settings link to plugins dashboard
|
257 |
+
if ( $this->settings['link'] ) add_filter( 'plugin_action_links_' . $this->basename, array( &$this,
|
258 |
+
'add_settings_link' ) );
|
259 |
+
}
|
260 |
|
261 |
+
/**
|
262 |
+
* Register settings page
|
263 |
+
*/
|
264 |
+
function options_page() {
|
265 |
+
add_submenu_page( $this->settings['parent'], __( $this->settings['page_title'], $this->textdomain ), __( $this->settings['menu_title'], $this->textdomain ), $this->settings['capability'], $this->slug, array( &$this,
|
266 |
+
'render_options_page' ) );
|
267 |
+
}
|
268 |
|
269 |
+
/**
|
270 |
+
* Display settings page
|
271 |
+
*/
|
272 |
+
function render_options_page() {
|
273 |
+
$backend_file = $this->views . 'settings.php';
|
274 |
+
if ( file_exists( $backend_file ) ) require_once $backend_file;
|
275 |
+
}
|
276 |
|
277 |
+
/**
|
278 |
+
* Add settings link to plugins dashboard
|
279 |
+
*/
|
280 |
+
function add_settings_link( $links ) {
|
281 |
+
$links[] = '<a href="' . $this->admin_url . '">' . __( 'Settings', $this->textdomain ) . '</a>';
|
282 |
+
return $links;
|
283 |
+
}
|
284 |
|
285 |
+
/**
|
286 |
+
* Display settings panes
|
287 |
+
*/
|
288 |
+
function render_panes() {
|
289 |
+
// Get current settings
|
290 |
+
$settings = get_option( $this->option );
|
291 |
+
// Options loop
|
292 |
+
foreach ( $this->options as $option ) {
|
293 |
+
// Get option file path
|
294 |
+
$option_file = $this->views . $option['type'] . '.php';
|
295 |
+
// Check that file exists and include it
|
296 |
+
if ( file_exists( $option_file ) ) include $option_file;
|
297 |
+
else
|
298 |
+
trigger_error( 'Option file <strong>' . $option_file . '</strong> not found!', E_USER_NOTICE );
|
|
|
299 |
}
|
300 |
+
}
|
301 |
|
302 |
+
/**
|
303 |
+
* Display settings tabs
|
304 |
+
*/
|
305 |
+
function render_tabs() {
|
306 |
+
foreach ( $this->options as $option ) {
|
307 |
+
if ( $option['type'] == 'opentab' ) {
|
308 |
+
$active = ( isset( $active ) ) ? ' sunrise-plugin-tab-inactive'
|
309 |
+
: ' nav-tab-active sunrise-plugin-tab-active';
|
310 |
+
echo '<span class="nav-tab' . $active . '">' . $option['name'] . '</span>';
|
|
|
311 |
}
|
312 |
}
|
313 |
+
}
|
314 |
|
315 |
+
/**
|
316 |
+
* Show notifications
|
317 |
+
*/
|
318 |
+
function notifications( $notifications ) {
|
319 |
+
$file = $this->views . 'notifications.php';
|
320 |
+
if ( file_exists( $file ) ) include $file;
|
|
|
|
|
321 |
}
|
322 |
|
323 |
}
|
324 |
+
|
325 |
+
}
|
326 |
+
?>
|
inc/views/about.php
CHANGED
@@ -41,6 +41,7 @@
|
|
41 |
<li><a href="http://www.youtube.com/watch?v=IjmaXz-b55I" target="_blank"><?php _e( 'Shortcodes Ultimate Tutorial', $this->textdomain ); ?></a></li>
|
42 |
<li><a href="http://www.youtube.com/watch?v=YU3Zu6C5ZfA" target="_blank"><?php _e( 'How to use special widget', $this->textdomain ); ?></a></li>
|
43 |
<li><a href="http://www.screenr.com/BK0H" target="_blank"><?php _e( 'How to create Carousel', $this->textdomain ); ?></a></li>
|
|
|
44 |
</ul>
|
45 |
</div>
|
46 |
<div class="su-clear"></div>
|
41 |
<li><a href="http://www.youtube.com/watch?v=IjmaXz-b55I" target="_blank"><?php _e( 'Shortcodes Ultimate Tutorial', $this->textdomain ); ?></a></li>
|
42 |
<li><a href="http://www.youtube.com/watch?v=YU3Zu6C5ZfA" target="_blank"><?php _e( 'How to use special widget', $this->textdomain ); ?></a></li>
|
43 |
<li><a href="http://www.screenr.com/BK0H" target="_blank"><?php _e( 'How to create Carousel', $this->textdomain ); ?></a></li>
|
44 |
+
<li><a href="http://www.youtube.com/watch?v=kCWyO2F7jTw" target="_blank"><?php _e( 'How to create image gallery', $this->textdomain ); ?></a></li>
|
45 |
</ul>
|
46 |
</div>
|
47 |
<div class="su-clear"></div>
|
languages/su-ru_RU.mo
CHANGED
Binary file
|
languages/su-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-09-18
|
6 |
-
"PO-Revision-Date: 2013-09-18
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -22,8 +22,8 @@ msgstr "Заголовок 2"
|
|
22 |
#: inc/core/class.data.php:153
|
23 |
#: inc/core/class.data.php:270
|
24 |
#: inc/core/class.data.php:350
|
25 |
-
#: inc/core/class.data.php:
|
26 |
-
#: inc/core/class.data.php:
|
27 |
msgid "Default"
|
28 |
msgstr "По умолчанию"
|
29 |
|
@@ -34,9 +34,9 @@ msgstr "Маленький"
|
|
34 |
#: inc/example-addon.php:49
|
35 |
#: inc/core/class.data.php:158
|
36 |
#: inc/core/class.data.php:356
|
37 |
-
#: inc/core/class.data.php:
|
38 |
-
#: inc/core/class.data.php:
|
39 |
-
#: inc/core/class.data.php:
|
40 |
msgid "Style"
|
41 |
msgstr "Стиль"
|
42 |
|
@@ -66,7 +66,7 @@ msgid "Content"
|
|
66 |
msgstr "Содержимое"
|
67 |
|
68 |
#: inc/core/class.data.php:36
|
69 |
-
#: inc/core/class.data.php:
|
70 |
msgid "Box"
|
71 |
msgstr "Блок"
|
72 |
|
@@ -75,10 +75,10 @@ msgid "Media"
|
|
75 |
msgstr "Медиа"
|
76 |
|
77 |
#: inc/core/class.data.php:38
|
78 |
-
#: inc/core/class.data.php:
|
79 |
-
#: inc/core/class.data.php:
|
80 |
-
#: inc/core/class.data.php:
|
81 |
-
#: inc/core/class.data.php:
|
82 |
msgid "Gallery"
|
83 |
msgstr "Галерея"
|
84 |
|
@@ -92,8 +92,8 @@ msgstr "Заголовок"
|
|
92 |
|
93 |
#: inc/core/class.data.php:60
|
94 |
#: inc/core/class.data.php:361
|
95 |
-
#: inc/core/class.data.php:
|
96 |
-
#: inc/core/class.data.php:
|
97 |
msgid "Size"
|
98 |
msgstr "Размер"
|
99 |
|
@@ -103,19 +103,19 @@ msgstr "Выберите размер заголовка"
|
|
103 |
|
104 |
#: inc/core/class.data.php:65
|
105 |
#: inc/core/class.data.php:326
|
106 |
-
#: inc/core/class.data.php:
|
107 |
msgid "Left"
|
108 |
msgstr "Слева"
|
109 |
|
110 |
#: inc/core/class.data.php:66
|
111 |
-
#: inc/core/class.data.php:
|
112 |
-
#: inc/core/class.data.php:
|
113 |
msgid "Center"
|
114 |
msgstr "По центру"
|
115 |
|
116 |
#: inc/core/class.data.php:67
|
117 |
#: inc/core/class.data.php:327
|
118 |
-
#: inc/core/class.data.php:
|
119 |
msgid "Right"
|
120 |
msgstr "Справа"
|
121 |
|
@@ -143,32 +143,32 @@ msgstr "Выравнивание текста в заголовке"
|
|
143 |
#: inc/core/class.data.php:365
|
144 |
#: inc/core/class.data.php:391
|
145 |
#: inc/core/class.data.php:407
|
146 |
-
#: inc/core/class.data.php:
|
147 |
-
#: inc/core/class.data.php:
|
148 |
-
#: inc/core/class.data.php:
|
149 |
-
#: inc/core/class.data.php:
|
150 |
-
#: inc/core/class.data.php:
|
151 |
-
#: inc/core/class.data.php:
|
152 |
-
#: inc/core/class.data.php:
|
153 |
-
#: inc/core/class.data.php:
|
154 |
-
#: inc/core/class.data.php:
|
155 |
-
#: inc/core/class.data.php:
|
156 |
-
#: inc/core/class.data.php:
|
157 |
-
#: inc/core/class.data.php:
|
158 |
-
#: inc/core/class.data.php:
|
159 |
-
#: inc/core/class.data.php:
|
160 |
-
#: inc/core/class.data.php:
|
161 |
-
#: inc/core/class.data.php:
|
162 |
-
#: inc/core/class.data.php:
|
163 |
-
#: inc/core/class.data.php:
|
164 |
-
#: inc/core/class.data.php:
|
165 |
-
#: inc/core/class.data.php:
|
166 |
-
#: inc/core/class.data.php:
|
167 |
-
#: inc/core/class.data.php:
|
168 |
-
#: inc/core/class.data.php:
|
169 |
-
#: inc/core/class.data.php:
|
170 |
-
#: inc/core/class.data.php:
|
171 |
-
#: inc/core/class.data.php:
|
172 |
msgid "Class"
|
173 |
msgstr "Класс"
|
174 |
|
@@ -186,32 +186,32 @@ msgstr "Класс"
|
|
186 |
#: inc/core/class.data.php:366
|
187 |
#: inc/core/class.data.php:392
|
188 |
#: inc/core/class.data.php:408
|
189 |
-
#: inc/core/class.data.php:
|
190 |
-
#: inc/core/class.data.php:
|
191 |
-
#: inc/core/class.data.php:
|
192 |
-
#: inc/core/class.data.php:
|
193 |
-
#: inc/core/class.data.php:
|
194 |
-
#: inc/core/class.data.php:
|
195 |
-
#: inc/core/class.data.php:
|
196 |
-
#: inc/core/class.data.php:
|
197 |
-
#: inc/core/class.data.php:
|
198 |
-
#: inc/core/class.data.php:
|
199 |
-
#: inc/core/class.data.php:
|
200 |
-
#: inc/core/class.data.php:
|
201 |
-
#: inc/core/class.data.php:
|
202 |
-
#: inc/core/class.data.php:
|
203 |
-
#: inc/core/class.data.php:
|
204 |
-
#: inc/core/class.data.php:
|
205 |
-
#: inc/core/class.data.php:
|
206 |
-
#: inc/core/class.data.php:
|
207 |
-
#: inc/core/class.data.php:
|
208 |
-
#: inc/core/class.data.php:
|
209 |
-
#: inc/core/class.data.php:
|
210 |
-
#: inc/core/class.data.php:
|
211 |
-
#: inc/core/class.data.php:
|
212 |
-
#: inc/core/class.data.php:
|
213 |
-
#: inc/core/class.data.php:
|
214 |
-
#: inc/core/class.data.php:
|
215 |
msgid "Extra CSS class"
|
216 |
msgstr "Дополнительный CSS класс"
|
217 |
|
@@ -244,14 +244,15 @@ msgid "Show tabs vertically"
|
|
244 |
msgstr "Отображать вкладки вертикально"
|
245 |
|
246 |
#: inc/core/class.data.php:109
|
|
|
247 |
msgid ""
|
248 |
-
"[
|
249 |
-
"[
|
250 |
-
"[
|
251 |
msgstr ""
|
252 |
-
"[
|
253 |
-
"[
|
254 |
-
"[
|
255 |
|
256 |
#: inc/core/class.data.php:110
|
257 |
msgid "Tabs container"
|
@@ -267,9 +268,9 @@ msgstr "Имя вкладки"
|
|
267 |
|
268 |
#: inc/core/class.data.php:121
|
269 |
#: inc/core/class.data.php:142
|
270 |
-
#: inc/core/class.data.php:
|
271 |
-
#: inc/core/class.data.php:
|
272 |
-
#: inc/core/class.data.php:
|
273 |
msgid "Title"
|
274 |
msgstr "Заголовок"
|
275 |
|
@@ -379,15 +380,15 @@ msgid "Spacer"
|
|
379 |
msgstr "Пробел"
|
380 |
|
381 |
#: inc/core/class.data.php:222
|
382 |
-
#: inc/core/class.data.php:
|
383 |
-
#: inc/core/class.data.php:
|
384 |
-
#: inc/core/class.data.php:
|
385 |
-
#: inc/core/class.data.php:
|
386 |
-
#: inc/core/class.data.php:
|
387 |
-
#: inc/core/class.data.php:
|
388 |
-
#: inc/core/class.data.php:
|
389 |
-
#: inc/core/class.data.php:
|
390 |
-
#: inc/core/class.data.php:
|
391 |
msgid "Height"
|
392 |
msgstr "Высота"
|
393 |
|
@@ -404,8 +405,8 @@ msgid "Highlight"
|
|
404 |
msgstr "Выделитель"
|
405 |
|
406 |
#: inc/core/class.data.php:243
|
407 |
-
#: inc/core/class.data.php:
|
408 |
-
#: inc/core/class.data.php:
|
409 |
msgid "Background"
|
410 |
msgstr "Фон"
|
411 |
|
@@ -414,8 +415,8 @@ msgid "Highlighted text background color"
|
|
414 |
msgstr "Цвет фона выделяемого текста"
|
415 |
|
416 |
#: inc/core/class.data.php:250
|
417 |
-
#: inc/core/class.data.php:
|
418 |
-
#: inc/core/class.data.php:
|
419 |
msgid "Text color"
|
420 |
msgstr "Цвет текста"
|
421 |
|
@@ -506,12 +507,12 @@ msgid "Dropcap"
|
|
506 |
msgstr "Буквица"
|
507 |
|
508 |
#: inc/core/class.data.php:351
|
509 |
-
#: inc/core/class.data.php:
|
510 |
msgid "Flat"
|
511 |
msgstr "Плоский"
|
512 |
|
513 |
#: inc/core/class.data.php:352
|
514 |
-
#: inc/core/class.data.php:
|
515 |
msgid "Light"
|
516 |
msgstr "Светлый"
|
517 |
|
@@ -544,157 +545,158 @@ msgid "Row"
|
|
544 |
msgstr "Колонки"
|
545 |
|
546 |
#: inc/core/class.data.php:412
|
|
|
547 |
msgid ""
|
548 |
-
"[
|
549 |
-
"[
|
550 |
-
"[
|
551 |
msgstr ""
|
552 |
-
"[
|
553 |
-
"[
|
554 |
-
"[
|
555 |
|
556 |
-
#: inc/core/class.data.php:
|
557 |
msgid "Row for flexible columns"
|
558 |
msgstr "Контейнер с резиновыми колонками"
|
559 |
|
560 |
-
#: inc/core/class.data.php:
|
561 |
msgid "Column"
|
562 |
msgstr "Колонка"
|
563 |
|
564 |
-
#: inc/core/class.data.php:
|
565 |
msgid "Full width"
|
566 |
msgstr "Во всю ширину"
|
567 |
|
568 |
-
#: inc/core/class.data.php:
|
569 |
msgid "One half"
|
570 |
msgstr "Одна вторая"
|
571 |
|
572 |
-
#: inc/core/class.data.php:
|
573 |
msgid "One third"
|
574 |
msgstr "Одна третья"
|
575 |
|
576 |
-
#: inc/core/class.data.php:
|
577 |
msgid "Two third"
|
578 |
msgstr "Две трети"
|
579 |
|
580 |
-
#: inc/core/class.data.php:
|
581 |
msgid "One fourth"
|
582 |
msgstr "Одна четвертая"
|
583 |
|
584 |
-
#: inc/core/class.data.php:
|
585 |
msgid "Three fourth"
|
586 |
msgstr "Три четвертых"
|
587 |
|
588 |
-
#: inc/core/class.data.php:
|
589 |
msgid "One fifth"
|
590 |
msgstr "Одна пятая"
|
591 |
|
592 |
-
#: inc/core/class.data.php:
|
593 |
msgid "Two fifth"
|
594 |
msgstr "Две пятых"
|
595 |
|
596 |
-
#: inc/core/class.data.php:
|
597 |
msgid "Three fifth"
|
598 |
msgstr "Три пятых"
|
599 |
|
600 |
-
#: inc/core/class.data.php:
|
601 |
msgid "Four fifth"
|
602 |
msgstr "Четыре пятых"
|
603 |
|
604 |
-
#: inc/core/class.data.php:
|
605 |
msgid "One sixth"
|
606 |
msgstr "Одна шестая"
|
607 |
|
608 |
-
#: inc/core/class.data.php:
|
609 |
msgid "Five sixth"
|
610 |
msgstr "Пять шестых"
|
611 |
|
612 |
-
#: inc/core/class.data.php:
|
613 |
msgid "Select column width. This width will be calculated depend page width"
|
614 |
msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
615 |
|
616 |
-
#: inc/core/class.data.php:
|
617 |
msgid "Column content"
|
618 |
msgstr "Содержимое колонки"
|
619 |
|
620 |
-
#: inc/core/class.data.php:
|
621 |
msgid "Flexible and responsive columns"
|
622 |
msgstr "Резновые колонки"
|
623 |
|
624 |
-
#: inc/core/class.data.php:
|
625 |
msgid "List"
|
626 |
msgstr "Список"
|
627 |
|
628 |
-
#: inc/core/class.data.php:
|
629 |
msgid "Star"
|
630 |
msgstr "Звезда"
|
631 |
|
632 |
-
#: inc/core/class.data.php:
|
633 |
msgid "Arrow"
|
634 |
msgstr "Стрелка"
|
635 |
|
636 |
-
#: inc/core/class.data.php:
|
637 |
msgid "Check"
|
638 |
msgstr "Отметка"
|
639 |
|
640 |
-
#: inc/core/class.data.php:
|
641 |
msgid "Cross"
|
642 |
msgstr "Крестик"
|
643 |
|
644 |
-
#: inc/core/class.data.php:
|
645 |
msgid "Thumbs up"
|
646 |
msgstr "Палец вверх"
|
647 |
|
648 |
-
#: inc/core/class.data.php:
|
649 |
-
#: inc/core/class.data.php:
|
650 |
msgid "Link"
|
651 |
msgstr "Ссылка"
|
652 |
|
653 |
-
#: inc/core/class.data.php:
|
654 |
msgid "Gear"
|
655 |
msgstr "Шестеренка"
|
656 |
|
657 |
-
#: inc/core/class.data.php:
|
658 |
msgid "Time"
|
659 |
msgstr "Время"
|
660 |
|
661 |
-
#: inc/core/class.data.php:
|
662 |
-
#: inc/core/class.data.php:
|
663 |
msgid "Note"
|
664 |
msgstr "Заметка"
|
665 |
|
666 |
-
#: inc/core/class.data.php:
|
667 |
msgid "Plus"
|
668 |
msgstr "Плюс"
|
669 |
|
670 |
-
#: inc/core/class.data.php:
|
671 |
msgid "Guard"
|
672 |
msgstr "Защита"
|
673 |
|
674 |
-
#: inc/core/class.data.php:
|
675 |
msgid "Event"
|
676 |
msgstr "Событие"
|
677 |
|
678 |
-
#: inc/core/class.data.php:
|
679 |
msgid "Idea"
|
680 |
msgstr "Идя"
|
681 |
|
682 |
-
#: inc/core/class.data.php:
|
683 |
#: inc/core/class.generator.php:82
|
684 |
#: inc/core/class.shortcodes-ultimate.php:144
|
685 |
#: inc/vendor/class.sunrise-framework.php:279
|
686 |
msgid "Settings"
|
687 |
msgstr "Настройки"
|
688 |
|
689 |
-
#: inc/core/class.data.php:
|
690 |
msgid "Twitter"
|
691 |
msgstr "Твиттер"
|
692 |
|
693 |
-
#: inc/core/class.data.php:
|
694 |
msgid "List items style/icons"
|
695 |
msgstr "Стиль/иконка элементов списка"
|
696 |
|
697 |
-
#: inc/core/class.data.php:
|
698 |
msgid ""
|
699 |
"<ul>\n"
|
700 |
"<li>List item</li>\n"
|
@@ -708,500 +710,501 @@ msgstr ""
|
|
708 |
"<li>Элемент списка</li>\n"
|
709 |
"</ul>"
|
710 |
|
711 |
-
#: inc/core/class.data.php:
|
712 |
msgid "Styled unordered list"
|
713 |
msgstr "Стильный неупорядоченный список"
|
714 |
|
715 |
-
#: inc/core/class.data.php:
|
716 |
msgid "Button"
|
717 |
msgstr "Кнопка"
|
718 |
|
719 |
-
#: inc/core/class.data.php:
|
720 |
msgid "Button link"
|
721 |
msgstr "Ссылка кнопки"
|
722 |
|
723 |
-
#: inc/core/class.data.php:
|
724 |
-
#: inc/core/class.data.php:
|
725 |
msgid "Same tab"
|
726 |
msgstr "Та же вкладка"
|
727 |
|
728 |
-
#: inc/core/class.data.php:
|
729 |
-
#: inc/core/class.data.php:
|
730 |
msgid "New tab"
|
731 |
msgstr "Новая вкладка"
|
732 |
|
733 |
-
#: inc/core/class.data.php:
|
734 |
-
#: inc/core/class.data.php:
|
735 |
msgid "Target"
|
736 |
msgstr "Цель"
|
737 |
|
738 |
-
#: inc/core/class.data.php:
|
739 |
msgid "Button link target"
|
740 |
msgstr "Цель ссылки кнопки"
|
741 |
|
742 |
-
#: inc/core/class.data.php:
|
743 |
-
#: inc/core/class.data.php:
|
744 |
msgid "Soft"
|
745 |
msgstr "Мягкий"
|
746 |
|
747 |
-
#: inc/core/class.data.php:
|
748 |
-
#: inc/core/class.data.php:
|
749 |
msgid "Glass"
|
750 |
msgstr "Стекло"
|
751 |
|
752 |
-
#: inc/core/class.data.php:
|
753 |
-
#: inc/core/class.data.php:
|
754 |
msgid "Bubbles"
|
755 |
msgstr "Пузыри"
|
756 |
|
757 |
-
#: inc/core/class.data.php:
|
758 |
-
#: inc/core/class.data.php:
|
759 |
msgid "Noise"
|
760 |
msgstr "Шум"
|
761 |
|
762 |
-
#: inc/core/class.data.php:
|
763 |
msgid "Stroked"
|
764 |
msgstr "Прошитый"
|
765 |
|
766 |
-
#: inc/core/class.data.php:
|
767 |
msgid "3D"
|
768 |
msgstr "3D"
|
769 |
|
770 |
-
#: inc/core/class.data.php:
|
771 |
msgid "Button background style preset"
|
772 |
msgstr "Стиль фона кнопки"
|
773 |
|
774 |
-
#: inc/core/class.data.php:
|
775 |
msgid "Button background color"
|
776 |
msgstr "Цвет фона кнопки"
|
777 |
|
778 |
-
#: inc/core/class.data.php:
|
779 |
msgid "Button text color"
|
780 |
msgstr "Цвет текста кнопки"
|
781 |
|
782 |
-
#: inc/core/class.data.php:
|
783 |
msgid "Button size"
|
784 |
msgstr "Размер кнопки"
|
785 |
|
786 |
-
#: inc/core/class.data.php:
|
787 |
msgid "Fluid"
|
788 |
msgstr "Резиновая"
|
789 |
|
790 |
-
#: inc/core/class.data.php:
|
791 |
msgid "Fluid buttons has 100% width"
|
792 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
793 |
|
794 |
-
#: inc/core/class.data.php:
|
795 |
-
#: inc/core/class.data.php:
|
796 |
-
#: inc/core/class.data.php:
|
797 |
msgid "Radius"
|
798 |
msgstr "Радиус"
|
799 |
|
800 |
-
#: inc/core/class.data.php:
|
801 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
802 |
msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
803 |
|
804 |
-
#: inc/core/class.data.php:
|
805 |
-
#: inc/core/class.data.php:
|
806 |
msgid "Icon"
|
807 |
msgstr "Иконка"
|
808 |
|
809 |
-
#: inc/core/class.data.php:
|
810 |
msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
|
811 |
msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
|
812 |
|
813 |
-
#: inc/core/class.data.php:
|
814 |
msgid "Dark"
|
815 |
msgstr "Темный"
|
816 |
|
817 |
-
#: inc/core/class.data.php:
|
818 |
msgid "Text shadow color"
|
819 |
msgstr "Цвет тени текста"
|
820 |
|
821 |
-
#: inc/core/class.data.php:
|
822 |
msgid "Color of button text shadow"
|
823 |
msgstr "Цвет тени текста кнопки"
|
824 |
|
825 |
-
#: inc/core/class.data.php:
|
826 |
-
#: inc/core/class.data.php:
|
827 |
msgid "None"
|
828 |
msgstr "Нет"
|
829 |
|
830 |
-
#: inc/core/class.data.php:
|
831 |
msgid "Top"
|
832 |
msgstr "Сверху"
|
833 |
|
834 |
-
#: inc/core/class.data.php:
|
835 |
msgid "Bottom"
|
836 |
msgstr "Снизу"
|
837 |
|
838 |
-
#: inc/core/class.data.php:
|
839 |
msgid "Top right"
|
840 |
msgstr "Сверху справа"
|
841 |
|
842 |
-
#: inc/core/class.data.php:
|
843 |
msgid "Top left"
|
844 |
msgstr "Сверху слева"
|
845 |
|
846 |
-
#: inc/core/class.data.php:
|
847 |
msgid "Bottom right"
|
848 |
msgstr "Снизу справа"
|
849 |
|
850 |
-
#: inc/core/class.data.php:
|
851 |
msgid "Bottom left"
|
852 |
msgstr "Снизу слева"
|
853 |
|
854 |
-
#: inc/core/class.data.php:
|
855 |
msgid "Text shadow position"
|
856 |
msgstr "Положение тени текста"
|
857 |
|
858 |
-
#: inc/core/class.data.php:
|
859 |
msgid "Position of button text shadow"
|
860 |
msgstr "Положение тени текста кнопки"
|
861 |
|
862 |
-
#: inc/core/class.data.php:
|
863 |
msgid "Description"
|
864 |
msgstr "Описание"
|
865 |
|
866 |
-
#: inc/core/class.data.php:
|
867 |
msgid "Small description under button text. This option is incompatible with icon."
|
868 |
msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
|
869 |
|
870 |
-
#: inc/core/class.data.php:
|
871 |
msgid "Button text"
|
872 |
msgstr "Текст кнопки"
|
873 |
|
874 |
-
#: inc/core/class.data.php:
|
875 |
msgid "Styled button"
|
876 |
msgstr "Стильная кнопка"
|
877 |
|
878 |
-
#: inc/core/class.data.php:
|
879 |
msgid "Service"
|
880 |
msgstr "Услуга"
|
881 |
|
882 |
-
#: inc/core/class.data.php:
|
883 |
#: inc/core/shortcodes.php:450
|
884 |
msgid "Service title"
|
885 |
msgstr "Название услуги"
|
886 |
|
887 |
-
#: inc/core/class.data.php:
|
888 |
msgid "Service name"
|
889 |
msgstr "Название услуги"
|
890 |
|
891 |
-
#: inc/core/class.data.php:
|
892 |
msgid "You can upload custom icon for this box"
|
893 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
894 |
|
895 |
-
#: inc/core/class.data.php:
|
896 |
msgid "Icon size"
|
897 |
msgstr "Размер иконки"
|
898 |
|
899 |
-
#: inc/core/class.data.php:
|
900 |
msgid "Size of the uploaded icon in pixels"
|
901 |
msgstr "Размер загруженной иконки в пикселях"
|
902 |
|
903 |
-
#: inc/core/class.data.php:
|
904 |
msgid "Service description"
|
905 |
msgstr "Описание услуги"
|
906 |
|
907 |
-
#: inc/core/class.data.php:
|
908 |
msgid "Service box with title"
|
909 |
msgstr "Блок услуга с заголовком"
|
910 |
|
911 |
-
#: inc/core/class.data.php:
|
912 |
msgid "Box title"
|
913 |
msgstr "Заголовок блока"
|
914 |
|
915 |
-
#: inc/core/class.data.php:
|
916 |
msgid "Text for the box title"
|
917 |
msgstr "Текст для заголовка блока"
|
918 |
|
919 |
-
#: inc/core/class.data.php:
|
920 |
msgid "Box style preset"
|
921 |
msgstr "Стиль блока"
|
922 |
|
923 |
-
#: inc/core/class.data.php:
|
924 |
msgid "Color"
|
925 |
msgstr "Цвет"
|
926 |
|
927 |
-
#: inc/core/class.data.php:
|
928 |
msgid "Color for the box title and borders"
|
929 |
msgstr "Цвет заголовка блока и его рамки"
|
930 |
|
931 |
-
#: inc/core/class.data.php:
|
932 |
msgid "Title text color"
|
933 |
msgstr "Цвет текста заголовка"
|
934 |
|
935 |
-
#: inc/core/class.data.php:
|
936 |
msgid "Color for the box title text"
|
937 |
msgstr "Цвет текста в заголовке блока"
|
938 |
|
939 |
-
#: inc/core/class.data.php:
|
940 |
msgid "Box corners radius"
|
941 |
msgstr "Радиус углов"
|
942 |
|
943 |
-
#: inc/core/class.data.php:
|
944 |
msgid "Box content"
|
945 |
msgstr "Содержимое блока"
|
946 |
|
947 |
-
#: inc/core/class.data.php:
|
948 |
msgid "Colored box with caption"
|
949 |
msgstr "Цветной блок с заголовком"
|
950 |
|
951 |
-
#: inc/core/class.data.php:
|
952 |
msgid "Note background color"
|
953 |
msgstr "Цвет фона заметки"
|
954 |
|
955 |
-
#: inc/core/class.data.php:
|
956 |
msgid "Note text color"
|
957 |
msgstr "Цвет текста заметки"
|
958 |
|
959 |
-
#: inc/core/class.data.php:
|
960 |
msgid "Note corners radius"
|
961 |
msgstr "Радиус углов"
|
962 |
|
963 |
-
#: inc/core/class.data.php:
|
964 |
msgid "Note text"
|
965 |
msgstr "Текст заметки"
|
966 |
|
967 |
-
#: inc/core/class.data.php:
|
968 |
msgid "Colored box"
|
969 |
msgstr "Цветной блок"
|
970 |
|
971 |
-
#: inc/core/class.data.php:
|
972 |
msgid "Lightbox"
|
973 |
msgstr "Лайтбокс"
|
974 |
|
975 |
-
#: inc/core/class.data.php:
|
976 |
msgid "Iframe"
|
977 |
msgstr "Фрейм (iframe)"
|
978 |
|
979 |
-
#: inc/core/class.data.php:
|
980 |
msgid "Image"
|
981 |
msgstr "Изображение"
|
982 |
|
983 |
-
#: inc/core/class.data.php:
|
984 |
msgid "Inline (html content)"
|
985 |
msgstr "HTML элемент"
|
986 |
|
987 |
-
#: inc/core/class.data.php:
|
988 |
msgid "Content type"
|
989 |
msgstr "Тип содержимого"
|
990 |
|
991 |
-
#: inc/core/class.data.php:
|
992 |
msgid "Select type of the lightbox window content"
|
993 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
994 |
|
995 |
-
#: inc/core/class.data.php:
|
996 |
msgid "Content source"
|
997 |
msgstr "Источник содержимого"
|
998 |
|
999 |
-
#: inc/core/class.data.php:
|
1000 |
msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
|
1001 |
msgstr "Вставьте URL или CSS селектор. Используйте URL для типов содержимого Фрейм (iframe) и Изображение. Используйте CSS селектор для содержимого типа HTML элемент.<br />Примеры значений:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube видео (фрейм)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - загруженное изображение (изображение)<br /><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
1002 |
|
1003 |
-
#: inc/core/class.data.php:745
|
1004 |
-
msgid "[button] Click Here to Watch the Video [/button]"
|
1005 |
-
msgstr "[button] Нажмите чтобы посмотреть видео [/button]"
|
1006 |
-
|
1007 |
#: inc/core/class.data.php:746
|
|
|
|
|
|
|
|
|
|
|
1008 |
msgid "Lightbox window with custom content"
|
1009 |
msgstr "Лайтбокс с произвольным содержимым"
|
1010 |
|
1011 |
-
#: inc/core/class.data.php:
|
1012 |
msgid "Private"
|
1013 |
msgstr "Заметка для авторов"
|
1014 |
|
1015 |
-
#: inc/core/class.data.php:
|
1016 |
msgid "Private note text"
|
1017 |
msgstr "Текст приватной заметки"
|
1018 |
|
1019 |
-
#: inc/core/class.data.php:
|
1020 |
msgid "Private note for post authors"
|
1021 |
msgstr "Приватный текст для других авторов"
|
1022 |
|
1023 |
-
#: inc/core/class.data.php:
|
1024 |
msgid "YouTube"
|
1025 |
msgstr "YouTube"
|
1026 |
|
1027 |
-
#: inc/core/class.data.php:
|
1028 |
-
#: inc/core/class.data.php:
|
1029 |
-
#: inc/core/class.data.php:
|
1030 |
-
#: inc/core/class.data.php:
|
1031 |
-
#: inc/core/class.data.php:
|
1032 |
msgid "Url"
|
1033 |
msgstr "Ссылка"
|
1034 |
|
1035 |
-
#: inc/core/class.data.php:
|
1036 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1037 |
msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
1038 |
|
1039 |
-
#: inc/core/class.data.php:
|
1040 |
-
#: inc/core/class.data.php:
|
1041 |
-
#: inc/core/class.data.php:
|
1042 |
-
#: inc/core/class.data.php:
|
1043 |
-
#: inc/core/class.data.php:
|
1044 |
-
#: inc/core/class.data.php:
|
1045 |
-
#: inc/core/class.data.php:
|
1046 |
-
#: inc/core/class.data.php:
|
1047 |
-
#: inc/core/class.data.php:
|
1048 |
-
#: inc/core/class.data.php:
|
1049 |
msgid "Width"
|
1050 |
msgstr "Ширина"
|
1051 |
|
1052 |
-
#: inc/core/class.data.php:
|
1053 |
-
#: inc/core/class.data.php:
|
1054 |
-
#: inc/core/class.data.php:
|
1055 |
-
#: inc/core/class.data.php:
|
1056 |
msgid "Player width"
|
1057 |
msgstr "Ширина плеера"
|
1058 |
|
1059 |
-
#: inc/core/class.data.php:
|
1060 |
-
#: inc/core/class.data.php:
|
1061 |
-
#: inc/core/class.data.php:
|
1062 |
-
#: inc/core/class.data.php:
|
1063 |
msgid "Player height"
|
1064 |
msgstr "Высота плеера"
|
1065 |
|
1066 |
-
#: inc/core/class.data.php:
|
1067 |
-
#: inc/core/class.data.php:
|
1068 |
-
#: inc/core/class.data.php:
|
1069 |
-
#: inc/core/class.data.php:
|
1070 |
-
#: inc/core/class.data.php:
|
1071 |
-
#: inc/core/class.data.php:
|
1072 |
-
#: inc/core/class.data.php:
|
1073 |
msgid "Responsive"
|
1074 |
msgstr "Отзывчивость (responsive)"
|
1075 |
|
1076 |
-
#: inc/core/class.data.php:
|
1077 |
-
#: inc/core/class.data.php:
|
1078 |
-
#: inc/core/class.data.php:
|
1079 |
msgid "Ignore width and height parameters and make player responsive"
|
1080 |
msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
1081 |
|
1082 |
-
#: inc/core/class.data.php:
|
1083 |
-
#: inc/core/class.data.php:
|
1084 |
-
#: inc/core/class.data.php:
|
1085 |
-
#: inc/core/class.data.php:
|
1086 |
-
#: inc/core/class.data.php:
|
1087 |
-
#: inc/core/class.data.php:
|
1088 |
msgid "Autoplay"
|
1089 |
msgstr "Автовоспроизведение"
|
1090 |
|
1091 |
-
#: inc/core/class.data.php:
|
1092 |
-
#: inc/core/class.data.php:
|
1093 |
msgid "Play video automatically when page is loaded"
|
1094 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1095 |
|
1096 |
-
#: inc/core/class.data.php:
|
1097 |
msgid "YouTube video"
|
1098 |
msgstr "Видео YouTube"
|
1099 |
|
1100 |
-
#: inc/core/class.data.php:
|
1101 |
msgid "Vimeo"
|
1102 |
msgstr "Vimeo"
|
1103 |
|
1104 |
-
#: inc/core/class.data.php:
|
1105 |
msgid "Url of Vimeo page with video"
|
1106 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1107 |
|
1108 |
-
#: inc/core/class.data.php:
|
1109 |
msgid "Vimeo video"
|
1110 |
msgstr "Видео Vimeo"
|
1111 |
|
1112 |
-
#: inc/core/class.data.php:
|
1113 |
msgid "Screenr"
|
1114 |
msgstr "Screenr"
|
1115 |
|
1116 |
-
#: inc/core/class.data.php:
|
1117 |
msgid "Url of Screenr page with video"
|
1118 |
msgstr "Ссылка на страницу Screenr с видео"
|
1119 |
|
1120 |
-
#: inc/core/class.data.php:
|
1121 |
msgid "Screenr video"
|
1122 |
msgstr "Видео Screenr"
|
1123 |
|
1124 |
-
#: inc/core/class.data.php:
|
1125 |
msgid "Audio"
|
1126 |
msgstr "Аудио"
|
1127 |
|
1128 |
-
#: inc/core/class.data.php:
|
1129 |
-
#: inc/core/class.data.php:
|
1130 |
msgid "File"
|
1131 |
msgstr "Файл"
|
1132 |
|
1133 |
-
#: inc/core/class.data.php:
|
1134 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1135 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1136 |
|
1137 |
-
#: inc/core/class.data.php:
|
1138 |
msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1139 |
msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100%</b>"
|
1140 |
|
1141 |
-
#: inc/core/class.data.php:
|
1142 |
-
#: inc/core/class.data.php:
|
1143 |
msgid "Play file automatically when page is loaded"
|
1144 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1145 |
|
1146 |
-
#: inc/core/class.data.php:
|
1147 |
-
#: inc/core/class.data.php:
|
1148 |
msgid "Loop"
|
1149 |
msgstr "Повтор"
|
1150 |
|
1151 |
-
#: inc/core/class.data.php:
|
1152 |
-
#: inc/core/class.data.php:
|
1153 |
msgid "Repeat when playback is ended"
|
1154 |
msgstr "Повторять, когда воспроизведение окночено"
|
1155 |
|
1156 |
-
#: inc/core/class.data.php:
|
1157 |
msgid "Custom audio player"
|
1158 |
msgstr "Настраиваемый аудио-плеер"
|
1159 |
|
1160 |
-
#: inc/core/class.data.php:
|
1161 |
msgid "Video"
|
1162 |
msgstr "Видео"
|
1163 |
|
1164 |
-
#: inc/core/class.data.php:
|
1165 |
msgid "Url to mp4/flv video-file"
|
1166 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1167 |
|
1168 |
-
#: inc/core/class.data.php:
|
1169 |
msgid "Poster"
|
1170 |
msgstr "Постер"
|
1171 |
|
1172 |
-
#: inc/core/class.data.php:
|
1173 |
msgid "Url to poster image, that will be shown before playback"
|
1174 |
msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
|
1175 |
|
1176 |
-
#: inc/core/class.data.php:
|
1177 |
msgid "Player title"
|
1178 |
msgstr "Заголовок плеера"
|
1179 |
|
1180 |
-
#: inc/core/class.data.php:
|
1181 |
msgid "Controls"
|
1182 |
msgstr "Элементы управления"
|
1183 |
|
1184 |
-
#: inc/core/class.data.php:
|
1185 |
msgid "Show player controls (play/pause etc.) or not"
|
1186 |
msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
1187 |
|
1188 |
-
#: inc/core/class.data.php:
|
1189 |
msgid "Custom video player"
|
1190 |
msgstr "Настраиваемый видео-плеер"
|
1191 |
|
1192 |
-
#: inc/core/class.data.php:
|
1193 |
msgid "Table"
|
1194 |
msgstr "Таблица"
|
1195 |
|
1196 |
-
#: inc/core/class.data.php:
|
1197 |
msgid "CSV file"
|
1198 |
msgstr "CSV файл"
|
1199 |
|
1200 |
-
#: inc/core/class.data.php:
|
1201 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1202 |
msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
1203 |
|
1204 |
-
#: inc/core/class.data.php:
|
1205 |
msgid ""
|
1206 |
"<table>\n"
|
1207 |
"<tr>\n"
|
@@ -1225,614 +1228,614 @@ msgstr ""
|
|
1225 |
"</tr>\n"
|
1226 |
"</table>"
|
1227 |
|
1228 |
-
#: inc/core/class.data.php:
|
1229 |
msgid "Styled table from HTML or CSV file"
|
1230 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1231 |
|
1232 |
-
#: inc/core/class.data.php:
|
1233 |
msgid "Permalink"
|
1234 |
msgstr "Постоянная ссылка"
|
1235 |
|
1236 |
-
#: inc/core/class.data.php:
|
1237 |
msgid "ID"
|
1238 |
msgstr "ID"
|
1239 |
|
1240 |
-
#: inc/core/class.data.php:
|
1241 |
msgid "Post or page ID"
|
1242 |
msgstr "ID записи или страницы"
|
1243 |
|
1244 |
-
#: inc/core/class.data.php:
|
1245 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1246 |
msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
|
1247 |
|
1248 |
-
#: inc/core/class.data.php:
|
1249 |
msgid "Permalink to specified post/page"
|
1250 |
msgstr "Постоянная ссылка на страницу"
|
1251 |
|
1252 |
-
#: inc/core/class.data.php:
|
1253 |
msgid "Members"
|
1254 |
msgstr "Участники"
|
1255 |
|
1256 |
-
#: inc/core/class.data.php:
|
1257 |
#: inc/core/shortcodes.php:808
|
1258 |
msgid "This content is for registered users only. Please %login%."
|
1259 |
msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
1260 |
|
1261 |
-
#: inc/core/class.data.php:
|
1262 |
msgid "Message"
|
1263 |
msgstr "Сообщение"
|
1264 |
|
1265 |
-
#: inc/core/class.data.php:
|
1266 |
msgid "Message for not logged users"
|
1267 |
msgstr "Собщение для неавторизованных"
|
1268 |
|
1269 |
-
#: inc/core/class.data.php:
|
1270 |
msgid "Box color"
|
1271 |
msgstr "Цвет блока"
|
1272 |
|
1273 |
-
#: inc/core/class.data.php:
|
1274 |
msgid "This color will applied only to box for not logged users"
|
1275 |
msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
1276 |
|
1277 |
-
#: inc/core/class.data.php:
|
1278 |
#: inc/core/shortcodes.php:811
|
1279 |
msgid "login"
|
1280 |
msgstr "войдите"
|
1281 |
|
1282 |
-
#: inc/core/class.data.php:
|
1283 |
msgid "Login link text"
|
1284 |
msgstr "Текст ссылки войти"
|
1285 |
|
1286 |
-
#: inc/core/class.data.php:
|
1287 |
msgid "Text for the login link"
|
1288 |
msgstr "Текст ссылки ВОЙТИ"
|
1289 |
|
1290 |
-
#: inc/core/class.data.php:
|
1291 |
msgid "Login link url"
|
1292 |
msgstr "Адрес ссылки войти"
|
1293 |
|
1294 |
-
#: inc/core/class.data.php:
|
1295 |
msgid "Content for logged members"
|
1296 |
msgstr "Содержимое для авторизованых пользователей"
|
1297 |
|
1298 |
-
#: inc/core/class.data.php:
|
1299 |
msgid "Content for logged in members only"
|
1300 |
msgstr "Ссодержимое для авторизованых"
|
1301 |
|
1302 |
-
#: inc/core/class.data.php:
|
1303 |
msgid "Guests"
|
1304 |
msgstr "Гости"
|
1305 |
|
1306 |
-
#: inc/core/class.data.php:
|
1307 |
msgid "Content for guests"
|
1308 |
msgstr "Содержимое для гостей"
|
1309 |
|
1310 |
-
#: inc/core/class.data.php:
|
1311 |
msgid "Content for guests only"
|
1312 |
msgstr "Ссодержимое только для гостей"
|
1313 |
|
1314 |
-
#: inc/core/class.data.php:
|
1315 |
msgid "RSS Feed"
|
1316 |
msgstr "RSS лента"
|
1317 |
|
1318 |
-
#: inc/core/class.data.php:
|
1319 |
msgid "Url to RSS-feed"
|
1320 |
msgstr "Ссылка на RSS-ленту"
|
1321 |
|
1322 |
-
#: inc/core/class.data.php:
|
1323 |
msgid "Limit"
|
1324 |
msgstr "Лимит"
|
1325 |
|
1326 |
-
#: inc/core/class.data.php:
|
1327 |
msgid "Number of items to show"
|
1328 |
msgstr "Количество элементов для отображения"
|
1329 |
|
1330 |
-
#: inc/core/class.data.php:
|
1331 |
msgid "Feed grabber"
|
1332 |
msgstr "Граббер новостных лент"
|
1333 |
|
1334 |
-
#: inc/core/class.data.php:
|
1335 |
msgid "Menu"
|
1336 |
msgstr "Меню"
|
1337 |
|
1338 |
-
#: inc/core/class.data.php:
|
1339 |
msgid "Menu name"
|
1340 |
msgstr "Имя меню"
|
1341 |
|
1342 |
-
#: inc/core/class.data.php:
|
1343 |
msgid "Custom menu name. Ex: Main menu"
|
1344 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1345 |
|
1346 |
-
#: inc/core/class.data.php:
|
1347 |
msgid "Custom menu by name"
|
1348 |
msgstr "Произвольное меню"
|
1349 |
|
1350 |
-
#: inc/core/class.data.php:
|
1351 |
msgid "Sub pages"
|
1352 |
msgstr "Подстраницы"
|
1353 |
|
1354 |
-
#: inc/core/class.data.php:
|
1355 |
-
#: inc/core/class.data.php:
|
1356 |
msgid "Depth"
|
1357 |
msgstr "Глубина"
|
1358 |
|
1359 |
-
#: inc/core/class.data.php:
|
1360 |
msgid "Max depth level of children pages"
|
1361 |
msgstr "Максимальная глубина дочерних страниц"
|
1362 |
|
1363 |
-
#: inc/core/class.data.php:
|
1364 |
msgid "Parent ID"
|
1365 |
msgstr "ID родителя"
|
1366 |
|
1367 |
-
#: inc/core/class.data.php:
|
1368 |
msgid "ID of the parent page. Leave blank to use current page"
|
1369 |
msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
|
1370 |
|
1371 |
-
#: inc/core/class.data.php:
|
1372 |
msgid "List of sub pages"
|
1373 |
msgstr "Список дочерних страниц"
|
1374 |
|
1375 |
-
#: inc/core/class.data.php:
|
1376 |
msgid "Siblings"
|
1377 |
msgstr "Соседние страницы"
|
1378 |
|
1379 |
-
#: inc/core/class.data.php:
|
1380 |
msgid "Max depth level"
|
1381 |
msgstr "Максимальный уровень вложенности"
|
1382 |
|
1383 |
-
#: inc/core/class.data.php:
|
1384 |
msgid "List of cureent page siblings"
|
1385 |
msgstr "Список страниц, соседних с текущей"
|
1386 |
|
1387 |
-
#: inc/core/class.data.php:
|
1388 |
msgid "Document"
|
1389 |
msgstr "Документ"
|
1390 |
|
1391 |
-
#: inc/core/class.data.php:
|
1392 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1393 |
msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
1394 |
|
1395 |
-
#: inc/core/class.data.php:
|
1396 |
msgid "Viewer width"
|
1397 |
msgstr "Ширина просмотрщика"
|
1398 |
|
1399 |
-
#: inc/core/class.data.php:
|
1400 |
msgid "Viewer height"
|
1401 |
msgstr "Высота просмотрщика"
|
1402 |
|
1403 |
-
#: inc/core/class.data.php:
|
1404 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1405 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1406 |
|
1407 |
-
#: inc/core/class.data.php:
|
1408 |
msgid "Document viewer by Google"
|
1409 |
msgstr "Просмотрщик документов от Google"
|
1410 |
|
1411 |
-
#: inc/core/class.data.php:
|
1412 |
msgid "Gmap"
|
1413 |
msgstr "Google карта"
|
1414 |
|
1415 |
-
#: inc/core/class.data.php:
|
1416 |
msgid "Map width"
|
1417 |
msgstr "Ширина карты"
|
1418 |
|
1419 |
-
#: inc/core/class.data.php:
|
1420 |
msgid "Map height"
|
1421 |
msgstr "Высота карты"
|
1422 |
|
1423 |
-
#: inc/core/class.data.php:
|
1424 |
msgid "Ignore width and height parameters and make map responsive"
|
1425 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1426 |
|
1427 |
-
#: inc/core/class.data.php:
|
1428 |
msgid "Marker"
|
1429 |
msgstr "Маркер"
|
1430 |
|
1431 |
-
#: inc/core/class.data.php:
|
1432 |
msgid "Address for the marker. You can type it in any language"
|
1433 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1434 |
|
1435 |
-
#: inc/core/class.data.php:
|
1436 |
msgid "Maps by Google"
|
1437 |
msgstr "Карты от Google"
|
1438 |
|
1439 |
-
#: inc/core/class.data.php:
|
1440 |
msgid "Slider"
|
1441 |
msgstr "Слайдер"
|
1442 |
|
1443 |
-
#: inc/core/class.data.php:
|
1444 |
msgid "Choose source gallery, that will be used for this slider"
|
1445 |
msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
|
1446 |
|
1447 |
-
#: inc/core/class.data.php:
|
1448 |
msgid "Slider width (in pixels)"
|
1449 |
msgstr "Ширина слайдера (в пикселях)"
|
1450 |
|
1451 |
-
#: inc/core/class.data.php:
|
1452 |
msgid "Slider height (in pixels)"
|
1453 |
msgstr "Высота слайдера (в пикселях)"
|
1454 |
|
1455 |
-
#: inc/core/class.data.php:
|
1456 |
msgid "Ignore width and height parameters and make slider responsive"
|
1457 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
1458 |
|
1459 |
-
#: inc/core/class.data.php:
|
1460 |
-
#: inc/core/class.data.php:
|
1461 |
-
#: inc/core/class.data.php:
|
1462 |
msgid "Show titles"
|
1463 |
msgstr "Показывать заголовки"
|
1464 |
|
1465 |
-
#: inc/core/class.data.php:
|
1466 |
msgid "Display slide titles"
|
1467 |
msgstr "Отображать заголовки слайдов"
|
1468 |
|
1469 |
-
#: inc/core/class.data.php:
|
1470 |
msgid "Is slider centered on the page"
|
1471 |
msgstr "Слайдер выровнен по центру страницы"
|
1472 |
|
1473 |
-
#: inc/core/class.data.php:
|
1474 |
-
#: inc/core/class.data.php:
|
1475 |
msgid "Arrows"
|
1476 |
msgstr "Стрелки"
|
1477 |
|
1478 |
-
#: inc/core/class.data.php:
|
1479 |
-
#: inc/core/class.data.php:
|
1480 |
msgid "Show left and right arrows"
|
1481 |
msgstr "Показывать стрелки влево/вправо"
|
1482 |
|
1483 |
-
#: inc/core/class.data.php:
|
1484 |
-
#: inc/core/class.data.php:
|
1485 |
msgid "Pagination"
|
1486 |
msgstr "Страницы"
|
1487 |
|
1488 |
-
#: inc/core/class.data.php:
|
1489 |
-
#: inc/core/class.data.php:
|
1490 |
msgid "Show pagination"
|
1491 |
msgstr "Показывать страницы"
|
1492 |
|
1493 |
-
#: inc/core/class.data.php:
|
1494 |
-
#: inc/core/class.data.php:
|
1495 |
msgid "Mouse wheel control"
|
1496 |
msgstr "Управление колесом мыши"
|
1497 |
|
1498 |
-
#: inc/core/class.data.php:
|
1499 |
msgid "Allow to change slides with mouse wheel"
|
1500 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
1501 |
|
1502 |
-
#: inc/core/class.data.php:
|
1503 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1504 |
msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
|
1505 |
|
1506 |
-
#: inc/core/class.data.php:
|
1507 |
-
#: inc/core/class.data.php:
|
1508 |
msgid "Speed"
|
1509 |
msgstr "Скорость"
|
1510 |
|
1511 |
-
#: inc/core/class.data.php:
|
1512 |
-
#: inc/core/class.data.php:
|
1513 |
msgid "Specify animation speed"
|
1514 |
msgstr "Укажите скорость анимации"
|
1515 |
|
1516 |
-
#: inc/core/class.data.php:
|
1517 |
-
#: inc/core/class.data.php:
|
1518 |
-
#: inc/core/class.data.php:
|
1519 |
msgid "Links target"
|
1520 |
msgstr "Цель ссылок"
|
1521 |
|
1522 |
-
#: inc/core/class.data.php:
|
1523 |
msgid "Open slides links in new window/tab"
|
1524 |
msgstr "Открывать ссылки слайдов в новом окне или вкладке"
|
1525 |
|
1526 |
-
#: inc/core/class.data.php:
|
1527 |
msgid "Customizable image slider"
|
1528 |
msgstr "Настраиваемый слайдер изображений"
|
1529 |
|
1530 |
-
#: inc/core/class.data.php:
|
1531 |
msgid "Carousel"
|
1532 |
msgstr "Карусель"
|
1533 |
|
1534 |
-
#: inc/core/class.data.php:
|
1535 |
msgid "Choose source gallery, that will be used for this carousel"
|
1536 |
msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
|
1537 |
|
1538 |
-
#: inc/core/class.data.php:
|
1539 |
msgid "Carousel width (in pixels)"
|
1540 |
msgstr "Ширина карусели (в пикселях)"
|
1541 |
|
1542 |
-
#: inc/core/class.data.php:
|
1543 |
msgid "Carousel height (in pixels)"
|
1544 |
msgstr "Высота карусели (в пикселях)"
|
1545 |
|
1546 |
-
#: inc/core/class.data.php:
|
1547 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1548 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
1549 |
|
1550 |
-
#: inc/core/class.data.php:
|
1551 |
msgid "Items to show"
|
1552 |
msgstr "Количество элементов для отображения"
|
1553 |
|
1554 |
-
#: inc/core/class.data.php:
|
1555 |
msgid "How much carousel items is visible"
|
1556 |
msgstr "Сколько элементов карусели видны постоянно"
|
1557 |
|
1558 |
-
#: inc/core/class.data.php:
|
1559 |
msgid "Scroll number"
|
1560 |
msgstr "Кол-во прокручиваемых"
|
1561 |
|
1562 |
-
#: inc/core/class.data.php:
|
1563 |
msgid "How much items are scrolled in one transition"
|
1564 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
1565 |
|
1566 |
-
#: inc/core/class.data.php:
|
1567 |
msgid "Display titles for each item"
|
1568 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
1569 |
|
1570 |
-
#: inc/core/class.data.php:
|
1571 |
msgid "Is carousel centered on the page"
|
1572 |
msgstr "Карусель выровнена по центру страницы"
|
1573 |
|
1574 |
-
#: inc/core/class.data.php:
|
1575 |
msgid "Allow to rotate carousel with mouse wheel"
|
1576 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
1577 |
|
1578 |
-
#: inc/core/class.data.php:
|
1579 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1580 |
msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
|
1581 |
|
1582 |
-
#: inc/core/class.data.php:
|
1583 |
msgid "Open carousel links in new window/tab"
|
1584 |
msgstr "Открывать ссылки карусели в новом окне или вкладке"
|
1585 |
|
1586 |
-
#: inc/core/class.data.php:
|
1587 |
msgid "Customizable image carousel"
|
1588 |
msgstr "Настраиваемая карусель изображений"
|
1589 |
|
1590 |
-
#: inc/core/class.data.php:
|
1591 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1592 |
msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
|
1593 |
|
1594 |
-
#: inc/core/class.data.php:
|
1595 |
msgid "Single item width (in pixels)"
|
1596 |
msgstr "Ширина одного изображения (в пикселях)"
|
1597 |
|
1598 |
-
#: inc/core/class.data.php:
|
1599 |
msgid "Single item height (in pixels)"
|
1600 |
msgstr "Высота одного изображения (в пикселях)"
|
1601 |
|
1602 |
-
#: inc/core/class.data.php:
|
1603 |
msgid "Never"
|
1604 |
msgstr "Никогда"
|
1605 |
|
1606 |
-
#: inc/core/class.data.php:
|
1607 |
msgid "On mouse over"
|
1608 |
msgstr "При наведении мыши"
|
1609 |
|
1610 |
-
#: inc/core/class.data.php:
|
1611 |
msgid "Always"
|
1612 |
msgstr "Всегда"
|
1613 |
|
1614 |
-
#: inc/core/class.data.php:
|
1615 |
msgid "Title display mode"
|
1616 |
msgstr "Режим отображения заголовков"
|
1617 |
|
1618 |
-
#: inc/core/class.data.php:
|
1619 |
msgid "Open links in new window/tab"
|
1620 |
msgstr "Открывать ссылки в новом окне или вкладке"
|
1621 |
|
1622 |
-
#: inc/core/class.data.php:
|
1623 |
msgid "Customizable image gallery"
|
1624 |
msgstr "Настраиваемая галерея изображений"
|
1625 |
|
1626 |
-
#: inc/core/class.data.php:
|
1627 |
msgid "Posts"
|
1628 |
msgstr "Записи"
|
1629 |
|
1630 |
-
#: inc/core/class.data.php:
|
1631 |
msgid "Template"
|
1632 |
msgstr "Шаблон"
|
1633 |
|
1634 |
-
#: inc/core/class.data.php:
|
1635 |
msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1636 |
msgstr "<b>Не изменяйте значение этого поля, если вы не понимаете описания ниже.</b><br/>Относительный путь к файлу шаблона. Шаблоны по умолчанию расположены в папке с плагином (папка templates). Вы можете скопировать шаблоны в папку со своей темой и изменить как вам угодно. Вы можете использовать следующие шаблоны, которые уже поставляются с плагином и находятся в его папке:<br/><b%value>templates/default-loop.php</b> - обычный цикл постов<br/><b%value>templates/teaser-loop.php</b> - цикл постов в виде тизеров, изображения + заголовки<br/><b%value>templates/single-post.php</b> - шаблон одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - маркированный список с заголовками постов"
|
1637 |
|
1638 |
-
#: inc/core/class.data.php:
|
1639 |
msgid "Post ID's"
|
1640 |
msgstr "ID постов"
|
1641 |
|
1642 |
-
#: inc/core/class.data.php:
|
1643 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1644 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
1645 |
|
1646 |
-
#: inc/core/class.data.php:
|
1647 |
msgid "Posts per page"
|
1648 |
msgstr "Кол-во записей"
|
1649 |
|
1650 |
-
#: inc/core/class.data.php:
|
1651 |
msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
|
1652 |
msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
|
1653 |
|
1654 |
-
#: inc/core/class.data.php:
|
1655 |
msgid "Post types"
|
1656 |
msgstr "Типы постов"
|
1657 |
|
1658 |
-
#: inc/core/class.data.php:
|
1659 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1660 |
msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
1661 |
|
1662 |
-
#: inc/core/class.data.php:
|
1663 |
msgid "Taxonomy"
|
1664 |
msgstr "Таксономия"
|
1665 |
|
1666 |
-
#: inc/core/class.data.php:
|
1667 |
msgid "Select taxonomy to show posts from"
|
1668 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
1669 |
|
1670 |
-
#: inc/core/class.data.php:
|
1671 |
msgid "Terms"
|
1672 |
msgstr "Категории (terms)"
|
1673 |
|
1674 |
-
#: inc/core/class.data.php:
|
1675 |
msgid "Select terms to show posts from"
|
1676 |
msgstr "Выберите категории, из которых нужно показать записи"
|
1677 |
|
1678 |
-
#: inc/core/class.data.php:
|
1679 |
msgid "Taxonomy term operator"
|
1680 |
msgstr "Оператор выбора категорий"
|
1681 |
|
1682 |
-
#: inc/core/class.data.php:
|
1683 |
msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
|
1684 |
msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
1685 |
|
1686 |
-
#: inc/core/class.data.php:
|
1687 |
msgid "Authors"
|
1688 |
msgstr "Авторы"
|
1689 |
|
1690 |
-
#: inc/core/class.data.php:
|
1691 |
msgid "Choose the authors whose posts you want to show"
|
1692 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
1693 |
|
1694 |
-
#: inc/core/class.data.php:
|
1695 |
msgid "Meta key"
|
1696 |
msgstr "Произвольное поле"
|
1697 |
|
1698 |
-
#: inc/core/class.data.php:
|
1699 |
msgid "Enter meta key name to show posts that have this key"
|
1700 |
msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
|
1701 |
|
1702 |
-
#: inc/core/class.data.php:
|
1703 |
msgid "Offset"
|
1704 |
msgstr "Смещение (offset)"
|
1705 |
|
1706 |
-
#: inc/core/class.data.php:
|
1707 |
msgid "Specify offset to start posts loop not from first post"
|
1708 |
msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
|
1709 |
|
1710 |
-
#: inc/core/class.data.php:
|
1711 |
msgid "Descending"
|
1712 |
msgstr "По убыванию"
|
1713 |
|
1714 |
-
#: inc/core/class.data.php:
|
1715 |
msgid "Ascending"
|
1716 |
msgstr "По возрастанию"
|
1717 |
|
1718 |
-
#: inc/core/class.data.php:
|
1719 |
msgid "Order"
|
1720 |
msgstr "Порядок"
|
1721 |
|
1722 |
-
#: inc/core/class.data.php:
|
1723 |
msgid "Posts order"
|
1724 |
msgstr "Порядок сортировки записей"
|
1725 |
|
1726 |
-
#: inc/core/class.data.php:
|
1727 |
msgid "Post ID"
|
1728 |
msgstr "ID записи"
|
1729 |
|
1730 |
-
#: inc/core/class.data.php:
|
1731 |
msgid "Post author"
|
1732 |
msgstr "Автор записи"
|
1733 |
|
1734 |
-
#: inc/core/class.data.php:
|
1735 |
msgid "Post title"
|
1736 |
msgstr "Заголовок записи"
|
1737 |
|
1738 |
-
#: inc/core/class.data.php:
|
1739 |
msgid "Post slug"
|
1740 |
msgstr "Ссылка записи (slug)"
|
1741 |
|
1742 |
-
#: inc/core/class.data.php:
|
1743 |
msgid "Date"
|
1744 |
msgstr "Дата"
|
1745 |
|
1746 |
-
#: inc/core/class.data.php:
|
1747 |
msgid "Last modified date"
|
1748 |
msgstr "Дата изменения"
|
1749 |
|
1750 |
-
#: inc/core/class.data.php:
|
1751 |
-
#: inc/core/class.data.php:
|
1752 |
msgid "Post parent"
|
1753 |
msgstr "Родитель"
|
1754 |
|
1755 |
-
#: inc/core/class.data.php:
|
1756 |
msgid "Random"
|
1757 |
msgstr "Случайно"
|
1758 |
|
1759 |
-
#: inc/core/class.data.php:
|
1760 |
msgid "Comments number"
|
1761 |
msgstr "Кол-во комментариев"
|
1762 |
|
1763 |
-
#: inc/core/class.data.php:
|
1764 |
msgid "Menu order"
|
1765 |
msgstr "Порядок меню"
|
1766 |
|
1767 |
-
#: inc/core/class.data.php:
|
1768 |
msgid "Meta key values"
|
1769 |
msgstr "Значение произвольного поля"
|
1770 |
|
1771 |
-
#: inc/core/class.data.php:
|
1772 |
msgid "Order by"
|
1773 |
msgstr "Сортировать по"
|
1774 |
|
1775 |
-
#: inc/core/class.data.php:
|
1776 |
msgid "Order posts by"
|
1777 |
msgstr "Сортировать записи по следующему признаку"
|
1778 |
|
1779 |
-
#: inc/core/class.data.php:
|
1780 |
msgid "Show childrens of entered post (enter post ID)"
|
1781 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
1782 |
|
1783 |
-
#: inc/core/class.data.php:
|
1784 |
msgid "Published"
|
1785 |
msgstr "Опубликован"
|
1786 |
|
1787 |
-
#: inc/core/class.data.php:
|
1788 |
msgid "Pending"
|
1789 |
msgstr "Ожидает"
|
1790 |
|
1791 |
-
#: inc/core/class.data.php:
|
1792 |
msgid "Draft"
|
1793 |
msgstr "Черновик"
|
1794 |
|
1795 |
-
#: inc/core/class.data.php:
|
1796 |
msgid "Auto-draft"
|
1797 |
msgstr "Авто-черновик"
|
1798 |
|
1799 |
-
#: inc/core/class.data.php:
|
1800 |
msgid "Future post"
|
1801 |
msgstr "Запланирован"
|
1802 |
|
1803 |
-
#: inc/core/class.data.php:
|
1804 |
msgid "Private post"
|
1805 |
msgstr "Приватная запись"
|
1806 |
|
1807 |
-
#: inc/core/class.data.php:
|
1808 |
msgid "Inherit"
|
1809 |
msgstr "Вложенный"
|
1810 |
|
1811 |
-
#: inc/core/class.data.php:
|
1812 |
msgid "Trashed"
|
1813 |
msgstr "В корзине"
|
1814 |
|
1815 |
-
#: inc/core/class.data.php:
|
1816 |
msgid "Any"
|
1817 |
msgstr "Любой"
|
1818 |
|
1819 |
-
#: inc/core/class.data.php:
|
1820 |
msgid "Post status"
|
1821 |
msgstr "Статус записи"
|
1822 |
|
1823 |
-
#: inc/core/class.data.php:
|
1824 |
msgid "Show only posts with selected status"
|
1825 |
msgstr "Показать только записи с выбранным статусом"
|
1826 |
|
1827 |
-
#: inc/core/class.data.php:
|
1828 |
msgid "Ignore sticky"
|
1829 |
msgstr "Игнорировать прикрепленные"
|
1830 |
|
1831 |
-
#: inc/core/class.data.php:
|
1832 |
msgid "Select Yes to ignore posts that is sticked"
|
1833 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
1834 |
|
1835 |
-
#: inc/core/class.data.php:
|
1836 |
msgid "Custom posts query with customizable template"
|
1837 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
1838 |
|
@@ -2347,10 +2350,10 @@ msgstr "Редактировать"
|
|
2347 |
msgid "Instructions"
|
2348 |
msgstr "Инструкции"
|
2349 |
|
2350 |
-
#: inc/views/notifications.php:
|
2351 |
-
#: inc/views/notifications.php:
|
2352 |
-
#: inc/views/notifications.php:
|
2353 |
-
#: inc/views/notifications.php:
|
2354 |
msgid "Click to close"
|
2355 |
msgstr "Кликните чтобы закрыть"
|
2356 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-19 18:34+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-09-19 18:34+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
22 |
#: inc/core/class.data.php:153
|
23 |
#: inc/core/class.data.php:270
|
24 |
#: inc/core/class.data.php:350
|
25 |
+
#: inc/core/class.data.php:511
|
26 |
+
#: inc/core/class.data.php:643
|
27 |
msgid "Default"
|
28 |
msgstr "По умолчанию"
|
29 |
|
34 |
#: inc/example-addon.php:49
|
35 |
#: inc/core/class.data.php:158
|
36 |
#: inc/core/class.data.php:356
|
37 |
+
#: inc/core/class.data.php:475
|
38 |
+
#: inc/core/class.data.php:521
|
39 |
+
#: inc/core/class.data.php:650
|
40 |
msgid "Style"
|
41 |
msgstr "Стиль"
|
42 |
|
66 |
msgstr "Содержимое"
|
67 |
|
68 |
#: inc/core/class.data.php:36
|
69 |
+
#: inc/core/class.data.php:631
|
70 |
msgid "Box"
|
71 |
msgstr "Блок"
|
72 |
|
75 |
msgstr "Медиа"
|
76 |
|
77 |
#: inc/core/class.data.php:38
|
78 |
+
#: inc/core/class.data.php:1300
|
79 |
+
#: inc/core/class.data.php:1390
|
80 |
+
#: inc/core/class.data.php:1490
|
81 |
+
#: inc/core/class.data.php:1496
|
82 |
msgid "Gallery"
|
83 |
msgstr "Галерея"
|
84 |
|
92 |
|
93 |
#: inc/core/class.data.php:60
|
94 |
#: inc/core/class.data.php:361
|
95 |
+
#: inc/core/class.data.php:438
|
96 |
+
#: inc/core/class.data.php:539
|
97 |
msgid "Size"
|
98 |
msgstr "Размер"
|
99 |
|
103 |
|
104 |
#: inc/core/class.data.php:65
|
105 |
#: inc/core/class.data.php:326
|
106 |
+
#: inc/core/class.data.php:576
|
107 |
msgid "Left"
|
108 |
msgstr "Слева"
|
109 |
|
110 |
#: inc/core/class.data.php:66
|
111 |
+
#: inc/core/class.data.php:1333
|
112 |
+
#: inc/core/class.data.php:1439
|
113 |
msgid "Center"
|
114 |
msgstr "По центру"
|
115 |
|
116 |
#: inc/core/class.data.php:67
|
117 |
#: inc/core/class.data.php:327
|
118 |
+
#: inc/core/class.data.php:574
|
119 |
msgid "Right"
|
120 |
msgstr "Справа"
|
121 |
|
143 |
#: inc/core/class.data.php:365
|
144 |
#: inc/core/class.data.php:391
|
145 |
#: inc/core/class.data.php:407
|
146 |
+
#: inc/core/class.data.php:443
|
147 |
+
#: inc/core/class.data.php:479
|
148 |
+
#: inc/core/class.data.php:589
|
149 |
+
#: inc/core/class.data.php:623
|
150 |
+
#: inc/core/class.data.php:675
|
151 |
+
#: inc/core/class.data.php:710
|
152 |
+
#: inc/core/class.data.php:741
|
153 |
+
#: inc/core/class.data.php:757
|
154 |
+
#: inc/core/class.data.php:809
|
155 |
+
#: inc/core/class.data.php:858
|
156 |
+
#: inc/core/class.data.php:900
|
157 |
+
#: inc/core/class.data.php:938
|
158 |
+
#: inc/core/class.data.php:1007
|
159 |
+
#: inc/core/class.data.php:1028
|
160 |
+
#: inc/core/class.data.php:1059
|
161 |
+
#: inc/core/class.data.php:1092
|
162 |
+
#: inc/core/class.data.php:1108
|
163 |
+
#: inc/core/class.data.php:1133
|
164 |
+
#: inc/core/class.data.php:1152
|
165 |
+
#: inc/core/class.data.php:1178
|
166 |
+
#: inc/core/class.data.php:1198
|
167 |
+
#: inc/core/class.data.php:1242
|
168 |
+
#: inc/core/class.data.php:1286
|
169 |
+
#: inc/core/class.data.php:1376
|
170 |
+
#: inc/core/class.data.php:1482
|
171 |
+
#: inc/core/class.data.php:1533
|
172 |
msgid "Class"
|
173 |
msgstr "Класс"
|
174 |
|
186 |
#: inc/core/class.data.php:366
|
187 |
#: inc/core/class.data.php:392
|
188 |
#: inc/core/class.data.php:408
|
189 |
+
#: inc/core/class.data.php:444
|
190 |
+
#: inc/core/class.data.php:480
|
191 |
+
#: inc/core/class.data.php:590
|
192 |
+
#: inc/core/class.data.php:624
|
193 |
+
#: inc/core/class.data.php:676
|
194 |
+
#: inc/core/class.data.php:711
|
195 |
+
#: inc/core/class.data.php:742
|
196 |
+
#: inc/core/class.data.php:758
|
197 |
+
#: inc/core/class.data.php:810
|
198 |
+
#: inc/core/class.data.php:859
|
199 |
+
#: inc/core/class.data.php:901
|
200 |
+
#: inc/core/class.data.php:939
|
201 |
+
#: inc/core/class.data.php:1008
|
202 |
+
#: inc/core/class.data.php:1029
|
203 |
+
#: inc/core/class.data.php:1060
|
204 |
+
#: inc/core/class.data.php:1093
|
205 |
+
#: inc/core/class.data.php:1109
|
206 |
+
#: inc/core/class.data.php:1134
|
207 |
+
#: inc/core/class.data.php:1153
|
208 |
+
#: inc/core/class.data.php:1179
|
209 |
+
#: inc/core/class.data.php:1199
|
210 |
+
#: inc/core/class.data.php:1243
|
211 |
+
#: inc/core/class.data.php:1287
|
212 |
+
#: inc/core/class.data.php:1377
|
213 |
+
#: inc/core/class.data.php:1483
|
214 |
+
#: inc/core/class.data.php:1534
|
215 |
msgid "Extra CSS class"
|
216 |
msgstr "Дополнительный CSS класс"
|
217 |
|
244 |
msgstr "Отображать вкладки вертикально"
|
245 |
|
246 |
#: inc/core/class.data.php:109
|
247 |
+
#, php-format
|
248 |
msgid ""
|
249 |
+
"[%stab title=\"Title 1\"]Content 1[/%stab]\n"
|
250 |
+
"[%stab title=\"Title 2\"]Content 2[/%stab]\n"
|
251 |
+
"[%stab title=\"Title 3\"]Content 3[/%stab]"
|
252 |
msgstr ""
|
253 |
+
"[%stab title=\"Заголовок 1\"]Содержимое 1[/%stab]\n"
|
254 |
+
"[%stab title=\"Заголовок 2\"]Содержимое 2[/%stab]\n"
|
255 |
+
"[%stab title=\"Заголовок 3\"]Содержимое 3[/%stab]"
|
256 |
|
257 |
#: inc/core/class.data.php:110
|
258 |
msgid "Tabs container"
|
268 |
|
269 |
#: inc/core/class.data.php:121
|
270 |
#: inc/core/class.data.php:142
|
271 |
+
#: inc/core/class.data.php:605
|
272 |
+
#: inc/core/class.data.php:638
|
273 |
+
#: inc/core/class.data.php:966
|
274 |
msgid "Title"
|
275 |
msgstr "Заголовок"
|
276 |
|
380 |
msgstr "Пробел"
|
381 |
|
382 |
#: inc/core/class.data.php:222
|
383 |
+
#: inc/core/class.data.php:792
|
384 |
+
#: inc/core/class.data.php:841
|
385 |
+
#: inc/core/class.data.php:889
|
386 |
+
#: inc/core/class.data.php:984
|
387 |
+
#: inc/core/class.data.php:1231
|
388 |
+
#: inc/core/class.data.php:1269
|
389 |
+
#: inc/core/class.data.php:1317
|
390 |
+
#: inc/core/class.data.php:1407
|
391 |
+
#: inc/core/class.data.php:1513
|
392 |
msgid "Height"
|
393 |
msgstr "Высота"
|
394 |
|
405 |
msgstr "Выделитель"
|
406 |
|
407 |
#: inc/core/class.data.php:243
|
408 |
+
#: inc/core/class.data.php:527
|
409 |
+
#: inc/core/class.data.php:693
|
410 |
msgid "Background"
|
411 |
msgstr "Фон"
|
412 |
|
415 |
msgstr "Цвет фона выделяемого текста"
|
416 |
|
417 |
#: inc/core/class.data.php:250
|
418 |
+
#: inc/core/class.data.php:533
|
419 |
+
#: inc/core/class.data.php:699
|
420 |
msgid "Text color"
|
421 |
msgstr "Цвет текста"
|
422 |
|
507 |
msgstr "Буквица"
|
508 |
|
509 |
#: inc/core/class.data.php:351
|
510 |
+
#: inc/core/class.data.php:512
|
511 |
msgid "Flat"
|
512 |
msgstr "Плоский"
|
513 |
|
514 |
#: inc/core/class.data.php:352
|
515 |
+
#: inc/core/class.data.php:563
|
516 |
msgid "Light"
|
517 |
msgstr "Светлый"
|
518 |
|
545 |
msgstr "Колонки"
|
546 |
|
547 |
#: inc/core/class.data.php:412
|
548 |
+
#, php-format
|
549 |
msgid ""
|
550 |
+
"[%scolumn size=\"1/3\"]Content[/%scolumn]\n"
|
551 |
+
"[%scolumn size=\"1/3\"]Content[/%scolumn]\n"
|
552 |
+
"[%scolumn size=\"1/3\"]Content[/%scolumn]"
|
553 |
msgstr ""
|
554 |
+
"[%scolumn size=\"1/3\"]Содержимое[/%scolumn]\n"
|
555 |
+
"[%scolumn size=\"1/3\"]Содержимое[/%scolumn]\n"
|
556 |
+
"[%scolumn size=\"1/3\"]Содержимое[/%scolumn]"
|
557 |
|
558 |
+
#: inc/core/class.data.php:413
|
559 |
msgid "Row for flexible columns"
|
560 |
msgstr "Контейнер с резиновыми колонками"
|
561 |
|
562 |
+
#: inc/core/class.data.php:417
|
563 |
msgid "Column"
|
564 |
msgstr "Колонка"
|
565 |
|
566 |
+
#: inc/core/class.data.php:424
|
567 |
msgid "Full width"
|
568 |
msgstr "Во всю ширину"
|
569 |
|
570 |
+
#: inc/core/class.data.php:425
|
571 |
msgid "One half"
|
572 |
msgstr "Одна вторая"
|
573 |
|
574 |
+
#: inc/core/class.data.php:426
|
575 |
msgid "One third"
|
576 |
msgstr "Одна третья"
|
577 |
|
578 |
+
#: inc/core/class.data.php:427
|
579 |
msgid "Two third"
|
580 |
msgstr "Две трети"
|
581 |
|
582 |
+
#: inc/core/class.data.php:428
|
583 |
msgid "One fourth"
|
584 |
msgstr "Одна четвертая"
|
585 |
|
586 |
+
#: inc/core/class.data.php:429
|
587 |
msgid "Three fourth"
|
588 |
msgstr "Три четвертых"
|
589 |
|
590 |
+
#: inc/core/class.data.php:430
|
591 |
msgid "One fifth"
|
592 |
msgstr "Одна пятая"
|
593 |
|
594 |
+
#: inc/core/class.data.php:431
|
595 |
msgid "Two fifth"
|
596 |
msgstr "Две пятых"
|
597 |
|
598 |
+
#: inc/core/class.data.php:432
|
599 |
msgid "Three fifth"
|
600 |
msgstr "Три пятых"
|
601 |
|
602 |
+
#: inc/core/class.data.php:433
|
603 |
msgid "Four fifth"
|
604 |
msgstr "Четыре пятых"
|
605 |
|
606 |
+
#: inc/core/class.data.php:434
|
607 |
msgid "One sixth"
|
608 |
msgstr "Одна шестая"
|
609 |
|
610 |
+
#: inc/core/class.data.php:435
|
611 |
msgid "Five sixth"
|
612 |
msgstr "Пять шестых"
|
613 |
|
614 |
+
#: inc/core/class.data.php:439
|
615 |
msgid "Select column width. This width will be calculated depend page width"
|
616 |
msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
617 |
|
618 |
+
#: inc/core/class.data.php:447
|
619 |
msgid "Column content"
|
620 |
msgstr "Содержимое колонки"
|
621 |
|
622 |
+
#: inc/core/class.data.php:447
|
623 |
msgid "Flexible and responsive columns"
|
624 |
msgstr "Резновые колонки"
|
625 |
|
626 |
+
#: inc/core/class.data.php:451
|
627 |
msgid "List"
|
628 |
msgstr "Список"
|
629 |
|
630 |
+
#: inc/core/class.data.php:458
|
631 |
msgid "Star"
|
632 |
msgstr "Звезда"
|
633 |
|
634 |
+
#: inc/core/class.data.php:459
|
635 |
msgid "Arrow"
|
636 |
msgstr "Стрелка"
|
637 |
|
638 |
+
#: inc/core/class.data.php:460
|
639 |
msgid "Check"
|
640 |
msgstr "Отметка"
|
641 |
|
642 |
+
#: inc/core/class.data.php:461
|
643 |
msgid "Cross"
|
644 |
msgstr "Крестик"
|
645 |
|
646 |
+
#: inc/core/class.data.php:462
|
647 |
msgid "Thumbs up"
|
648 |
msgstr "Палец вверх"
|
649 |
|
650 |
+
#: inc/core/class.data.php:463
|
651 |
+
#: inc/core/class.data.php:495
|
652 |
msgid "Link"
|
653 |
msgstr "Ссылка"
|
654 |
|
655 |
+
#: inc/core/class.data.php:464
|
656 |
msgid "Gear"
|
657 |
msgstr "Шестеренка"
|
658 |
|
659 |
+
#: inc/core/class.data.php:465
|
660 |
msgid "Time"
|
661 |
msgstr "Время"
|
662 |
|
663 |
+
#: inc/core/class.data.php:466
|
664 |
+
#: inc/core/class.data.php:685
|
665 |
msgid "Note"
|
666 |
msgstr "Заметка"
|
667 |
|
668 |
+
#: inc/core/class.data.php:467
|
669 |
msgid "Plus"
|
670 |
msgstr "Плюс"
|
671 |
|
672 |
+
#: inc/core/class.data.php:468
|
673 |
msgid "Guard"
|
674 |
msgstr "Защита"
|
675 |
|
676 |
+
#: inc/core/class.data.php:469
|
677 |
msgid "Event"
|
678 |
msgstr "Событие"
|
679 |
|
680 |
+
#: inc/core/class.data.php:470
|
681 |
msgid "Idea"
|
682 |
msgstr "Идя"
|
683 |
|
684 |
+
#: inc/core/class.data.php:471
|
685 |
#: inc/core/class.generator.php:82
|
686 |
#: inc/core/class.shortcodes-ultimate.php:144
|
687 |
#: inc/vendor/class.sunrise-framework.php:279
|
688 |
msgid "Settings"
|
689 |
msgstr "Настройки"
|
690 |
|
691 |
+
#: inc/core/class.data.php:472
|
692 |
msgid "Twitter"
|
693 |
msgstr "Твиттер"
|
694 |
|
695 |
+
#: inc/core/class.data.php:475
|
696 |
msgid "List items style/icons"
|
697 |
msgstr "Стиль/иконка элементов списка"
|
698 |
|
699 |
+
#: inc/core/class.data.php:484
|
700 |
msgid ""
|
701 |
"<ul>\n"
|
702 |
"<li>List item</li>\n"
|
710 |
"<li>Элемент списка</li>\n"
|
711 |
"</ul>"
|
712 |
|
713 |
+
#: inc/core/class.data.php:484
|
714 |
msgid "Styled unordered list"
|
715 |
msgstr "Стильный неупорядоченный список"
|
716 |
|
717 |
+
#: inc/core/class.data.php:488
|
718 |
msgid "Button"
|
719 |
msgstr "Кнопка"
|
720 |
|
721 |
+
#: inc/core/class.data.php:496
|
722 |
msgid "Button link"
|
723 |
msgstr "Ссылка кнопки"
|
724 |
|
725 |
+
#: inc/core/class.data.php:501
|
726 |
+
#: inc/core/class.data.php:1050
|
727 |
msgid "Same tab"
|
728 |
msgstr "Та же вкладка"
|
729 |
|
730 |
+
#: inc/core/class.data.php:502
|
731 |
+
#: inc/core/class.data.php:1051
|
732 |
msgid "New tab"
|
733 |
msgstr "Новая вкладка"
|
734 |
|
735 |
+
#: inc/core/class.data.php:505
|
736 |
+
#: inc/core/class.data.php:1054
|
737 |
msgid "Target"
|
738 |
msgstr "Цель"
|
739 |
|
740 |
+
#: inc/core/class.data.php:506
|
741 |
msgid "Button link target"
|
742 |
msgstr "Цель ссылки кнопки"
|
743 |
|
744 |
+
#: inc/core/class.data.php:513
|
745 |
+
#: inc/core/class.data.php:644
|
746 |
msgid "Soft"
|
747 |
msgstr "Мягкий"
|
748 |
|
749 |
+
#: inc/core/class.data.php:514
|
750 |
+
#: inc/core/class.data.php:645
|
751 |
msgid "Glass"
|
752 |
msgstr "Стекло"
|
753 |
|
754 |
+
#: inc/core/class.data.php:515
|
755 |
+
#: inc/core/class.data.php:646
|
756 |
msgid "Bubbles"
|
757 |
msgstr "Пузыри"
|
758 |
|
759 |
+
#: inc/core/class.data.php:516
|
760 |
+
#: inc/core/class.data.php:647
|
761 |
msgid "Noise"
|
762 |
msgstr "Шум"
|
763 |
|
764 |
+
#: inc/core/class.data.php:517
|
765 |
msgid "Stroked"
|
766 |
msgstr "Прошитый"
|
767 |
|
768 |
+
#: inc/core/class.data.php:518
|
769 |
msgid "3D"
|
770 |
msgstr "3D"
|
771 |
|
772 |
+
#: inc/core/class.data.php:521
|
773 |
msgid "Button background style preset"
|
774 |
msgstr "Стиль фона кнопки"
|
775 |
|
776 |
+
#: inc/core/class.data.php:527
|
777 |
msgid "Button background color"
|
778 |
msgstr "Цвет фона кнопки"
|
779 |
|
780 |
+
#: inc/core/class.data.php:534
|
781 |
msgid "Button text color"
|
782 |
msgstr "Цвет текста кнопки"
|
783 |
|
784 |
+
#: inc/core/class.data.php:540
|
785 |
msgid "Button size"
|
786 |
msgstr "Размер кнопки"
|
787 |
|
788 |
+
#: inc/core/class.data.php:545
|
789 |
msgid "Fluid"
|
790 |
msgstr "Резиновая"
|
791 |
|
792 |
+
#: inc/core/class.data.php:545
|
793 |
msgid "Fluid buttons has 100% width"
|
794 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
795 |
|
796 |
+
#: inc/core/class.data.php:551
|
797 |
+
#: inc/core/class.data.php:670
|
798 |
+
#: inc/core/class.data.php:706
|
799 |
msgid "Radius"
|
800 |
msgstr "Радиус"
|
801 |
|
802 |
+
#: inc/core/class.data.php:552
|
803 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
804 |
msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
805 |
|
806 |
+
#: inc/core/class.data.php:557
|
807 |
+
#: inc/core/class.data.php:611
|
808 |
msgid "Icon"
|
809 |
msgstr "Иконка"
|
810 |
|
811 |
+
#: inc/core/class.data.php:558
|
812 |
msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
|
813 |
msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
|
814 |
|
815 |
+
#: inc/core/class.data.php:564
|
816 |
msgid "Dark"
|
817 |
msgstr "Темный"
|
818 |
|
819 |
+
#: inc/core/class.data.php:567
|
820 |
msgid "Text shadow color"
|
821 |
msgstr "Цвет тени текста"
|
822 |
|
823 |
+
#: inc/core/class.data.php:567
|
824 |
msgid "Color of button text shadow"
|
825 |
msgstr "Цвет тени текста кнопки"
|
826 |
|
827 |
+
#: inc/core/class.data.php:572
|
828 |
+
#: inc/core/class.data.php:1625
|
829 |
msgid "None"
|
830 |
msgstr "Нет"
|
831 |
|
832 |
+
#: inc/core/class.data.php:573
|
833 |
msgid "Top"
|
834 |
msgstr "Сверху"
|
835 |
|
836 |
+
#: inc/core/class.data.php:575
|
837 |
msgid "Bottom"
|
838 |
msgstr "Снизу"
|
839 |
|
840 |
+
#: inc/core/class.data.php:577
|
841 |
msgid "Top right"
|
842 |
msgstr "Сверху справа"
|
843 |
|
844 |
+
#: inc/core/class.data.php:578
|
845 |
msgid "Top left"
|
846 |
msgstr "Сверху слева"
|
847 |
|
848 |
+
#: inc/core/class.data.php:578
|
849 |
msgid "Bottom right"
|
850 |
msgstr "Снизу справа"
|
851 |
|
852 |
+
#: inc/core/class.data.php:578
|
853 |
msgid "Bottom left"
|
854 |
msgstr "Снизу слева"
|
855 |
|
856 |
+
#: inc/core/class.data.php:580
|
857 |
msgid "Text shadow position"
|
858 |
msgstr "Положение тени текста"
|
859 |
|
860 |
+
#: inc/core/class.data.php:580
|
861 |
msgid "Position of button text shadow"
|
862 |
msgstr "Положение тени текста кнопки"
|
863 |
|
864 |
+
#: inc/core/class.data.php:584
|
865 |
msgid "Description"
|
866 |
msgstr "Описание"
|
867 |
|
868 |
+
#: inc/core/class.data.php:585
|
869 |
msgid "Small description under button text. This option is incompatible with icon."
|
870 |
msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
|
871 |
|
872 |
+
#: inc/core/class.data.php:593
|
873 |
msgid "Button text"
|
874 |
msgstr "Текст кнопки"
|
875 |
|
876 |
+
#: inc/core/class.data.php:594
|
877 |
msgid "Styled button"
|
878 |
msgstr "Стильная кнопка"
|
879 |
|
880 |
+
#: inc/core/class.data.php:598
|
881 |
msgid "Service"
|
882 |
msgstr "Услуга"
|
883 |
|
884 |
+
#: inc/core/class.data.php:604
|
885 |
#: inc/core/shortcodes.php:450
|
886 |
msgid "Service title"
|
887 |
msgstr "Название услуги"
|
888 |
|
889 |
+
#: inc/core/class.data.php:606
|
890 |
msgid "Service name"
|
891 |
msgstr "Название услуги"
|
892 |
|
893 |
+
#: inc/core/class.data.php:612
|
894 |
msgid "You can upload custom icon for this box"
|
895 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
896 |
|
897 |
+
#: inc/core/class.data.php:618
|
898 |
msgid "Icon size"
|
899 |
msgstr "Размер иконки"
|
900 |
|
901 |
+
#: inc/core/class.data.php:619
|
902 |
msgid "Size of the uploaded icon in pixels"
|
903 |
msgstr "Размер загруженной иконки в пикселях"
|
904 |
|
905 |
+
#: inc/core/class.data.php:627
|
906 |
msgid "Service description"
|
907 |
msgstr "Описание услуги"
|
908 |
|
909 |
+
#: inc/core/class.data.php:627
|
910 |
msgid "Service box with title"
|
911 |
msgstr "Блок услуга с заголовком"
|
912 |
|
913 |
+
#: inc/core/class.data.php:637
|
914 |
msgid "Box title"
|
915 |
msgstr "Заголовок блока"
|
916 |
|
917 |
+
#: inc/core/class.data.php:638
|
918 |
msgid "Text for the box title"
|
919 |
msgstr "Текст для заголовка блока"
|
920 |
|
921 |
+
#: inc/core/class.data.php:651
|
922 |
msgid "Box style preset"
|
923 |
msgstr "Стиль блока"
|
924 |
|
925 |
+
#: inc/core/class.data.php:657
|
926 |
msgid "Color"
|
927 |
msgstr "Цвет"
|
928 |
|
929 |
+
#: inc/core/class.data.php:658
|
930 |
msgid "Color for the box title and borders"
|
931 |
msgstr "Цвет заголовка блока и его рамки"
|
932 |
|
933 |
+
#: inc/core/class.data.php:664
|
934 |
msgid "Title text color"
|
935 |
msgstr "Цвет текста заголовка"
|
936 |
|
937 |
+
#: inc/core/class.data.php:664
|
938 |
msgid "Color for the box title text"
|
939 |
msgstr "Цвет текста в заголовке блока"
|
940 |
|
941 |
+
#: inc/core/class.data.php:671
|
942 |
msgid "Box corners radius"
|
943 |
msgstr "Радиус углов"
|
944 |
|
945 |
+
#: inc/core/class.data.php:680
|
946 |
msgid "Box content"
|
947 |
msgstr "Содержимое блока"
|
948 |
|
949 |
+
#: inc/core/class.data.php:681
|
950 |
msgid "Colored box with caption"
|
951 |
msgstr "Цветной блок с заголовком"
|
952 |
|
953 |
+
#: inc/core/class.data.php:693
|
954 |
msgid "Note background color"
|
955 |
msgstr "Цвет фона заметки"
|
956 |
|
957 |
+
#: inc/core/class.data.php:700
|
958 |
msgid "Note text color"
|
959 |
msgstr "Цвет текста заметки"
|
960 |
|
961 |
+
#: inc/core/class.data.php:706
|
962 |
msgid "Note corners radius"
|
963 |
msgstr "Радиус углов"
|
964 |
|
965 |
+
#: inc/core/class.data.php:714
|
966 |
msgid "Note text"
|
967 |
msgstr "Текст заметки"
|
968 |
|
969 |
+
#: inc/core/class.data.php:715
|
970 |
msgid "Colored box"
|
971 |
msgstr "Цветной блок"
|
972 |
|
973 |
+
#: inc/core/class.data.php:719
|
974 |
msgid "Lightbox"
|
975 |
msgstr "Лайтбокс"
|
976 |
|
977 |
+
#: inc/core/class.data.php:726
|
978 |
msgid "Iframe"
|
979 |
msgstr "Фрейм (iframe)"
|
980 |
|
981 |
+
#: inc/core/class.data.php:727
|
982 |
msgid "Image"
|
983 |
msgstr "Изображение"
|
984 |
|
985 |
+
#: inc/core/class.data.php:728
|
986 |
msgid "Inline (html content)"
|
987 |
msgstr "HTML элемент"
|
988 |
|
989 |
+
#: inc/core/class.data.php:731
|
990 |
msgid "Content type"
|
991 |
msgstr "Тип содержимого"
|
992 |
|
993 |
+
#: inc/core/class.data.php:732
|
994 |
msgid "Select type of the lightbox window content"
|
995 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
996 |
|
997 |
+
#: inc/core/class.data.php:736
|
998 |
msgid "Content source"
|
999 |
msgstr "Источник содержимого"
|
1000 |
|
1001 |
+
#: inc/core/class.data.php:737
|
1002 |
msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
|
1003 |
msgstr "Вставьте URL или CSS селектор. Используйте URL для типов содержимого Фрейм (iframe) и Изображение. Используйте CSS селектор для содержимого типа HTML элемент.<br />Примеры значений:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube видео (фрейм)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - загруженное изображение (изображение)<br /><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
1004 |
|
|
|
|
|
|
|
|
|
1005 |
#: inc/core/class.data.php:746
|
1006 |
+
#, php-format
|
1007 |
+
msgid "[%sbutton] Click Here to Watch the Video [/%sbutton]"
|
1008 |
+
msgstr "[%sbutton] Нажмите чтобы посмотреть видео [/%sbutton]"
|
1009 |
+
|
1010 |
+
#: inc/core/class.data.php:747
|
1011 |
msgid "Lightbox window with custom content"
|
1012 |
msgstr "Лайтбокс с произвольным содержимым"
|
1013 |
|
1014 |
+
#: inc/core/class.data.php:751
|
1015 |
msgid "Private"
|
1016 |
msgstr "Заметка для авторов"
|
1017 |
|
1018 |
+
#: inc/core/class.data.php:762
|
1019 |
msgid "Private note text"
|
1020 |
msgstr "Текст приватной заметки"
|
1021 |
|
1022 |
+
#: inc/core/class.data.php:763
|
1023 |
msgid "Private note for post authors"
|
1024 |
msgstr "Приватный текст для других авторов"
|
1025 |
|
1026 |
+
#: inc/core/class.data.php:767
|
1027 |
msgid "YouTube"
|
1028 |
msgstr "YouTube"
|
1029 |
|
1030 |
+
#: inc/core/class.data.php:774
|
1031 |
+
#: inc/core/class.data.php:824
|
1032 |
+
#: inc/core/class.data.php:872
|
1033 |
+
#: inc/core/class.data.php:1123
|
1034 |
+
#: inc/core/class.data.php:1213
|
1035 |
msgid "Url"
|
1036 |
msgstr "Ссылка"
|
1037 |
|
1038 |
+
#: inc/core/class.data.php:775
|
1039 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1040 |
msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
1041 |
|
1042 |
+
#: inc/core/class.data.php:783
|
1043 |
+
#: inc/core/class.data.php:832
|
1044 |
+
#: inc/core/class.data.php:880
|
1045 |
+
#: inc/core/class.data.php:921
|
1046 |
+
#: inc/core/class.data.php:975
|
1047 |
+
#: inc/core/class.data.php:1222
|
1048 |
+
#: inc/core/class.data.php:1260
|
1049 |
+
#: inc/core/class.data.php:1309
|
1050 |
+
#: inc/core/class.data.php:1399
|
1051 |
+
#: inc/core/class.data.php:1505
|
1052 |
msgid "Width"
|
1053 |
msgstr "Ширина"
|
1054 |
|
1055 |
+
#: inc/core/class.data.php:784
|
1056 |
+
#: inc/core/class.data.php:833
|
1057 |
+
#: inc/core/class.data.php:881
|
1058 |
+
#: inc/core/class.data.php:976
|
1059 |
msgid "Player width"
|
1060 |
msgstr "Ширина плеера"
|
1061 |
|
1062 |
+
#: inc/core/class.data.php:793
|
1063 |
+
#: inc/core/class.data.php:842
|
1064 |
+
#: inc/core/class.data.php:890
|
1065 |
+
#: inc/core/class.data.php:985
|
1066 |
msgid "Player height"
|
1067 |
msgstr "Высота плеера"
|
1068 |
|
1069 |
+
#: inc/core/class.data.php:798
|
1070 |
+
#: inc/core/class.data.php:847
|
1071 |
+
#: inc/core/class.data.php:895
|
1072 |
+
#: inc/core/class.data.php:1237
|
1073 |
+
#: inc/core/class.data.php:1275
|
1074 |
+
#: inc/core/class.data.php:1322
|
1075 |
+
#: inc/core/class.data.php:1412
|
1076 |
msgid "Responsive"
|
1077 |
msgstr "Отзывчивость (responsive)"
|
1078 |
|
1079 |
+
#: inc/core/class.data.php:799
|
1080 |
+
#: inc/core/class.data.php:848
|
1081 |
+
#: inc/core/class.data.php:896
|
1082 |
msgid "Ignore width and height parameters and make player responsive"
|
1083 |
msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
1084 |
|
1085 |
+
#: inc/core/class.data.php:804
|
1086 |
+
#: inc/core/class.data.php:853
|
1087 |
+
#: inc/core/class.data.php:927
|
1088 |
+
#: inc/core/class.data.php:996
|
1089 |
+
#: inc/core/class.data.php:1357
|
1090 |
+
#: inc/core/class.data.php:1463
|
1091 |
msgid "Autoplay"
|
1092 |
msgstr "Автовоспроизведение"
|
1093 |
|
1094 |
+
#: inc/core/class.data.php:805
|
1095 |
+
#: inc/core/class.data.php:854
|
1096 |
msgid "Play video automatically when page is loaded"
|
1097 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1098 |
|
1099 |
+
#: inc/core/class.data.php:813
|
1100 |
msgid "YouTube video"
|
1101 |
msgstr "Видео YouTube"
|
1102 |
|
1103 |
+
#: inc/core/class.data.php:817
|
1104 |
msgid "Vimeo"
|
1105 |
msgstr "Vimeo"
|
1106 |
|
1107 |
+
#: inc/core/class.data.php:824
|
1108 |
msgid "Url of Vimeo page with video"
|
1109 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1110 |
|
1111 |
+
#: inc/core/class.data.php:862
|
1112 |
msgid "Vimeo video"
|
1113 |
msgstr "Видео Vimeo"
|
1114 |
|
1115 |
+
#: inc/core/class.data.php:866
|
1116 |
msgid "Screenr"
|
1117 |
msgstr "Screenr"
|
1118 |
|
1119 |
+
#: inc/core/class.data.php:872
|
1120 |
msgid "Url of Screenr page with video"
|
1121 |
msgstr "Ссылка на страницу Screenr с видео"
|
1122 |
|
1123 |
+
#: inc/core/class.data.php:904
|
1124 |
msgid "Screenr video"
|
1125 |
msgstr "Видео Screenr"
|
1126 |
|
1127 |
+
#: inc/core/class.data.php:908
|
1128 |
msgid "Audio"
|
1129 |
msgstr "Аудио"
|
1130 |
|
1131 |
+
#: inc/core/class.data.php:915
|
1132 |
+
#: inc/core/class.data.php:954
|
1133 |
msgid "File"
|
1134 |
msgstr "Файл"
|
1135 |
|
1136 |
+
#: inc/core/class.data.php:916
|
1137 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1138 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1139 |
|
1140 |
+
#: inc/core/class.data.php:922
|
1141 |
msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1142 |
msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100%</b>"
|
1143 |
|
1144 |
+
#: inc/core/class.data.php:928
|
1145 |
+
#: inc/core/class.data.php:997
|
1146 |
msgid "Play file automatically when page is loaded"
|
1147 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1148 |
|
1149 |
+
#: inc/core/class.data.php:933
|
1150 |
+
#: inc/core/class.data.php:1002
|
1151 |
msgid "Loop"
|
1152 |
msgstr "Повтор"
|
1153 |
|
1154 |
+
#: inc/core/class.data.php:934
|
1155 |
+
#: inc/core/class.data.php:1003
|
1156 |
msgid "Repeat when playback is ended"
|
1157 |
msgstr "Повторять, когда воспроизведение окночено"
|
1158 |
|
1159 |
+
#: inc/core/class.data.php:943
|
1160 |
msgid "Custom audio player"
|
1161 |
msgstr "Настраиваемый аудио-плеер"
|
1162 |
|
1163 |
+
#: inc/core/class.data.php:947
|
1164 |
msgid "Video"
|
1165 |
msgstr "Видео"
|
1166 |
|
1167 |
+
#: inc/core/class.data.php:955
|
1168 |
msgid "Url to mp4/flv video-file"
|
1169 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1170 |
|
1171 |
+
#: inc/core/class.data.php:960
|
1172 |
msgid "Poster"
|
1173 |
msgstr "Постер"
|
1174 |
|
1175 |
+
#: inc/core/class.data.php:961
|
1176 |
msgid "Url to poster image, that will be shown before playback"
|
1177 |
msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
|
1178 |
|
1179 |
+
#: inc/core/class.data.php:967
|
1180 |
msgid "Player title"
|
1181 |
msgstr "Заголовок плеера"
|
1182 |
|
1183 |
+
#: inc/core/class.data.php:990
|
1184 |
msgid "Controls"
|
1185 |
msgstr "Элементы управления"
|
1186 |
|
1187 |
+
#: inc/core/class.data.php:991
|
1188 |
msgid "Show player controls (play/pause etc.) or not"
|
1189 |
msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
1190 |
|
1191 |
+
#: inc/core/class.data.php:1012
|
1192 |
msgid "Custom video player"
|
1193 |
msgstr "Настраиваемый видео-плеер"
|
1194 |
|
1195 |
+
#: inc/core/class.data.php:1016
|
1196 |
msgid "Table"
|
1197 |
msgstr "Таблица"
|
1198 |
|
1199 |
+
#: inc/core/class.data.php:1023
|
1200 |
msgid "CSV file"
|
1201 |
msgstr "CSV файл"
|
1202 |
|
1203 |
+
#: inc/core/class.data.php:1024
|
1204 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1205 |
msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
1206 |
|
1207 |
+
#: inc/core/class.data.php:1033
|
1208 |
msgid ""
|
1209 |
"<table>\n"
|
1210 |
"<tr>\n"
|
1228 |
"</tr>\n"
|
1229 |
"</table>"
|
1230 |
|
1231 |
+
#: inc/core/class.data.php:1034
|
1232 |
msgid "Styled table from HTML or CSV file"
|
1233 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1234 |
|
1235 |
+
#: inc/core/class.data.php:1038
|
1236 |
msgid "Permalink"
|
1237 |
msgstr "Постоянная ссылка"
|
1238 |
|
1239 |
+
#: inc/core/class.data.php:1044
|
1240 |
msgid "ID"
|
1241 |
msgstr "ID"
|
1242 |
|
1243 |
+
#: inc/core/class.data.php:1045
|
1244 |
msgid "Post or page ID"
|
1245 |
msgstr "ID записи или страницы"
|
1246 |
|
1247 |
+
#: inc/core/class.data.php:1055
|
1248 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1249 |
msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
|
1250 |
|
1251 |
+
#: inc/core/class.data.php:1065
|
1252 |
msgid "Permalink to specified post/page"
|
1253 |
msgstr "Постоянная ссылка на страницу"
|
1254 |
|
1255 |
+
#: inc/core/class.data.php:1069
|
1256 |
msgid "Members"
|
1257 |
msgstr "Участники"
|
1258 |
|
1259 |
+
#: inc/core/class.data.php:1074
|
1260 |
#: inc/core/shortcodes.php:808
|
1261 |
msgid "This content is for registered users only. Please %login%."
|
1262 |
msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
1263 |
|
1264 |
+
#: inc/core/class.data.php:1075
|
1265 |
msgid "Message"
|
1266 |
msgstr "Сообщение"
|
1267 |
|
1268 |
+
#: inc/core/class.data.php:1075
|
1269 |
msgid "Message for not logged users"
|
1270 |
msgstr "Собщение для неавторизованных"
|
1271 |
|
1272 |
+
#: inc/core/class.data.php:1080
|
1273 |
msgid "Box color"
|
1274 |
msgstr "Цвет блока"
|
1275 |
|
1276 |
+
#: inc/core/class.data.php:1080
|
1277 |
msgid "This color will applied only to box for not logged users"
|
1278 |
msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
1279 |
|
1280 |
+
#: inc/core/class.data.php:1083
|
1281 |
#: inc/core/shortcodes.php:811
|
1282 |
msgid "login"
|
1283 |
msgstr "войдите"
|
1284 |
|
1285 |
+
#: inc/core/class.data.php:1084
|
1286 |
msgid "Login link text"
|
1287 |
msgstr "Текст ссылки войти"
|
1288 |
|
1289 |
+
#: inc/core/class.data.php:1084
|
1290 |
msgid "Text for the login link"
|
1291 |
msgstr "Текст ссылки ВОЙТИ"
|
1292 |
|
1293 |
+
#: inc/core/class.data.php:1088
|
1294 |
msgid "Login link url"
|
1295 |
msgstr "Адрес ссылки войти"
|
1296 |
|
1297 |
+
#: inc/core/class.data.php:1097
|
1298 |
msgid "Content for logged members"
|
1299 |
msgstr "Содержимое для авторизованых пользователей"
|
1300 |
|
1301 |
+
#: inc/core/class.data.php:1098
|
1302 |
msgid "Content for logged in members only"
|
1303 |
msgstr "Ссодержимое для авторизованых"
|
1304 |
|
1305 |
+
#: inc/core/class.data.php:1102
|
1306 |
msgid "Guests"
|
1307 |
msgstr "Гости"
|
1308 |
|
1309 |
+
#: inc/core/class.data.php:1112
|
1310 |
msgid "Content for guests"
|
1311 |
msgstr "Содержимое для гостей"
|
1312 |
|
1313 |
+
#: inc/core/class.data.php:1112
|
1314 |
msgid "Content for guests only"
|
1315 |
msgstr "Ссодержимое только для гостей"
|
1316 |
|
1317 |
+
#: inc/core/class.data.php:1116
|
1318 |
msgid "RSS Feed"
|
1319 |
msgstr "RSS лента"
|
1320 |
|
1321 |
+
#: inc/core/class.data.php:1124
|
1322 |
msgid "Url to RSS-feed"
|
1323 |
msgstr "Ссылка на RSS-ленту"
|
1324 |
|
1325 |
+
#: inc/core/class.data.php:1129
|
1326 |
msgid "Limit"
|
1327 |
msgstr "Лимит"
|
1328 |
|
1329 |
+
#: inc/core/class.data.php:1129
|
1330 |
msgid "Number of items to show"
|
1331 |
msgstr "Количество элементов для отображения"
|
1332 |
|
1333 |
+
#: inc/core/class.data.php:1137
|
1334 |
msgid "Feed grabber"
|
1335 |
msgstr "Граббер новостных лент"
|
1336 |
|
1337 |
+
#: inc/core/class.data.php:1141
|
1338 |
msgid "Menu"
|
1339 |
msgstr "Меню"
|
1340 |
|
1341 |
+
#: inc/core/class.data.php:1148
|
1342 |
msgid "Menu name"
|
1343 |
msgstr "Имя меню"
|
1344 |
|
1345 |
+
#: inc/core/class.data.php:1148
|
1346 |
msgid "Custom menu name. Ex: Main menu"
|
1347 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1348 |
|
1349 |
+
#: inc/core/class.data.php:1156
|
1350 |
msgid "Custom menu by name"
|
1351 |
msgstr "Произвольное меню"
|
1352 |
|
1353 |
+
#: inc/core/class.data.php:1160
|
1354 |
msgid "Sub pages"
|
1355 |
msgstr "Подстраницы"
|
1356 |
|
1357 |
+
#: inc/core/class.data.php:1167
|
1358 |
+
#: inc/core/class.data.php:1193
|
1359 |
msgid "Depth"
|
1360 |
msgstr "Глубина"
|
1361 |
|
1362 |
+
#: inc/core/class.data.php:1168
|
1363 |
msgid "Max depth level of children pages"
|
1364 |
msgstr "Максимальная глубина дочерних страниц"
|
1365 |
|
1366 |
+
#: inc/core/class.data.php:1173
|
1367 |
msgid "Parent ID"
|
1368 |
msgstr "ID родителя"
|
1369 |
|
1370 |
+
#: inc/core/class.data.php:1174
|
1371 |
msgid "ID of the parent page. Leave blank to use current page"
|
1372 |
msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
|
1373 |
|
1374 |
+
#: inc/core/class.data.php:1182
|
1375 |
msgid "List of sub pages"
|
1376 |
msgstr "Список дочерних страниц"
|
1377 |
|
1378 |
+
#: inc/core/class.data.php:1186
|
1379 |
msgid "Siblings"
|
1380 |
msgstr "Соседние страницы"
|
1381 |
|
1382 |
+
#: inc/core/class.data.php:1194
|
1383 |
msgid "Max depth level"
|
1384 |
msgstr "Максимальный уровень вложенности"
|
1385 |
|
1386 |
+
#: inc/core/class.data.php:1202
|
1387 |
msgid "List of cureent page siblings"
|
1388 |
msgstr "Список страниц, соседних с текущей"
|
1389 |
|
1390 |
+
#: inc/core/class.data.php:1206
|
1391 |
msgid "Document"
|
1392 |
msgstr "Документ"
|
1393 |
|
1394 |
+
#: inc/core/class.data.php:1214
|
1395 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1396 |
msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
1397 |
|
1398 |
+
#: inc/core/class.data.php:1223
|
1399 |
msgid "Viewer width"
|
1400 |
msgstr "Ширина просмотрщика"
|
1401 |
|
1402 |
+
#: inc/core/class.data.php:1232
|
1403 |
msgid "Viewer height"
|
1404 |
msgstr "Высота просмотрщика"
|
1405 |
|
1406 |
+
#: inc/core/class.data.php:1238
|
1407 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1408 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1409 |
|
1410 |
+
#: inc/core/class.data.php:1246
|
1411 |
msgid "Document viewer by Google"
|
1412 |
msgstr "Просмотрщик документов от Google"
|
1413 |
|
1414 |
+
#: inc/core/class.data.php:1250
|
1415 |
msgid "Gmap"
|
1416 |
msgstr "Google карта"
|
1417 |
|
1418 |
+
#: inc/core/class.data.php:1261
|
1419 |
msgid "Map width"
|
1420 |
msgstr "Ширина карты"
|
1421 |
|
1422 |
+
#: inc/core/class.data.php:1270
|
1423 |
msgid "Map height"
|
1424 |
msgstr "Высота карты"
|
1425 |
|
1426 |
+
#: inc/core/class.data.php:1276
|
1427 |
msgid "Ignore width and height parameters and make map responsive"
|
1428 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1429 |
|
1430 |
+
#: inc/core/class.data.php:1281
|
1431 |
msgid "Marker"
|
1432 |
msgstr "Маркер"
|
1433 |
|
1434 |
+
#: inc/core/class.data.php:1282
|
1435 |
msgid "Address for the marker. You can type it in any language"
|
1436 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1437 |
|
1438 |
+
#: inc/core/class.data.php:1290
|
1439 |
msgid "Maps by Google"
|
1440 |
msgstr "Карты от Google"
|
1441 |
|
1442 |
+
#: inc/core/class.data.php:1294
|
1443 |
msgid "Slider"
|
1444 |
msgstr "Слайдер"
|
1445 |
|
1446 |
+
#: inc/core/class.data.php:1301
|
1447 |
msgid "Choose source gallery, that will be used for this slider"
|
1448 |
msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
|
1449 |
|
1450 |
+
#: inc/core/class.data.php:1309
|
1451 |
msgid "Slider width (in pixels)"
|
1452 |
msgstr "Ширина слайдера (в пикселях)"
|
1453 |
|
1454 |
+
#: inc/core/class.data.php:1317
|
1455 |
msgid "Slider height (in pixels)"
|
1456 |
msgstr "Высота слайдера (в пикселях)"
|
1457 |
|
1458 |
+
#: inc/core/class.data.php:1323
|
1459 |
msgid "Ignore width and height parameters and make slider responsive"
|
1460 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
1461 |
|
1462 |
+
#: inc/core/class.data.php:1328
|
1463 |
+
#: inc/core/class.data.php:1434
|
1464 |
+
#: inc/core/class.data.php:1523
|
1465 |
msgid "Show titles"
|
1466 |
msgstr "Показывать заголовки"
|
1467 |
|
1468 |
+
#: inc/core/class.data.php:1328
|
1469 |
msgid "Display slide titles"
|
1470 |
msgstr "Отображать заголовки слайдов"
|
1471 |
|
1472 |
+
#: inc/core/class.data.php:1333
|
1473 |
msgid "Is slider centered on the page"
|
1474 |
msgstr "Слайдер выровнен по центру страницы"
|
1475 |
|
1476 |
+
#: inc/core/class.data.php:1338
|
1477 |
+
#: inc/core/class.data.php:1444
|
1478 |
msgid "Arrows"
|
1479 |
msgstr "Стрелки"
|
1480 |
|
1481 |
+
#: inc/core/class.data.php:1338
|
1482 |
+
#: inc/core/class.data.php:1444
|
1483 |
msgid "Show left and right arrows"
|
1484 |
msgstr "Показывать стрелки влево/вправо"
|
1485 |
|
1486 |
+
#: inc/core/class.data.php:1343
|
1487 |
+
#: inc/core/class.data.php:1449
|
1488 |
msgid "Pagination"
|
1489 |
msgstr "Страницы"
|
1490 |
|
1491 |
+
#: inc/core/class.data.php:1344
|
1492 |
+
#: inc/core/class.data.php:1450
|
1493 |
msgid "Show pagination"
|
1494 |
msgstr "Показывать страницы"
|
1495 |
|
1496 |
+
#: inc/core/class.data.php:1348
|
1497 |
+
#: inc/core/class.data.php:1454
|
1498 |
msgid "Mouse wheel control"
|
1499 |
msgstr "Управление колесом мыши"
|
1500 |
|
1501 |
+
#: inc/core/class.data.php:1349
|
1502 |
msgid "Allow to change slides with mouse wheel"
|
1503 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
1504 |
|
1505 |
+
#: inc/core/class.data.php:1358
|
1506 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1507 |
msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
|
1508 |
|
1509 |
+
#: inc/core/class.data.php:1366
|
1510 |
+
#: inc/core/class.data.php:1472
|
1511 |
msgid "Speed"
|
1512 |
msgstr "Скорость"
|
1513 |
|
1514 |
+
#: inc/core/class.data.php:1366
|
1515 |
+
#: inc/core/class.data.php:1472
|
1516 |
msgid "Specify animation speed"
|
1517 |
msgstr "Укажите скорость анимации"
|
1518 |
|
1519 |
+
#: inc/core/class.data.php:1371
|
1520 |
+
#: inc/core/class.data.php:1477
|
1521 |
+
#: inc/core/class.data.php:1529
|
1522 |
msgid "Links target"
|
1523 |
msgstr "Цель ссылок"
|
1524 |
|
1525 |
+
#: inc/core/class.data.php:1372
|
1526 |
msgid "Open slides links in new window/tab"
|
1527 |
msgstr "Открывать ссылки слайдов в новом окне или вкладке"
|
1528 |
|
1529 |
+
#: inc/core/class.data.php:1380
|
1530 |
msgid "Customizable image slider"
|
1531 |
msgstr "Настраиваемый слайдер изображений"
|
1532 |
|
1533 |
+
#: inc/core/class.data.php:1384
|
1534 |
msgid "Carousel"
|
1535 |
msgstr "Карусель"
|
1536 |
|
1537 |
+
#: inc/core/class.data.php:1391
|
1538 |
msgid "Choose source gallery, that will be used for this carousel"
|
1539 |
msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
|
1540 |
|
1541 |
+
#: inc/core/class.data.php:1399
|
1542 |
msgid "Carousel width (in pixels)"
|
1543 |
msgstr "Ширина карусели (в пикселях)"
|
1544 |
|
1545 |
+
#: inc/core/class.data.php:1407
|
1546 |
msgid "Carousel height (in pixels)"
|
1547 |
msgstr "Высота карусели (в пикселях)"
|
1548 |
|
1549 |
+
#: inc/core/class.data.php:1413
|
1550 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1551 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
1552 |
|
1553 |
+
#: inc/core/class.data.php:1420
|
1554 |
msgid "Items to show"
|
1555 |
msgstr "Количество элементов для отображения"
|
1556 |
|
1557 |
+
#: inc/core/class.data.php:1421
|
1558 |
msgid "How much carousel items is visible"
|
1559 |
msgstr "Сколько элементов карусели видны постоянно"
|
1560 |
|
1561 |
+
#: inc/core/class.data.php:1428
|
1562 |
msgid "Scroll number"
|
1563 |
msgstr "Кол-во прокручиваемых"
|
1564 |
|
1565 |
+
#: inc/core/class.data.php:1429
|
1566 |
msgid "How much items are scrolled in one transition"
|
1567 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
1568 |
|
1569 |
+
#: inc/core/class.data.php:1434
|
1570 |
msgid "Display titles for each item"
|
1571 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
1572 |
|
1573 |
+
#: inc/core/class.data.php:1439
|
1574 |
msgid "Is carousel centered on the page"
|
1575 |
msgstr "Карусель выровнена по центру страницы"
|
1576 |
|
1577 |
+
#: inc/core/class.data.php:1455
|
1578 |
msgid "Allow to rotate carousel with mouse wheel"
|
1579 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
1580 |
|
1581 |
+
#: inc/core/class.data.php:1464
|
1582 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1583 |
msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
|
1584 |
|
1585 |
+
#: inc/core/class.data.php:1478
|
1586 |
msgid "Open carousel links in new window/tab"
|
1587 |
msgstr "Открывать ссылки карусели в новом окне или вкладке"
|
1588 |
|
1589 |
+
#: inc/core/class.data.php:1486
|
1590 |
msgid "Customizable image carousel"
|
1591 |
msgstr "Настраиваемая карусель изображений"
|
1592 |
|
1593 |
+
#: inc/core/class.data.php:1497
|
1594 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1595 |
msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
|
1596 |
|
1597 |
+
#: inc/core/class.data.php:1505
|
1598 |
msgid "Single item width (in pixels)"
|
1599 |
msgstr "Ширина одного изображения (в пикселях)"
|
1600 |
|
1601 |
+
#: inc/core/class.data.php:1513
|
1602 |
msgid "Single item height (in pixels)"
|
1603 |
msgstr "Высота одного изображения (в пикселях)"
|
1604 |
|
1605 |
+
#: inc/core/class.data.php:1518
|
1606 |
msgid "Never"
|
1607 |
msgstr "Никогда"
|
1608 |
|
1609 |
+
#: inc/core/class.data.php:1519
|
1610 |
msgid "On mouse over"
|
1611 |
msgstr "При наведении мыши"
|
1612 |
|
1613 |
+
#: inc/core/class.data.php:1520
|
1614 |
msgid "Always"
|
1615 |
msgstr "Всегда"
|
1616 |
|
1617 |
+
#: inc/core/class.data.php:1524
|
1618 |
msgid "Title display mode"
|
1619 |
msgstr "Режим отображения заголовков"
|
1620 |
|
1621 |
+
#: inc/core/class.data.php:1529
|
1622 |
msgid "Open links in new window/tab"
|
1623 |
msgstr "Открывать ссылки в новом окне или вкладке"
|
1624 |
|
1625 |
+
#: inc/core/class.data.php:1537
|
1626 |
msgid "Customizable image gallery"
|
1627 |
msgstr "Настраиваемая галерея изображений"
|
1628 |
|
1629 |
+
#: inc/core/class.data.php:1541
|
1630 |
msgid "Posts"
|
1631 |
msgstr "Записи"
|
1632 |
|
1633 |
+
#: inc/core/class.data.php:1546
|
1634 |
msgid "Template"
|
1635 |
msgstr "Шаблон"
|
1636 |
|
1637 |
+
#: inc/core/class.data.php:1547
|
1638 |
msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1639 |
msgstr "<b>Не изменяйте значение этого поля, если вы не понимаете описания ниже.</b><br/>Относительный путь к файлу шаблона. Шаблоны по умолчанию расположены в папке с плагином (папка templates). Вы можете скопировать шаблоны в папку со своей темой и изменить как вам угодно. Вы можете использовать следующие шаблоны, которые уже поставляются с плагином и находятся в его папке:<br/><b%value>templates/default-loop.php</b> - обычный цикл постов<br/><b%value>templates/teaser-loop.php</b> - цикл постов в виде тизеров, изображения + заголовки<br/><b%value>templates/single-post.php</b> - шаблон одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - маркированный список с заголовками постов"
|
1640 |
|
1641 |
+
#: inc/core/class.data.php:1551
|
1642 |
msgid "Post ID's"
|
1643 |
msgstr "ID постов"
|
1644 |
|
1645 |
+
#: inc/core/class.data.php:1552
|
1646 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1647 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
1648 |
|
1649 |
+
#: inc/core/class.data.php:1560
|
1650 |
msgid "Posts per page"
|
1651 |
msgstr "Кол-во записей"
|
1652 |
|
1653 |
+
#: inc/core/class.data.php:1561
|
1654 |
msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
|
1655 |
msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
|
1656 |
|
1657 |
+
#: inc/core/class.data.php:1568
|
1658 |
msgid "Post types"
|
1659 |
msgstr "Типы постов"
|
1660 |
|
1661 |
+
#: inc/core/class.data.php:1569
|
1662 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1663 |
msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
1664 |
|
1665 |
+
#: inc/core/class.data.php:1575
|
1666 |
msgid "Taxonomy"
|
1667 |
msgstr "Таксономия"
|
1668 |
|
1669 |
+
#: inc/core/class.data.php:1576
|
1670 |
msgid "Select taxonomy to show posts from"
|
1671 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
1672 |
|
1673 |
+
#: inc/core/class.data.php:1583
|
1674 |
msgid "Terms"
|
1675 |
msgstr "Категории (terms)"
|
1676 |
|
1677 |
+
#: inc/core/class.data.php:1583
|
1678 |
msgid "Select terms to show posts from"
|
1679 |
msgstr "Выберите категории, из которых нужно показать записи"
|
1680 |
|
1681 |
+
#: inc/core/class.data.php:1588
|
1682 |
msgid "Taxonomy term operator"
|
1683 |
msgstr "Оператор выбора категорий"
|
1684 |
|
1685 |
+
#: inc/core/class.data.php:1589
|
1686 |
msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
|
1687 |
msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
1688 |
|
1689 |
+
#: inc/core/class.data.php:1596
|
1690 |
msgid "Authors"
|
1691 |
msgstr "Авторы"
|
1692 |
|
1693 |
+
#: inc/core/class.data.php:1597
|
1694 |
msgid "Choose the authors whose posts you want to show"
|
1695 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
1696 |
|
1697 |
+
#: inc/core/class.data.php:1601
|
1698 |
msgid "Meta key"
|
1699 |
msgstr "Произвольное поле"
|
1700 |
|
1701 |
+
#: inc/core/class.data.php:1602
|
1702 |
msgid "Enter meta key name to show posts that have this key"
|
1703 |
msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
|
1704 |
|
1705 |
+
#: inc/core/class.data.php:1609
|
1706 |
msgid "Offset"
|
1707 |
msgstr "Смещение (offset)"
|
1708 |
|
1709 |
+
#: inc/core/class.data.php:1610
|
1710 |
msgid "Specify offset to start posts loop not from first post"
|
1711 |
msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
|
1712 |
|
1713 |
+
#: inc/core/class.data.php:1615
|
1714 |
msgid "Descending"
|
1715 |
msgstr "По убыванию"
|
1716 |
|
1717 |
+
#: inc/core/class.data.php:1616
|
1718 |
msgid "Ascending"
|
1719 |
msgstr "По возрастанию"
|
1720 |
|
1721 |
+
#: inc/core/class.data.php:1619
|
1722 |
msgid "Order"
|
1723 |
msgstr "Порядок"
|
1724 |
|
1725 |
+
#: inc/core/class.data.php:1620
|
1726 |
msgid "Posts order"
|
1727 |
msgstr "Порядок сортировки записей"
|
1728 |
|
1729 |
+
#: inc/core/class.data.php:1626
|
1730 |
msgid "Post ID"
|
1731 |
msgstr "ID записи"
|
1732 |
|
1733 |
+
#: inc/core/class.data.php:1627
|
1734 |
msgid "Post author"
|
1735 |
msgstr "Автор записи"
|
1736 |
|
1737 |
+
#: inc/core/class.data.php:1628
|
1738 |
msgid "Post title"
|
1739 |
msgstr "Заголовок записи"
|
1740 |
|
1741 |
+
#: inc/core/class.data.php:1629
|
1742 |
msgid "Post slug"
|
1743 |
msgstr "Ссылка записи (slug)"
|
1744 |
|
1745 |
+
#: inc/core/class.data.php:1630
|
1746 |
msgid "Date"
|
1747 |
msgstr "Дата"
|
1748 |
|
1749 |
+
#: inc/core/class.data.php:1630
|
1750 |
msgid "Last modified date"
|
1751 |
msgstr "Дата изменения"
|
1752 |
|
1753 |
+
#: inc/core/class.data.php:1631
|
1754 |
+
#: inc/core/class.data.php:1641
|
1755 |
msgid "Post parent"
|
1756 |
msgstr "Родитель"
|
1757 |
|
1758 |
+
#: inc/core/class.data.php:1632
|
1759 |
msgid "Random"
|
1760 |
msgstr "Случайно"
|
1761 |
|
1762 |
+
#: inc/core/class.data.php:1632
|
1763 |
msgid "Comments number"
|
1764 |
msgstr "Кол-во комментариев"
|
1765 |
|
1766 |
+
#: inc/core/class.data.php:1633
|
1767 |
msgid "Menu order"
|
1768 |
msgstr "Порядок меню"
|
1769 |
|
1770 |
+
#: inc/core/class.data.php:1633
|
1771 |
msgid "Meta key values"
|
1772 |
msgstr "Значение произвольного поля"
|
1773 |
|
1774 |
+
#: inc/core/class.data.php:1636
|
1775 |
msgid "Order by"
|
1776 |
msgstr "Сортировать по"
|
1777 |
|
1778 |
+
#: inc/core/class.data.php:1637
|
1779 |
msgid "Order posts by"
|
1780 |
msgstr "Сортировать записи по следующему признаку"
|
1781 |
|
1782 |
+
#: inc/core/class.data.php:1642
|
1783 |
msgid "Show childrens of entered post (enter post ID)"
|
1784 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
1785 |
|
1786 |
+
#: inc/core/class.data.php:1647
|
1787 |
msgid "Published"
|
1788 |
msgstr "Опубликован"
|
1789 |
|
1790 |
+
#: inc/core/class.data.php:1648
|
1791 |
msgid "Pending"
|
1792 |
msgstr "Ожидает"
|
1793 |
|
1794 |
+
#: inc/core/class.data.php:1649
|
1795 |
msgid "Draft"
|
1796 |
msgstr "Черновик"
|
1797 |
|
1798 |
+
#: inc/core/class.data.php:1650
|
1799 |
msgid "Auto-draft"
|
1800 |
msgstr "Авто-черновик"
|
1801 |
|
1802 |
+
#: inc/core/class.data.php:1651
|
1803 |
msgid "Future post"
|
1804 |
msgstr "Запланирован"
|
1805 |
|
1806 |
+
#: inc/core/class.data.php:1652
|
1807 |
msgid "Private post"
|
1808 |
msgstr "Приватная запись"
|
1809 |
|
1810 |
+
#: inc/core/class.data.php:1653
|
1811 |
msgid "Inherit"
|
1812 |
msgstr "Вложенный"
|
1813 |
|
1814 |
+
#: inc/core/class.data.php:1654
|
1815 |
msgid "Trashed"
|
1816 |
msgstr "В корзине"
|
1817 |
|
1818 |
+
#: inc/core/class.data.php:1655
|
1819 |
msgid "Any"
|
1820 |
msgstr "Любой"
|
1821 |
|
1822 |
+
#: inc/core/class.data.php:1658
|
1823 |
msgid "Post status"
|
1824 |
msgstr "Статус записи"
|
1825 |
|
1826 |
+
#: inc/core/class.data.php:1659
|
1827 |
msgid "Show only posts with selected status"
|
1828 |
msgstr "Показать только записи с выбранным статусом"
|
1829 |
|
1830 |
+
#: inc/core/class.data.php:1664
|
1831 |
msgid "Ignore sticky"
|
1832 |
msgstr "Игнорировать прикрепленные"
|
1833 |
|
1834 |
+
#: inc/core/class.data.php:1665
|
1835 |
msgid "Select Yes to ignore posts that is sticked"
|
1836 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
1837 |
|
1838 |
+
#: inc/core/class.data.php:1669
|
1839 |
msgid "Custom posts query with customizable template"
|
1840 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
1841 |
|
2350 |
msgid "Instructions"
|
2351 |
msgstr "Инструкции"
|
2352 |
|
2353 |
+
#: inc/views/notifications.php:13
|
2354 |
+
#: inc/views/notifications.php:21
|
2355 |
+
#: inc/views/notifications.php:29
|
2356 |
+
#: inc/views/notifications.php:37
|
2357 |
msgid "Click to close"
|
2358 |
msgstr "Кликните чтобы закрыть"
|
2359 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
5 |
Tags: shortcode, shortcodes, short code, video, responsive, responsive video, youtube, vimeo, audio, mp3, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordion, slider, plugin, admin, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, guests, membership, documents, carousel, rss, touch, icon, icons
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.0
|
8 |
-
Stable tag:
|
9 |
|
10 |
Supercharge your WordPress theme with mega pack of shortcodes
|
11 |
|
@@ -21,10 +21,14 @@ With this plugin you can easily create tabs, buttons, boxes, different sliders,
|
|
21 |
* 35+ amazing shortcodes
|
22 |
* Modern responsive design
|
23 |
* Power of CSS3
|
24 |
-
* [Addons](http://gndev.info/shortcodes-ultimate/#Addons)
|
25 |
* Custom CSS editor with syntax highlight
|
26 |
* Special widget
|
27 |
* Custom skins
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
= Demo video =
|
30 |
[youtube http://www.youtube.com/watch?v=DR2c266yWEA]
|
@@ -32,6 +36,7 @@ With this plugin you can easily create tabs, buttons, boxes, different sliders,
|
|
32 |
= More videos =
|
33 |
* [Shortcodes Ultimate Tutorial](http://www.youtube.com/watch?v=IjmaXz-b55I)
|
34 |
* [How to use special widget](http://www.youtube.com/watch?v=YU3Zu6C5ZfA)
|
|
|
35 |
|
36 |
= Requirements =
|
37 |
* WordPress 3.4+
|
@@ -86,29 +91,22 @@ Upgrade normally via your Wordpress admin -> Plugins panel.
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
-
= 4.
|
|
|
|
|
|
|
90 |
* Updated [frame]. Now it can contain other shortcodes
|
91 |
* Updated caching mechanism. Cache now will be reseted on plugin activation
|
92 |
* Fixed many PHP warnings when debug mode enabled
|
93 |
-
|
94 |
-
= 4.0.8 =
|
95 |
* Added backward compatibility for [media]. Shortcode has basic support for youtube and vimeo videos
|
96 |
* Fixed bug with hidden single [tab]
|
97 |
* Added attribute "active" for tabs container. This option allows you to select tab number that will be open by default
|
98 |
* Fixd button style 3D
|
99 |
-
|
100 |
-
= 4.0.7 =
|
101 |
* Added backward compatibility for [frame]
|
102 |
-
|
103 |
-
= 4.0.6 =
|
104 |
* Fixed [column] margins
|
105 |
-
|
106 |
-
= 4.0.5 =
|
107 |
* Added backward compatibility for [tabs]. Now it accepts style=3 and vertical attributes
|
108 |
* Added backward compatibility for [spoiler]. Now it accepts 0 and 1 as values for attribute open. Also, it now accepts style attribute (1, 2, default, fancy, simple)
|
109 |
* Added custom CSS import from previous versions. Styles will be imported automatically and prepended to the existing CSS-code
|
110 |
-
|
111 |
-
= 4.0.4 =
|
112 |
* Added backward compatibility for [highlight]. Now it accepts bg and background attributes
|
113 |
* Added backward compatibility for [label]. Now it accepts style and type attributes
|
114 |
* Added backward compatibility for [dropcap]. Now it accepts 1, 2 and 3 as style values
|
5 |
Tags: shortcode, shortcodes, short code, video, responsive, responsive video, youtube, vimeo, audio, mp3, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordion, slider, plugin, admin, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, guests, membership, documents, carousel, rss, touch, icon, icons
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.0
|
8 |
+
Stable tag: trunk
|
9 |
|
10 |
Supercharge your WordPress theme with mega pack of shortcodes
|
11 |
|
21 |
* 35+ amazing shortcodes
|
22 |
* Modern responsive design
|
23 |
* Power of CSS3
|
|
|
24 |
* Custom CSS editor with syntax highlight
|
25 |
* Special widget
|
26 |
* Custom skins
|
27 |
+
* Extensible
|
28 |
+
|
29 |
+
= Add-ons =
|
30 |
+
* [Maker add-on](http://gndev.info/sum). Allows you to create custom shortcodes
|
31 |
+
* [Metro skins](http://gndev.info/shortcodes-ultimate/metro-skins/). 5 flat skins with different colors
|
32 |
|
33 |
= Demo video =
|
34 |
[youtube http://www.youtube.com/watch?v=DR2c266yWEA]
|
36 |
= More videos =
|
37 |
* [Shortcodes Ultimate Tutorial](http://www.youtube.com/watch?v=IjmaXz-b55I)
|
38 |
* [How to use special widget](http://www.youtube.com/watch?v=YU3Zu6C5ZfA)
|
39 |
+
* [How to create image gallery](http://www.youtube.com/watch?v=kCWyO2F7jTw)
|
40 |
|
41 |
= Requirements =
|
42 |
* WordPress 3.4+
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 4.1 =
|
95 |
+
* [5 metro skins](http://gndev.info/shortcodes-ultimate/metro-skins/)
|
96 |
+
* New screencast - [How to create image gallery](http://www.youtube.com/watch?v=kCWyO2F7jTw)
|
97 |
+
* New attribute "center" for [button]. Buttons can now be centered on the page
|
98 |
* Updated [frame]. Now it can contain other shortcodes
|
99 |
* Updated caching mechanism. Cache now will be reseted on plugin activation
|
100 |
* Fixed many PHP warnings when debug mode enabled
|
|
|
|
|
101 |
* Added backward compatibility for [media]. Shortcode has basic support for youtube and vimeo videos
|
102 |
* Fixed bug with hidden single [tab]
|
103 |
* Added attribute "active" for tabs container. This option allows you to select tab number that will be open by default
|
104 |
* Fixd button style 3D
|
|
|
|
|
105 |
* Added backward compatibility for [frame]
|
|
|
|
|
106 |
* Fixed [column] margins
|
|
|
|
|
107 |
* Added backward compatibility for [tabs]. Now it accepts style=3 and vertical attributes
|
108 |
* Added backward compatibility for [spoiler]. Now it accepts 0 and 1 as values for attribute open. Also, it now accepts style attribute (1, 2, default, fancy, simple)
|
109 |
* Added custom CSS import from previous versions. Styles will be imported automatically and prepended to the existing CSS-code
|
|
|
|
|
110 |
* Added backward compatibility for [highlight]. Now it accepts bg and background attributes
|
111 |
* Added backward compatibility for [label]. Now it accepts style and type attributes
|
112 |
* Added backward compatibility for [dropcap]. Now it accepts 1, 2 and 3 as style values
|
shortcodes-ultimate.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
Plugin URI: http://gndev.info/shortcodes-ultimate/
|
5 |
-
Version: 4.0
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://gndev.info/
|
8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
Plugin URI: http://gndev.info/shortcodes-ultimate/
|
5 |
+
Version: 4.1.0
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://gndev.info/
|
8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|