Version Description
- Small fix for tooltips
- Fixed wp_footer notice
- Greek translation
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 4.1.3 |
Comparing to | |
See all releases |
Code changes from version 4.1.2 to 4.1.3
- assets/css/generator.css +10 -3
- assets/css/other-shortcodes.css +9 -9
- assets/js/other-shortcodes.js +1 -0
- inc/core/class.generator.php +1 -1
- inc/core/class.requirements.php +6 -11
- inc/views/about.php +1 -1
- languages/su-el_GR.mo +0 -0
- languages/su-el_GR.po +2232 -0
- languages/su-ru_RU.mo +0 -0
- languages/su-ru_RU.po +629 -621
- readme.txt +11 -3
- shortcodes-ultimate.php +1 -1
assets/css/generator.css
CHANGED
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.su-generator-hidden { display: none !important; }
|
2 |
.su-generator-button img {
|
3 |
margin: -1px 2px 0 -5px;
|
@@ -149,10 +154,12 @@
|
|
149 |
color: #555;
|
150 |
line-height: 24px;
|
151 |
}
|
152 |
-
#su-generator-breadcrumbs span {
|
|
|
|
|
|
|
153 |
#su-generator-breadcrumbs small {
|
154 |
-
|
155 |
-
color: #aaa;
|
156 |
font-weight: normal;
|
157 |
font-size: 0.9em;
|
158 |
}
|
1 |
+
.su-generator-clear {
|
2 |
+
clear: both;
|
3 |
+
height: 0;
|
4 |
+
overflow: hidden;
|
5 |
+
}
|
6 |
.su-generator-hidden { display: none !important; }
|
7 |
.su-generator-button img {
|
8 |
margin: -1px 2px 0 -5px;
|
154 |
color: #555;
|
155 |
line-height: 24px;
|
156 |
}
|
157 |
+
#su-generator-breadcrumbs span {
|
158 |
+
margin-right: 1em;
|
159 |
+
font-weight: bold;
|
160 |
+
}
|
161 |
#su-generator-breadcrumbs small {
|
162 |
+
color: #bbb;
|
|
|
163 |
font-weight: normal;
|
164 |
font-size: 0.9em;
|
165 |
}
|
assets/css/other-shortcodes.css
CHANGED
@@ -3,15 +3,15 @@
|
|
3 |
/* Tooltip
|
4 |
---------------------------------------------------------------*/
|
5 |
|
6 |
-
.su-qtip { max-width: 480px; }
|
7 |
-
.su-tooltip { display: inline-block }
|
8 |
-
.su-qtip-size-1 { font-size: 0.8em !important }
|
9 |
-
.su-qtip-size-2 { font-size: 0.9em !important }
|
10 |
-
.su-qtip-size-3 { font-size: 1em !important }
|
11 |
-
.su-qtip-size-4 { font-size: 1.1em !important }
|
12 |
-
.su-qtip-size-5 { font-size: 1.2em !important }
|
13 |
-
.su-qtip-size-6 { font-size: 1.3em !important }
|
14 |
-
.su-tooltip-content { display: none }
|
15 |
.su-tooltip-content > :last-child { margin-bottom: 0; }
|
16 |
.qtip-content .su-tooltip-content img,
|
17 |
.qtip-content .su-tooltip-content object,
|
3 |
/* Tooltip
|
4 |
---------------------------------------------------------------*/
|
5 |
|
6 |
+
.qtip.su-qtip { max-width: 480px !important; }
|
7 |
+
.su-tooltip { display: inline-block; }
|
8 |
+
.su-qtip-size-1 { font-size: 0.8em !important; }
|
9 |
+
.su-qtip-size-2 { font-size: 0.9em !important; }
|
10 |
+
.su-qtip-size-3 { font-size: 1em !important; }
|
11 |
+
.su-qtip-size-4 { font-size: 1.1em !important; }
|
12 |
+
.su-qtip-size-5 { font-size: 1.2em !important; }
|
13 |
+
.su-qtip-size-6 { font-size: 1.3em !important; }
|
14 |
+
.su-tooltip-content { display: none; }
|
15 |
.su-tooltip-content > :last-child { margin-bottom: 0; }
|
16 |
.qtip-content .su-tooltip-content img,
|
17 |
.qtip-content .su-tooltip-content object,
|
assets/js/other-shortcodes.js
CHANGED
@@ -99,6 +99,7 @@ jQuery(document).ready(function ($) {
|
|
99 |
};
|
100 |
if (data.title !== '') config.content.title = data.title;
|
101 |
if (is_advanced) config.content.text = $content;
|
|
|
102 |
if (data.close === 'yes') config.content.button = true;
|
103 |
if (data.behavior === 'click') {
|
104 |
config.show = 'click';
|
99 |
};
|
100 |
if (data.title !== '') config.content.title = data.title;
|
101 |
if (is_advanced) config.content.text = $content;
|
102 |
+
else config.content.text = $tt.attr('title');
|
103 |
if (data.close === 'yes') config.content.button = true;
|
104 |
if (data.behavior === 'click') {
|
105 |
config.show = 'click';
|
inc/core/class.generator.php
CHANGED
@@ -150,7 +150,7 @@ class Shortcodes_Ultimate_Generator {
|
|
150 |
) );
|
151 |
// Shortcode header
|
152 |
$return = '<div id="su-generator-breadcrumbs">';
|
153 |
-
$return .= apply_filters( 'su/generator/breadcrumbs', '<a href="#" id="su-generator-select-another" title="' . __( 'Click to return to the shortcodes list', 'su' ) . '">' . __( 'All shortcodes', 'su' ) . '</a> → <span>' . $shortcode['name'] . '</span> <small>' . $shortcode['desc'] . '</small>' );
|
154 |
$return .= '</div>';
|
155 |
// Shortcode has atts
|
156 |
if ( count( $shortcode['atts'] ) && $shortcode['atts'] ) {
|
150 |
) );
|
151 |
// Shortcode header
|
152 |
$return = '<div id="su-generator-breadcrumbs">';
|
153 |
+
$return .= apply_filters( 'su/generator/breadcrumbs', '<a href="#" id="su-generator-select-another" title="' . __( 'Click to return to the shortcodes list', 'su' ) . '">' . __( 'All shortcodes', 'su' ) . '</a> → <span>' . $shortcode['name'] . '</span> <small class="alignright">' . $shortcode['desc'] . '</small><div class="su-generator-clear"></div>' );
|
154 |
$return .= '</div>';
|
155 |
// Shortcode has atts
|
156 |
if ( count( $shortcode['atts'] ) && $shortcode['atts'] ) {
|
inc/core/class.requirements.php
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
class Shortcodes_Ultimate_Requirements {
|
4 |
|
5 |
static $wp_footer_option = 'su_no_wp_footer';
|
@@ -8,23 +7,19 @@ class Shortcodes_Ultimate_Requirements {
|
|
8 |
* Constructor
|
9 |
*/
|
10 |
function __construct() {
|
11 |
-
add_action( '
|
12 |
-
add_action( 'wp_title', array( __CLASS__, 'wp_footer_add' ) );
|
13 |
-
add_action( 'wp_footer', array( __CLASS__, 'wp_footer_delete' ) );
|
14 |
add_action( 'admin_notices', array( __CLASS__, 'wp_footer_notice' ) );
|
15 |
add_action( 'su/activation', array( __CLASS__, 'php_wp' ) );
|
16 |
}
|
17 |
|
18 |
-
public static function
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
public static function wp_footer_delete() {
|
23 |
-
delete_option( self::$wp_footer_option );
|
24 |
}
|
25 |
|
26 |
public static function wp_footer_notice() {
|
27 |
-
if ( get_option( self::$wp_footer_option ) ) echo '<div class="error"><p>' . __( '<b>Shortcodes Ultimate:</b> Your current theme does not use wp_footer tag. Shortcodes will not work properly. Please add the wp_footer in the footer of your theme.', 'su' ) . ' <a href="http://codex.wordpress.org/Function_Reference/wp_footer" target="_blank">' . __( 'Learn more' ) . '</a>.' . '</p></div>';
|
28 |
}
|
29 |
|
30 |
/**
|
1 |
<?php
|
|
|
2 |
class Shortcodes_Ultimate_Requirements {
|
3 |
|
4 |
static $wp_footer_option = 'su_no_wp_footer';
|
7 |
* Constructor
|
8 |
*/
|
9 |
function __construct() {
|
10 |
+
add_action( 'shutdown', array( __CLASS__, 'wp_footer_check' ) );
|
|
|
|
|
11 |
add_action( 'admin_notices', array( __CLASS__, 'wp_footer_notice' ) );
|
12 |
add_action( 'su/activation', array( __CLASS__, 'php_wp' ) );
|
13 |
}
|
14 |
|
15 |
+
public static function wp_footer_check() {
|
16 |
+
if ( is_admin() ) return;
|
17 |
+
if ( did_action( 'wp_footer' ) < 1 ) update_option( self::$wp_footer_option, true );
|
18 |
+
else delete_option( self::$wp_footer_option );
|
|
|
|
|
19 |
}
|
20 |
|
21 |
public static function wp_footer_notice() {
|
22 |
+
if ( get_option( self::$wp_footer_option ) ) echo '<div class="error"><p>' . __( '<b>Shortcodes Ultimate:</b> Your current theme does not use wp_footer tag. Shortcodes will not work properly. Please add the wp_footer in the footer of your theme.', 'su' ) . ' <a href="http://codex.wordpress.org/Function_Reference/wp_footer" target="_blank">' . __( 'Learn more', 'su' ) . '</a>.' . '</p></div>';
|
23 |
}
|
24 |
|
25 |
/**
|
inc/views/about.php
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
<div class="su-about-column">
|
19 |
<h3><?php _e( 'Plugin features', $this->textdomain ); ?></h3>
|
20 |
<ul>
|
21 |
-
<li><?php _e( '
|
22 |
<li><?php _e( 'Power of CSS3 transitions', $this->textdomain ); ?></li>
|
23 |
<li><?php _e( 'Handy shortcodes generator', $this->textdomain ) ?></li>
|
24 |
<li><?php _e( 'International', $this->textdomain ); ?></li>
|
18 |
<div class="su-about-column">
|
19 |
<h3><?php _e( 'Plugin features', $this->textdomain ); ?></h3>
|
20 |
<ul>
|
21 |
+
<li><?php _e( '40+ amazing shortcodes', $this->textdomain ); ?></li>
|
22 |
<li><?php _e( 'Power of CSS3 transitions', $this->textdomain ); ?></li>
|
23 |
<li><?php _e( 'Handy shortcodes generator', $this->textdomain ) ?></li>
|
24 |
<li><?php _e( 'International', $this->textdomain ); ?></li>
|
languages/su-el_GR.mo
ADDED
Binary file
|
languages/su-el_GR.po
ADDED
@@ -0,0 +1,2232 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Shortcodes Ultimate 4.1.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-22 04:02+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-09-30 09:44+0200\n"
|
7 |
+
"Last-Translator: Kleanthis Manolopoulos <akis_manolopoulos@hotmail.com>\n"
|
8 |
+
"Language-Team: Kleanthis Manolopoulos <akis_manolopoulos@hotmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"Language: el_GR\n"
|
16 |
+
"X-Generator: Poedit 1.5.7\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../classes/sunrise.class.php:312 ../inc/generator.php:26 ../inc/init.php:53
|
20 |
+
#: ../inc/shortcodes/data.php:362 ../inc/sunrise/options.php:17
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Ρυθμίσεις"
|
23 |
+
|
24 |
+
#: ../inc/example-addon.php:29
|
25 |
+
msgid "Heading 2"
|
26 |
+
msgstr "Κεφαλίδα 2"
|
27 |
+
|
28 |
+
#: ../inc/example-addon.php:43 ../inc/shortcodes/data.php:20
|
29 |
+
#: ../inc/shortcodes/data.php:40 ../inc/shortcodes/data.php:88
|
30 |
+
#: ../inc/shortcodes/data.php:115 ../inc/shortcodes/data.php:187
|
31 |
+
#: ../inc/shortcodes/data.php:211 ../inc/shortcodes/data.php:244
|
32 |
+
#: ../inc/shortcodes/data.php:274 ../inc/shortcodes/data.php:300
|
33 |
+
#: ../inc/shortcodes/data.php:397 ../inc/shortcodes/data.php:519
|
34 |
+
#: ../inc/shortcodes/data.php:681 ../inc/shortcodes/data.php:740
|
35 |
+
#: ../inc/shortcodes/data.php:797 ../inc/shortcodes/data.php:850
|
36 |
+
msgid "Default"
|
37 |
+
msgstr "Προεπιλογή"
|
38 |
+
|
39 |
+
#: ../inc/example-addon.php:44
|
40 |
+
msgid "Small"
|
41 |
+
msgstr "Μικρό"
|
42 |
+
|
43 |
+
#: ../inc/example-addon.php:49 ../inc/shortcodes/data.php:25
|
44 |
+
#: ../inc/shortcodes/data.php:45 ../inc/shortcodes/data.php:92
|
45 |
+
#: ../inc/shortcodes/data.php:120 ../inc/shortcodes/data.php:216
|
46 |
+
#: ../inc/shortcodes/data.php:249 ../inc/shortcodes/data.php:280
|
47 |
+
#: ../inc/shortcodes/data.php:304 ../inc/shortcodes/data.php:366
|
48 |
+
#: ../inc/shortcodes/data.php:407 ../inc/shortcodes/data.php:526
|
49 |
+
#: ../inc/shortcodes/data.php:687 ../inc/shortcodes/data.php:745
|
50 |
+
#: ../inc/shortcodes/data.php:802 ../inc/shortcodes/data.php:855
|
51 |
+
msgid "Style"
|
52 |
+
msgstr "Στυλ"
|
53 |
+
|
54 |
+
#: ../inc/example-addon.php:51
|
55 |
+
msgid "Heading 2 style"
|
56 |
+
msgstr "Στυλ κεφαλίδας 2"
|
57 |
+
|
58 |
+
#: ../inc/example-addon.php:57
|
59 |
+
msgid "Heading 2 text"
|
60 |
+
msgstr "Κείμενο κεφαλίδας 2"
|
61 |
+
|
62 |
+
#: ../inc/example-addon.php:59
|
63 |
+
msgid "Styled heading 2"
|
64 |
+
msgstr "Μορφοποίημένη κεφαλίδα 2"
|
65 |
+
|
66 |
+
#: ../inc/generator.php:9 ../inc/generator.php:163
|
67 |
+
msgid "Insert shortcode"
|
68 |
+
msgstr "Εισαγωγή shortcode"
|
69 |
+
|
70 |
+
#: ../inc/generator.php:26
|
71 |
+
msgid "Plugin settings"
|
72 |
+
msgstr "Ρυθμίσεις πρόσθετου"
|
73 |
+
|
74 |
+
#: ../inc/generator.php:28
|
75 |
+
msgid "Plugin homepage"
|
76 |
+
msgstr "Σελίδα πρόσθετου"
|
77 |
+
|
78 |
+
#: ../inc/generator.php:30 ../inc/sunrise/views/about.php:10
|
79 |
+
msgid "Support forums"
|
80 |
+
msgstr "Forums υποστήριξης"
|
81 |
+
|
82 |
+
#: ../inc/generator.php:32
|
83 |
+
msgid "Search for shortcodes"
|
84 |
+
msgstr "Αναζήτηση για shortcodes"
|
85 |
+
|
86 |
+
#: ../inc/generator.php:34
|
87 |
+
msgid "Filter by type"
|
88 |
+
msgstr "Κατηγοριοποίηση κατά τύπο"
|
89 |
+
|
90 |
+
#: ../inc/generator.php:35
|
91 |
+
msgid "All"
|
92 |
+
msgstr "Όλα"
|
93 |
+
|
94 |
+
#: ../inc/generator.php:36 ../inc/generator.php:161
|
95 |
+
msgid "Content"
|
96 |
+
msgstr "Περιεχόμενο"
|
97 |
+
|
98 |
+
#: ../inc/generator.php:37
|
99 |
+
msgid "Boxes"
|
100 |
+
msgstr "Πλαίσια"
|
101 |
+
|
102 |
+
#: ../inc/generator.php:38
|
103 |
+
msgid "Media"
|
104 |
+
msgstr "Πολυμέσα"
|
105 |
+
|
106 |
+
#: ../inc/generator.php:39
|
107 |
+
msgid "Other"
|
108 |
+
msgstr "Άλλα"
|
109 |
+
|
110 |
+
#: ../inc/generator.php:70 ../inc/generator.php:177 ../inc/generator.php:196
|
111 |
+
#: ../inc/generator.php:210
|
112 |
+
msgid "Access denied"
|
113 |
+
msgstr "Άρνηση πρόσβασης"
|
114 |
+
|
115 |
+
#: ../inc/generator.php:73
|
116 |
+
msgid "Shortcode not specified"
|
117 |
+
msgstr "Δεν καθορίστικε shortcode"
|
118 |
+
|
119 |
+
#: ../inc/generator.php:77
|
120 |
+
msgid "Click to return to the shortcodes list"
|
121 |
+
msgstr "Πατήστε εδώ για να επιστρέψετε στην λίστα των shortcode"
|
122 |
+
|
123 |
+
#: ../inc/generator.php:77
|
124 |
+
msgid "All shortcodes"
|
125 |
+
msgstr "Όλα τα shortcodes"
|
126 |
+
|
127 |
+
#: ../inc/generator.php:109
|
128 |
+
msgid "Yes"
|
129 |
+
msgstr "Ναι"
|
130 |
+
|
131 |
+
#: ../inc/generator.php:109
|
132 |
+
msgid "No"
|
133 |
+
msgstr "Όχι"
|
134 |
+
|
135 |
+
#: ../inc/generator.php:113
|
136 |
+
msgid "Max upload file size"
|
137 |
+
msgstr "Μέγιστο μέγεθος μεταφόρτωσης αρχείου"
|
138 |
+
|
139 |
+
#: ../inc/generator.php:113
|
140 |
+
msgid "Mb"
|
141 |
+
msgstr "Mb"
|
142 |
+
|
143 |
+
#: ../inc/generator.php:113
|
144 |
+
msgid "How to increase"
|
145 |
+
msgstr "Πώς να αυξάνεται"
|
146 |
+
|
147 |
+
#: ../inc/generator.php:132
|
148 |
+
msgid "Untitled gallery"
|
149 |
+
msgstr "Γκαλερί χωρίς τίτλο"
|
150 |
+
|
151 |
+
#: ../inc/generator.php:139
|
152 |
+
msgid "Galleries not found"
|
153 |
+
msgstr "Δεν βρέθηκαν γκαλερί"
|
154 |
+
|
155 |
+
#: ../inc/generator.php:140
|
156 |
+
msgid "Manage galleries"
|
157 |
+
msgstr "Διαχείριση γκαλερί"
|
158 |
+
|
159 |
+
#: ../inc/generator.php:152
|
160 |
+
msgid "Click to set this value"
|
161 |
+
msgstr "Κάντε κλικ για να ορίσετε αυτήν την τιμή"
|
162 |
+
|
163 |
+
#: ../inc/generator.php:163
|
164 |
+
msgid "Live preview"
|
165 |
+
msgstr "Ζωντανή προεπισκόπηση"
|
166 |
+
|
167 |
+
#: ../inc/generator.php:163
|
168 |
+
msgid "Close window"
|
169 |
+
msgstr "Κλείσιμο παραθύρου"
|
170 |
+
|
171 |
+
#: ../inc/generator.php:180
|
172 |
+
msgid "Preview"
|
173 |
+
msgstr "Προεπισκόπηση"
|
174 |
+
|
175 |
+
#: ../inc/init.php:17
|
176 |
+
#, php-format
|
177 |
+
msgid ""
|
178 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
179 |
+
"fully compatible with your version of WordPress (%s).<br />Reccomended "
|
180 |
+
"WordPress version – %s (or higher).</p><a href=\"%s\">← Return to "
|
181 |
+
"the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</"
|
182 |
+
"a>"
|
183 |
+
msgstr ""
|
184 |
+
"<h1>Ωπ! Το Πρόσθετο δεν ενεργοποιήθηκε…</h1> <p>Το Shortcodes "
|
185 |
+
"Ultimate δεν είναι πλήρως συμβατό με την έκδοση του WordPress (%s).<br />Η "
|
186 |
+
"προτεινόμενη έκδοση του WordPress είναι – %s (ή μεγαλύτερη).</p><a "
|
187 |
+
"href=\"%s\">← Επιστροφή στην οθόνη των πρόσθετων</a> <a href=\"%s"
|
188 |
+
"\"%s>Συνέχεια και ενεργοποίηση οπωσδήποτε →</a>"
|
189 |
+
|
190 |
+
#: ../inc/init.php:18
|
191 |
+
#, php-format
|
192 |
+
msgid ""
|
193 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
194 |
+
"fully compatible with your PHP version (%s).<br />Reccomended PHP version "
|
195 |
+
"– %s (or higher).</p><a href=\"%s\">← Return to the plugins "
|
196 |
+
"screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
197 |
+
msgstr ""
|
198 |
+
"<h1>Ωπ! Το Πρόσθετο δεν ενεργοποιήθηκε…</h1> <p>Το Shortcodes "
|
199 |
+
"Ultimate δεν είναι πλήρως συμβατό με την έκδοση της PHP (%s).<br />Η "
|
200 |
+
"προτεινόμενη έκδοση της PHP είναι – %s (ή μεγαλύτερη).</p><a href=\"%s"
|
201 |
+
"\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and "
|
202 |
+
"activate anyway →</a>"
|
203 |
+
|
204 |
+
#: ../inc/init.php:44 ../inc/widget.php:40 ../inc/widget.php:83
|
205 |
+
msgid "Shortcodes Ultimate"
|
206 |
+
msgstr "Shortcodes Ultimate"
|
207 |
+
|
208 |
+
#: ../inc/init.php:45
|
209 |
+
msgid "Vladimir Anokhin"
|
210 |
+
msgstr "Vladimir Anokhin"
|
211 |
+
|
212 |
+
#: ../inc/init.php:46
|
213 |
+
msgid "Supercharge your WordPress theme with mega pack of shortcodes"
|
214 |
+
msgstr "Εμπλουτίστε το WordPess θέμα σας με ένα μεγάλο πακέτο από shortcodes"
|
215 |
+
|
216 |
+
#: ../inc/init.php:54
|
217 |
+
msgid "Welcome"
|
218 |
+
msgstr "Καλώς ορίσατε"
|
219 |
+
|
220 |
+
#: ../inc/resize.php:49 ../inc/resize.php:176
|
221 |
+
msgid "No image URL has been entered."
|
222 |
+
msgstr "Δεν έχει εισαχθεί καμία διεύθυνση εικόνας"
|
223 |
+
|
224 |
+
#: ../inc/resize.php:235
|
225 |
+
msgid "Failed to get $file_path information using \"@getimagesize\"."
|
226 |
+
msgstr ""
|
227 |
+
"Αποτυχία λήψης πληροφοριών $file_path χρησιμοποιώντας \"@getimagesize\"."
|
228 |
+
|
229 |
+
#: ../inc/resize.php:277
|
230 |
+
msgid "Resize path invalid (GIF)"
|
231 |
+
msgstr "Άκυρη διαδρομή αλλαγής μεγέθους (GIF)"
|
232 |
+
|
233 |
+
#: ../inc/resize.php:281
|
234 |
+
msgid "Resize path invalid (PNG)."
|
235 |
+
msgstr "Άκυρη διαδρομή αλλαγής μεγέθους (PNG)"
|
236 |
+
|
237 |
+
#: ../inc/resize.php:289
|
238 |
+
msgid "Resize path invalid (JPG)."
|
239 |
+
msgstr "Άκυρη διαδρομή αλλαγής μεγέθους (JPG)"
|
240 |
+
|
241 |
+
#: ../inc/resize.php:303
|
242 |
+
msgid "Failed to get $dest_file_name (resized image) info via @getimagesize"
|
243 |
+
msgstr ""
|
244 |
+
"Αποτυχία λήψης πληροφοριών $dest_file_name (αλλαγμένου μεγέθους εικόνας) "
|
245 |
+
"μέσω του \"@getimagesize\"."
|
246 |
+
|
247 |
+
#: ../inc/tools.php:239
|
248 |
+
msgid "year"
|
249 |
+
msgstr "έτος"
|
250 |
+
|
251 |
+
#: ../inc/tools.php:240
|
252 |
+
msgid "month"
|
253 |
+
msgstr "μήνας"
|
254 |
+
|
255 |
+
#: ../inc/tools.php:241
|
256 |
+
msgid "week"
|
257 |
+
msgstr "εβδομάδα"
|
258 |
+
|
259 |
+
#: ../inc/tools.php:242
|
260 |
+
msgid "day"
|
261 |
+
msgstr "ημέρα"
|
262 |
+
|
263 |
+
#: ../inc/tools.php:243
|
264 |
+
msgid "hour"
|
265 |
+
msgstr "ώρα"
|
266 |
+
|
267 |
+
#: ../inc/tools.php:244
|
268 |
+
msgid "minute"
|
269 |
+
msgstr "λεπτό"
|
270 |
+
|
271 |
+
#: ../inc/tools.php:255 ../inc/tools.php:262
|
272 |
+
msgid "s"
|
273 |
+
msgstr "s"
|
274 |
+
|
275 |
+
#: ../inc/tools.php:294
|
276 |
+
msgid "username not specified"
|
277 |
+
msgstr "Τό όνομα χρήστη δεν προσδιορίστηκε"
|
278 |
+
|
279 |
+
#: ../inc/tools.php:299
|
280 |
+
msgid "no public messages"
|
281 |
+
msgstr "κανένα δημόσιο μήνυμα"
|
282 |
+
|
283 |
+
#: ../inc/widget.php:36
|
284 |
+
msgid "Special Shortcodes Ultimate widget"
|
285 |
+
msgstr "Ειδικό widget για το Shortcodes Ultimate"
|
286 |
+
|
287 |
+
#: ../inc/widget.php:88
|
288 |
+
msgid "Title:"
|
289 |
+
msgstr "Τίτλος:"
|
290 |
+
|
291 |
+
#: ../inc/shortcodes/data.php:13
|
292 |
+
msgid "Heading"
|
293 |
+
msgstr "Heading"
|
294 |
+
|
295 |
+
#: ../inc/shortcodes/data.php:21 ../inc/shortcodes/data.php:41
|
296 |
+
#: ../inc/shortcodes/data.php:89 ../inc/shortcodes/data.php:116
|
297 |
+
#: ../inc/shortcodes/data.php:212 ../inc/shortcodes/data.php:245
|
298 |
+
#: ../inc/shortcodes/data.php:275 ../inc/shortcodes/data.php:301
|
299 |
+
#: ../inc/shortcodes/data.php:398 ../inc/shortcodes/data.php:682
|
300 |
+
#: ../inc/shortcodes/data.php:741 ../inc/shortcodes/data.php:798
|
301 |
+
#: ../inc/shortcodes/data.php:851
|
302 |
+
msgid "Metro"
|
303 |
+
msgstr "Metro"
|
304 |
+
|
305 |
+
#: ../inc/shortcodes/data.php:22
|
306 |
+
msgid "Thin"
|
307 |
+
msgstr "Λεπτό"
|
308 |
+
|
309 |
+
#: ../inc/shortcodes/data.php:25
|
310 |
+
msgid "Choose heading style preset"
|
311 |
+
msgstr "Επιλέξτε προεπιλεγμένο στυλ κεφαλίδας"
|
312 |
+
|
313 |
+
#: ../inc/shortcodes/data.php:28
|
314 |
+
msgid "Heading text"
|
315 |
+
msgstr "Κείμενο κεφαλίδας"
|
316 |
+
|
317 |
+
#: ../inc/shortcodes/data.php:29
|
318 |
+
msgid "Styled heading"
|
319 |
+
msgstr "Μορφοποιημένη κεφαλίδα"
|
320 |
+
|
321 |
+
#: ../inc/shortcodes/data.php:33
|
322 |
+
msgid "Tabs"
|
323 |
+
msgstr "Tabs"
|
324 |
+
|
325 |
+
#: ../inc/shortcodes/data.php:42
|
326 |
+
msgid "Vertical"
|
327 |
+
msgstr "Κάθετο"
|
328 |
+
|
329 |
+
#: ../inc/shortcodes/data.php:45
|
330 |
+
msgid "Choose tabs style preset"
|
331 |
+
msgstr "Επιλέξτε το προκαθορισμένο στυλ των καρτελών"
|
332 |
+
|
333 |
+
#: ../inc/shortcodes/data.php:49
|
334 |
+
msgid ""
|
335 |
+
"[tab title=\"Title 1\"]Content 1[/tab]\n"
|
336 |
+
"[tab title=\"Title 2\"]Content 2[/tab]\n"
|
337 |
+
"[tab title=\"Title 3\"]Content 3[/tab]"
|
338 |
+
msgstr ""
|
339 |
+
"[tab title=\"Τίτλος 1\"]Περιεχόμενο 1[/tab]\n"
|
340 |
+
"[tab title=\"Τίτλος 2\"]Περιεχόμενο 2[/tab]\n"
|
341 |
+
"[tab title=\"Τίτλος 3\"]Περιεχόμενο 3[/tab]"
|
342 |
+
|
343 |
+
#: ../inc/shortcodes/data.php:50
|
344 |
+
msgid "Tabs container"
|
345 |
+
msgstr "Δοχείο καρτελών"
|
346 |
+
|
347 |
+
#: ../inc/shortcodes/data.php:54
|
348 |
+
msgid "Tab"
|
349 |
+
msgstr "Tab"
|
350 |
+
|
351 |
+
#: ../inc/shortcodes/data.php:60
|
352 |
+
msgid "Tab name"
|
353 |
+
msgstr "Όνομα Tab"
|
354 |
+
|
355 |
+
#: ../inc/shortcodes/data.php:61 ../inc/shortcodes/data.php:77
|
356 |
+
#: ../inc/shortcodes/data.php:486 ../inc/shortcodes/data.php:514
|
357 |
+
#: ../inc/shortcodes/data.php:734
|
358 |
+
msgid "Title"
|
359 |
+
msgstr "Τίτλος"
|
360 |
+
|
361 |
+
#: ../inc/shortcodes/data.php:62
|
362 |
+
msgid "Enter tab name"
|
363 |
+
msgstr "Εισάγετε το όνομα του tab"
|
364 |
+
|
365 |
+
#: ../inc/shortcodes/data.php:65
|
366 |
+
msgid "Tab content"
|
367 |
+
msgstr "Περιεχόμενο του tab"
|
368 |
+
|
369 |
+
#: ../inc/shortcodes/data.php:66
|
370 |
+
msgid "Single tab"
|
371 |
+
msgstr "Ενιαία καρτέλα"
|
372 |
+
|
373 |
+
#: ../inc/shortcodes/data.php:70
|
374 |
+
msgid "Spoiler"
|
375 |
+
msgstr "Spoiler"
|
376 |
+
|
377 |
+
#: ../inc/shortcodes/data.php:76 ../inc/shortcodes/shortcodes.php:71
|
378 |
+
msgid "Spoiler title"
|
379 |
+
msgstr "Τίτλος Spoiler"
|
380 |
+
|
381 |
+
#: ../inc/shortcodes/data.php:77
|
382 |
+
msgid "Text in spoiler title"
|
383 |
+
msgstr "Κείμενο στον τίτλο του spoiler"
|
384 |
+
|
385 |
+
#: ../inc/shortcodes/data.php:82
|
386 |
+
msgid "Open"
|
387 |
+
msgstr "Ανοιχτό"
|
388 |
+
|
389 |
+
#: ../inc/shortcodes/data.php:83
|
390 |
+
msgid "Is spoiler content visible by default"
|
391 |
+
msgstr "Είναι το περιεχόμενο του spoiler προκαθορισμένα ορατό"
|
392 |
+
|
393 |
+
#: ../inc/shortcodes/data.php:92
|
394 |
+
msgid "Select spoiler style preset"
|
395 |
+
msgstr "Επιλογή προκαθορισμένου στυλ spoiler"
|
396 |
+
|
397 |
+
#: ../inc/shortcodes/data.php:95
|
398 |
+
msgid "Hidden content"
|
399 |
+
msgstr "Κρυμένο περιεχόμενο"
|
400 |
+
|
401 |
+
#: ../inc/shortcodes/data.php:95
|
402 |
+
msgid "Spoiler with hidden content"
|
403 |
+
msgstr "Spoiler με κρυφό περιεχόμενο"
|
404 |
+
|
405 |
+
#: ../inc/shortcodes/data.php:99
|
406 |
+
msgid "Accordion"
|
407 |
+
msgstr "Accordion"
|
408 |
+
|
409 |
+
#: ../inc/shortcodes/data.php:104
|
410 |
+
msgid ""
|
411 |
+
"[spoiler]Content[/spoiler]\n"
|
412 |
+
"[spoiler]Content[/spoiler]\n"
|
413 |
+
"[spoiler]Content[/spoiler]"
|
414 |
+
msgstr ""
|
415 |
+
"[spoiler]Περιεχόμενο[/spoiler]\n"
|
416 |
+
"[spoiler]Περιεχόμενο[/spoiler]\n"
|
417 |
+
"[spoiler]Περιεχόμενο[/spoiler]"
|
418 |
+
|
419 |
+
#: ../inc/shortcodes/data.php:104
|
420 |
+
msgid "Accordion with spoilers"
|
421 |
+
msgstr "Accordion με spoilers"
|
422 |
+
|
423 |
+
#: ../inc/shortcodes/data.php:108
|
424 |
+
msgid "Divider"
|
425 |
+
msgstr "Divider"
|
426 |
+
|
427 |
+
#: ../inc/shortcodes/data.php:117 ../inc/shortcodes/data.php:276
|
428 |
+
#: ../inc/shortcodes/data.php:449
|
429 |
+
msgid "Light"
|
430 |
+
msgstr "Ανάλαφρο"
|
431 |
+
|
432 |
+
#: ../inc/shortcodes/data.php:120
|
433 |
+
msgid "Select divider style preset"
|
434 |
+
msgstr "Επιλέξτε προκαθορισμένο στυλ divider"
|
435 |
+
|
436 |
+
#: ../inc/shortcodes/data.php:125
|
437 |
+
msgid "Show TOP link"
|
438 |
+
msgstr "Προβολή συνδέσμου TOP"
|
439 |
+
|
440 |
+
#: ../inc/shortcodes/data.php:126
|
441 |
+
msgid "Show link to top of the page or not"
|
442 |
+
msgstr "Προβολή ή όχι του συνδέσμου στο πάνω μέρος της σελίδας"
|
443 |
+
|
444 |
+
#: ../inc/shortcodes/data.php:130 ../inc/shortcodes/shortcodes.php:105
|
445 |
+
msgid "Go to top"
|
446 |
+
msgstr "Επιστροφή στην αρχή"
|
447 |
+
|
448 |
+
#: ../inc/shortcodes/data.php:131
|
449 |
+
msgid "Link text"
|
450 |
+
msgstr "Κείμενο συνδέσμου"
|
451 |
+
|
452 |
+
#: ../inc/shortcodes/data.php:131
|
453 |
+
msgid "Text for the GO TOP link"
|
454 |
+
msgstr "Κείμενο για τον σύνδεσμο GO TOP"
|
455 |
+
|
456 |
+
#: ../inc/shortcodes/data.php:135
|
457 |
+
msgid "Content divider with optional TOP link"
|
458 |
+
msgstr "Περιεχόμενο του divider με προαιρετικό σύνδεσμο TOP"
|
459 |
+
|
460 |
+
#: ../inc/shortcodes/data.php:139
|
461 |
+
msgid "Spacer"
|
462 |
+
msgstr "Spacer"
|
463 |
+
|
464 |
+
#: ../inc/shortcodes/data.php:149 ../inc/shortcodes/data.php:616
|
465 |
+
#: ../inc/shortcodes/data.php:654 ../inc/shortcodes/data.php:763
|
466 |
+
#: ../inc/shortcodes/data.php:977 ../inc/shortcodes/data.php:1004
|
467 |
+
#: ../inc/shortcodes/data.php:1041 ../inc/shortcodes/data.php:1120
|
468 |
+
#: ../inc/shortcodes/data.php:1215
|
469 |
+
msgid "Height"
|
470 |
+
msgstr "Ύψος"
|
471 |
+
|
472 |
+
#: ../inc/shortcodes/data.php:149
|
473 |
+
msgid "Height of the spacer in pixels"
|
474 |
+
msgstr "Ύψος του spacer σε pixels"
|
475 |
+
|
476 |
+
#: ../inc/shortcodes/data.php:153
|
477 |
+
msgid "Empty space with adjustable height"
|
478 |
+
msgstr "Κενός χώρος με ρυθμιζόμενο ύψος"
|
479 |
+
|
480 |
+
#: ../inc/shortcodes/data.php:157
|
481 |
+
msgid "Highlight"
|
482 |
+
msgstr "Highlight"
|
483 |
+
|
484 |
+
#: ../inc/shortcodes/data.php:165 ../inc/shortcodes/data.php:413
|
485 |
+
#: ../inc/shortcodes/data.php:562
|
486 |
+
msgid "Background"
|
487 |
+
msgstr "Φόντο"
|
488 |
+
|
489 |
+
#: ../inc/shortcodes/data.php:166
|
490 |
+
msgid "Highlighted text background color"
|
491 |
+
msgstr "Χρώμα φόντου τονισμένου κειμένου"
|
492 |
+
|
493 |
+
#: ../inc/shortcodes/data.php:172 ../inc/shortcodes/data.php:419
|
494 |
+
#: ../inc/shortcodes/data.php:568
|
495 |
+
msgid "Text color"
|
496 |
+
msgstr "Χρώμα κειμένου"
|
497 |
+
|
498 |
+
#: ../inc/shortcodes/data.php:172
|
499 |
+
msgid "Highlighted text color"
|
500 |
+
msgstr "Χρώμα κειμένου"
|
501 |
+
|
502 |
+
#: ../inc/shortcodes/data.php:175 ../inc/shortcodes/data.php:176
|
503 |
+
msgid "Highlighted text"
|
504 |
+
msgstr "Τονισμένο κείμενο"
|
505 |
+
|
506 |
+
#: ../inc/shortcodes/data.php:180 ../inc/shortcodes/data.php:199
|
507 |
+
msgid "Label"
|
508 |
+
msgstr "Label"
|
509 |
+
|
510 |
+
#: ../inc/shortcodes/data.php:188
|
511 |
+
msgid "Success"
|
512 |
+
msgstr "Επιτυχία"
|
513 |
+
|
514 |
+
#: ../inc/shortcodes/data.php:189
|
515 |
+
msgid "Warning"
|
516 |
+
msgstr "Προειδοποίηση"
|
517 |
+
|
518 |
+
#: ../inc/shortcodes/data.php:190
|
519 |
+
msgid "Important"
|
520 |
+
msgstr "Σημαντικό"
|
521 |
+
|
522 |
+
#: ../inc/shortcodes/data.php:191
|
523 |
+
msgid "Black"
|
524 |
+
msgstr "Μαύρο"
|
525 |
+
|
526 |
+
#: ../inc/shortcodes/data.php:192
|
527 |
+
msgid "Info"
|
528 |
+
msgstr "Πληροφορίες"
|
529 |
+
|
530 |
+
#: ../inc/shortcodes/data.php:195
|
531 |
+
msgid "Type"
|
532 |
+
msgstr "Τύπος"
|
533 |
+
|
534 |
+
#: ../inc/shortcodes/data.php:196
|
535 |
+
msgid "Style of the label"
|
536 |
+
msgstr "Στυλ ετικέτας"
|
537 |
+
|
538 |
+
#: ../inc/shortcodes/data.php:200
|
539 |
+
msgid "Styled label"
|
540 |
+
msgstr "Μορφοποιημένη ετικέτα"
|
541 |
+
|
542 |
+
#: ../inc/shortcodes/data.php:204 ../inc/shortcodes/data.php:232
|
543 |
+
msgid "Quote"
|
544 |
+
msgstr "Quote"
|
545 |
+
|
546 |
+
#: ../inc/shortcodes/data.php:213 ../inc/shortcodes/data.php:246
|
547 |
+
#: ../inc/shortcodes/data.php:277 ../inc/shortcodes/data.php:852
|
548 |
+
msgid "Simple"
|
549 |
+
msgstr "Απλό"
|
550 |
+
|
551 |
+
#: ../inc/shortcodes/data.php:217
|
552 |
+
msgid "Quote style preset"
|
553 |
+
msgstr "Προκαθορισμένο στυλ Quote"
|
554 |
+
|
555 |
+
#: ../inc/shortcodes/data.php:222
|
556 |
+
msgid "Cite"
|
557 |
+
msgstr "Αναφορά"
|
558 |
+
|
559 |
+
#: ../inc/shortcodes/data.php:223
|
560 |
+
msgid "Quote author name"
|
561 |
+
msgstr "Παράθεση ονόματος του συγγραφέα"
|
562 |
+
|
563 |
+
#: ../inc/shortcodes/data.php:228
|
564 |
+
msgid "Cite url"
|
565 |
+
msgstr "Διεύθυνση αναφοράς"
|
566 |
+
|
567 |
+
#: ../inc/shortcodes/data.php:229
|
568 |
+
msgid "Url of the quote author. Leave empty to disable link"
|
569 |
+
msgstr ""
|
570 |
+
"Διεύθυνση του συγγραφέα αναφοράς. Αφήστε κενό για απενεργοποίηση του "
|
571 |
+
"συνδέσμου"
|
572 |
+
|
573 |
+
#: ../inc/shortcodes/data.php:233
|
574 |
+
msgid "Blockquote alternative"
|
575 |
+
msgstr "Εναλλακτικά blockquote"
|
576 |
+
|
577 |
+
#: ../inc/shortcodes/data.php:237 ../inc/shortcodes/data.php:262
|
578 |
+
#: ../inc/shortcodes/data.php:263
|
579 |
+
msgid "Pullquote"
|
580 |
+
msgstr "Pullquote"
|
581 |
+
|
582 |
+
#: ../inc/shortcodes/data.php:250
|
583 |
+
msgid "Choose style preset for pullquote"
|
584 |
+
msgstr "Επιλέξτε προκαθορισμένο στυλ για pullquote"
|
585 |
+
|
586 |
+
#: ../inc/shortcodes/data.php:255 ../inc/shortcodes/data.php:462
|
587 |
+
msgid "Left"
|
588 |
+
msgstr "Αριστερά"
|
589 |
+
|
590 |
+
#: ../inc/shortcodes/data.php:256 ../inc/shortcodes/data.php:460
|
591 |
+
msgid "Right"
|
592 |
+
msgstr "Δεξιά"
|
593 |
+
|
594 |
+
#: ../inc/shortcodes/data.php:259
|
595 |
+
msgid "Align"
|
596 |
+
msgstr "Στοίχιση"
|
597 |
+
|
598 |
+
#: ../inc/shortcodes/data.php:259
|
599 |
+
msgid "Pullquote alignment (float)"
|
600 |
+
msgstr "Στοίχιση Pullquote (float)"
|
601 |
+
|
602 |
+
#: ../inc/shortcodes/data.php:267 ../inc/shortcodes/data.php:289
|
603 |
+
msgid "Dropcap"
|
604 |
+
msgstr "Dropcap"
|
605 |
+
|
606 |
+
#: ../inc/shortcodes/data.php:280
|
607 |
+
msgid "Dropcap style preset"
|
608 |
+
msgstr "Προκαθορισμένο στυλ dropcap"
|
609 |
+
|
610 |
+
#: ../inc/shortcodes/data.php:285 ../inc/shortcodes/data.php:334
|
611 |
+
#: ../inc/shortcodes/data.php:425
|
612 |
+
msgid "Size"
|
613 |
+
msgstr "Μέγεθος"
|
614 |
+
|
615 |
+
#: ../inc/shortcodes/data.php:285
|
616 |
+
msgid "Choose dropcap size"
|
617 |
+
msgstr "Επιλέξτε το μέγεθος του dropcap"
|
618 |
+
|
619 |
+
#: ../inc/shortcodes/data.php:288
|
620 |
+
msgid "D"
|
621 |
+
msgstr "Δ"
|
622 |
+
|
623 |
+
#: ../inc/shortcodes/data.php:293
|
624 |
+
msgid "Row"
|
625 |
+
msgstr "Row"
|
626 |
+
|
627 |
+
#: ../inc/shortcodes/data.php:301
|
628 |
+
msgid "Align to left"
|
629 |
+
msgstr "Αριστεή στοίχιση"
|
630 |
+
|
631 |
+
#: ../inc/shortcodes/data.php:305
|
632 |
+
msgid "Style preset for the inner columns"
|
633 |
+
msgstr "Προκαθορισμένο στυλ για τις εσωτερικές στήλες"
|
634 |
+
|
635 |
+
#: ../inc/shortcodes/data.php:309
|
636 |
+
msgid ""
|
637 |
+
"[column size=\"1/3\"]Content[/column]\n"
|
638 |
+
"[column size=\"1/3\"]Content[/column]\n"
|
639 |
+
"[column size=\"1/3\"]Content[/column]"
|
640 |
+
msgstr ""
|
641 |
+
"[column size=\"1/3\"]Περιεχόμενο[/column]\n"
|
642 |
+
"[column size=\"1/3\"]Περιεχόμενο[/column]\n"
|
643 |
+
"[column size=\"1/3\"]Περιεχόμενο[/column]"
|
644 |
+
|
645 |
+
#: ../inc/shortcodes/data.php:309
|
646 |
+
msgid "Row for flexible columns"
|
647 |
+
msgstr "Γραμμή για ευέλικτες στήλες"
|
648 |
+
|
649 |
+
#: ../inc/shortcodes/data.php:313
|
650 |
+
msgid "Column"
|
651 |
+
msgstr "Column"
|
652 |
+
|
653 |
+
#: ../inc/shortcodes/data.php:320
|
654 |
+
msgid "Full width"
|
655 |
+
msgstr "Πλήρες πλάτος"
|
656 |
+
|
657 |
+
#: ../inc/shortcodes/data.php:321
|
658 |
+
msgid "One half"
|
659 |
+
msgstr "Ένα δεύτερο"
|
660 |
+
|
661 |
+
#: ../inc/shortcodes/data.php:322
|
662 |
+
msgid "One third"
|
663 |
+
msgstr "Ένα τρίτο"
|
664 |
+
|
665 |
+
#: ../inc/shortcodes/data.php:323
|
666 |
+
msgid "Two third"
|
667 |
+
msgstr "Δύο τρίτα"
|
668 |
+
|
669 |
+
#: ../inc/shortcodes/data.php:324
|
670 |
+
msgid "One fourth"
|
671 |
+
msgstr "Ένα τέταρτο"
|
672 |
+
|
673 |
+
#: ../inc/shortcodes/data.php:325
|
674 |
+
msgid "Three fourth"
|
675 |
+
msgstr "Τρία τέταρτα"
|
676 |
+
|
677 |
+
#: ../inc/shortcodes/data.php:326
|
678 |
+
msgid "One fifth"
|
679 |
+
msgstr "Ένα πέμπτο"
|
680 |
+
|
681 |
+
#: ../inc/shortcodes/data.php:327
|
682 |
+
msgid "Two fifth"
|
683 |
+
msgstr "Δύο πέμπτα"
|
684 |
+
|
685 |
+
#: ../inc/shortcodes/data.php:328
|
686 |
+
msgid "Three fifth"
|
687 |
+
msgstr "Τρία πέμπτα"
|
688 |
+
|
689 |
+
#: ../inc/shortcodes/data.php:329
|
690 |
+
msgid "Four fifth"
|
691 |
+
msgstr "Τέσσερα πέμπτα"
|
692 |
+
|
693 |
+
#: ../inc/shortcodes/data.php:330
|
694 |
+
msgid "One sixth"
|
695 |
+
msgstr "Ένα έκτο"
|
696 |
+
|
697 |
+
#: ../inc/shortcodes/data.php:331
|
698 |
+
msgid "Five sixth"
|
699 |
+
msgstr "Πέντε έκτα"
|
700 |
+
|
701 |
+
#: ../inc/shortcodes/data.php:335
|
702 |
+
msgid "Select column width. This width will be calculated depend page width"
|
703 |
+
msgstr ""
|
704 |
+
"Επιπέξτε το πλάτος της στήλης. Το πλάτος θα υπολογιστεί σε σχέση με το "
|
705 |
+
"πλάτος της σελίδας"
|
706 |
+
|
707 |
+
#: ../inc/shortcodes/data.php:338
|
708 |
+
msgid "Column content"
|
709 |
+
msgstr "Περιεχόμενο στήλης"
|
710 |
+
|
711 |
+
#: ../inc/shortcodes/data.php:338
|
712 |
+
msgid "Flexible and responsive columns"
|
713 |
+
msgstr "Ευέλικτες και ευπροσάρμοστες στήλες"
|
714 |
+
|
715 |
+
#: ../inc/shortcodes/data.php:342
|
716 |
+
msgid "List"
|
717 |
+
msgstr "List"
|
718 |
+
|
719 |
+
#: ../inc/shortcodes/data.php:349
|
720 |
+
msgid "Star"
|
721 |
+
msgstr "Αστέρι"
|
722 |
+
|
723 |
+
#: ../inc/shortcodes/data.php:350
|
724 |
+
msgid "Arrow"
|
725 |
+
msgstr "Βέλος"
|
726 |
+
|
727 |
+
#: ../inc/shortcodes/data.php:351
|
728 |
+
msgid "Check"
|
729 |
+
msgstr "Check"
|
730 |
+
|
731 |
+
#: ../inc/shortcodes/data.php:352
|
732 |
+
msgid "Cross"
|
733 |
+
msgstr "Σταυρός"
|
734 |
+
|
735 |
+
#: ../inc/shortcodes/data.php:353
|
736 |
+
msgid "Thumbs up"
|
737 |
+
msgstr "Thumbs up"
|
738 |
+
|
739 |
+
#: ../inc/shortcodes/data.php:354 ../inc/shortcodes/data.php:381
|
740 |
+
msgid "Link"
|
741 |
+
msgstr "Σύνδεση"
|
742 |
+
|
743 |
+
#: ../inc/shortcodes/data.php:355
|
744 |
+
msgid "Gear"
|
745 |
+
msgstr "Γρανάζι"
|
746 |
+
|
747 |
+
#: ../inc/shortcodes/data.php:356
|
748 |
+
msgid "Time"
|
749 |
+
msgstr "Ώρα"
|
750 |
+
|
751 |
+
#: ../inc/shortcodes/data.php:357 ../inc/shortcodes/data.php:554
|
752 |
+
msgid "Note"
|
753 |
+
msgstr "Note"
|
754 |
+
|
755 |
+
#: ../inc/shortcodes/data.php:358
|
756 |
+
msgid "Plus"
|
757 |
+
msgstr "Συν"
|
758 |
+
|
759 |
+
#: ../inc/shortcodes/data.php:359
|
760 |
+
msgid "Guard"
|
761 |
+
msgstr "Guard"
|
762 |
+
|
763 |
+
#: ../inc/shortcodes/data.php:360
|
764 |
+
msgid "Event"
|
765 |
+
msgstr "Συμβάν"
|
766 |
+
|
767 |
+
#: ../inc/shortcodes/data.php:361
|
768 |
+
msgid "Idea"
|
769 |
+
msgstr "Ιδέα"
|
770 |
+
|
771 |
+
#: ../inc/shortcodes/data.php:363
|
772 |
+
msgid "Twitter"
|
773 |
+
msgstr "Twitter"
|
774 |
+
|
775 |
+
#: ../inc/shortcodes/data.php:366
|
776 |
+
msgid "List items style/icons"
|
777 |
+
msgstr "Στυλ/Εικονίδια αντικειμένων λίστας"
|
778 |
+
|
779 |
+
#: ../inc/shortcodes/data.php:370
|
780 |
+
msgid ""
|
781 |
+
"<ul>\n"
|
782 |
+
"<li>List item</li>\n"
|
783 |
+
"<li>List item</li>\n"
|
784 |
+
"<li>List item</li>\n"
|
785 |
+
"</ul>"
|
786 |
+
msgstr ""
|
787 |
+
"<ul>\n"
|
788 |
+
"<li>Αντικείμενο λίστας</li>\n"
|
789 |
+
"<li>Αντικείμενο λίστας</li>\n"
|
790 |
+
"<li>Αντικείμενο λίστας</li>\n"
|
791 |
+
"</ul>"
|
792 |
+
|
793 |
+
#: ../inc/shortcodes/data.php:370
|
794 |
+
msgid "Styled unordered list"
|
795 |
+
msgstr "Στυλ αταξινόμητης λίστας"
|
796 |
+
|
797 |
+
#: ../inc/shortcodes/data.php:374 ../inc/shortcodes/data.php:683
|
798 |
+
msgid "Button"
|
799 |
+
msgstr "Button"
|
800 |
+
|
801 |
+
#: ../inc/shortcodes/data.php:382
|
802 |
+
msgid "Button link"
|
803 |
+
msgstr "Σύνδεσμος κουμπιού"
|
804 |
+
|
805 |
+
#: ../inc/shortcodes/data.php:387 ../inc/shortcodes/data.php:830
|
806 |
+
msgid "Same tab"
|
807 |
+
msgstr "Ίδιο tab"
|
808 |
+
|
809 |
+
#: ../inc/shortcodes/data.php:388 ../inc/shortcodes/data.php:831
|
810 |
+
msgid "New tab"
|
811 |
+
msgstr "Νέο tab"
|
812 |
+
|
813 |
+
#: ../inc/shortcodes/data.php:391 ../inc/shortcodes/data.php:834
|
814 |
+
msgid "Target"
|
815 |
+
msgstr "Στόχος"
|
816 |
+
|
817 |
+
#: ../inc/shortcodes/data.php:392
|
818 |
+
msgid "Button link target"
|
819 |
+
msgstr "Σύνδεσμος προορισμού του κουμπιού"
|
820 |
+
|
821 |
+
#: ../inc/shortcodes/data.php:399 ../inc/shortcodes/data.php:520
|
822 |
+
msgid "Soft"
|
823 |
+
msgstr "Απαλό"
|
824 |
+
|
825 |
+
#: ../inc/shortcodes/data.php:400 ../inc/shortcodes/data.php:521
|
826 |
+
msgid "Glass"
|
827 |
+
msgstr "Γυάλινο"
|
828 |
+
|
829 |
+
#: ../inc/shortcodes/data.php:401 ../inc/shortcodes/data.php:522
|
830 |
+
msgid "Bubbles"
|
831 |
+
msgstr "Φυσαλίδες"
|
832 |
+
|
833 |
+
#: ../inc/shortcodes/data.php:402 ../inc/shortcodes/data.php:523
|
834 |
+
msgid "Noise"
|
835 |
+
msgstr "Θόρυβος"
|
836 |
+
|
837 |
+
#: ../inc/shortcodes/data.php:403
|
838 |
+
msgid "Stroked"
|
839 |
+
msgstr "Stroked"
|
840 |
+
|
841 |
+
#: ../inc/shortcodes/data.php:404
|
842 |
+
msgid "3D"
|
843 |
+
msgstr "3D"
|
844 |
+
|
845 |
+
#: ../inc/shortcodes/data.php:407
|
846 |
+
msgid "Button background style preset"
|
847 |
+
msgstr "Προκαθορισμένο στυλ φόντου κουμπιού"
|
848 |
+
|
849 |
+
#: ../inc/shortcodes/data.php:413
|
850 |
+
msgid "Button background color"
|
851 |
+
msgstr "Χρώμα φόντου κουμπιού"
|
852 |
+
|
853 |
+
#: ../inc/shortcodes/data.php:420
|
854 |
+
msgid "Button text color"
|
855 |
+
msgstr "Χρώμα κειμένου κουμπιού"
|
856 |
+
|
857 |
+
#: ../inc/shortcodes/data.php:426
|
858 |
+
msgid "Button size"
|
859 |
+
msgstr "Μέγεθος κουμπιού"
|
860 |
+
|
861 |
+
#: ../inc/shortcodes/data.php:431
|
862 |
+
msgid "Fluid"
|
863 |
+
msgstr "Fluid"
|
864 |
+
|
865 |
+
#: ../inc/shortcodes/data.php:431
|
866 |
+
msgid "Fluid buttons has 100% width"
|
867 |
+
msgstr "Τα κουμπιά fluid έχουν 100% πλάτος"
|
868 |
+
|
869 |
+
#: ../inc/shortcodes/data.php:437 ../inc/shortcodes/data.php:546
|
870 |
+
#: ../inc/shortcodes/data.php:575
|
871 |
+
msgid "Radius"
|
872 |
+
msgstr "Radius"
|
873 |
+
|
874 |
+
#: ../inc/shortcodes/data.php:438
|
875 |
+
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
876 |
+
msgstr ""
|
877 |
+
"Στρογγύλεμα των γωνιών του κουμπιού. Ο υπολογισμός για αυτόματο στρογγύλεμα "
|
878 |
+
"γίνεται βάση του μεγέθους του κουμπιού"
|
879 |
+
|
880 |
+
#: ../inc/shortcodes/data.php:443 ../inc/shortcodes/data.php:492
|
881 |
+
msgid "Icon"
|
882 |
+
msgstr "Εικονίδιο"
|
883 |
+
|
884 |
+
#: ../inc/shortcodes/data.php:444
|
885 |
+
msgid ""
|
886 |
+
"You can upload custom icon for this button. Try to begin with <a href="
|
887 |
+
"\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-"
|
888 |
+
"crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. "
|
889 |
+
"Download archive, unpack icons and upload in this field"
|
890 |
+
msgstr ""
|
891 |
+
"Μπορείτε να μεταφορτώσετε δικά σας εικονίδια για αυτό το κουμπί. Ξεκινήστε "
|
892 |
+
"με αυτά τα <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/"
|
893 |
+
"exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">δωρεάν "
|
894 |
+
"εικονίδια υψηλής ποιότητας</a>. Κατεβάστε το αρχείο, ξεπακετάρετε τα "
|
895 |
+
"εικονίδια και μεταφορτώστε τα εικονίδια σε αυτό το πεδίο"
|
896 |
+
|
897 |
+
#: ../inc/shortcodes/data.php:450
|
898 |
+
msgid "Dark"
|
899 |
+
msgstr "Σκούρο"
|
900 |
+
|
901 |
+
#: ../inc/shortcodes/data.php:453
|
902 |
+
msgid "Text shadow color"
|
903 |
+
msgstr "Χρώμα σκιάς κειμένου"
|
904 |
+
|
905 |
+
#: ../inc/shortcodes/data.php:453
|
906 |
+
msgid "Color of button text shadow"
|
907 |
+
msgstr "Χρώμα σκιάς κειμένου του κουμπιού"
|
908 |
+
|
909 |
+
#: ../inc/shortcodes/data.php:458 ../inc/shortcodes/data.php:1322
|
910 |
+
msgid "None"
|
911 |
+
msgstr "Κανένα"
|
912 |
+
|
913 |
+
#: ../inc/shortcodes/data.php:459
|
914 |
+
msgid "Top"
|
915 |
+
msgstr "Επάνω"
|
916 |
+
|
917 |
+
#: ../inc/shortcodes/data.php:461
|
918 |
+
msgid "Bottom"
|
919 |
+
msgstr "Κάτω"
|
920 |
+
|
921 |
+
#: ../inc/shortcodes/data.php:463
|
922 |
+
msgid "Top right"
|
923 |
+
msgstr "Πάνω δεξιά"
|
924 |
+
|
925 |
+
#: ../inc/shortcodes/data.php:464
|
926 |
+
msgid "Top left"
|
927 |
+
msgstr "Πάνω αριστερά"
|
928 |
+
|
929 |
+
#: ../inc/shortcodes/data.php:464
|
930 |
+
msgid "Bottom right"
|
931 |
+
msgstr "Κάτω δεξιά"
|
932 |
+
|
933 |
+
#: ../inc/shortcodes/data.php:464
|
934 |
+
msgid "Bottom left"
|
935 |
+
msgstr "Κάτω αριστερά"
|
936 |
+
|
937 |
+
#: ../inc/shortcodes/data.php:466
|
938 |
+
msgid "Text shadow position"
|
939 |
+
msgstr "Θέση σκιάς κειμένου"
|
940 |
+
|
941 |
+
#: ../inc/shortcodes/data.php:466
|
942 |
+
msgid "Position of button text shadow"
|
943 |
+
msgstr "Θέση σκιάς κειμένου κουμπιού"
|
944 |
+
|
945 |
+
#: ../inc/shortcodes/data.php:471
|
946 |
+
msgid "CSS class"
|
947 |
+
msgstr "Κλάση CSS"
|
948 |
+
|
949 |
+
#: ../inc/shortcodes/data.php:471
|
950 |
+
msgid "Extra CSS class for button"
|
951 |
+
msgstr "Επιπλέον κλάση CSS για το κουμπί"
|
952 |
+
|
953 |
+
#: ../inc/shortcodes/data.php:474
|
954 |
+
msgid "Button text"
|
955 |
+
msgstr "Κείμενο κουμπιού"
|
956 |
+
|
957 |
+
#: ../inc/shortcodes/data.php:475
|
958 |
+
msgid "Styled button"
|
959 |
+
msgstr "Μορφοποίηση κουμπιού"
|
960 |
+
|
961 |
+
#: ../inc/shortcodes/data.php:479
|
962 |
+
msgid "Service"
|
963 |
+
msgstr "Service"
|
964 |
+
|
965 |
+
#: ../inc/shortcodes/data.php:485 ../inc/shortcodes/shortcodes.php:398
|
966 |
+
msgid "Service title"
|
967 |
+
msgstr "Τίτλος service"
|
968 |
+
|
969 |
+
#: ../inc/shortcodes/data.php:487
|
970 |
+
msgid "Service name"
|
971 |
+
msgstr "Service name"
|
972 |
+
|
973 |
+
#: ../inc/shortcodes/data.php:493
|
974 |
+
msgid "You can upload custom icon for this box"
|
975 |
+
msgstr "Μπορείτε να μεταφορτώσετε δικά σας εικονίδια για αυτό το πλαίσιο"
|
976 |
+
|
977 |
+
#: ../inc/shortcodes/data.php:499
|
978 |
+
msgid "Icon size"
|
979 |
+
msgstr "Μέγεθος εικονιδίου"
|
980 |
+
|
981 |
+
#: ../inc/shortcodes/data.php:500
|
982 |
+
msgid "Size of the uploaded icon in pixels"
|
983 |
+
msgstr "Μέγεθος του μεταφορτωμένου εικονιδίου σε pixels"
|
984 |
+
|
985 |
+
#: ../inc/shortcodes/data.php:503
|
986 |
+
msgid "Service description"
|
987 |
+
msgstr "Περιγραφή Service"
|
988 |
+
|
989 |
+
#: ../inc/shortcodes/data.php:503
|
990 |
+
msgid "Service box with title"
|
991 |
+
msgstr "Πλαίσιο service με τίτλο"
|
992 |
+
|
993 |
+
#: ../inc/shortcodes/data.php:507
|
994 |
+
msgid "Box"
|
995 |
+
msgstr "Box"
|
996 |
+
|
997 |
+
#: ../inc/shortcodes/data.php:513
|
998 |
+
msgid "Box title"
|
999 |
+
msgstr "Τίτλος πλαισίου"
|
1000 |
+
|
1001 |
+
#: ../inc/shortcodes/data.php:514
|
1002 |
+
msgid "Text for the box title"
|
1003 |
+
msgstr "Κείμενο για τον τίτλο του πλαισίου"
|
1004 |
+
|
1005 |
+
#: ../inc/shortcodes/data.php:527
|
1006 |
+
msgid "Box style preset"
|
1007 |
+
msgstr "Προκαθορισμένο στυλ πλαισίου"
|
1008 |
+
|
1009 |
+
#: ../inc/shortcodes/data.php:533
|
1010 |
+
msgid "Color"
|
1011 |
+
msgstr "Χρώμα"
|
1012 |
+
|
1013 |
+
#: ../inc/shortcodes/data.php:534
|
1014 |
+
msgid "Color for the box title and borders"
|
1015 |
+
msgstr "Χρώμα τίτλου και περιθωρίων πλαισίου"
|
1016 |
+
|
1017 |
+
#: ../inc/shortcodes/data.php:540
|
1018 |
+
msgid "Title text color"
|
1019 |
+
msgstr "Χρώμα κειμένου τίτλου"
|
1020 |
+
|
1021 |
+
#: ../inc/shortcodes/data.php:540
|
1022 |
+
msgid "Color for the box title text"
|
1023 |
+
msgstr "Χρώμα κειμένου τίτλου του πλαισίου"
|
1024 |
+
|
1025 |
+
#: ../inc/shortcodes/data.php:547
|
1026 |
+
msgid "Box corners radius"
|
1027 |
+
msgstr "Στρογγυλεμένες γωνίες πλαισίου"
|
1028 |
+
|
1029 |
+
#: ../inc/shortcodes/data.php:550
|
1030 |
+
msgid "Box content"
|
1031 |
+
msgstr "Περιεχόμενο πλαισίου"
|
1032 |
+
|
1033 |
+
#: ../inc/shortcodes/data.php:550
|
1034 |
+
msgid "Colored box with caption"
|
1035 |
+
msgstr "Χρωματισμένο πλαίσιο με λεζάντα"
|
1036 |
+
|
1037 |
+
#: ../inc/shortcodes/data.php:562
|
1038 |
+
msgid "Note background color"
|
1039 |
+
msgstr "Χρώμα φόντου σημείωσης"
|
1040 |
+
|
1041 |
+
#: ../inc/shortcodes/data.php:569
|
1042 |
+
msgid "Note text color"
|
1043 |
+
msgstr "Χρώμα κειμένου σημείωσης"
|
1044 |
+
|
1045 |
+
#: ../inc/shortcodes/data.php:575
|
1046 |
+
msgid "Note corners radius"
|
1047 |
+
msgstr "Στρογγυλεμένες γωνίες σημείωσης"
|
1048 |
+
|
1049 |
+
#: ../inc/shortcodes/data.php:578
|
1050 |
+
msgid "Note text"
|
1051 |
+
msgstr "Κείμενο σημείωσης"
|
1052 |
+
|
1053 |
+
#: ../inc/shortcodes/data.php:579
|
1054 |
+
msgid "Colored box"
|
1055 |
+
msgstr "Χρωματισμένο πλαίσιο"
|
1056 |
+
|
1057 |
+
#: ../inc/shortcodes/data.php:583
|
1058 |
+
msgid "Private"
|
1059 |
+
msgstr "Private"
|
1060 |
+
|
1061 |
+
#: ../inc/shortcodes/data.php:587
|
1062 |
+
msgid "Private note text"
|
1063 |
+
msgstr "Κείμενο σημείωσης Private"
|
1064 |
+
|
1065 |
+
#: ../inc/shortcodes/data.php:587
|
1066 |
+
msgid "Private note for post authors"
|
1067 |
+
msgstr "Σημείωση Private για συγγραφείς δημοσιευμάτων"
|
1068 |
+
|
1069 |
+
#: ../inc/shortcodes/data.php:591
|
1070 |
+
msgid "YouTube"
|
1071 |
+
msgstr "YouTube"
|
1072 |
+
|
1073 |
+
#: ../inc/shortcodes/data.php:598 ../inc/shortcodes/data.php:637
|
1074 |
+
#: ../inc/shortcodes/data.php:889 ../inc/shortcodes/data.php:959
|
1075 |
+
msgid "Url"
|
1076 |
+
msgstr "Διεύθυνση"
|
1077 |
+
|
1078 |
+
#: ../inc/shortcodes/data.php:599
|
1079 |
+
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1080 |
+
msgstr ""
|
1081 |
+
"Διεύθυνση της σελίδας YouTube με το βίντεο. Π.χ. http://youtube.com/watch?"
|
1082 |
+
"v=XXXXXX"
|
1083 |
+
|
1084 |
+
#: ../inc/shortcodes/data.php:607 ../inc/shortcodes/data.php:645
|
1085 |
+
#: ../inc/shortcodes/data.php:694 ../inc/shortcodes/data.php:754
|
1086 |
+
#: ../inc/shortcodes/data.php:968 ../inc/shortcodes/data.php:995
|
1087 |
+
#: ../inc/shortcodes/data.php:1033 ../inc/shortcodes/data.php:1112
|
1088 |
+
#: ../inc/shortcodes/data.php:1207
|
1089 |
+
msgid "Width"
|
1090 |
+
msgstr "Πλάτος"
|
1091 |
+
|
1092 |
+
#: ../inc/shortcodes/data.php:608 ../inc/shortcodes/data.php:646
|
1093 |
+
#: ../inc/shortcodes/data.php:755
|
1094 |
+
msgid "Player width"
|
1095 |
+
msgstr "Πλάτος Player"
|
1096 |
+
|
1097 |
+
#: ../inc/shortcodes/data.php:617 ../inc/shortcodes/data.php:655
|
1098 |
+
#: ../inc/shortcodes/data.php:764
|
1099 |
+
msgid "Player height"
|
1100 |
+
msgstr "Ύψος Player"
|
1101 |
+
|
1102 |
+
#: ../inc/shortcodes/data.php:622 ../inc/shortcodes/data.php:660
|
1103 |
+
#: ../inc/shortcodes/data.php:700 ../inc/shortcodes/data.php:775
|
1104 |
+
#: ../inc/shortcodes/data.php:1075 ../inc/shortcodes/data.php:1170
|
1105 |
+
msgid "Autoplay"
|
1106 |
+
msgstr "Αυτόματη αναπαραγωγή"
|
1107 |
+
|
1108 |
+
#: ../inc/shortcodes/data.php:623 ../inc/shortcodes/data.php:661
|
1109 |
+
msgid "Play video automatically when page is loaded"
|
1110 |
+
msgstr "Αυτόματη αναπαραγωγή βίντεο με την φόρτωση της σελίδας"
|
1111 |
+
|
1112 |
+
#: ../inc/shortcodes/data.php:626
|
1113 |
+
msgid "YouTube video"
|
1114 |
+
msgstr "Βίντεο YouTube"
|
1115 |
+
|
1116 |
+
#: ../inc/shortcodes/data.php:630
|
1117 |
+
msgid "Vimeo"
|
1118 |
+
msgstr "Vimeo"
|
1119 |
+
|
1120 |
+
#: ../inc/shortcodes/data.php:637
|
1121 |
+
msgid "Url of Vimeo page with video"
|
1122 |
+
msgstr "Διεύθυνση της σελίδας Vimeo με το βίντεο."
|
1123 |
+
|
1124 |
+
#: ../inc/shortcodes/data.php:664
|
1125 |
+
msgid "Vimeo video"
|
1126 |
+
msgstr "Βίντεο Vimeo"
|
1127 |
+
|
1128 |
+
#: ../inc/shortcodes/data.php:668
|
1129 |
+
msgid "Audio"
|
1130 |
+
msgstr "Audio"
|
1131 |
+
|
1132 |
+
#: ../inc/shortcodes/data.php:675 ../inc/shortcodes/data.php:722
|
1133 |
+
msgid "File"
|
1134 |
+
msgstr "Αρχείο"
|
1135 |
+
|
1136 |
+
#: ../inc/shortcodes/data.php:676
|
1137 |
+
msgid "Audio file url. Supported formats: mp3, ogg"
|
1138 |
+
msgstr "Διεύθυνση αρχείου ήχου. Υποστηριζόμενοι τύποι: mp3, ogg"
|
1139 |
+
|
1140 |
+
#: ../inc/shortcodes/data.php:684
|
1141 |
+
msgid "Hidden"
|
1142 |
+
msgstr "Κρυφό"
|
1143 |
+
|
1144 |
+
#: ../inc/shortcodes/data.php:688 ../inc/shortcodes/data.php:746
|
1145 |
+
msgid "Player style preset"
|
1146 |
+
msgstr "Προκαθορισμένο στυλ player"
|
1147 |
+
|
1148 |
+
#: ../inc/shortcodes/data.php:695
|
1149 |
+
msgid ""
|
1150 |
+
"Player width. You can specify width in percents and player will be responsive"
|
1151 |
+
msgstr ""
|
1152 |
+
"Πλάτος player. Μπορείτε να ορίσετε το πλάτος σε ποσοστό επί τοις εκατό και ο "
|
1153 |
+
"player θα ανταποκριθεί"
|
1154 |
+
|
1155 |
+
#: ../inc/shortcodes/data.php:701 ../inc/shortcodes/data.php:776
|
1156 |
+
msgid "Play file automatically when page is loaded"
|
1157 |
+
msgstr "Αυτόματη αναπαραγωγή αρχείου όταν θα φορτωθεί η σελίδα"
|
1158 |
+
|
1159 |
+
#: ../inc/shortcodes/data.php:706 ../inc/shortcodes/data.php:781
|
1160 |
+
msgid "Loop"
|
1161 |
+
msgstr "Ανακύκλωση"
|
1162 |
+
|
1163 |
+
#: ../inc/shortcodes/data.php:707 ../inc/shortcodes/data.php:782
|
1164 |
+
msgid "Repeat when playback is ended"
|
1165 |
+
msgstr "Επανάληψη όταν η αναπαραγωγή τερματιστεί"
|
1166 |
+
|
1167 |
+
#: ../inc/shortcodes/data.php:711
|
1168 |
+
msgid "Custom audio player"
|
1169 |
+
msgstr "Προσαρμοσμένος player ήχου"
|
1170 |
+
|
1171 |
+
#: ../inc/shortcodes/data.php:715
|
1172 |
+
msgid "Video"
|
1173 |
+
msgstr "Video"
|
1174 |
+
|
1175 |
+
#: ../inc/shortcodes/data.php:723
|
1176 |
+
msgid "Url to mp4/flv video-file"
|
1177 |
+
msgstr "Διεύθυνση του αρχείου βίντεο mp4/flv"
|
1178 |
+
|
1179 |
+
#: ../inc/shortcodes/data.php:728
|
1180 |
+
msgid "Poster"
|
1181 |
+
msgstr "Αφίσα"
|
1182 |
+
|
1183 |
+
#: ../inc/shortcodes/data.php:729
|
1184 |
+
msgid "Url to poster image, that will be shown before playback"
|
1185 |
+
msgstr ""
|
1186 |
+
"Διεύθυσνη της φωτογραφίας αφίσας, που θα προβάλλεται πριν από την αναπαραγωγή"
|
1187 |
+
|
1188 |
+
#: ../inc/shortcodes/data.php:735
|
1189 |
+
msgid "Player title"
|
1190 |
+
msgstr "Τίτλος player"
|
1191 |
+
|
1192 |
+
#: ../inc/shortcodes/data.php:742 ../inc/shortcodes/data.php:799
|
1193 |
+
msgid "Minimal"
|
1194 |
+
msgstr "Minimal"
|
1195 |
+
|
1196 |
+
#: ../inc/shortcodes/data.php:769
|
1197 |
+
msgid "Controls"
|
1198 |
+
msgstr "Χειριστήρια"
|
1199 |
+
|
1200 |
+
#: ../inc/shortcodes/data.php:770
|
1201 |
+
msgid "Show player controls (play/pause etc.) or not"
|
1202 |
+
msgstr "Προβολή ή όχι των χειριστηρίων του player (αναπαραγωγή/παύση κτλ)"
|
1203 |
+
|
1204 |
+
#: ../inc/shortcodes/data.php:786
|
1205 |
+
msgid "Custom video player"
|
1206 |
+
msgstr "Προσαρμοσμένος player για βίντεο"
|
1207 |
+
|
1208 |
+
#: ../inc/shortcodes/data.php:790
|
1209 |
+
msgid "Table"
|
1210 |
+
msgstr "Table"
|
1211 |
+
|
1212 |
+
#: ../inc/shortcodes/data.php:803
|
1213 |
+
msgid "Table style preset"
|
1214 |
+
msgstr "Προκαθορισμένο στυλ πίνακα"
|
1215 |
+
|
1216 |
+
#: ../inc/shortcodes/data.php:808
|
1217 |
+
msgid "CSV file"
|
1218 |
+
msgstr "Αρχείο CSV"
|
1219 |
+
|
1220 |
+
#: ../inc/shortcodes/data.php:809
|
1221 |
+
msgid "Upload CSV file if you want to create HTML-table from file"
|
1222 |
+
msgstr ""
|
1223 |
+
"Μεταφορτώστε ένα αρχείο CSV αν θέλετε να δημιουργήσετε πίνακα - HTML από "
|
1224 |
+
"αρχείο"
|
1225 |
+
|
1226 |
+
#: ../inc/shortcodes/data.php:813
|
1227 |
+
msgid ""
|
1228 |
+
"<table>\n"
|
1229 |
+
"<tr>\n"
|
1230 |
+
"\t<td>Table</td>\n"
|
1231 |
+
"\t<td>Table</td>\n"
|
1232 |
+
"</tr>\n"
|
1233 |
+
"<tr>\n"
|
1234 |
+
"\t<td>Table</td>\n"
|
1235 |
+
"\t<td>Table</td>\n"
|
1236 |
+
"</tr>\n"
|
1237 |
+
"</table>"
|
1238 |
+
msgstr ""
|
1239 |
+
"<table>\n"
|
1240 |
+
"<tr>\n"
|
1241 |
+
"\t<td>Πίνακας</td>\n"
|
1242 |
+
"\t<td>Πίνακας</td>\n"
|
1243 |
+
"</tr>\n"
|
1244 |
+
"<tr>\n"
|
1245 |
+
"\t<td>Πίνακας</td>\n"
|
1246 |
+
"\t<td>Πίνακας</td>\n"
|
1247 |
+
"</tr>\n"
|
1248 |
+
"</table>"
|
1249 |
+
|
1250 |
+
#: ../inc/shortcodes/data.php:814
|
1251 |
+
msgid "Styled table from HTML or CSV file"
|
1252 |
+
msgstr "Μορφοποιημένος πίνακας από HTML ή CSV αρχείο"
|
1253 |
+
|
1254 |
+
#: ../inc/shortcodes/data.php:818
|
1255 |
+
msgid "Permalink"
|
1256 |
+
msgstr "Permalink"
|
1257 |
+
|
1258 |
+
#: ../inc/shortcodes/data.php:824
|
1259 |
+
msgid "ID"
|
1260 |
+
msgstr "ID"
|
1261 |
+
|
1262 |
+
#: ../inc/shortcodes/data.php:825
|
1263 |
+
msgid "Post or page ID"
|
1264 |
+
msgstr "Δημοσίευση ή ID σελίδας"
|
1265 |
+
|
1266 |
+
#: ../inc/shortcodes/data.php:835
|
1267 |
+
msgid "Link target. blank - link will be opened in new window/tab"
|
1268 |
+
msgstr ""
|
1269 |
+
"Στόχος συναδέσμου. Κενό - ο σύνδεσμος θα ανοίξει σε νέο παράθυρο/νέα καρτέλα"
|
1270 |
+
|
1271 |
+
#: ../inc/shortcodes/data.php:839
|
1272 |
+
msgid "Permalink to specified post/page"
|
1273 |
+
msgstr "Το permalink για τον ορισμό του δημοσιεύματος/της σελίδας"
|
1274 |
+
|
1275 |
+
#: ../inc/shortcodes/data.php:843
|
1276 |
+
msgid "Members"
|
1277 |
+
msgstr "Members"
|
1278 |
+
|
1279 |
+
#: ../inc/shortcodes/data.php:856
|
1280 |
+
msgid "Box style preset. This box will be shown for not logged users only"
|
1281 |
+
msgstr ""
|
1282 |
+
"Προκαθορισμένο στυλ πλαισίου. Αυτό το πλαίσιο θα εμφανίζεται μόνο σε μή "
|
1283 |
+
"συνδεδεμένους χρήστες"
|
1284 |
+
|
1285 |
+
#: ../inc/shortcodes/data.php:860 ../inc/shortcodes/shortcodes.php:648
|
1286 |
+
msgid "This content is for registered users only. Please %login%."
|
1287 |
+
msgstr ""
|
1288 |
+
"Αυτό το περιεχόμενο είναι μόνο για εγγεγραμμένους χρήστες. Παρακαλώ "
|
1289 |
+
"%συνδεθείτε%."
|
1290 |
+
|
1291 |
+
#: ../inc/shortcodes/data.php:861
|
1292 |
+
msgid "Message"
|
1293 |
+
msgstr "΄Μήνυμα"
|
1294 |
+
|
1295 |
+
#: ../inc/shortcodes/data.php:861
|
1296 |
+
msgid "Message for not logged users"
|
1297 |
+
msgstr "Μήνυμα για μη συνδεδεμένους χρήστες"
|
1298 |
+
|
1299 |
+
#: ../inc/shortcodes/data.php:865 ../inc/shortcodes/shortcodes.php:649
|
1300 |
+
msgid "login"
|
1301 |
+
msgstr "σύνδεση"
|
1302 |
+
|
1303 |
+
#: ../inc/shortcodes/data.php:866
|
1304 |
+
msgid "Login link text"
|
1305 |
+
msgstr "Κείμενο διεύθυνσης σύνδεσης"
|
1306 |
+
|
1307 |
+
#: ../inc/shortcodes/data.php:866
|
1308 |
+
msgid "Text for the login link"
|
1309 |
+
msgstr "Κείμενο για την διεύθυσνη σύνδεσης"
|
1310 |
+
|
1311 |
+
#: ../inc/shortcodes/data.php:869
|
1312 |
+
msgid "Content for logged members"
|
1313 |
+
msgstr "Περιεχόμενο για συνδεδεμένους χρήστες"
|
1314 |
+
|
1315 |
+
#: ../inc/shortcodes/data.php:870
|
1316 |
+
msgid "Content for logged in members only"
|
1317 |
+
msgstr "Περιεχόμενο μόνο για συνδεδεμένους χρήστες"
|
1318 |
+
|
1319 |
+
#: ../inc/shortcodes/data.php:874
|
1320 |
+
msgid "Guests"
|
1321 |
+
msgstr "Guests"
|
1322 |
+
|
1323 |
+
#: ../inc/shortcodes/data.php:878
|
1324 |
+
msgid "Content for guests"
|
1325 |
+
msgstr "Περιεχόμενο για guests"
|
1326 |
+
|
1327 |
+
#: ../inc/shortcodes/data.php:878
|
1328 |
+
msgid "Content for guests only"
|
1329 |
+
msgstr "Περιεχόμενο μόνο για guests"
|
1330 |
+
|
1331 |
+
#: ../inc/shortcodes/data.php:882
|
1332 |
+
msgid "RSS Feed"
|
1333 |
+
msgstr "RSS Feed"
|
1334 |
+
|
1335 |
+
#: ../inc/shortcodes/data.php:890
|
1336 |
+
msgid "Url to RSS-feed"
|
1337 |
+
msgstr "Διεύθυνση του RSS-feed"
|
1338 |
+
|
1339 |
+
#: ../inc/shortcodes/data.php:895
|
1340 |
+
msgid "Limit"
|
1341 |
+
msgstr "Όριο"
|
1342 |
+
|
1343 |
+
#: ../inc/shortcodes/data.php:895
|
1344 |
+
msgid "Number of items to show"
|
1345 |
+
msgstr "Αριθμός αντικειμένων που θα προβάλλονται"
|
1346 |
+
|
1347 |
+
#: ../inc/shortcodes/data.php:898
|
1348 |
+
msgid "Feed grabber"
|
1349 |
+
msgstr "Feed grabber"
|
1350 |
+
|
1351 |
+
#: ../inc/shortcodes/data.php:902
|
1352 |
+
msgid "Menu"
|
1353 |
+
msgstr "Menu"
|
1354 |
+
|
1355 |
+
#: ../inc/shortcodes/data.php:909
|
1356 |
+
msgid "Menu name"
|
1357 |
+
msgstr "Όνομασία μενού"
|
1358 |
+
|
1359 |
+
#: ../inc/shortcodes/data.php:909
|
1360 |
+
msgid "Custom menu name. Ex: Main menu"
|
1361 |
+
msgstr "Προσαρμοσμένη ονομασία μενού. Π.χ. Main menu"
|
1362 |
+
|
1363 |
+
#: ../inc/shortcodes/data.php:912
|
1364 |
+
msgid "Custom menu by name"
|
1365 |
+
msgstr "Προσαρμοσμένο μενού κατά όνομα"
|
1366 |
+
|
1367 |
+
#: ../inc/shortcodes/data.php:916
|
1368 |
+
msgid "Sub pages"
|
1369 |
+
msgstr "Sub pages"
|
1370 |
+
|
1371 |
+
#: ../inc/shortcodes/data.php:923 ../inc/shortcodes/data.php:944
|
1372 |
+
msgid "Depth"
|
1373 |
+
msgstr "Βάθος"
|
1374 |
+
|
1375 |
+
#: ../inc/shortcodes/data.php:924
|
1376 |
+
msgid "Max depth level of children pages"
|
1377 |
+
msgstr "Μέγιστο επίπεδο βάθους για υποσελίδες"
|
1378 |
+
|
1379 |
+
#: ../inc/shortcodes/data.php:929
|
1380 |
+
msgid "Parent ID"
|
1381 |
+
msgstr "ID γονέα"
|
1382 |
+
|
1383 |
+
#: ../inc/shortcodes/data.php:930
|
1384 |
+
msgid "ID of the parent page. Leave blank to use current page"
|
1385 |
+
msgstr ""
|
1386 |
+
"ID της γονικής σελίδας. Αφήστε το κενό, ώστε να χρησιμοποιηθεί η τρέχουσα "
|
1387 |
+
"σελίδα"
|
1388 |
+
|
1389 |
+
#: ../inc/shortcodes/data.php:933
|
1390 |
+
msgid "List of sub pages"
|
1391 |
+
msgstr "Λίστα για υποσελίδες"
|
1392 |
+
|
1393 |
+
#: ../inc/shortcodes/data.php:937
|
1394 |
+
msgid "Siblings"
|
1395 |
+
msgstr "Siblings"
|
1396 |
+
|
1397 |
+
#: ../inc/shortcodes/data.php:945
|
1398 |
+
msgid "Max depth level"
|
1399 |
+
msgstr "Μέγιστο επίπεδο βάθους"
|
1400 |
+
|
1401 |
+
#: ../inc/shortcodes/data.php:948
|
1402 |
+
msgid "List of cureent page siblings"
|
1403 |
+
msgstr "Λίστα από τρέχουσες σελίδες siblings"
|
1404 |
+
|
1405 |
+
#: ../inc/shortcodes/data.php:952
|
1406 |
+
msgid "Document"
|
1407 |
+
msgstr "Document"
|
1408 |
+
|
1409 |
+
#: ../inc/shortcodes/data.php:960
|
1410 |
+
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1411 |
+
msgstr ""
|
1412 |
+
"Διεύθυνση για τη μεταφόρτωση εγγράφου. Υποστηριζόμενοι τύποι: doc, xls, pdf "
|
1413 |
+
"κτλ."
|
1414 |
+
|
1415 |
+
#: ../inc/shortcodes/data.php:969
|
1416 |
+
msgid "Viewer width"
|
1417 |
+
msgstr "Πλάτος Viewer"
|
1418 |
+
|
1419 |
+
#: ../inc/shortcodes/data.php:978
|
1420 |
+
msgid "Viewer height"
|
1421 |
+
msgstr "Ύψος Viewer"
|
1422 |
+
|
1423 |
+
#: ../inc/shortcodes/data.php:981
|
1424 |
+
msgid "Document viewer by Google"
|
1425 |
+
msgstr "Viewer εγγράφου από Google"
|
1426 |
+
|
1427 |
+
#: ../inc/shortcodes/data.php:985
|
1428 |
+
msgid "Gmap"
|
1429 |
+
msgstr "Gmap"
|
1430 |
+
|
1431 |
+
#: ../inc/shortcodes/data.php:996
|
1432 |
+
msgid "Map width"
|
1433 |
+
msgstr "Πλάτος χάρτη"
|
1434 |
+
|
1435 |
+
#: ../inc/shortcodes/data.php:1005
|
1436 |
+
msgid "Map height"
|
1437 |
+
msgstr "Ύψος χάρτη"
|
1438 |
+
|
1439 |
+
#: ../inc/shortcodes/data.php:1010
|
1440 |
+
msgid "Marker"
|
1441 |
+
msgstr "Δείκτης"
|
1442 |
+
|
1443 |
+
#: ../inc/shortcodes/data.php:1011
|
1444 |
+
msgid "Address for the marker. You can type it in any language"
|
1445 |
+
msgstr "Διεύθυνση του δείκτη. Μπορείτε να την γράψετε σε οποιαδήποτε γλώσσα"
|
1446 |
+
|
1447 |
+
#: ../inc/shortcodes/data.php:1014
|
1448 |
+
msgid "Maps by Google"
|
1449 |
+
msgstr "Χάρτες από Google"
|
1450 |
+
|
1451 |
+
#: ../inc/shortcodes/data.php:1018
|
1452 |
+
msgid "Slider"
|
1453 |
+
msgstr "Slider"
|
1454 |
+
|
1455 |
+
#: ../inc/shortcodes/data.php:1024 ../inc/shortcodes/data.php:1103
|
1456 |
+
#: ../inc/shortcodes/data.php:1192 ../inc/shortcodes/data.php:1198
|
1457 |
+
msgid "Gallery"
|
1458 |
+
msgstr "Gallery"
|
1459 |
+
|
1460 |
+
#: ../inc/shortcodes/data.php:1025
|
1461 |
+
msgid "Choose source gallery, that will be used for this slider"
|
1462 |
+
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το slider"
|
1463 |
+
|
1464 |
+
#: ../inc/shortcodes/data.php:1033
|
1465 |
+
msgid "Slider width (in pixels)"
|
1466 |
+
msgstr "Πλάτος slider (σε pixels)"
|
1467 |
+
|
1468 |
+
#: ../inc/shortcodes/data.php:1041
|
1469 |
+
msgid "Slider height (in pixels)"
|
1470 |
+
msgstr "Ycow slider (σε pixels)"
|
1471 |
+
|
1472 |
+
#: ../inc/shortcodes/data.php:1046 ../inc/shortcodes/data.php:1141
|
1473 |
+
#: ../inc/shortcodes/data.php:1225
|
1474 |
+
msgid "Show titles"
|
1475 |
+
msgstr "Προβολή τίτλων"
|
1476 |
+
|
1477 |
+
#: ../inc/shortcodes/data.php:1046
|
1478 |
+
msgid "Display slide titles"
|
1479 |
+
msgstr "Προβολή των τίτλων του slide"
|
1480 |
+
|
1481 |
+
#: ../inc/shortcodes/data.php:1051 ../inc/shortcodes/data.php:1146
|
1482 |
+
msgid "Center"
|
1483 |
+
msgstr "Κέντρο"
|
1484 |
+
|
1485 |
+
#: ../inc/shortcodes/data.php:1051
|
1486 |
+
msgid "Is slider centered on the page"
|
1487 |
+
msgstr "Είναι το slider κεντραρισμένο στην σελίδα"
|
1488 |
+
|
1489 |
+
#: ../inc/shortcodes/data.php:1056 ../inc/shortcodes/data.php:1151
|
1490 |
+
msgid "Arrows"
|
1491 |
+
msgstr "Βέλη"
|
1492 |
+
|
1493 |
+
#: ../inc/shortcodes/data.php:1056 ../inc/shortcodes/data.php:1151
|
1494 |
+
msgid "Show left and right arrows"
|
1495 |
+
msgstr "Προβολή αριστερού και δεξιού βέλους"
|
1496 |
+
|
1497 |
+
#: ../inc/shortcodes/data.php:1061 ../inc/shortcodes/data.php:1156
|
1498 |
+
msgid "Pagination"
|
1499 |
+
msgstr "Σελιδοποίηση"
|
1500 |
+
|
1501 |
+
#: ../inc/shortcodes/data.php:1062 ../inc/shortcodes/data.php:1157
|
1502 |
+
msgid "Show pagination"
|
1503 |
+
msgstr "Προβολή σελιδοποίησης"
|
1504 |
+
|
1505 |
+
#: ../inc/shortcodes/data.php:1066 ../inc/shortcodes/data.php:1161
|
1506 |
+
msgid "Mouse wheel control"
|
1507 |
+
msgstr "Έλεγχος ρόδας ποντικιού"
|
1508 |
+
|
1509 |
+
#: ../inc/shortcodes/data.php:1067
|
1510 |
+
msgid "Allow to change slides with mouse wheel"
|
1511 |
+
msgstr "Επιτρέψτε την αλλαγή των slides με την ρόδα του ποντικιού"
|
1512 |
+
|
1513 |
+
#: ../inc/shortcodes/data.php:1076
|
1514 |
+
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1515 |
+
msgstr ""
|
1516 |
+
"Επιλέξτε το χρονικό διάστημα μεταξύ των κινούμενων εικόνων του slide. Ορίστε "
|
1517 |
+
"σε 0 για απενεργοποίηση την αυτόματης αναπαραγωγής"
|
1518 |
+
|
1519 |
+
#: ../inc/shortcodes/data.php:1084 ../inc/shortcodes/data.php:1179
|
1520 |
+
msgid "Speed"
|
1521 |
+
msgstr "Ταχύτητα"
|
1522 |
+
|
1523 |
+
#: ../inc/shortcodes/data.php:1084 ../inc/shortcodes/data.php:1179
|
1524 |
+
msgid "Specify animation speed"
|
1525 |
+
msgstr "Καθορίστε την ταχύτητα κίνησης"
|
1526 |
+
|
1527 |
+
#: ../inc/shortcodes/data.php:1089 ../inc/shortcodes/data.php:1184
|
1528 |
+
#: ../inc/shortcodes/data.php:1231
|
1529 |
+
msgid "Links target"
|
1530 |
+
msgstr "Στόχος συνδέσμου"
|
1531 |
+
|
1532 |
+
#: ../inc/shortcodes/data.php:1090
|
1533 |
+
msgid "Open slides links in new window/tab"
|
1534 |
+
msgstr "Άνοιγμα των συνδέσμων του slide σε νέο παράθυρο/νέα καρτέλα"
|
1535 |
+
|
1536 |
+
#: ../inc/shortcodes/data.php:1093
|
1537 |
+
msgid "Customizable image slider"
|
1538 |
+
msgstr "Προσαρμοζόμενο slider εικόνων"
|
1539 |
+
|
1540 |
+
#: ../inc/shortcodes/data.php:1097
|
1541 |
+
msgid "Carousel"
|
1542 |
+
msgstr "Carousel"
|
1543 |
+
|
1544 |
+
#: ../inc/shortcodes/data.php:1104
|
1545 |
+
msgid "Choose source gallery, that will be used for this carousel"
|
1546 |
+
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το carousel"
|
1547 |
+
|
1548 |
+
#: ../inc/shortcodes/data.php:1112
|
1549 |
+
msgid "Carousel width (in pixels)"
|
1550 |
+
msgstr "Πλάτος Carousel (σε pixels)"
|
1551 |
+
|
1552 |
+
#: ../inc/shortcodes/data.php:1120
|
1553 |
+
msgid "Carousel height (in pixels)"
|
1554 |
+
msgstr "Ύψος Carousel (σε pixels)"
|
1555 |
+
|
1556 |
+
#: ../inc/shortcodes/data.php:1127
|
1557 |
+
msgid "Items to show"
|
1558 |
+
msgstr "Αντικείμενα για προβολή"
|
1559 |
+
|
1560 |
+
#: ../inc/shortcodes/data.php:1128
|
1561 |
+
msgid "How much carousel items is visible"
|
1562 |
+
msgstr "Πόσα αντικείμενα του Carousel θα προβάλονται"
|
1563 |
+
|
1564 |
+
#: ../inc/shortcodes/data.php:1135
|
1565 |
+
msgid "Scroll number"
|
1566 |
+
msgstr "Αριθμός κύλισης"
|
1567 |
+
|
1568 |
+
#: ../inc/shortcodes/data.php:1136
|
1569 |
+
msgid "How much items are scrolled in one transition"
|
1570 |
+
msgstr "Πόσα στοιχεία μετακυλίονται σε ένα μεταβατικό στάδιο"
|
1571 |
+
|
1572 |
+
#: ../inc/shortcodes/data.php:1141
|
1573 |
+
msgid "Display titles for each item"
|
1574 |
+
msgstr "Προβολή τίτλων για κάθε αντικέιμενο"
|
1575 |
+
|
1576 |
+
#: ../inc/shortcodes/data.php:1146
|
1577 |
+
msgid "Is carousel centered on the page"
|
1578 |
+
msgstr "Είναι το carousel κεντραρισμένο στην σελίδα"
|
1579 |
+
|
1580 |
+
#: ../inc/shortcodes/data.php:1162
|
1581 |
+
msgid "Allow to rotate carousel with mouse wheel"
|
1582 |
+
msgstr "Να επιτρέπεται η περιστροφή του carousel με τη ρόδα του ποντικιού"
|
1583 |
+
|
1584 |
+
#: ../inc/shortcodes/data.php:1171
|
1585 |
+
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1586 |
+
msgstr ""
|
1587 |
+
"Επιλέξτε το χρονικό διάστημα μεταξύ των αυτόματων κινούμενων εικόνων. Ορίστε "
|
1588 |
+
"σε 0 για απενεργοποίηση την αυτόματης αναπαραγωγής"
|
1589 |
+
|
1590 |
+
#: ../inc/shortcodes/data.php:1185
|
1591 |
+
msgid "Open carousel links in new window/tab"
|
1592 |
+
msgstr "Άνοιγμα των συνδέσμων του carousel σε νέο παράθυρο/νέα καρτέλα"
|
1593 |
+
|
1594 |
+
#: ../inc/shortcodes/data.php:1188
|
1595 |
+
msgid "Customizable image carousel"
|
1596 |
+
msgstr "Carousel προσαρμοζόμενης εικόνας"
|
1597 |
+
|
1598 |
+
#: ../inc/shortcodes/data.php:1199
|
1599 |
+
msgid "Choose source gallery, that will be used for this shortcode"
|
1600 |
+
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το shortcode"
|
1601 |
+
|
1602 |
+
#: ../inc/shortcodes/data.php:1207
|
1603 |
+
msgid "Single item width (in pixels)"
|
1604 |
+
msgstr "Πλάτος ενιαίου αντικειμένου (σε pixels)"
|
1605 |
+
|
1606 |
+
#: ../inc/shortcodes/data.php:1215
|
1607 |
+
msgid "Single item height (in pixels)"
|
1608 |
+
msgstr "Ύψος ενιαίου αντικειμένου (σε pixels)"
|
1609 |
+
|
1610 |
+
#: ../inc/shortcodes/data.php:1220
|
1611 |
+
msgid "Never"
|
1612 |
+
msgstr "Ποτέ"
|
1613 |
+
|
1614 |
+
#: ../inc/shortcodes/data.php:1221
|
1615 |
+
msgid "On mouse over"
|
1616 |
+
msgstr "Με το ποντίκι πάνω"
|
1617 |
+
|
1618 |
+
#: ../inc/shortcodes/data.php:1222
|
1619 |
+
msgid "Always"
|
1620 |
+
msgstr "Πάντα"
|
1621 |
+
|
1622 |
+
#: ../inc/shortcodes/data.php:1226
|
1623 |
+
msgid "Title display mode"
|
1624 |
+
msgstr "Τρόπος προβολής τίτλου"
|
1625 |
+
|
1626 |
+
#: ../inc/shortcodes/data.php:1231
|
1627 |
+
msgid "Open links in new window/tab"
|
1628 |
+
msgstr "Άνοιγμα συνδέσμων σε νέο παράθυρο/νέα καρτέλα"
|
1629 |
+
|
1630 |
+
#: ../inc/shortcodes/data.php:1234
|
1631 |
+
msgid "Customizable image gallery"
|
1632 |
+
msgstr "Προσαρμόσιμη γκαλερί εικόνων"
|
1633 |
+
|
1634 |
+
#: ../inc/shortcodes/data.php:1238
|
1635 |
+
msgid "Posts"
|
1636 |
+
msgstr "Posts"
|
1637 |
+
|
1638 |
+
#: ../inc/shortcodes/data.php:1243
|
1639 |
+
msgid "Template"
|
1640 |
+
msgstr "Πρότυπο"
|
1641 |
+
|
1642 |
+
#: ../inc/shortcodes/data.php:1244
|
1643 |
+
msgid ""
|
1644 |
+
"<b>Do not change this field value if you do not understand description below."
|
1645 |
+
"</b><br/>Relative path to the template file. Default templates is placed "
|
1646 |
+
"under the plugin directory (templates folder). You can copy it under your "
|
1647 |
+
"theme directory and modify as you want. You can use following default "
|
1648 |
+
"templates that already available in the plugin directory:<br/><b"
|
1649 |
+
"%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/"
|
1650 |
+
"teaser-loop.php</b> - posts loop with thumbnail and title<br/><b"
|
1651 |
+
"%value>templates/single-post.php</b> - single post template<br/><b"
|
1652 |
+
"%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1653 |
+
msgstr ""
|
1654 |
+
"<b>ΜΗΝ αλλάξετε την τιμή αυτού του πεδίου αν δεν καταλαβαίνετε την παρακάτω "
|
1655 |
+
"σημείωση.</b><br/>Σχετισμένη διεύθυνση με το πρότυπο αρχείο. Τα "
|
1656 |
+
"προκαθορισμένα πρότυπα είναι τοποθετημένα στον κατάλογο του πρόσθετου "
|
1657 |
+
"(φάκελος templates). Μπορείτε να τα αντιγράψετε στον κατάλογο του θέματός "
|
1658 |
+
"σας και να τα τροποποιήσετε όπως θέλετε. Μπορείτε να χρησιμοποιήσετε τα "
|
1659 |
+
"επόμενα προκαθορισμένα πρότυπα που είναι ήδη διαθέσιμα στον κατάλογο του "
|
1660 |
+
"πρόσθετου:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b"
|
1661 |
+
"%value>templates/teaser-loop.php</b> - posts loop with thumbnail and "
|
1662 |
+
"title<br/><b%value>templates/single-post.php</b> - single post template<br/"
|
1663 |
+
"><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1664 |
+
|
1665 |
+
#: ../inc/shortcodes/data.php:1248
|
1666 |
+
msgid "Post ID's"
|
1667 |
+
msgstr "ID δημοσιευμάτων"
|
1668 |
+
|
1669 |
+
#: ../inc/shortcodes/data.php:1249
|
1670 |
+
msgid "Enter comma separated ID's of the posts that you want to show"
|
1671 |
+
msgstr ""
|
1672 |
+
"Εισάγεται τις ID διαχωρισμένες με κόμμα, για τα δημοσιεύματα που θέλετε να "
|
1673 |
+
"προβάλλονται"
|
1674 |
+
|
1675 |
+
#: ../inc/shortcodes/data.php:1257
|
1676 |
+
msgid "Posts per page"
|
1677 |
+
msgstr "Δημοσιεύματα ανά σελίδα"
|
1678 |
+
|
1679 |
+
#: ../inc/shortcodes/data.php:1258
|
1680 |
+
msgid ""
|
1681 |
+
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
1682 |
+
msgstr ""
|
1683 |
+
"Ορίστε των αριθμό των δημοσιεύσεων που θέλετε να προβάλονται. Εισάγεται -1 "
|
1684 |
+
"για να προβληθούν όλες οι δημοσιεύσεις"
|
1685 |
+
|
1686 |
+
#: ../inc/shortcodes/data.php:1265
|
1687 |
+
msgid "Post types"
|
1688 |
+
msgstr "Τύπος δημοσιευμάτων"
|
1689 |
+
|
1690 |
+
#: ../inc/shortcodes/data.php:1266
|
1691 |
+
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1692 |
+
msgstr ""
|
1693 |
+
"Επιλέξτε τους τύπους των δημοσιευμάτων. Κρατήστε το πλήκτρο Ctrl για να "
|
1694 |
+
"επιλέξετε πολλαπλούς τύπους δημοσιευμάτων"
|
1695 |
+
|
1696 |
+
#: ../inc/shortcodes/data.php:1272
|
1697 |
+
msgid "Taxonomy"
|
1698 |
+
msgstr "Taxonomy"
|
1699 |
+
|
1700 |
+
#: ../inc/shortcodes/data.php:1273
|
1701 |
+
msgid "Select taxonomy to show posts from"
|
1702 |
+
msgstr "Επιλέξτε taxonomy για την προβολή άρθρων"
|
1703 |
+
|
1704 |
+
#: ../inc/shortcodes/data.php:1280
|
1705 |
+
msgid "Terms"
|
1706 |
+
msgstr "Όροι"
|
1707 |
+
|
1708 |
+
#: ../inc/shortcodes/data.php:1280
|
1709 |
+
msgid "Select terms to show posts from"
|
1710 |
+
msgstr "Επιλογή όρων για την προβολή δημοσιευμάτων"
|
1711 |
+
|
1712 |
+
#: ../inc/shortcodes/data.php:1285
|
1713 |
+
msgid "Taxonomy term operator"
|
1714 |
+
msgstr "Taxonomy term operator"
|
1715 |
+
|
1716 |
+
#: ../inc/shortcodes/data.php:1286
|
1717 |
+
msgid ""
|
1718 |
+
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
1719 |
+
"that is does not have any of selected terms<br/>AND - posts that have all "
|
1720 |
+
"selected terms"
|
1721 |
+
msgstr ""
|
1722 |
+
"IN - δημοσιεύματα που έχουν οποιονδήποτε όρο της επιλεγμένης κατηγορίας<br/"
|
1723 |
+
">NOT IN - δημοσιεύματα που δεν έχουν οποιονδήποτε όρο επιλεγμένο<br/>AND - "
|
1724 |
+
"δημοσιεύματα που έχουν όλους τους όρους επιλεγμένους"
|
1725 |
+
|
1726 |
+
#: ../inc/shortcodes/data.php:1293
|
1727 |
+
msgid "Authors"
|
1728 |
+
msgstr "Συγγραφείς"
|
1729 |
+
|
1730 |
+
#: ../inc/shortcodes/data.php:1294
|
1731 |
+
msgid "Choose the authors whose posts you want to show"
|
1732 |
+
msgstr ""
|
1733 |
+
"Επιλέξτε τους συγγραφείς των οποίων τα δημοσιεύματα θέλετε να προβάλλονται"
|
1734 |
+
|
1735 |
+
#: ../inc/shortcodes/data.php:1298
|
1736 |
+
msgid "Meta key"
|
1737 |
+
msgstr "Κλειδιά μεταδεδομένων"
|
1738 |
+
|
1739 |
+
#: ../inc/shortcodes/data.php:1299
|
1740 |
+
msgid "Enter meta key name to show posts that have this key"
|
1741 |
+
msgstr ""
|
1742 |
+
"Εισάγεται ονόματα κλειδιών μεταδεδομένων για να προβληθούν τα δημοσιεύματα "
|
1743 |
+
"που τα έχουν"
|
1744 |
+
|
1745 |
+
#: ../inc/shortcodes/data.php:1306
|
1746 |
+
msgid "Offset"
|
1747 |
+
msgstr "Offset"
|
1748 |
+
|
1749 |
+
#: ../inc/shortcodes/data.php:1307
|
1750 |
+
msgid "Specify offset to start posts loop not from first post"
|
1751 |
+
msgstr ""
|
1752 |
+
"Ορίστε offset για την έναρξη του κύκλου δημοσιευμάτων, όχι από το πρώτο "
|
1753 |
+
"δημοσίευμα"
|
1754 |
+
|
1755 |
+
#: ../inc/shortcodes/data.php:1312
|
1756 |
+
msgid "Descending"
|
1757 |
+
msgstr "Φθίνουσα"
|
1758 |
+
|
1759 |
+
#: ../inc/shortcodes/data.php:1313
|
1760 |
+
msgid "Ascending"
|
1761 |
+
msgstr "Αύξουσα"
|
1762 |
+
|
1763 |
+
#: ../inc/shortcodes/data.php:1316
|
1764 |
+
msgid "Order"
|
1765 |
+
msgstr "Σειρά"
|
1766 |
+
|
1767 |
+
#: ../inc/shortcodes/data.php:1317
|
1768 |
+
msgid "Posts order"
|
1769 |
+
msgstr "Σειρά δημοσιευμάτων"
|
1770 |
+
|
1771 |
+
#: ../inc/shortcodes/data.php:1323
|
1772 |
+
msgid "Post ID"
|
1773 |
+
msgstr "ID δημοσιεύματος"
|
1774 |
+
|
1775 |
+
#: ../inc/shortcodes/data.php:1324
|
1776 |
+
msgid "Post author"
|
1777 |
+
msgstr "Συγγραφέας δημοσιεύματος"
|
1778 |
+
|
1779 |
+
#: ../inc/shortcodes/data.php:1325
|
1780 |
+
msgid "Post title"
|
1781 |
+
msgstr "Τίτλος δημοσιεύματος"
|
1782 |
+
|
1783 |
+
#: ../inc/shortcodes/data.php:1326
|
1784 |
+
msgid "Post slug"
|
1785 |
+
msgstr "Slug δημοσιεύματος"
|
1786 |
+
|
1787 |
+
#: ../inc/shortcodes/data.php:1327
|
1788 |
+
msgid "Date"
|
1789 |
+
msgstr "Ημέρα"
|
1790 |
+
|
1791 |
+
#: ../inc/shortcodes/data.php:1327
|
1792 |
+
msgid "Last modified date"
|
1793 |
+
msgstr "Ημέρα τελευταίας τροποποίησης"
|
1794 |
+
|
1795 |
+
#: ../inc/shortcodes/data.php:1328 ../inc/shortcodes/data.php:1338
|
1796 |
+
msgid "Post parent"
|
1797 |
+
msgstr "Γονέας δημοσιεύματος"
|
1798 |
+
|
1799 |
+
#: ../inc/shortcodes/data.php:1329
|
1800 |
+
msgid "Random"
|
1801 |
+
msgstr "Τυχαίο"
|
1802 |
+
|
1803 |
+
#: ../inc/shortcodes/data.php:1329
|
1804 |
+
msgid "Comments number"
|
1805 |
+
msgstr "Αριθμός σχόλιων"
|
1806 |
+
|
1807 |
+
#: ../inc/shortcodes/data.php:1330
|
1808 |
+
msgid "Menu order"
|
1809 |
+
msgstr "Σειρά μενού"
|
1810 |
+
|
1811 |
+
#: ../inc/shortcodes/data.php:1330
|
1812 |
+
msgid "Meta key values"
|
1813 |
+
msgstr "Τιμές κλειδιών μεταδεδομένων"
|
1814 |
+
|
1815 |
+
#: ../inc/shortcodes/data.php:1333
|
1816 |
+
msgid "Order by"
|
1817 |
+
msgstr "Ταξινόμηση κατά"
|
1818 |
+
|
1819 |
+
#: ../inc/shortcodes/data.php:1334
|
1820 |
+
msgid "Order posts by"
|
1821 |
+
msgstr "Ταξινόμηση δημοσιευμάτων κατά"
|
1822 |
+
|
1823 |
+
#: ../inc/shortcodes/data.php:1339
|
1824 |
+
msgid "Show childrens of entered post (enter post ID)"
|
1825 |
+
msgstr ""
|
1826 |
+
"Προβολή υποδημοσιευμάτων για τα δημοσιεύματα που έχετε εισάγει (εισάγεται ID "
|
1827 |
+
"δημοσιεύματος)"
|
1828 |
+
|
1829 |
+
#: ../inc/shortcodes/data.php:1344
|
1830 |
+
msgid "Published"
|
1831 |
+
msgstr "Δημοσιευμένα"
|
1832 |
+
|
1833 |
+
#: ../inc/shortcodes/data.php:1345
|
1834 |
+
msgid "Pending"
|
1835 |
+
msgstr "Εν αναμονή"
|
1836 |
+
|
1837 |
+
#: ../inc/shortcodes/data.php:1346
|
1838 |
+
msgid "Draft"
|
1839 |
+
msgstr "Προσχέδιο"
|
1840 |
+
|
1841 |
+
#: ../inc/shortcodes/data.php:1347
|
1842 |
+
msgid "Auto-draft"
|
1843 |
+
msgstr "Αυτόματο προσχέδιο"
|
1844 |
+
|
1845 |
+
#: ../inc/shortcodes/data.php:1348
|
1846 |
+
msgid "Future post"
|
1847 |
+
msgstr "Μελλοντικό δημοσίευμα"
|
1848 |
+
|
1849 |
+
#: ../inc/shortcodes/data.php:1349
|
1850 |
+
msgid "Private post"
|
1851 |
+
msgstr "Ιδιωτικό δημοσίευμα"
|
1852 |
+
|
1853 |
+
#: ../inc/shortcodes/data.php:1350
|
1854 |
+
msgid "Inherit"
|
1855 |
+
msgstr "Κληρονομημένο"
|
1856 |
+
|
1857 |
+
#: ../inc/shortcodes/data.php:1351
|
1858 |
+
msgid "Trashed"
|
1859 |
+
msgstr "Διεγραμμένο"
|
1860 |
+
|
1861 |
+
#: ../inc/shortcodes/data.php:1352
|
1862 |
+
msgid "Any"
|
1863 |
+
msgstr "Οποιοδήποτε"
|
1864 |
+
|
1865 |
+
#: ../inc/shortcodes/data.php:1355
|
1866 |
+
msgid "Post status"
|
1867 |
+
msgstr "Κατάσταση δημοσιεύματος"
|
1868 |
+
|
1869 |
+
#: ../inc/shortcodes/data.php:1356
|
1870 |
+
msgid "Show only posts with selected status"
|
1871 |
+
msgstr "Προβολή μόνο των δημοσιευμάτων με την επιλεγμένη κατάσταση"
|
1872 |
+
|
1873 |
+
#: ../inc/shortcodes/data.php:1361
|
1874 |
+
msgid "Ignore sticky"
|
1875 |
+
msgstr "Παράβλεψη καρφιτσωμένων"
|
1876 |
+
|
1877 |
+
#: ../inc/shortcodes/data.php:1362
|
1878 |
+
msgid "Select Yes to ignore posts that is sticked"
|
1879 |
+
msgstr "Επιλέξτε Ναι για να παραβλέψετε τα καρφιτσωμένα δημοσιεύματα"
|
1880 |
+
|
1881 |
+
#: ../inc/shortcodes/data.php:1366
|
1882 |
+
msgid "Custom posts query with customizable template"
|
1883 |
+
msgstr "Προσαρμοσμένο ερώτημα δημοσιευμάτων με προσαρμοζόμενο πρότυπο"
|
1884 |
+
|
1885 |
+
#: ../inc/shortcodes/shortcodes.php:416
|
1886 |
+
msgid "This is box title"
|
1887 |
+
msgstr "Αυτός είναι τίτλος πλαισίου"
|
1888 |
+
|
1889 |
+
#: ../inc/shortcodes/shortcodes.php:486 ../inc/shortcodes/shortcodes.php:518
|
1890 |
+
#: ../inc/shortcodes/shortcodes.php:554 ../inc/shortcodes/shortcodes.php:588
|
1891 |
+
msgid "please specify correct url"
|
1892 |
+
msgstr "παρακαλώ να διευκρινίστε σωστή διεύθυνση"
|
1893 |
+
|
1894 |
+
#: ../inc/shortcodes/shortcodes.php:755
|
1895 |
+
msgid "This menu doesn't exists, or has no elements"
|
1896 |
+
msgstr "Αυτό το μενού δεν υπάρχει ή δεν έχει στοιχεία"
|
1897 |
+
|
1898 |
+
#: ../inc/shortcodes/shortcodes.php:832 ../inc/shortcodes/shortcodes.php:918
|
1899 |
+
#: ../inc/shortcodes/shortcodes.php:989
|
1900 |
+
msgid "images not found"
|
1901 |
+
msgstr "δεν βρέθηκαν εικόνες"
|
1902 |
+
|
1903 |
+
#: ../inc/shortcodes/shortcodes.php:1197
|
1904 |
+
msgid "template not found"
|
1905 |
+
msgstr "δεν βρέθηκε πρότυπο"
|
1906 |
+
|
1907 |
+
#: ../inc/sunrise/options.php:6
|
1908 |
+
msgid "About"
|
1909 |
+
msgstr "Σχετικά με"
|
1910 |
+
|
1911 |
+
#: ../inc/sunrise/options.php:21
|
1912 |
+
msgid "Custom formatting"
|
1913 |
+
msgstr "Προσαρμοσμένη μορφοποίηση"
|
1914 |
+
|
1915 |
+
#: ../inc/sunrise/options.php:22
|
1916 |
+
msgid ""
|
1917 |
+
"Disable this option if you have some problems with other plugins or content "
|
1918 |
+
"formatting"
|
1919 |
+
msgstr ""
|
1920 |
+
"Απενεργοποιήστε αυτή την επιλογή αν έχετε προβλήματα με άλλα πρόσθετα ή με "
|
1921 |
+
"την μορφοποίηση του περιεχομένου"
|
1922 |
+
|
1923 |
+
#: ../inc/sunrise/options.php:22 ../inc/sunrise/options.php:30
|
1924 |
+
msgid "Documentation article"
|
1925 |
+
msgstr "Άρθρο τεκμηρίωσης"
|
1926 |
+
|
1927 |
+
#: ../inc/sunrise/options.php:26 ../inc/sunrise/options.php:34
|
1928 |
+
msgid "Enabled"
|
1929 |
+
msgstr "Ενεργοποιημένο"
|
1930 |
+
|
1931 |
+
#: ../inc/sunrise/options.php:29
|
1932 |
+
msgid "Compatibility mode"
|
1933 |
+
msgstr "Λειτουργία συμβατότητας"
|
1934 |
+
|
1935 |
+
#: ../inc/sunrise/options.php:30
|
1936 |
+
msgid ""
|
1937 |
+
"Enable this option if you have some problems with other plugins that uses "
|
1938 |
+
"similar shortcode names"
|
1939 |
+
msgstr ""
|
1940 |
+
"Ενεργοποιήστε αυτή την επιλογή, αν έχετε προβλήματα με άλλα πρόσθετα που "
|
1941 |
+
"χρησιμοποιούν παρόμοια ονόματα στα shortcode"
|
1942 |
+
|
1943 |
+
#: ../inc/sunrise/options.php:30
|
1944 |
+
msgid "etc."
|
1945 |
+
msgstr "κτλ"
|
1946 |
+
|
1947 |
+
#: ../inc/sunrise/options.php:40
|
1948 |
+
msgid "Custom CSS"
|
1949 |
+
msgstr "Προσαρμοσμένο CSS"
|
1950 |
+
|
1951 |
+
#: ../inc/sunrise/options.php:51
|
1952 |
+
msgid "Galleries"
|
1953 |
+
msgstr "Γκαλερί"
|
1954 |
+
|
1955 |
+
#: ../inc/sunrise/options.php:62
|
1956 |
+
msgid "Cheatsheet"
|
1957 |
+
msgstr "Αρχείο Cheatsheet"
|
1958 |
+
|
1959 |
+
#: ../inc/sunrise/views/about.php:2
|
1960 |
+
msgid "Welcome to Shortcodes Ultimate"
|
1961 |
+
msgstr "Καλώς ορίσατε στο Shortcodes Ultimate"
|
1962 |
+
|
1963 |
+
#: ../inc/sunrise/views/about.php:2
|
1964 |
+
msgid "A real swiss army knife for WordPress"
|
1965 |
+
msgstr "Ένας ελβετικός σουγιάς για το WordPress"
|
1966 |
+
|
1967 |
+
#: ../inc/sunrise/views/about.php:4
|
1968 |
+
msgid "Project homepage"
|
1969 |
+
msgstr "Iστοσελίδα του πρόσθετου"
|
1970 |
+
|
1971 |
+
#: ../inc/sunrise/views/about.php:6
|
1972 |
+
msgid "Add-ons"
|
1973 |
+
msgstr "Πρόσθετα"
|
1974 |
+
|
1975 |
+
#: ../inc/sunrise/views/about.php:8
|
1976 |
+
msgid "Documentation"
|
1977 |
+
msgstr "Τεκμηρίωση"
|
1978 |
+
|
1979 |
+
#: ../inc/sunrise/views/about.php:12
|
1980 |
+
msgid "Changelog"
|
1981 |
+
msgstr "Αρχείο καταγραφής αλλαγών"
|
1982 |
+
|
1983 |
+
#: ../inc/sunrise/views/about.php:14
|
1984 |
+
msgid "Contact author"
|
1985 |
+
msgstr "Επικοινωνήστε με τον συντάκτη"
|
1986 |
+
|
1987 |
+
#: ../inc/sunrise/views/about.php:17
|
1988 |
+
msgid "Plugin features"
|
1989 |
+
msgstr "Χαρακτηριστικά πρόσθετου"
|
1990 |
+
|
1991 |
+
#: ../inc/sunrise/views/about.php:19
|
1992 |
+
msgid "30+ amazing shortcodes"
|
1993 |
+
msgstr "30+ καταπληκτικά shortcodes"
|
1994 |
+
|
1995 |
+
#: ../inc/sunrise/views/about.php:20
|
1996 |
+
msgid "Power of CSS3 transitions"
|
1997 |
+
msgstr "Ενδυναμωμένο με μεταβάσεις του CSS3"
|
1998 |
+
|
1999 |
+
#: ../inc/sunrise/views/about.php:21
|
2000 |
+
msgid "Handy shortcodes generator"
|
2001 |
+
msgstr "Εύχρηστη παραγωγή των shortcode"
|
2002 |
+
|
2003 |
+
#: ../inc/sunrise/views/about.php:22
|
2004 |
+
msgid "International"
|
2005 |
+
msgstr "Διεθνής"
|
2006 |
+
|
2007 |
+
#: ../inc/sunrise/views/about.php:23
|
2008 |
+
msgid "Documented API"
|
2009 |
+
msgstr "Τεκμηριωμένο API"
|
2010 |
+
|
2011 |
+
#: ../inc/sunrise/views/about.php:27
|
2012 |
+
msgid "What is a shortcode?"
|
2013 |
+
msgstr "Τι είναι τα shortcodes;"
|
2014 |
+
|
2015 |
+
#: ../inc/sunrise/views/about.php:28
|
2016 |
+
msgid ""
|
2017 |
+
"<strong>Shortcode</strong> is a WordPress-specific code that lets you do "
|
2018 |
+
"nifty things with very little effort."
|
2019 |
+
msgstr ""
|
2020 |
+
"<strong>Τα Shortcode</strong> είναι ένας συγκεκριμένος κώδικας για το "
|
2021 |
+
"WordPress, που σας επιτρέπει να δημιουργείται κομψά αντικείμενα με πολύ λίγη "
|
2022 |
+
"προσπάθεια."
|
2023 |
+
|
2024 |
+
#: ../inc/sunrise/views/about.php:29
|
2025 |
+
msgid ""
|
2026 |
+
"Shortcodes can embed files or create objects that would normally require "
|
2027 |
+
"lots of complicated, ugly code in just one line. Shortcode = shortcut."
|
2028 |
+
msgstr ""
|
2029 |
+
"Τα Shortcodes μπορούν να ενσωματώσουν αρχεία ή να δημιουργήσουν αντικείμενα "
|
2030 |
+
"με μία γραμμή, που κανονικά θα χρειαζόταν αρκετά περίπλοκο κώδικα. Shortcode "
|
2031 |
+
"= Συντόμευση."
|
2032 |
+
|
2033 |
+
#: ../inc/sunrise/views/about.php:33
|
2034 |
+
msgid "How it works"
|
2035 |
+
msgstr "Πως λειτουργεί"
|
2036 |
+
|
2037 |
+
#: ../inc/sunrise/views/about.php:37
|
2038 |
+
msgid "More videos"
|
2039 |
+
msgstr "Περισσότερα βίντεο"
|
2040 |
+
|
2041 |
+
#: ../inc/sunrise/views/about.php:39
|
2042 |
+
msgid "Shortcodes Ultimate Tutorial"
|
2043 |
+
msgstr "Εκμάθηση του Shortcodes Ultimate"
|
2044 |
+
|
2045 |
+
#: ../inc/sunrise/views/about.php:40
|
2046 |
+
msgid "How to use special widget"
|
2047 |
+
msgstr "Πως να χρησιμοποιείται συγκεκριμένα widget"
|
2048 |
+
|
2049 |
+
#: ../inc/sunrise/views/cheatsheet.php:5
|
2050 |
+
msgid "Shortcode"
|
2051 |
+
msgstr "Shortcode"
|
2052 |
+
|
2053 |
+
#: ../inc/sunrise/views/cheatsheet.php:6
|
2054 |
+
msgid "Parameters"
|
2055 |
+
msgstr "Παράμετροι"
|
2056 |
+
|
2057 |
+
#: ../inc/sunrise/views/cheatsheet.php:7
|
2058 |
+
msgid "Example"
|
2059 |
+
msgstr "Παράδειγμα"
|
2060 |
+
|
2061 |
+
#: ../inc/sunrise/views/cheatsheet.php:17
|
2062 |
+
msgid "Demo"
|
2063 |
+
msgstr "Επίδειξη"
|
2064 |
+
|
2065 |
+
#: ../inc/sunrise/views/cheatsheet.php:49
|
2066 |
+
msgid "Default value"
|
2067 |
+
msgstr "Προκαθορισμένη τιμή"
|
2068 |
+
|
2069 |
+
#: ../inc/sunrise/views/cheatsheet.php:55
|
2070 |
+
msgid "-- no parameters --"
|
2071 |
+
msgstr "-- χωρίς παραμέτρους --"
|
2072 |
+
|
2073 |
+
#: ../inc/sunrise/views/closetab.php:4
|
2074 |
+
msgid "Save changes"
|
2075 |
+
msgstr "Αποθήκευση αλλαγών"
|
2076 |
+
|
2077 |
+
#: ../inc/sunrise/views/closetab.php:5
|
2078 |
+
msgid "Saving"
|
2079 |
+
msgstr "Αποθηκεύεται"
|
2080 |
+
|
2081 |
+
#: ../inc/sunrise/views/closetab.php:6
|
2082 |
+
msgid "Saved"
|
2083 |
+
msgstr "Αποθηκεύτηκε"
|
2084 |
+
|
2085 |
+
#: ../inc/sunrise/views/closetab.php:7
|
2086 |
+
msgid ""
|
2087 |
+
"Reset all settings to default. Are you sure? This action cannot be undone!"
|
2088 |
+
msgstr ""
|
2089 |
+
"Επαναφορά όλων των ρυθμίσεων στις προκαθορισμένες. Είστε σίγουροι; Αυτή η "
|
2090 |
+
"ενέργεια δεν μπορεί να αναιρεθεί!!!"
|
2091 |
+
|
2092 |
+
#: ../inc/sunrise/views/closetab.php:7
|
2093 |
+
msgid "Restore default settings"
|
2094 |
+
msgstr "Επαναφορά προκαθορισμένων ρυθμίσεων"
|
2095 |
+
|
2096 |
+
#: ../inc/sunrise/views/code.php:5
|
2097 |
+
msgid "Insert code"
|
2098 |
+
msgstr "Εισαγωγή κώδικα"
|
2099 |
+
|
2100 |
+
#: ../inc/sunrise/views/css.php:3
|
2101 |
+
msgid "You can see the original styles to override it"
|
2102 |
+
msgstr "Μπορείτε να δείτε το πρωτότυπο στυλ για να το παρακάμψετε"
|
2103 |
+
|
2104 |
+
#: ../inc/sunrise/views/css.php:17
|
2105 |
+
msgid "You can use next variables in your custom CSS"
|
2106 |
+
msgstr ""
|
2107 |
+
"Μπορείτε να χρησμοποιείσετε τις ακόλουθες μεταβλητές στο προσαρμοσμένο CSS"
|
2108 |
+
|
2109 |
+
#: ../inc/sunrise/views/css.php:18
|
2110 |
+
msgid "home url"
|
2111 |
+
msgstr "διεύθυνση αρχικής σελίδας"
|
2112 |
+
|
2113 |
+
#: ../inc/sunrise/views/css.php:19
|
2114 |
+
msgid "theme url"
|
2115 |
+
msgstr "διεύθυνση θέματος"
|
2116 |
+
|
2117 |
+
#: ../inc/sunrise/views/css.php:20
|
2118 |
+
msgid "plugin url"
|
2119 |
+
msgstr "διεύθυνση πρόσθετου"
|
2120 |
+
|
2121 |
+
#: ../inc/sunrise/views/css.php:23
|
2122 |
+
msgid "Toggle fullscreen"
|
2123 |
+
msgstr "Αλλαγή σε πλήρη οθόνη"
|
2124 |
+
|
2125 |
+
#: ../inc/sunrise/views/galleries.php:2
|
2126 |
+
msgid ""
|
2127 |
+
"Are you sure that you want to delete this gallery? This action can't be "
|
2128 |
+
"undone!"
|
2129 |
+
msgstr ""
|
2130 |
+
"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την γκαλερί; Αυτή η ενέργεια "
|
2131 |
+
"δεν μπορεί να αναιρεθεί!!!"
|
2132 |
+
|
2133 |
+
#: ../inc/sunrise/views/galleries.php:2
|
2134 |
+
msgid ""
|
2135 |
+
"Are you sure that you want to delete this image? This action can't be undone!"
|
2136 |
+
msgstr ""
|
2137 |
+
"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την εικόνα; Αυτή η ενέργεια δεν "
|
2138 |
+
"είναι αναστρέψιμη!!!"
|
2139 |
+
|
2140 |
+
#: ../inc/sunrise/views/galleries.php:4
|
2141 |
+
msgid "Create new gallery"
|
2142 |
+
msgstr "Δημιουργία νέας γκαλερί"
|
2143 |
+
|
2144 |
+
#: ../inc/sunrise/views/galleries.php:17 ../inc/sunrise/views/galleries.php:73
|
2145 |
+
msgid "Enter gallery name"
|
2146 |
+
msgstr "Εισάγετε το όνομα της γκαλερί"
|
2147 |
+
|
2148 |
+
#: ../inc/sunrise/views/galleries.php:19 ../inc/sunrise/views/galleries.php:75
|
2149 |
+
msgid "Edit gallery"
|
2150 |
+
msgstr "Επεξεργασία γκαλερί"
|
2151 |
+
|
2152 |
+
#: ../inc/sunrise/views/galleries.php:20 ../inc/sunrise/views/galleries.php:76
|
2153 |
+
msgid "Save & close"
|
2154 |
+
msgstr "Αποθήκευση & κλείσιμο"
|
2155 |
+
|
2156 |
+
#: ../inc/sunrise/views/galleries.php:21 ../inc/sunrise/views/galleries.php:51
|
2157 |
+
#: ../inc/sunrise/views/galleries.php:77
|
2158 |
+
#: ../inc/sunrise/views/galleries.php:107
|
2159 |
+
msgid "Close"
|
2160 |
+
msgstr "Κλείσιμο"
|
2161 |
+
|
2162 |
+
#: ../inc/sunrise/views/galleries.php:22 ../inc/sunrise/views/galleries.php:42
|
2163 |
+
#: ../inc/sunrise/views/galleries.php:78 ../inc/sunrise/views/galleries.php:98
|
2164 |
+
msgid "Delete"
|
2165 |
+
msgstr "Διαγραφή"
|
2166 |
+
|
2167 |
+
#: ../inc/sunrise/views/galleries.php:27 ../inc/sunrise/views/galleries.php:83
|
2168 |
+
msgid "Add image"
|
2169 |
+
msgstr "Προσθήκη εικόνας"
|
2170 |
+
|
2171 |
+
#: ../inc/sunrise/views/galleries.php:41 ../inc/sunrise/views/galleries.php:97
|
2172 |
+
msgid "Edit"
|
2173 |
+
msgstr "Επεξεργασία"
|
2174 |
+
|
2175 |
+
#: ../inc/sunrise/views/notifications.php:5
|
2176 |
+
msgid "Instructions"
|
2177 |
+
msgstr "Οδηγίες"
|
2178 |
+
|
2179 |
+
#: ../inc/sunrise/views/notifications.php:12
|
2180 |
+
#: ../inc/sunrise/views/notifications.php:20
|
2181 |
+
#: ../inc/sunrise/views/notifications.php:28
|
2182 |
+
#: ../inc/sunrise/views/notifications.php:36
|
2183 |
+
msgid "Click to close"
|
2184 |
+
msgstr "Πατήστε για κλείσιμο"
|
2185 |
+
|
2186 |
+
#: ../inc/sunrise/views/settings.php:12
|
2187 |
+
msgid ""
|
2188 |
+
"For full functionality of this page it is reccomended to enable javascript."
|
2189 |
+
msgstr ""
|
2190 |
+
"Για την πλήρη ενεργοποίηση των χαρακτηριστικών αυτής της σελίδας, προτείνετε "
|
2191 |
+
"να ενεργοποιήσετε την javascript."
|
2192 |
+
|
2193 |
+
#: ../inc/sunrise/views/settings.php:13
|
2194 |
+
msgid "Settings reseted successfully"
|
2195 |
+
msgstr "Οι ρυθμίσεις επαναφέρθηκαν επιτυχώς"
|
2196 |
+
|
2197 |
+
#: ../inc/sunrise/views/settings.php:14
|
2198 |
+
msgid "There is already default settings"
|
2199 |
+
msgstr "Αυτές είναι ήδη οι προκαθορισμένες ρυθμίσεις"
|
2200 |
+
|
2201 |
+
#: ../inc/sunrise/views/settings.php:15
|
2202 |
+
msgid "Settings saved successfully"
|
2203 |
+
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς"
|
2204 |
+
|
2205 |
+
#: ../inc/sunrise/views/settings.php:16
|
2206 |
+
msgid "Settings not saved, because there is no changes"
|
2207 |
+
msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν, διότι δεν υπάρχουν αλλαγές"
|
2208 |
+
|
2209 |
+
#: ../inc/sunrise/views/upload.php:7
|
2210 |
+
msgid "Upload"
|
2211 |
+
msgstr "Μεταφόρτωση"
|
2212 |
+
|
2213 |
+
#: ../templates/default-loop.php:15 ../templates/single-post.php:18
|
2214 |
+
msgid "Posted"
|
2215 |
+
msgstr "Δημοσιεύτηκε"
|
2216 |
+
|
2217 |
+
#: ../templates/default-loop.php:19 ../templates/single-post.php:18
|
2218 |
+
msgid "0 comments"
|
2219 |
+
msgstr "0 σχόλια"
|
2220 |
+
|
2221 |
+
#: ../templates/default-loop.php:19 ../templates/single-post.php:18
|
2222 |
+
msgid "1 comment"
|
2223 |
+
msgstr "1 σχόλιο"
|
2224 |
+
|
2225 |
+
#: ../templates/default-loop.php:19 ../templates/single-post.php:18
|
2226 |
+
msgid "%n comments"
|
2227 |
+
msgstr "%n σχόλια"
|
2228 |
+
|
2229 |
+
#: ../templates/default-loop.php:27 ../templates/list-loop.php:18
|
2230 |
+
#: ../templates/single-post.php:30 ../templates/teaser-loop.php:22
|
2231 |
+
msgid "Posts not found"
|
2232 |
+
msgstr "Τα δημοσιεύματα δεν βρέθηκαν"
|
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-
|
6 |
-
"PO-Revision-Date: 2013-09-
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,12 +19,12 @@ msgid "Heading 2"
|
|
19 |
msgstr "Заголовок 2"
|
20 |
|
21 |
#: inc/example-addon.php:43
|
22 |
-
#: inc/core/class.data.php:
|
23 |
-
#: inc/core/class.data.php:
|
24 |
-
#: inc/core/class.data.php:
|
25 |
-
#: inc/core/class.data.php:
|
26 |
-
#: inc/core/class.data.php:
|
27 |
-
#: inc/core/class.data.php:
|
28 |
msgid "Default"
|
29 |
msgstr "По умолчанию"
|
30 |
|
@@ -33,12 +33,12 @@ msgid "Small"
|
|
33 |
msgstr "Маленький"
|
34 |
|
35 |
#: inc/example-addon.php:49
|
36 |
-
#: inc/core/class.data.php:
|
37 |
-
#: inc/core/class.data.php:
|
38 |
-
#: inc/core/class.data.php:
|
39 |
-
#: inc/core/class.data.php:
|
40 |
-
#: inc/core/class.data.php:
|
41 |
-
#: inc/core/class.data.php:
|
42 |
msgid "Style"
|
43 |
msgstr "Стиль"
|
44 |
|
@@ -68,7 +68,7 @@ msgid "Content"
|
|
68 |
msgstr "Содержимое"
|
69 |
|
70 |
#: inc/core/class.data.php:36
|
71 |
-
#: inc/core/class.data.php:
|
72 |
msgid "Box"
|
73 |
msgstr "Блок"
|
74 |
|
@@ -77,10 +77,10 @@ msgid "Media"
|
|
77 |
msgstr "Медиа"
|
78 |
|
79 |
#: inc/core/class.data.php:38
|
80 |
-
#: inc/core/class.data.php:
|
81 |
-
#: inc/core/class.data.php:
|
82 |
-
#: inc/core/class.data.php:
|
83 |
-
#: inc/core/class.data.php:
|
84 |
msgid "Gallery"
|
85 |
msgstr "Галерея"
|
86 |
|
@@ -93,9 +93,9 @@ msgid "Heading"
|
|
93 |
msgstr "Заголовок"
|
94 |
|
95 |
#: inc/core/class.data.php:60
|
96 |
-
#: inc/core/class.data.php:
|
97 |
-
#: inc/core/class.data.php:
|
98 |
-
#: inc/core/class.data.php:
|
99 |
msgid "Size"
|
100 |
msgstr "Размер"
|
101 |
|
@@ -104,28 +104,28 @@ msgid "Select heading size"
|
|
104 |
msgstr "Выберите размер заголовка"
|
105 |
|
106 |
#: inc/core/class.data.php:65
|
107 |
-
#: inc/core/class.data.php:
|
108 |
-
#: inc/core/class.data.php:
|
109 |
-
#: inc/core/class.data.php:
|
110 |
msgid "Left"
|
111 |
msgstr "Слева"
|
112 |
|
113 |
#: inc/core/class.data.php:66
|
114 |
-
#: inc/core/class.data.php:
|
115 |
-
#: inc/core/class.data.php:
|
116 |
msgid "Center"
|
117 |
msgstr "По центру"
|
118 |
|
119 |
#: inc/core/class.data.php:67
|
120 |
-
#: inc/core/class.data.php:
|
121 |
-
#: inc/core/class.data.php:
|
122 |
-
#: inc/core/class.data.php:
|
123 |
msgid "Right"
|
124 |
msgstr "Справа"
|
125 |
|
126 |
#: inc/core/class.data.php:70
|
127 |
-
#: inc/core/class.data.php:
|
128 |
-
#: inc/core/class.data.php:
|
129 |
msgid "Align"
|
130 |
msgstr "Выравнивание"
|
131 |
|
@@ -135,89 +135,89 @@ msgstr "Выравнивание текста в заголовке"
|
|
135 |
|
136 |
#: inc/core/class.data.php:74
|
137 |
#: inc/core/class.data.php:104
|
138 |
-
#: inc/core/class.data.php:
|
139 |
-
#: inc/core/class.data.php:
|
140 |
-
#: inc/core/class.data.php:
|
141 |
-
#: inc/core/class.data.php:
|
142 |
-
#: inc/core/class.data.php:
|
143 |
-
#: inc/core/class.data.php:
|
144 |
-
#: inc/core/class.data.php:
|
145 |
-
#: inc/core/class.data.php:
|
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 |
-
#: inc/core/class.data.php:
|
173 |
-
#: inc/core/class.data.php:
|
174 |
-
#: inc/core/class.data.php:
|
175 |
-
#: inc/core/class.data.php:
|
176 |
-
#: inc/core/class.data.php:
|
177 |
msgid "Class"
|
178 |
msgstr "Класс"
|
179 |
|
180 |
#: inc/core/class.data.php:75
|
181 |
#: inc/core/class.data.php:105
|
182 |
-
#: inc/core/class.data.php:
|
183 |
-
#: inc/core/class.data.php:
|
184 |
-
#: inc/core/class.data.php:
|
185 |
-
#: inc/core/class.data.php:
|
186 |
-
#: inc/core/class.data.php:
|
187 |
-
#: inc/core/class.data.php:
|
188 |
-
#: inc/core/class.data.php:
|
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 |
-
#: inc/core/class.data.php:
|
216 |
-
#: inc/core/class.data.php:
|
217 |
-
#: inc/core/class.data.php:
|
218 |
-
#: inc/core/class.data.php:
|
219 |
-
#: inc/core/class.data.php:
|
220 |
-
#: inc/core/class.data.php:
|
221 |
msgid "Extra CSS class"
|
222 |
msgstr "Дополнительный CSS класс"
|
223 |
|
@@ -267,77 +267,85 @@ msgstr "Контейнер вкладок"
|
|
267 |
msgid "Tab"
|
268 |
msgstr "Вкладка"
|
269 |
|
270 |
-
#: inc/core/class.data.php:
|
271 |
msgid "Tab name"
|
272 |
msgstr "Имя вкладки"
|
273 |
|
274 |
-
#: inc/core/class.data.php:
|
275 |
-
#: inc/core/class.data.php:
|
276 |
-
#: inc/core/class.data.php:
|
277 |
-
#: inc/core/class.data.php:
|
278 |
-
#: inc/core/class.data.php:
|
279 |
msgid "Title"
|
280 |
msgstr "Заголовок"
|
281 |
|
282 |
-
#: inc/core/class.data.php:
|
283 |
msgid "Enter tab name"
|
284 |
msgstr "Введите имя вкладки"
|
285 |
|
286 |
-
#: inc/core/class.data.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
msgid "Tab content"
|
288 |
msgstr "Содержимое вкладки"
|
289 |
|
290 |
-
#: inc/core/class.data.php:
|
291 |
msgid "Single tab"
|
292 |
msgstr "Одиночная вкладка"
|
293 |
|
294 |
-
#: inc/core/class.data.php:
|
295 |
msgid "Spoiler"
|
296 |
msgstr "Спойлер"
|
297 |
|
298 |
-
#: inc/core/class.data.php:
|
299 |
-
#: inc/core/shortcodes.php:
|
300 |
msgid "Spoiler title"
|
301 |
msgstr "Скрытый текст"
|
302 |
|
303 |
-
#: inc/core/class.data.php:
|
304 |
msgid "Text in spoiler title"
|
305 |
msgstr "Текст для заголовка спойлера"
|
306 |
|
307 |
-
#: inc/core/class.data.php:
|
308 |
msgid "Open"
|
309 |
msgstr "Открыт"
|
310 |
|
311 |
-
#: inc/core/class.data.php:
|
312 |
msgid "Is spoiler content visible by default"
|
313 |
msgstr "Виден ли контент спойлера по умолчанию"
|
314 |
|
315 |
-
#: inc/core/class.data.php:
|
316 |
msgid "Fancy"
|
317 |
msgstr "Стильный"
|
318 |
|
319 |
-
#: inc/core/class.data.php:
|
320 |
-
#: inc/core/class.data.php:
|
321 |
msgid "Simple"
|
322 |
msgstr "Простой"
|
323 |
|
324 |
-
#: inc/core/class.data.php:
|
325 |
msgid "Spoiler skin"
|
326 |
msgstr "Скин спойлера"
|
327 |
|
328 |
-
#: inc/core/class.data.php:
|
329 |
msgid "Hidden content"
|
330 |
msgstr "Скрытое содержимое"
|
331 |
|
332 |
-
#: inc/core/class.data.php:
|
333 |
msgid "Spoiler with hidden content"
|
334 |
msgstr "Спойлер со скрытым содержимым"
|
335 |
|
336 |
-
#: inc/core/class.data.php:
|
337 |
msgid "Accordion"
|
338 |
msgstr "Аккордион"
|
339 |
|
340 |
-
#: inc/core/class.data.php:
|
341 |
msgid ""
|
342 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
343 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
@@ -347,209 +355,209 @@ msgstr ""
|
|
347 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
348 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
349 |
|
350 |
-
#: inc/core/class.data.php:
|
351 |
msgid "Accordion with spoilers"
|
352 |
msgstr "Аккордион со спойлерами"
|
353 |
|
354 |
-
#: inc/core/class.data.php:
|
355 |
msgid "Divider"
|
356 |
msgstr "Разделитель"
|
357 |
|
358 |
-
#: inc/core/class.data.php:
|
359 |
msgid "Show TOP link"
|
360 |
msgstr "Показать ссылку ВВЕРХ"
|
361 |
|
362 |
-
#: inc/core/class.data.php:
|
363 |
msgid "Show link to top of the page or not"
|
364 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
365 |
|
366 |
-
#: inc/core/class.data.php:
|
367 |
-
#: inc/core/shortcodes.php:
|
368 |
msgid "Go to top"
|
369 |
msgstr "Вверх"
|
370 |
|
371 |
-
#: inc/core/class.data.php:
|
372 |
msgid "Link text"
|
373 |
msgstr "Текст ссылки"
|
374 |
|
375 |
-
#: inc/core/class.data.php:
|
376 |
msgid "Text for the GO TOP link"
|
377 |
msgstr "Текст ссылки ВВЕРХ"
|
378 |
|
379 |
-
#: inc/core/class.data.php:
|
380 |
msgid "Content divider with optional TOP link"
|
381 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
382 |
|
383 |
-
#: inc/core/class.data.php:
|
384 |
msgid "Spacer"
|
385 |
msgstr "Пробел"
|
386 |
|
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 |
-
#: inc/core/class.data.php:
|
392 |
-
#: inc/core/class.data.php:
|
393 |
-
#: inc/core/class.data.php:
|
394 |
-
#: inc/core/class.data.php:
|
395 |
-
#: inc/core/class.data.php:
|
396 |
-
#: inc/core/class.data.php:
|
397 |
msgid "Height"
|
398 |
msgstr "Высота"
|
399 |
|
400 |
-
#: inc/core/class.data.php:
|
401 |
msgid "Height of the spacer in pixels"
|
402 |
msgstr "Высота пробела в пикселях"
|
403 |
|
404 |
-
#: inc/core/class.data.php:
|
405 |
msgid "Empty space with adjustable height"
|
406 |
msgstr "Пробел с настраиваемой высотой"
|
407 |
|
408 |
-
#: inc/core/class.data.php:
|
409 |
msgid "Highlight"
|
410 |
msgstr "Выделитель"
|
411 |
|
412 |
-
#: inc/core/class.data.php:
|
413 |
-
#: inc/core/class.data.php:
|
414 |
-
#: inc/core/class.data.php:
|
415 |
msgid "Background"
|
416 |
msgstr "Фон"
|
417 |
|
418 |
-
#: inc/core/class.data.php:
|
419 |
msgid "Highlighted text background color"
|
420 |
msgstr "Цвет фона выделяемого текста"
|
421 |
|
422 |
-
#: inc/core/class.data.php:
|
423 |
-
#: inc/core/class.data.php:
|
424 |
-
#: inc/core/class.data.php:
|
425 |
msgid "Text color"
|
426 |
msgstr "Цвет текста"
|
427 |
|
428 |
-
#: inc/core/class.data.php:
|
429 |
msgid "Highlighted text color"
|
430 |
msgstr "Цвет выделяемого текста"
|
431 |
|
432 |
-
#: inc/core/class.data.php:
|
433 |
-
#: inc/core/class.data.php:
|
434 |
msgid "Highlighted text"
|
435 |
msgstr "Подсвеченный текст"
|
436 |
|
437 |
-
#: inc/core/class.data.php:
|
438 |
-
#: inc/core/class.data.php:
|
439 |
msgid "Label"
|
440 |
msgstr "Ярлык"
|
441 |
|
442 |
-
#: inc/core/class.data.php:
|
443 |
msgid "Success"
|
444 |
msgstr "Успех"
|
445 |
|
446 |
-
#: inc/core/class.data.php:
|
447 |
msgid "Warning"
|
448 |
msgstr "Внимание"
|
449 |
|
450 |
-
#: inc/core/class.data.php:
|
451 |
msgid "Important"
|
452 |
msgstr "Важно"
|
453 |
|
454 |
-
#: inc/core/class.data.php:
|
455 |
msgid "Black"
|
456 |
msgstr "Черный"
|
457 |
|
458 |
-
#: inc/core/class.data.php:
|
459 |
msgid "Info"
|
460 |
msgstr "Инфо"
|
461 |
|
462 |
-
#: inc/core/class.data.php:
|
463 |
msgid "Type"
|
464 |
msgstr "Тип"
|
465 |
|
466 |
-
#: inc/core/class.data.php:
|
467 |
msgid "Style of the label"
|
468 |
msgstr "Стиль ярлыка"
|
469 |
|
470 |
-
#: inc/core/class.data.php:
|
471 |
msgid "Styled label"
|
472 |
msgstr "Стильный ярлык"
|
473 |
|
474 |
-
#: inc/core/class.data.php:
|
475 |
-
#: inc/core/class.data.php:
|
476 |
msgid "Quote"
|
477 |
msgstr "Цитата"
|
478 |
|
479 |
-
#: inc/core/class.data.php:
|
480 |
msgid "Cite"
|
481 |
msgstr "Автор"
|
482 |
|
483 |
-
#: inc/core/class.data.php:
|
484 |
msgid "Quote author name"
|
485 |
msgstr "Имя автора цитаты"
|
486 |
|
487 |
-
#: inc/core/class.data.php:
|
488 |
msgid "Cite url"
|
489 |
msgstr "Ссылка автора"
|
490 |
|
491 |
-
#: inc/core/class.data.php:
|
492 |
msgid "Url of the quote author. Leave empty to disable link"
|
493 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
494 |
|
495 |
-
#: inc/core/class.data.php:
|
496 |
msgid "Blockquote alternative"
|
497 |
msgstr "Альтернатива цитаты"
|
498 |
|
499 |
-
#: inc/core/class.data.php:
|
500 |
-
#: inc/core/class.data.php:
|
501 |
-
#: inc/core/class.data.php:
|
502 |
msgid "Pullquote"
|
503 |
msgstr "Цитата с обтеканием"
|
504 |
|
505 |
-
#: inc/core/class.data.php:
|
506 |
msgid "Pullquote alignment (float)"
|
507 |
msgstr "Выравнивание цитаты (обтекание)"
|
508 |
|
509 |
-
#: inc/core/class.data.php:
|
510 |
-
#: inc/core/class.data.php:
|
511 |
msgid "Dropcap"
|
512 |
msgstr "Буквица"
|
513 |
|
514 |
-
#: inc/core/class.data.php:
|
515 |
-
#: inc/core/class.data.php:
|
516 |
msgid "Flat"
|
517 |
msgstr "Плоский"
|
518 |
|
519 |
-
#: inc/core/class.data.php:
|
520 |
-
#: inc/core/class.data.php:
|
521 |
msgid "Light"
|
522 |
msgstr "Светлый"
|
523 |
|
524 |
-
#: inc/core/class.data.php:
|
525 |
msgid "Dropcap style preset"
|
526 |
msgstr "Стиль буквицы"
|
527 |
|
528 |
-
#: inc/core/class.data.php:
|
529 |
msgid "Choose dropcap size"
|
530 |
msgstr "Выберите размер буквицы"
|
531 |
|
532 |
-
#: inc/core/class.data.php:
|
533 |
msgid "D"
|
534 |
msgstr "D"
|
535 |
|
536 |
-
#: inc/core/class.data.php:
|
537 |
msgid "Frame"
|
538 |
msgstr "Рамка"
|
539 |
|
540 |
-
#: inc/core/class.data.php:
|
541 |
msgid "Frame alignment"
|
542 |
msgstr "Выравнивание рамки"
|
543 |
|
544 |
-
#: inc/core/class.data.php:
|
545 |
msgid "Styled image frame"
|
546 |
msgstr "Стильный рамка изображения"
|
547 |
|
548 |
-
#: inc/core/class.data.php:
|
549 |
msgid "Row"
|
550 |
msgstr "Колонки"
|
551 |
|
552 |
-
#: inc/core/class.data.php:
|
553 |
msgid ""
|
554 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
555 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
@@ -559,148 +567,148 @@ msgstr ""
|
|
559 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
560 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
561 |
|
562 |
-
#: inc/core/class.data.php:
|
563 |
msgid "Row for flexible columns"
|
564 |
msgstr "Контейнер с резиновыми колонками"
|
565 |
|
566 |
-
#: inc/core/class.data.php:
|
567 |
msgid "Column"
|
568 |
msgstr "Колонка"
|
569 |
|
570 |
-
#: inc/core/class.data.php:
|
571 |
msgid "Full width"
|
572 |
msgstr "Во всю ширину"
|
573 |
|
574 |
-
#: inc/core/class.data.php:
|
575 |
msgid "One half"
|
576 |
msgstr "Одна вторая"
|
577 |
|
578 |
-
#: inc/core/class.data.php:
|
579 |
msgid "One third"
|
580 |
msgstr "Одна третья"
|
581 |
|
582 |
-
#: inc/core/class.data.php:
|
583 |
msgid "Two third"
|
584 |
msgstr "Две трети"
|
585 |
|
586 |
-
#: inc/core/class.data.php:
|
587 |
msgid "One fourth"
|
588 |
msgstr "Одна четвертая"
|
589 |
|
590 |
-
#: inc/core/class.data.php:
|
591 |
msgid "Three fourth"
|
592 |
msgstr "Три четвертых"
|
593 |
|
594 |
-
#: inc/core/class.data.php:
|
595 |
msgid "One fifth"
|
596 |
msgstr "Одна пятая"
|
597 |
|
598 |
-
#: inc/core/class.data.php:
|
599 |
msgid "Two fifth"
|
600 |
msgstr "Две пятых"
|
601 |
|
602 |
-
#: inc/core/class.data.php:
|
603 |
msgid "Three fifth"
|
604 |
msgstr "Три пятых"
|
605 |
|
606 |
-
#: inc/core/class.data.php:
|
607 |
msgid "Four fifth"
|
608 |
msgstr "Четыре пятых"
|
609 |
|
610 |
-
#: inc/core/class.data.php:
|
611 |
msgid "One sixth"
|
612 |
msgstr "Одна шестая"
|
613 |
|
614 |
-
#: inc/core/class.data.php:
|
615 |
msgid "Five sixth"
|
616 |
msgstr "Пять шестых"
|
617 |
|
618 |
-
#: inc/core/class.data.php:
|
619 |
msgid "Select column width. This width will be calculated depend page width"
|
620 |
msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
621 |
|
622 |
-
#: inc/core/class.data.php:
|
623 |
msgid "Column content"
|
624 |
msgstr "Содержимое колонки"
|
625 |
|
626 |
-
#: inc/core/class.data.php:
|
627 |
msgid "Flexible and responsive columns"
|
628 |
msgstr "Резновые колонки"
|
629 |
|
630 |
-
#: inc/core/class.data.php:
|
631 |
msgid "List"
|
632 |
msgstr "Список"
|
633 |
|
634 |
-
#: inc/core/class.data.php:
|
635 |
msgid "Star"
|
636 |
msgstr "Звезда"
|
637 |
|
638 |
-
#: inc/core/class.data.php:
|
639 |
msgid "Arrow"
|
640 |
msgstr "Стрелка"
|
641 |
|
642 |
-
#: inc/core/class.data.php:
|
643 |
msgid "Check"
|
644 |
msgstr "Отметка"
|
645 |
|
646 |
-
#: inc/core/class.data.php:
|
647 |
msgid "Cross"
|
648 |
msgstr "Крестик"
|
649 |
|
650 |
-
#: inc/core/class.data.php:
|
651 |
msgid "Thumbs up"
|
652 |
msgstr "Палец вверх"
|
653 |
|
654 |
-
#: inc/core/class.data.php:
|
655 |
-
#: inc/core/class.data.php:
|
656 |
msgid "Link"
|
657 |
msgstr "Ссылка"
|
658 |
|
659 |
-
#: inc/core/class.data.php:
|
660 |
msgid "Gear"
|
661 |
msgstr "Шестеренка"
|
662 |
|
663 |
-
#: inc/core/class.data.php:
|
664 |
msgid "Time"
|
665 |
msgstr "Время"
|
666 |
|
667 |
-
#: inc/core/class.data.php:
|
668 |
-
#: inc/core/class.data.php:
|
669 |
msgid "Note"
|
670 |
msgstr "Заметка"
|
671 |
|
672 |
-
#: inc/core/class.data.php:
|
673 |
msgid "Plus"
|
674 |
msgstr "Плюс"
|
675 |
|
676 |
-
#: inc/core/class.data.php:
|
677 |
msgid "Guard"
|
678 |
msgstr "Защита"
|
679 |
|
680 |
-
#: inc/core/class.data.php:
|
681 |
msgid "Event"
|
682 |
msgstr "Событие"
|
683 |
|
684 |
-
#: inc/core/class.data.php:
|
685 |
msgid "Idea"
|
686 |
msgstr "Идя"
|
687 |
|
688 |
-
#: inc/core/class.data.php:
|
689 |
#: inc/core/class.generator.php:88
|
690 |
#: inc/core/class.shortcodes-ultimate.php:115
|
691 |
#: inc/vendor/class.sunrise-framework.php:281
|
692 |
msgid "Settings"
|
693 |
msgstr "Настройки"
|
694 |
|
695 |
-
#: inc/core/class.data.php:
|
696 |
msgid "Twitter"
|
697 |
msgstr "Твиттер"
|
698 |
|
699 |
-
#: inc/core/class.data.php:
|
700 |
msgid "List items style/icons"
|
701 |
msgstr "Стиль/иконка элементов списка"
|
702 |
|
703 |
-
#: inc/core/class.data.php:
|
704 |
msgid ""
|
705 |
"<ul>\n"
|
706 |
"<li>List item</li>\n"
|
@@ -714,655 +722,655 @@ msgstr ""
|
|
714 |
"<li>Элемент списка</li>\n"
|
715 |
"</ul>"
|
716 |
|
717 |
-
#: inc/core/class.data.php:
|
718 |
msgid "Styled unordered list"
|
719 |
msgstr "Стильный неупорядоченный список"
|
720 |
|
721 |
-
#: inc/core/class.data.php:
|
722 |
msgid "Button"
|
723 |
msgstr "Кнопка"
|
724 |
|
725 |
-
#: inc/core/class.data.php:
|
726 |
msgid "Button link"
|
727 |
msgstr "Ссылка кнопки"
|
728 |
|
729 |
-
#: inc/core/class.data.php:
|
730 |
-
#: inc/core/class.data.php:
|
731 |
msgid "Same tab"
|
732 |
msgstr "Та же вкладка"
|
733 |
|
734 |
-
#: inc/core/class.data.php:
|
735 |
-
#: inc/core/class.data.php:
|
736 |
msgid "New tab"
|
737 |
msgstr "Новая вкладка"
|
738 |
|
739 |
-
#: inc/core/class.data.php:
|
740 |
-
#: inc/core/class.data.php:
|
741 |
msgid "Target"
|
742 |
msgstr "Цель"
|
743 |
|
744 |
-
#: inc/core/class.data.php:
|
745 |
msgid "Button link target"
|
746 |
msgstr "Цель ссылки кнопки"
|
747 |
|
748 |
-
#: inc/core/class.data.php:
|
749 |
-
#: inc/core/class.data.php:
|
750 |
msgid "Soft"
|
751 |
msgstr "Мягкий"
|
752 |
|
753 |
-
#: inc/core/class.data.php:
|
754 |
-
#: inc/core/class.data.php:
|
755 |
msgid "Glass"
|
756 |
msgstr "Стекло"
|
757 |
|
758 |
-
#: inc/core/class.data.php:
|
759 |
-
#: inc/core/class.data.php:
|
760 |
msgid "Bubbles"
|
761 |
msgstr "Пузыри"
|
762 |
|
763 |
-
#: inc/core/class.data.php:
|
764 |
-
#: inc/core/class.data.php:
|
765 |
msgid "Noise"
|
766 |
msgstr "Шум"
|
767 |
|
768 |
-
#: inc/core/class.data.php:
|
769 |
msgid "Stroked"
|
770 |
msgstr "Прошитый"
|
771 |
|
772 |
-
#: inc/core/class.data.php:
|
773 |
msgid "3D"
|
774 |
msgstr "3D"
|
775 |
|
776 |
-
#: inc/core/class.data.php:
|
777 |
msgid "Button background style preset"
|
778 |
msgstr "Стиль фона кнопки"
|
779 |
|
780 |
-
#: inc/core/class.data.php:
|
781 |
msgid "Button background color"
|
782 |
msgstr "Цвет фона кнопки"
|
783 |
|
784 |
-
#: inc/core/class.data.php:
|
785 |
msgid "Button text color"
|
786 |
msgstr "Цвет текста кнопки"
|
787 |
|
788 |
-
#: inc/core/class.data.php:
|
789 |
msgid "Button size"
|
790 |
msgstr "Размер кнопки"
|
791 |
|
792 |
-
#: inc/core/class.data.php:
|
793 |
msgid "Fluid"
|
794 |
msgstr "Резиновая"
|
795 |
|
796 |
-
#: inc/core/class.data.php:
|
797 |
msgid "Fluid buttons has 100% width"
|
798 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
799 |
|
800 |
-
#: inc/core/class.data.php:
|
801 |
msgid "Centered"
|
802 |
msgstr "По центру"
|
803 |
|
804 |
-
#: inc/core/class.data.php:
|
805 |
msgid "Is button centered on the page"
|
806 |
msgstr "Кнопка выровнена по центру страницы"
|
807 |
|
808 |
-
#: inc/core/class.data.php:
|
809 |
-
#: inc/core/class.data.php:
|
810 |
-
#: inc/core/class.data.php:
|
811 |
msgid "Radius"
|
812 |
msgstr "Радиус"
|
813 |
|
814 |
-
#: inc/core/class.data.php:
|
815 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
816 |
msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
817 |
|
818 |
-
#: inc/core/class.data.php:
|
819 |
-
#: inc/core/class.data.php:
|
820 |
msgid "Icon"
|
821 |
msgstr "Иконка"
|
822 |
|
823 |
-
#: inc/core/class.data.php:
|
824 |
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"
|
825 |
msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
|
826 |
|
827 |
-
#: inc/core/class.data.php:
|
828 |
msgid "Dark"
|
829 |
msgstr "Темный"
|
830 |
|
831 |
-
#: inc/core/class.data.php:
|
832 |
msgid "Text shadow color"
|
833 |
msgstr "Цвет тени текста"
|
834 |
|
835 |
-
#: inc/core/class.data.php:
|
836 |
msgid "Color of button text shadow"
|
837 |
msgstr "Цвет тени текста кнопки"
|
838 |
|
839 |
-
#: inc/core/class.data.php:
|
840 |
-
#: inc/core/class.data.php:
|
841 |
msgid "None"
|
842 |
msgstr "Нет"
|
843 |
|
844 |
-
#: inc/core/class.data.php:
|
845 |
-
#: inc/core/class.data.php:
|
846 |
msgid "Top"
|
847 |
msgstr "Сверху"
|
848 |
|
849 |
-
#: inc/core/class.data.php:
|
850 |
-
#: inc/core/class.data.php:
|
851 |
msgid "Bottom"
|
852 |
msgstr "Снизу"
|
853 |
|
854 |
-
#: inc/core/class.data.php:
|
855 |
msgid "Top right"
|
856 |
msgstr "Сверху справа"
|
857 |
|
858 |
-
#: inc/core/class.data.php:
|
859 |
msgid "Top left"
|
860 |
msgstr "Сверху слева"
|
861 |
|
862 |
-
#: inc/core/class.data.php:
|
863 |
msgid "Bottom right"
|
864 |
msgstr "Снизу справа"
|
865 |
|
866 |
-
#: inc/core/class.data.php:
|
867 |
msgid "Bottom left"
|
868 |
msgstr "Снизу слева"
|
869 |
|
870 |
-
#: inc/core/class.data.php:
|
871 |
msgid "Text shadow position"
|
872 |
msgstr "Положение тени текста"
|
873 |
|
874 |
-
#: inc/core/class.data.php:
|
875 |
msgid "Position of button text shadow"
|
876 |
msgstr "Положение тени текста кнопки"
|
877 |
|
878 |
-
#: inc/core/class.data.php:
|
879 |
msgid "Description"
|
880 |
msgstr "Описание"
|
881 |
|
882 |
-
#: inc/core/class.data.php:
|
883 |
msgid "Small description under button text. This option is incompatible with icon."
|
884 |
msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
|
885 |
|
886 |
-
#: inc/core/class.data.php:
|
887 |
msgid "Button text"
|
888 |
msgstr "Текст кнопки"
|
889 |
|
890 |
-
#: inc/core/class.data.php:
|
891 |
msgid "Styled button"
|
892 |
msgstr "Стильная кнопка"
|
893 |
|
894 |
-
#: inc/core/class.data.php:
|
895 |
msgid "Service"
|
896 |
msgstr "Услуга"
|
897 |
|
898 |
-
#: inc/core/class.data.php:
|
899 |
-
#: inc/core/shortcodes.php:
|
900 |
msgid "Service title"
|
901 |
msgstr "Название услуги"
|
902 |
|
903 |
-
#: inc/core/class.data.php:
|
904 |
msgid "Service name"
|
905 |
msgstr "Название услуги"
|
906 |
|
907 |
-
#: inc/core/class.data.php:
|
908 |
msgid "You can upload custom icon for this box"
|
909 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
910 |
|
911 |
-
#: inc/core/class.data.php:
|
912 |
msgid "Icon size"
|
913 |
msgstr "Размер иконки"
|
914 |
|
915 |
-
#: inc/core/class.data.php:
|
916 |
msgid "Size of the uploaded icon in pixels"
|
917 |
msgstr "Размер загруженной иконки в пикселях"
|
918 |
|
919 |
-
#: inc/core/class.data.php:
|
920 |
msgid "Service description"
|
921 |
msgstr "Описание услуги"
|
922 |
|
923 |
-
#: inc/core/class.data.php:
|
924 |
msgid "Service box with title"
|
925 |
msgstr "Блок услуга с заголовком"
|
926 |
|
927 |
-
#: inc/core/class.data.php:
|
928 |
msgid "Box title"
|
929 |
msgstr "Заголовок блока"
|
930 |
|
931 |
-
#: inc/core/class.data.php:
|
932 |
msgid "Text for the box title"
|
933 |
msgstr "Текст для заголовка блока"
|
934 |
|
935 |
-
#: inc/core/class.data.php:
|
936 |
msgid "Box style preset"
|
937 |
msgstr "Стиль блока"
|
938 |
|
939 |
-
#: inc/core/class.data.php:
|
940 |
msgid "Color"
|
941 |
msgstr "Цвет"
|
942 |
|
943 |
-
#: inc/core/class.data.php:
|
944 |
msgid "Color for the box title and borders"
|
945 |
msgstr "Цвет заголовка блока и его рамки"
|
946 |
|
947 |
-
#: inc/core/class.data.php:
|
948 |
msgid "Title text color"
|
949 |
msgstr "Цвет текста заголовка"
|
950 |
|
951 |
-
#: inc/core/class.data.php:
|
952 |
msgid "Color for the box title text"
|
953 |
msgstr "Цвет текста в заголовке блока"
|
954 |
|
955 |
-
#: inc/core/class.data.php:
|
956 |
msgid "Box corners radius"
|
957 |
msgstr "Радиус углов"
|
958 |
|
959 |
-
#: inc/core/class.data.php:
|
960 |
msgid "Box content"
|
961 |
msgstr "Содержимое блока"
|
962 |
|
963 |
-
#: inc/core/class.data.php:
|
964 |
msgid "Colored box with caption"
|
965 |
msgstr "Цветной блок с заголовком"
|
966 |
|
967 |
-
#: inc/core/class.data.php:
|
968 |
msgid "Note background color"
|
969 |
msgstr "Цвет фона заметки"
|
970 |
|
971 |
-
#: inc/core/class.data.php:
|
972 |
msgid "Note text color"
|
973 |
msgstr "Цвет текста заметки"
|
974 |
|
975 |
-
#: inc/core/class.data.php:
|
976 |
msgid "Note corners radius"
|
977 |
msgstr "Радиус углов"
|
978 |
|
979 |
-
#: inc/core/class.data.php:
|
980 |
msgid "Note text"
|
981 |
msgstr "Текст заметки"
|
982 |
|
983 |
-
#: inc/core/class.data.php:
|
984 |
msgid "Colored box"
|
985 |
msgstr "Цветной блок"
|
986 |
|
987 |
-
#: inc/core/class.data.php:
|
988 |
msgid "Lightbox"
|
989 |
msgstr "Лайтбокс"
|
990 |
|
991 |
-
#: inc/core/class.data.php:
|
992 |
msgid "Iframe"
|
993 |
msgstr "Фрейм (iframe)"
|
994 |
|
995 |
-
#: inc/core/class.data.php:
|
996 |
msgid "Image"
|
997 |
msgstr "Изображение"
|
998 |
|
999 |
-
#: inc/core/class.data.php:
|
1000 |
msgid "Inline (html content)"
|
1001 |
msgstr "HTML элемент"
|
1002 |
|
1003 |
-
#: inc/core/class.data.php:
|
1004 |
msgid "Content type"
|
1005 |
msgstr "Тип содержимого"
|
1006 |
|
1007 |
-
#: inc/core/class.data.php:
|
1008 |
msgid "Select type of the lightbox window content"
|
1009 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
1010 |
|
1011 |
-
#: inc/core/class.data.php:
|
1012 |
msgid "Content source"
|
1013 |
msgstr "Источник содержимого"
|
1014 |
|
1015 |
-
#: inc/core/class.data.php:
|
1016 |
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)"
|
1017 |
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 элемент)"
|
1018 |
|
1019 |
-
#: inc/core/class.data.php:
|
1020 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
1021 |
msgstr "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
|
1022 |
|
1023 |
-
#: inc/core/class.data.php:
|
1024 |
msgid "Lightbox window with custom content"
|
1025 |
msgstr "Лайтбокс с произвольным содержимым"
|
1026 |
|
1027 |
-
#: inc/core/class.data.php:
|
1028 |
msgid "Tooltip"
|
1029 |
msgstr "Подсказка"
|
1030 |
|
1031 |
-
#: inc/core/class.data.php:
|
1032 |
msgid "Basic: Light"
|
1033 |
msgstr "Базовый: Светлый"
|
1034 |
|
1035 |
-
#: inc/core/class.data.php:
|
1036 |
msgid "Basic: Dark"
|
1037 |
msgstr "Базовый: Темный"
|
1038 |
|
1039 |
-
#: inc/core/class.data.php:
|
1040 |
msgid "Basic: Yellow"
|
1041 |
msgstr "Базовый: Желтый"
|
1042 |
|
1043 |
-
#: inc/core/class.data.php:
|
1044 |
msgid "Basic: Green"
|
1045 |
msgstr "Базовый: Зеленый"
|
1046 |
|
1047 |
-
#: inc/core/class.data.php:
|
1048 |
msgid "Basic: Red"
|
1049 |
msgstr "Базовый: Красный"
|
1050 |
|
1051 |
-
#: inc/core/class.data.php:
|
1052 |
msgid "Basic: Blue"
|
1053 |
msgstr "Базовый: Голубой"
|
1054 |
|
1055 |
-
#: inc/core/class.data.php:
|
1056 |
msgid "Youtube"
|
1057 |
msgstr "Youtube"
|
1058 |
|
1059 |
-
#: inc/core/class.data.php:
|
1060 |
msgid "Tipsy"
|
1061 |
msgstr "Tipsy"
|
1062 |
|
1063 |
-
#: inc/core/class.data.php:
|
1064 |
msgid "Bootstrap"
|
1065 |
msgstr "Bootstrap"
|
1066 |
|
1067 |
-
#: inc/core/class.data.php:
|
1068 |
msgid "jTools"
|
1069 |
msgstr "jTools"
|
1070 |
|
1071 |
-
#: inc/core/class.data.php:
|
1072 |
msgid "Tipped"
|
1073 |
msgstr "Tipped"
|
1074 |
|
1075 |
-
#: inc/core/class.data.php:
|
1076 |
msgid "Cluetip"
|
1077 |
msgstr "Cluetip"
|
1078 |
|
1079 |
-
#: inc/core/class.data.php:
|
1080 |
msgid "Tooltip window style"
|
1081 |
msgstr "Стиль окна подсказки"
|
1082 |
|
1083 |
-
#: inc/core/class.data.php:
|
1084 |
msgid "Position"
|
1085 |
msgstr "Положение"
|
1086 |
|
1087 |
-
#: inc/core/class.data.php:
|
1088 |
msgid "Tooltip position"
|
1089 |
msgstr "Положение всплывающей подсказки"
|
1090 |
|
1091 |
-
#: inc/core/class.data.php:
|
1092 |
msgid "Shadow"
|
1093 |
msgstr "Тень"
|
1094 |
|
1095 |
-
#: inc/core/class.data.php:
|
1096 |
msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
|
1097 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
1098 |
|
1099 |
-
#: inc/core/class.data.php:
|
1100 |
msgid "Rounded corners"
|
1101 |
msgstr "Скругление"
|
1102 |
|
1103 |
-
#: inc/core/class.data.php:
|
1104 |
msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
|
1105 |
msgstr "Добавить скругленные уголки окну подсказки. Скругление работает только для базовых стилей."
|
1106 |
|
1107 |
-
#: inc/core/class.data.php:
|
1108 |
msgid "Font size"
|
1109 |
msgstr "Размер шрифта"
|
1110 |
|
1111 |
-
#: inc/core/class.data.php:
|
1112 |
msgid "Tooltip font size"
|
1113 |
msgstr "Размер шрифта подсказки"
|
1114 |
|
1115 |
-
#: inc/core/class.data.php:
|
1116 |
msgid "Tooltip title"
|
1117 |
msgstr "Заголовок подсказки"
|
1118 |
|
1119 |
-
#: inc/core/class.data.php:
|
1120 |
msgid "Enter title for tooltip window. Leave this field empty to hide the title"
|
1121 |
msgstr "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть заголовок"
|
1122 |
|
1123 |
-
#: inc/core/class.data.php:
|
1124 |
-
#: inc/core/shortcodes.php:
|
1125 |
msgid "Tooltip text"
|
1126 |
msgstr "Текст подсказки"
|
1127 |
|
1128 |
-
#: inc/core/class.data.php:
|
1129 |
msgid "Tooltip content"
|
1130 |
msgstr "Содержимое подсказки"
|
1131 |
|
1132 |
-
#: inc/core/class.data.php:
|
1133 |
msgid "Enter tooltip content here"
|
1134 |
msgstr "Введите сюда содержимое подсказки"
|
1135 |
|
1136 |
-
#: inc/core/class.data.php:
|
1137 |
msgid "Show and hide on mouse hover"
|
1138 |
msgstr "Показать и скрыть при наведении мыши"
|
1139 |
|
1140 |
-
#: inc/core/class.data.php:
|
1141 |
msgid "Show and hide by mouse click"
|
1142 |
msgstr "Показать и скрыть по клику мыши"
|
1143 |
|
1144 |
-
#: inc/core/class.data.php:
|
1145 |
msgid "Always visible"
|
1146 |
msgstr "Всегда видима"
|
1147 |
|
1148 |
-
#: inc/core/class.data.php:
|
1149 |
msgid "Behavior"
|
1150 |
msgstr "Поведение"
|
1151 |
|
1152 |
-
#: inc/core/class.data.php:
|
1153 |
msgid "Select tooltip behavior"
|
1154 |
msgstr "Выберите поведение подсказки"
|
1155 |
|
1156 |
-
#: inc/core/class.data.php:
|
1157 |
msgid "Close button"
|
1158 |
msgstr "Кнопка закрыть"
|
1159 |
|
1160 |
-
#: inc/core/class.data.php:
|
1161 |
msgid "Show close button"
|
1162 |
msgstr "Показывать кнопку закрыть"
|
1163 |
|
1164 |
-
#: inc/core/class.data.php:
|
1165 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1166 |
msgstr "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
|
1167 |
|
1168 |
-
#: inc/core/class.data.php:
|
1169 |
msgid "Tooltip window with custom content"
|
1170 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
1171 |
|
1172 |
-
#: inc/core/class.data.php:
|
1173 |
msgid "Private"
|
1174 |
msgstr "Заметка для авторов"
|
1175 |
|
1176 |
-
#: inc/core/class.data.php:
|
1177 |
msgid "Private note text"
|
1178 |
msgstr "Текст приватной заметки"
|
1179 |
|
1180 |
-
#: inc/core/class.data.php:
|
1181 |
msgid "Private note for post authors"
|
1182 |
msgstr "Приватный текст для других авторов"
|
1183 |
|
1184 |
-
#: inc/core/class.data.php:
|
1185 |
msgid "YouTube"
|
1186 |
msgstr "YouTube"
|
1187 |
|
1188 |
-
#: inc/core/class.data.php:
|
1189 |
-
#: inc/core/class.data.php:
|
1190 |
-
#: inc/core/class.data.php:
|
1191 |
-
#: inc/core/class.data.php:
|
1192 |
-
#: inc/core/class.data.php:
|
1193 |
msgid "Url"
|
1194 |
msgstr "Ссылка"
|
1195 |
|
1196 |
-
#: inc/core/class.data.php:
|
1197 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1198 |
msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
1199 |
|
1200 |
-
#: inc/core/class.data.php:
|
1201 |
-
#: inc/core/class.data.php:
|
1202 |
-
#: inc/core/class.data.php:
|
1203 |
-
#: inc/core/class.data.php:
|
1204 |
-
#: inc/core/class.data.php:
|
1205 |
-
#: inc/core/class.data.php:
|
1206 |
-
#: inc/core/class.data.php:
|
1207 |
-
#: inc/core/class.data.php:
|
1208 |
-
#: inc/core/class.data.php:
|
1209 |
-
#: inc/core/class.data.php:
|
1210 |
msgid "Width"
|
1211 |
msgstr "Ширина"
|
1212 |
|
1213 |
-
#: inc/core/class.data.php:
|
1214 |
-
#: inc/core/class.data.php:
|
1215 |
-
#: inc/core/class.data.php:
|
1216 |
-
#: inc/core/class.data.php:
|
1217 |
msgid "Player width"
|
1218 |
msgstr "Ширина плеера"
|
1219 |
|
1220 |
-
#: inc/core/class.data.php:
|
1221 |
-
#: inc/core/class.data.php:
|
1222 |
-
#: inc/core/class.data.php:
|
1223 |
-
#: inc/core/class.data.php:
|
1224 |
msgid "Player height"
|
1225 |
msgstr "Высота плеера"
|
1226 |
|
1227 |
-
#: inc/core/class.data.php:
|
1228 |
-
#: inc/core/class.data.php:
|
1229 |
-
#: inc/core/class.data.php:
|
1230 |
-
#: inc/core/class.data.php:
|
1231 |
-
#: inc/core/class.data.php:
|
1232 |
-
#: inc/core/class.data.php:
|
1233 |
-
#: inc/core/class.data.php:
|
1234 |
msgid "Responsive"
|
1235 |
msgstr "Отзывчивость (responsive)"
|
1236 |
|
1237 |
-
#: inc/core/class.data.php:
|
1238 |
-
#: inc/core/class.data.php:
|
1239 |
-
#: inc/core/class.data.php:
|
1240 |
msgid "Ignore width and height parameters and make player responsive"
|
1241 |
msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
1242 |
|
1243 |
-
#: inc/core/class.data.php:
|
1244 |
-
#: inc/core/class.data.php:
|
1245 |
-
#: inc/core/class.data.php:
|
1246 |
-
#: inc/core/class.data.php:
|
1247 |
-
#: inc/core/class.data.php:
|
1248 |
-
#: inc/core/class.data.php:
|
1249 |
msgid "Autoplay"
|
1250 |
msgstr "Автовоспроизведение"
|
1251 |
|
1252 |
-
#: inc/core/class.data.php:
|
1253 |
-
#: inc/core/class.data.php:
|
1254 |
msgid "Play video automatically when page is loaded"
|
1255 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1256 |
|
1257 |
-
#: inc/core/class.data.php:
|
1258 |
msgid "YouTube video"
|
1259 |
msgstr "Видео YouTube"
|
1260 |
|
1261 |
-
#: inc/core/class.data.php:
|
1262 |
msgid "Vimeo"
|
1263 |
msgstr "Vimeo"
|
1264 |
|
1265 |
-
#: inc/core/class.data.php:
|
1266 |
msgid "Url of Vimeo page with video"
|
1267 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1268 |
|
1269 |
-
#: inc/core/class.data.php:
|
1270 |
msgid "Vimeo video"
|
1271 |
msgstr "Видео Vimeo"
|
1272 |
|
1273 |
-
#: inc/core/class.data.php:
|
1274 |
msgid "Screenr"
|
1275 |
msgstr "Screenr"
|
1276 |
|
1277 |
-
#: inc/core/class.data.php:
|
1278 |
msgid "Url of Screenr page with video"
|
1279 |
msgstr "Ссылка на страницу Screenr с видео"
|
1280 |
|
1281 |
-
#: inc/core/class.data.php:
|
1282 |
msgid "Screenr video"
|
1283 |
msgstr "Видео Screenr"
|
1284 |
|
1285 |
-
#: inc/core/class.data.php:
|
1286 |
msgid "Audio"
|
1287 |
msgstr "Аудио"
|
1288 |
|
1289 |
-
#: inc/core/class.data.php:
|
1290 |
-
#: inc/core/class.data.php:
|
1291 |
msgid "File"
|
1292 |
msgstr "Файл"
|
1293 |
|
1294 |
-
#: inc/core/class.data.php:
|
1295 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1296 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1297 |
|
1298 |
-
#: inc/core/class.data.php:
|
1299 |
msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1300 |
msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100%</b>"
|
1301 |
|
1302 |
-
#: inc/core/class.data.php:
|
1303 |
-
#: inc/core/class.data.php:
|
1304 |
msgid "Play file automatically when page is loaded"
|
1305 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1306 |
|
1307 |
-
#: inc/core/class.data.php:
|
1308 |
-
#: inc/core/class.data.php:
|
1309 |
msgid "Loop"
|
1310 |
msgstr "Повтор"
|
1311 |
|
1312 |
-
#: inc/core/class.data.php:
|
1313 |
-
#: inc/core/class.data.php:
|
1314 |
msgid "Repeat when playback is ended"
|
1315 |
msgstr "Повторять, когда воспроизведение окночено"
|
1316 |
|
1317 |
-
#: inc/core/class.data.php:
|
1318 |
msgid "Custom audio player"
|
1319 |
msgstr "Настраиваемый аудио-плеер"
|
1320 |
|
1321 |
-
#: inc/core/class.data.php:
|
1322 |
msgid "Video"
|
1323 |
msgstr "Видео"
|
1324 |
|
1325 |
-
#: inc/core/class.data.php:
|
1326 |
msgid "Url to mp4/flv video-file"
|
1327 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1328 |
|
1329 |
-
#: inc/core/class.data.php:
|
1330 |
msgid "Poster"
|
1331 |
msgstr "Постер"
|
1332 |
|
1333 |
-
#: inc/core/class.data.php:
|
1334 |
msgid "Url to poster image, that will be shown before playback"
|
1335 |
msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
|
1336 |
|
1337 |
-
#: inc/core/class.data.php:
|
1338 |
msgid "Player title"
|
1339 |
msgstr "Заголовок плеера"
|
1340 |
|
1341 |
-
#: inc/core/class.data.php:
|
1342 |
msgid "Controls"
|
1343 |
msgstr "Элементы управления"
|
1344 |
|
1345 |
-
#: inc/core/class.data.php:
|
1346 |
msgid "Show player controls (play/pause etc.) or not"
|
1347 |
msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
1348 |
|
1349 |
-
#: inc/core/class.data.php:
|
1350 |
msgid "Custom video player"
|
1351 |
msgstr "Настраиваемый видео-плеер"
|
1352 |
|
1353 |
-
#: inc/core/class.data.php:
|
1354 |
msgid "Table"
|
1355 |
msgstr "Таблица"
|
1356 |
|
1357 |
-
#: inc/core/class.data.php:
|
1358 |
msgid "CSV file"
|
1359 |
msgstr "CSV файл"
|
1360 |
|
1361 |
-
#: inc/core/class.data.php:
|
1362 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1363 |
msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
1364 |
|
1365 |
-
#: inc/core/class.data.php:
|
1366 |
msgid ""
|
1367 |
"<table>\n"
|
1368 |
"<tr>\n"
|
@@ -1386,614 +1394,614 @@ msgstr ""
|
|
1386 |
"</tr>\n"
|
1387 |
"</table>"
|
1388 |
|
1389 |
-
#: inc/core/class.data.php:
|
1390 |
msgid "Styled table from HTML or CSV file"
|
1391 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1392 |
|
1393 |
-
#: inc/core/class.data.php:
|
1394 |
msgid "Permalink"
|
1395 |
msgstr "Постоянная ссылка"
|
1396 |
|
1397 |
-
#: inc/core/class.data.php:
|
1398 |
msgid "ID"
|
1399 |
msgstr "ID"
|
1400 |
|
1401 |
-
#: inc/core/class.data.php:
|
1402 |
msgid "Post or page ID"
|
1403 |
msgstr "ID записи или страницы"
|
1404 |
|
1405 |
-
#: inc/core/class.data.php:
|
1406 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1407 |
msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
|
1408 |
|
1409 |
-
#: inc/core/class.data.php:
|
1410 |
msgid "Permalink to specified post/page"
|
1411 |
msgstr "Постоянная ссылка на страницу"
|
1412 |
|
1413 |
-
#: inc/core/class.data.php:
|
1414 |
msgid "Members"
|
1415 |
msgstr "Участники"
|
1416 |
|
1417 |
-
#: inc/core/class.data.php:
|
1418 |
-
#: inc/core/shortcodes.php:
|
1419 |
msgid "This content is for registered users only. Please %login%."
|
1420 |
msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
1421 |
|
1422 |
-
#: inc/core/class.data.php:
|
1423 |
msgid "Message"
|
1424 |
msgstr "Сообщение"
|
1425 |
|
1426 |
-
#: inc/core/class.data.php:
|
1427 |
msgid "Message for not logged users"
|
1428 |
msgstr "Собщение для неавторизованных"
|
1429 |
|
1430 |
-
#: inc/core/class.data.php:
|
1431 |
msgid "Box color"
|
1432 |
msgstr "Цвет блока"
|
1433 |
|
1434 |
-
#: inc/core/class.data.php:
|
1435 |
msgid "This color will applied only to box for not logged users"
|
1436 |
msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
1437 |
|
1438 |
-
#: inc/core/class.data.php:
|
1439 |
-
#: inc/core/shortcodes.php:
|
1440 |
msgid "login"
|
1441 |
msgstr "войдите"
|
1442 |
|
1443 |
-
#: inc/core/class.data.php:
|
1444 |
msgid "Login link text"
|
1445 |
msgstr "Текст ссылки войти"
|
1446 |
|
1447 |
-
#: inc/core/class.data.php:
|
1448 |
msgid "Text for the login link"
|
1449 |
msgstr "Текст ссылки ВОЙТИ"
|
1450 |
|
1451 |
-
#: inc/core/class.data.php:
|
1452 |
msgid "Login link url"
|
1453 |
msgstr "Адрес ссылки войти"
|
1454 |
|
1455 |
-
#: inc/core/class.data.php:
|
1456 |
msgid "Content for logged members"
|
1457 |
msgstr "Содержимое для авторизованых пользователей"
|
1458 |
|
1459 |
-
#: inc/core/class.data.php:
|
1460 |
msgid "Content for logged in members only"
|
1461 |
msgstr "Ссодержимое для авторизованых"
|
1462 |
|
1463 |
-
#: inc/core/class.data.php:
|
1464 |
msgid "Guests"
|
1465 |
msgstr "Гости"
|
1466 |
|
1467 |
-
#: inc/core/class.data.php:
|
1468 |
msgid "Content for guests"
|
1469 |
msgstr "Содержимое для гостей"
|
1470 |
|
1471 |
-
#: inc/core/class.data.php:
|
1472 |
msgid "Content for guests only"
|
1473 |
msgstr "Ссодержимое только для гостей"
|
1474 |
|
1475 |
-
#: inc/core/class.data.php:
|
1476 |
msgid "RSS Feed"
|
1477 |
msgstr "RSS лента"
|
1478 |
|
1479 |
-
#: inc/core/class.data.php:
|
1480 |
msgid "Url to RSS-feed"
|
1481 |
msgstr "Ссылка на RSS-ленту"
|
1482 |
|
1483 |
-
#: inc/core/class.data.php:
|
1484 |
msgid "Limit"
|
1485 |
msgstr "Лимит"
|
1486 |
|
1487 |
-
#: inc/core/class.data.php:
|
1488 |
msgid "Number of items to show"
|
1489 |
msgstr "Количество элементов для отображения"
|
1490 |
|
1491 |
-
#: inc/core/class.data.php:
|
1492 |
msgid "Feed grabber"
|
1493 |
msgstr "Граббер новостных лент"
|
1494 |
|
1495 |
-
#: inc/core/class.data.php:
|
1496 |
msgid "Menu"
|
1497 |
msgstr "Меню"
|
1498 |
|
1499 |
-
#: inc/core/class.data.php:
|
1500 |
msgid "Menu name"
|
1501 |
msgstr "Имя меню"
|
1502 |
|
1503 |
-
#: inc/core/class.data.php:
|
1504 |
msgid "Custom menu name. Ex: Main menu"
|
1505 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1506 |
|
1507 |
-
#: inc/core/class.data.php:
|
1508 |
msgid "Custom menu by name"
|
1509 |
msgstr "Произвольное меню"
|
1510 |
|
1511 |
-
#: inc/core/class.data.php:
|
1512 |
msgid "Sub pages"
|
1513 |
msgstr "Подстраницы"
|
1514 |
|
1515 |
-
#: inc/core/class.data.php:
|
1516 |
-
#: inc/core/class.data.php:
|
1517 |
msgid "Depth"
|
1518 |
msgstr "Глубина"
|
1519 |
|
1520 |
-
#: inc/core/class.data.php:
|
1521 |
msgid "Max depth level of children pages"
|
1522 |
msgstr "Максимальная глубина дочерних страниц"
|
1523 |
|
1524 |
-
#: inc/core/class.data.php:
|
1525 |
msgid "Parent ID"
|
1526 |
msgstr "ID родителя"
|
1527 |
|
1528 |
-
#: inc/core/class.data.php:
|
1529 |
msgid "ID of the parent page. Leave blank to use current page"
|
1530 |
msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
|
1531 |
|
1532 |
-
#: inc/core/class.data.php:
|
1533 |
msgid "List of sub pages"
|
1534 |
msgstr "Список дочерних страниц"
|
1535 |
|
1536 |
-
#: inc/core/class.data.php:
|
1537 |
msgid "Siblings"
|
1538 |
msgstr "Соседние страницы"
|
1539 |
|
1540 |
-
#: inc/core/class.data.php:
|
1541 |
msgid "Max depth level"
|
1542 |
msgstr "Максимальный уровень вложенности"
|
1543 |
|
1544 |
-
#: inc/core/class.data.php:
|
1545 |
msgid "List of cureent page siblings"
|
1546 |
msgstr "Список страниц, соседних с текущей"
|
1547 |
|
1548 |
-
#: inc/core/class.data.php:
|
1549 |
msgid "Document"
|
1550 |
msgstr "Документ"
|
1551 |
|
1552 |
-
#: inc/core/class.data.php:
|
1553 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1554 |
msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
1555 |
|
1556 |
-
#: inc/core/class.data.php:
|
1557 |
msgid "Viewer width"
|
1558 |
msgstr "Ширина просмотрщика"
|
1559 |
|
1560 |
-
#: inc/core/class.data.php:
|
1561 |
msgid "Viewer height"
|
1562 |
msgstr "Высота просмотрщика"
|
1563 |
|
1564 |
-
#: inc/core/class.data.php:
|
1565 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1566 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1567 |
|
1568 |
-
#: inc/core/class.data.php:
|
1569 |
msgid "Document viewer by Google"
|
1570 |
msgstr "Просмотрщик документов от Google"
|
1571 |
|
1572 |
-
#: inc/core/class.data.php:
|
1573 |
msgid "Gmap"
|
1574 |
msgstr "Google карта"
|
1575 |
|
1576 |
-
#: inc/core/class.data.php:
|
1577 |
msgid "Map width"
|
1578 |
msgstr "Ширина карты"
|
1579 |
|
1580 |
-
#: inc/core/class.data.php:
|
1581 |
msgid "Map height"
|
1582 |
msgstr "Высота карты"
|
1583 |
|
1584 |
-
#: inc/core/class.data.php:
|
1585 |
msgid "Ignore width and height parameters and make map responsive"
|
1586 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1587 |
|
1588 |
-
#: inc/core/class.data.php:
|
1589 |
msgid "Marker"
|
1590 |
msgstr "Маркер"
|
1591 |
|
1592 |
-
#: inc/core/class.data.php:
|
1593 |
msgid "Address for the marker. You can type it in any language"
|
1594 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1595 |
|
1596 |
-
#: inc/core/class.data.php:
|
1597 |
msgid "Maps by Google"
|
1598 |
msgstr "Карты от Google"
|
1599 |
|
1600 |
-
#: inc/core/class.data.php:
|
1601 |
msgid "Slider"
|
1602 |
msgstr "Слайдер"
|
1603 |
|
1604 |
-
#: inc/core/class.data.php:
|
1605 |
msgid "Choose source gallery, that will be used for this slider"
|
1606 |
msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
|
1607 |
|
1608 |
-
#: inc/core/class.data.php:
|
1609 |
msgid "Slider width (in pixels)"
|
1610 |
msgstr "Ширина слайдера (в пикселях)"
|
1611 |
|
1612 |
-
#: inc/core/class.data.php:
|
1613 |
msgid "Slider height (in pixels)"
|
1614 |
msgstr "Высота слайдера (в пикселях)"
|
1615 |
|
1616 |
-
#: inc/core/class.data.php:
|
1617 |
msgid "Ignore width and height parameters and make slider responsive"
|
1618 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
1619 |
|
1620 |
-
#: inc/core/class.data.php:
|
1621 |
-
#: inc/core/class.data.php:
|
1622 |
-
#: inc/core/class.data.php:
|
1623 |
msgid "Show titles"
|
1624 |
msgstr "Показывать заголовки"
|
1625 |
|
1626 |
-
#: inc/core/class.data.php:
|
1627 |
msgid "Display slide titles"
|
1628 |
msgstr "Отображать заголовки слайдов"
|
1629 |
|
1630 |
-
#: inc/core/class.data.php:
|
1631 |
msgid "Is slider centered on the page"
|
1632 |
msgstr "Слайдер выровнен по центру страницы"
|
1633 |
|
1634 |
-
#: inc/core/class.data.php:
|
1635 |
-
#: inc/core/class.data.php:
|
1636 |
msgid "Arrows"
|
1637 |
msgstr "Стрелки"
|
1638 |
|
1639 |
-
#: inc/core/class.data.php:
|
1640 |
-
#: inc/core/class.data.php:
|
1641 |
msgid "Show left and right arrows"
|
1642 |
msgstr "Показывать стрелки влево/вправо"
|
1643 |
|
1644 |
-
#: inc/core/class.data.php:
|
1645 |
-
#: inc/core/class.data.php:
|
1646 |
msgid "Pagination"
|
1647 |
msgstr "Страницы"
|
1648 |
|
1649 |
-
#: inc/core/class.data.php:
|
1650 |
-
#: inc/core/class.data.php:
|
1651 |
msgid "Show pagination"
|
1652 |
msgstr "Показывать страницы"
|
1653 |
|
1654 |
-
#: inc/core/class.data.php:
|
1655 |
-
#: inc/core/class.data.php:
|
1656 |
msgid "Mouse wheel control"
|
1657 |
msgstr "Управление колесом мыши"
|
1658 |
|
1659 |
-
#: inc/core/class.data.php:
|
1660 |
msgid "Allow to change slides with mouse wheel"
|
1661 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
1662 |
|
1663 |
-
#: inc/core/class.data.php:
|
1664 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1665 |
msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
|
1666 |
|
1667 |
-
#: inc/core/class.data.php:
|
1668 |
-
#: inc/core/class.data.php:
|
1669 |
msgid "Speed"
|
1670 |
msgstr "Скорость"
|
1671 |
|
1672 |
-
#: inc/core/class.data.php:
|
1673 |
-
#: inc/core/class.data.php:
|
1674 |
msgid "Specify animation speed"
|
1675 |
msgstr "Укажите скорость анимации"
|
1676 |
|
1677 |
-
#: inc/core/class.data.php:
|
1678 |
-
#: inc/core/class.data.php:
|
1679 |
-
#: inc/core/class.data.php:
|
1680 |
msgid "Links target"
|
1681 |
msgstr "Цель ссылок"
|
1682 |
|
1683 |
-
#: inc/core/class.data.php:
|
1684 |
msgid "Open slides links in new window/tab"
|
1685 |
msgstr "Открывать ссылки слайдов в новом окне или вкладке"
|
1686 |
|
1687 |
-
#: inc/core/class.data.php:
|
1688 |
msgid "Customizable image slider"
|
1689 |
msgstr "Настраиваемый слайдер изображений"
|
1690 |
|
1691 |
-
#: inc/core/class.data.php:
|
1692 |
msgid "Carousel"
|
1693 |
msgstr "Карусель"
|
1694 |
|
1695 |
-
#: inc/core/class.data.php:
|
1696 |
msgid "Choose source gallery, that will be used for this carousel"
|
1697 |
msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
|
1698 |
|
1699 |
-
#: inc/core/class.data.php:
|
1700 |
msgid "Carousel width (in pixels)"
|
1701 |
msgstr "Ширина карусели (в пикселях)"
|
1702 |
|
1703 |
-
#: inc/core/class.data.php:
|
1704 |
msgid "Carousel height (in pixels)"
|
1705 |
msgstr "Высота карусели (в пикселях)"
|
1706 |
|
1707 |
-
#: inc/core/class.data.php:
|
1708 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1709 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
1710 |
|
1711 |
-
#: inc/core/class.data.php:
|
1712 |
msgid "Items to show"
|
1713 |
msgstr "Количество элементов для отображения"
|
1714 |
|
1715 |
-
#: inc/core/class.data.php:
|
1716 |
msgid "How much carousel items is visible"
|
1717 |
msgstr "Сколько элементов карусели видны постоянно"
|
1718 |
|
1719 |
-
#: inc/core/class.data.php:
|
1720 |
msgid "Scroll number"
|
1721 |
msgstr "Кол-во прокручиваемых"
|
1722 |
|
1723 |
-
#: inc/core/class.data.php:
|
1724 |
msgid "How much items are scrolled in one transition"
|
1725 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
1726 |
|
1727 |
-
#: inc/core/class.data.php:
|
1728 |
msgid "Display titles for each item"
|
1729 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
1730 |
|
1731 |
-
#: inc/core/class.data.php:
|
1732 |
msgid "Is carousel centered on the page"
|
1733 |
msgstr "Карусель выровнена по центру страницы"
|
1734 |
|
1735 |
-
#: inc/core/class.data.php:
|
1736 |
msgid "Allow to rotate carousel with mouse wheel"
|
1737 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
1738 |
|
1739 |
-
#: inc/core/class.data.php:
|
1740 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1741 |
msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
|
1742 |
|
1743 |
-
#: inc/core/class.data.php:
|
1744 |
msgid "Open carousel links in new window/tab"
|
1745 |
msgstr "Открывать ссылки карусели в новом окне или вкладке"
|
1746 |
|
1747 |
-
#: inc/core/class.data.php:
|
1748 |
msgid "Customizable image carousel"
|
1749 |
msgstr "Настраиваемая карусель изображений"
|
1750 |
|
1751 |
-
#: inc/core/class.data.php:
|
1752 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1753 |
msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
|
1754 |
|
1755 |
-
#: inc/core/class.data.php:
|
1756 |
msgid "Single item width (in pixels)"
|
1757 |
msgstr "Ширина одного изображения (в пикселях)"
|
1758 |
|
1759 |
-
#: inc/core/class.data.php:
|
1760 |
msgid "Single item height (in pixels)"
|
1761 |
msgstr "Высота одного изображения (в пикселях)"
|
1762 |
|
1763 |
-
#: inc/core/class.data.php:
|
1764 |
msgid "Never"
|
1765 |
msgstr "Никогда"
|
1766 |
|
1767 |
-
#: inc/core/class.data.php:
|
1768 |
msgid "On mouse over"
|
1769 |
msgstr "При наведении мыши"
|
1770 |
|
1771 |
-
#: inc/core/class.data.php:
|
1772 |
msgid "Always"
|
1773 |
msgstr "Всегда"
|
1774 |
|
1775 |
-
#: inc/core/class.data.php:
|
1776 |
msgid "Title display mode"
|
1777 |
msgstr "Режим отображения заголовков"
|
1778 |
|
1779 |
-
#: inc/core/class.data.php:
|
1780 |
msgid "Open links in new window/tab"
|
1781 |
msgstr "Открывать ссылки в новом окне или вкладке"
|
1782 |
|
1783 |
-
#: inc/core/class.data.php:
|
1784 |
msgid "Customizable image gallery"
|
1785 |
msgstr "Настраиваемая галерея изображений"
|
1786 |
|
1787 |
-
#: inc/core/class.data.php:
|
1788 |
msgid "Posts"
|
1789 |
msgstr "Записи"
|
1790 |
|
1791 |
-
#: inc/core/class.data.php:
|
1792 |
msgid "Template"
|
1793 |
msgstr "Шаблон"
|
1794 |
|
1795 |
-
#: inc/core/class.data.php:
|
1796 |
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"
|
1797 |
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> - маркированный список с заголовками постов"
|
1798 |
|
1799 |
-
#: inc/core/class.data.php:
|
1800 |
msgid "Post ID's"
|
1801 |
msgstr "ID постов"
|
1802 |
|
1803 |
-
#: inc/core/class.data.php:
|
1804 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1805 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
1806 |
|
1807 |
-
#: inc/core/class.data.php:
|
1808 |
msgid "Posts per page"
|
1809 |
msgstr "Кол-во записей"
|
1810 |
|
1811 |
-
#: inc/core/class.data.php:
|
1812 |
msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
|
1813 |
msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
|
1814 |
|
1815 |
-
#: inc/core/class.data.php:
|
1816 |
msgid "Post types"
|
1817 |
msgstr "Типы постов"
|
1818 |
|
1819 |
-
#: inc/core/class.data.php:
|
1820 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1821 |
msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
1822 |
|
1823 |
-
#: inc/core/class.data.php:
|
1824 |
msgid "Taxonomy"
|
1825 |
msgstr "Таксономия"
|
1826 |
|
1827 |
-
#: inc/core/class.data.php:
|
1828 |
msgid "Select taxonomy to show posts from"
|
1829 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
1830 |
|
1831 |
-
#: inc/core/class.data.php:
|
1832 |
msgid "Terms"
|
1833 |
msgstr "Категории (terms)"
|
1834 |
|
1835 |
-
#: inc/core/class.data.php:
|
1836 |
msgid "Select terms to show posts from"
|
1837 |
msgstr "Выберите категории, из которых нужно показать записи"
|
1838 |
|
1839 |
-
#: inc/core/class.data.php:
|
1840 |
msgid "Taxonomy term operator"
|
1841 |
msgstr "Оператор выбора категорий"
|
1842 |
|
1843 |
-
#: inc/core/class.data.php:
|
1844 |
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"
|
1845 |
msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
1846 |
|
1847 |
-
#: inc/core/class.data.php:
|
1848 |
msgid "Authors"
|
1849 |
msgstr "Авторы"
|
1850 |
|
1851 |
-
#: inc/core/class.data.php:
|
1852 |
msgid "Choose the authors whose posts you want to show"
|
1853 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
1854 |
|
1855 |
-
#: inc/core/class.data.php:
|
1856 |
msgid "Meta key"
|
1857 |
msgstr "Произвольное поле"
|
1858 |
|
1859 |
-
#: inc/core/class.data.php:
|
1860 |
msgid "Enter meta key name to show posts that have this key"
|
1861 |
msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
|
1862 |
|
1863 |
-
#: inc/core/class.data.php:
|
1864 |
msgid "Offset"
|
1865 |
msgstr "Смещение (offset)"
|
1866 |
|
1867 |
-
#: inc/core/class.data.php:
|
1868 |
msgid "Specify offset to start posts loop not from first post"
|
1869 |
msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
|
1870 |
|
1871 |
-
#: inc/core/class.data.php:
|
1872 |
msgid "Descending"
|
1873 |
msgstr "По убыванию"
|
1874 |
|
1875 |
-
#: inc/core/class.data.php:
|
1876 |
msgid "Ascending"
|
1877 |
msgstr "По возрастанию"
|
1878 |
|
1879 |
-
#: inc/core/class.data.php:
|
1880 |
msgid "Order"
|
1881 |
msgstr "Порядок"
|
1882 |
|
1883 |
-
#: inc/core/class.data.php:
|
1884 |
msgid "Posts order"
|
1885 |
msgstr "Порядок сортировки записей"
|
1886 |
|
1887 |
-
#: inc/core/class.data.php:
|
1888 |
msgid "Post ID"
|
1889 |
msgstr "ID записи"
|
1890 |
|
1891 |
-
#: inc/core/class.data.php:
|
1892 |
msgid "Post author"
|
1893 |
msgstr "Автор записи"
|
1894 |
|
1895 |
-
#: inc/core/class.data.php:
|
1896 |
msgid "Post title"
|
1897 |
msgstr "Заголовок записи"
|
1898 |
|
1899 |
-
#: inc/core/class.data.php:
|
1900 |
msgid "Post slug"
|
1901 |
msgstr "Ссылка записи (slug)"
|
1902 |
|
1903 |
-
#: inc/core/class.data.php:
|
1904 |
msgid "Date"
|
1905 |
msgstr "Дата"
|
1906 |
|
1907 |
-
#: inc/core/class.data.php:
|
1908 |
msgid "Last modified date"
|
1909 |
msgstr "Дата изменения"
|
1910 |
|
1911 |
-
#: inc/core/class.data.php:
|
1912 |
-
#: inc/core/class.data.php:
|
1913 |
msgid "Post parent"
|
1914 |
msgstr "Родитель"
|
1915 |
|
1916 |
-
#: inc/core/class.data.php:
|
1917 |
msgid "Random"
|
1918 |
msgstr "Случайно"
|
1919 |
|
1920 |
-
#: inc/core/class.data.php:
|
1921 |
msgid "Comments number"
|
1922 |
msgstr "Кол-во комментариев"
|
1923 |
|
1924 |
-
#: inc/core/class.data.php:
|
1925 |
msgid "Menu order"
|
1926 |
msgstr "Порядок меню"
|
1927 |
|
1928 |
-
#: inc/core/class.data.php:
|
1929 |
msgid "Meta key values"
|
1930 |
msgstr "Значение произвольного поля"
|
1931 |
|
1932 |
-
#: inc/core/class.data.php:
|
1933 |
msgid "Order by"
|
1934 |
msgstr "Сортировать по"
|
1935 |
|
1936 |
-
#: inc/core/class.data.php:
|
1937 |
msgid "Order posts by"
|
1938 |
msgstr "Сортировать записи по следующему признаку"
|
1939 |
|
1940 |
-
#: inc/core/class.data.php:
|
1941 |
msgid "Show childrens of entered post (enter post ID)"
|
1942 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
1943 |
|
1944 |
-
#: inc/core/class.data.php:
|
1945 |
msgid "Published"
|
1946 |
msgstr "Опубликован"
|
1947 |
|
1948 |
-
#: inc/core/class.data.php:
|
1949 |
msgid "Pending"
|
1950 |
msgstr "Ожидает"
|
1951 |
|
1952 |
-
#: inc/core/class.data.php:
|
1953 |
msgid "Draft"
|
1954 |
msgstr "Черновик"
|
1955 |
|
1956 |
-
#: inc/core/class.data.php:
|
1957 |
msgid "Auto-draft"
|
1958 |
msgstr "Авто-черновик"
|
1959 |
|
1960 |
-
#: inc/core/class.data.php:
|
1961 |
msgid "Future post"
|
1962 |
msgstr "Запланирован"
|
1963 |
|
1964 |
-
#: inc/core/class.data.php:
|
1965 |
msgid "Private post"
|
1966 |
msgstr "Приватная запись"
|
1967 |
|
1968 |
-
#: inc/core/class.data.php:
|
1969 |
msgid "Inherit"
|
1970 |
msgstr "Вложенный"
|
1971 |
|
1972 |
-
#: inc/core/class.data.php:
|
1973 |
msgid "Trashed"
|
1974 |
msgstr "В корзине"
|
1975 |
|
1976 |
-
#: inc/core/class.data.php:
|
1977 |
msgid "Any"
|
1978 |
msgstr "Любой"
|
1979 |
|
1980 |
-
#: inc/core/class.data.php:
|
1981 |
msgid "Post status"
|
1982 |
msgstr "Статус записи"
|
1983 |
|
1984 |
-
#: inc/core/class.data.php:
|
1985 |
msgid "Show only posts with selected status"
|
1986 |
msgstr "Показать только записи с выбранным статусом"
|
1987 |
|
1988 |
-
#: inc/core/class.data.php:
|
1989 |
msgid "Ignore sticky"
|
1990 |
msgstr "Игнорировать прикрепленные"
|
1991 |
|
1992 |
-
#: inc/core/class.data.php:
|
1993 |
msgid "Select Yes to ignore posts that is sticked"
|
1994 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
1995 |
|
1996 |
-
#: inc/core/class.data.php:
|
1997 |
msgid "Custom posts query with customizable template"
|
1998 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
1999 |
|
@@ -2096,20 +2104,20 @@ msgstr "Предпросмотр"
|
|
2096 |
msgid "Access denied"
|
2097 |
msgstr "Доступ запрещен"
|
2098 |
|
2099 |
-
#: inc/core/class.requirements.php:
|
2100 |
msgid "<b>Shortcodes Ultimate:</b> Your current theme does not use wp_footer tag. Shortcodes will not work properly. Please add the wp_footer in the footer of your theme."
|
2101 |
msgstr "<b>Shortcodes Ultimate:</b> ваша текущая тема не использует тег wp_footer. Шорткоды не будут работать правильно. Пожалуйста добавьте этот тег в подвале вашей темы."
|
2102 |
|
2103 |
-
#: inc/core/class.requirements.php:
|
2104 |
msgid "Learn more"
|
2105 |
msgstr "Узнать больше"
|
2106 |
|
2107 |
-
#: inc/core/class.requirements.php:
|
2108 |
#, php-format
|
2109 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your version of WordPress (%s).<br />Reccomended WordPress version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
2110 |
msgstr "<h1>Упс! Плагин не активирован…</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией WordPress (%s).<br />Рекомендуемая версия WordPress – %s (или выше).</p><a href=\"%s\">← Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать →</a>"
|
2111 |
|
2112 |
-
#: inc/core/class.requirements.php:
|
2113 |
#, php-format
|
2114 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your PHP version (%s).<br />Reccomended PHP version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
2115 |
msgstr "<h1>Упс! Плагин не активирован…</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией PHP (%s).<br />Рекомендуемая версия PHP – %s (или выше).</p><a href=\"%s\">← Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать →</a>"
|
@@ -2248,29 +2256,29 @@ msgstr "Специальный виджет для вставки шорткод
|
|
2248 |
msgid "Title:"
|
2249 |
msgstr "Заголовок:"
|
2250 |
|
2251 |
-
#: inc/core/shortcodes.php:
|
2252 |
msgid "This is box title"
|
2253 |
msgstr "Заголовок блока"
|
2254 |
|
2255 |
-
#: inc/core/shortcodes.php:
|
2256 |
-
#: inc/core/shortcodes.php:
|
2257 |
-
#: inc/core/shortcodes.php:
|
2258 |
-
#: inc/core/shortcodes.php:
|
2259 |
-
#: inc/core/shortcodes.php:
|
2260 |
msgid "please specify correct url"
|
2261 |
msgstr "пожалуйста укажите корректную ссылку"
|
2262 |
|
2263 |
-
#: inc/core/shortcodes.php:
|
2264 |
msgid "This menu doesn't exists, or has no elements"
|
2265 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
2266 |
|
2267 |
-
#: inc/core/shortcodes.php:
|
2268 |
-
#: inc/core/shortcodes.php:
|
2269 |
-
#: inc/core/shortcodes.php:
|
2270 |
msgid "images not found"
|
2271 |
msgstr "изображения не найдены"
|
2272 |
|
2273 |
-
#: inc/core/shortcodes.php:
|
2274 |
msgid "template not found"
|
2275 |
msgstr "шаблон не найден"
|
2276 |
|
@@ -2340,8 +2348,8 @@ msgid "Plugin features"
|
|
2340 |
msgstr "Возможности плагина"
|
2341 |
|
2342 |
#: inc/views/about.php:21
|
2343 |
-
msgid "
|
2344 |
-
msgstr "
|
2345 |
|
2346 |
#: inc/views/about.php:22
|
2347 |
msgid "Power of CSS3 transitions"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-30 16:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-09-30 16:43+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
msgstr "Заголовок 2"
|
20 |
|
21 |
#: inc/example-addon.php:43
|
22 |
+
#: inc/core/class.data.php:158
|
23 |
+
#: inc/core/class.data.php:276
|
24 |
+
#: inc/core/class.data.php:356
|
25 |
+
#: inc/core/class.data.php:517
|
26 |
+
#: inc/core/class.data.php:654
|
27 |
+
#: inc/core/class.data.php:813
|
28 |
msgid "Default"
|
29 |
msgstr "По умолчанию"
|
30 |
|
33 |
msgstr "Маленький"
|
34 |
|
35 |
#: inc/example-addon.php:49
|
36 |
+
#: inc/core/class.data.php:163
|
37 |
+
#: inc/core/class.data.php:362
|
38 |
+
#: inc/core/class.data.php:481
|
39 |
+
#: inc/core/class.data.php:527
|
40 |
+
#: inc/core/class.data.php:661
|
41 |
+
#: inc/core/class.data.php:783
|
42 |
msgid "Style"
|
43 |
msgstr "Стиль"
|
44 |
|
68 |
msgstr "Содержимое"
|
69 |
|
70 |
#: inc/core/class.data.php:36
|
71 |
+
#: inc/core/class.data.php:642
|
72 |
msgid "Box"
|
73 |
msgstr "Блок"
|
74 |
|
77 |
msgstr "Медиа"
|
78 |
|
79 |
#: inc/core/class.data.php:38
|
80 |
+
#: inc/core/class.data.php:1413
|
81 |
+
#: inc/core/class.data.php:1503
|
82 |
+
#: inc/core/class.data.php:1603
|
83 |
+
#: inc/core/class.data.php:1609
|
84 |
msgid "Gallery"
|
85 |
msgstr "Галерея"
|
86 |
|
93 |
msgstr "Заголовок"
|
94 |
|
95 |
#: inc/core/class.data.php:60
|
96 |
+
#: inc/core/class.data.php:367
|
97 |
+
#: inc/core/class.data.php:444
|
98 |
+
#: inc/core/class.data.php:545
|
99 |
msgid "Size"
|
100 |
msgstr "Размер"
|
101 |
|
104 |
msgstr "Выберите размер заголовка"
|
105 |
|
106 |
#: inc/core/class.data.php:65
|
107 |
+
#: inc/core/class.data.php:332
|
108 |
+
#: inc/core/class.data.php:587
|
109 |
+
#: inc/core/class.data.php:791
|
110 |
msgid "Left"
|
111 |
msgstr "Слева"
|
112 |
|
113 |
#: inc/core/class.data.php:66
|
114 |
+
#: inc/core/class.data.php:1446
|
115 |
+
#: inc/core/class.data.php:1552
|
116 |
msgid "Center"
|
117 |
msgstr "По центру"
|
118 |
|
119 |
#: inc/core/class.data.php:67
|
120 |
+
#: inc/core/class.data.php:333
|
121 |
+
#: inc/core/class.data.php:585
|
122 |
+
#: inc/core/class.data.php:792
|
123 |
msgid "Right"
|
124 |
msgstr "Справа"
|
125 |
|
126 |
#: inc/core/class.data.php:70
|
127 |
+
#: inc/core/class.data.php:336
|
128 |
+
#: inc/core/class.data.php:392
|
129 |
msgid "Align"
|
130 |
msgstr "Выравнивание"
|
131 |
|
135 |
|
136 |
#: inc/core/class.data.php:74
|
137 |
#: inc/core/class.data.php:104
|
138 |
+
#: inc/core/class.data.php:131
|
139 |
+
#: inc/core/class.data.php:168
|
140 |
+
#: inc/core/class.data.php:182
|
141 |
+
#: inc/core/class.data.php:209
|
142 |
+
#: inc/core/class.data.php:232
|
143 |
+
#: inc/core/class.data.php:260
|
144 |
+
#: inc/core/class.data.php:289
|
145 |
+
#: inc/core/class.data.php:316
|
146 |
+
#: inc/core/class.data.php:340
|
147 |
+
#: inc/core/class.data.php:371
|
148 |
+
#: inc/core/class.data.php:397
|
149 |
+
#: inc/core/class.data.php:413
|
150 |
+
#: inc/core/class.data.php:449
|
151 |
+
#: inc/core/class.data.php:485
|
152 |
+
#: inc/core/class.data.php:600
|
153 |
+
#: inc/core/class.data.php:634
|
154 |
+
#: inc/core/class.data.php:686
|
155 |
+
#: inc/core/class.data.php:721
|
156 |
+
#: inc/core/class.data.php:752
|
157 |
+
#: inc/core/class.data.php:854
|
158 |
+
#: inc/core/class.data.php:870
|
159 |
+
#: inc/core/class.data.php:922
|
160 |
+
#: inc/core/class.data.php:971
|
161 |
+
#: inc/core/class.data.php:1013
|
162 |
+
#: inc/core/class.data.php:1051
|
163 |
+
#: inc/core/class.data.php:1120
|
164 |
+
#: inc/core/class.data.php:1141
|
165 |
+
#: inc/core/class.data.php:1172
|
166 |
+
#: inc/core/class.data.php:1205
|
167 |
+
#: inc/core/class.data.php:1221
|
168 |
+
#: inc/core/class.data.php:1246
|
169 |
+
#: inc/core/class.data.php:1265
|
170 |
+
#: inc/core/class.data.php:1291
|
171 |
+
#: inc/core/class.data.php:1311
|
172 |
+
#: inc/core/class.data.php:1355
|
173 |
+
#: inc/core/class.data.php:1399
|
174 |
+
#: inc/core/class.data.php:1489
|
175 |
+
#: inc/core/class.data.php:1595
|
176 |
+
#: inc/core/class.data.php:1646
|
177 |
msgid "Class"
|
178 |
msgstr "Класс"
|
179 |
|
180 |
#: inc/core/class.data.php:75
|
181 |
#: inc/core/class.data.php:105
|
182 |
+
#: inc/core/class.data.php:132
|
183 |
+
#: inc/core/class.data.php:169
|
184 |
+
#: inc/core/class.data.php:183
|
185 |
+
#: inc/core/class.data.php:210
|
186 |
+
#: inc/core/class.data.php:233
|
187 |
+
#: inc/core/class.data.php:261
|
188 |
+
#: inc/core/class.data.php:290
|
189 |
+
#: inc/core/class.data.php:317
|
190 |
+
#: inc/core/class.data.php:341
|
191 |
+
#: inc/core/class.data.php:372
|
192 |
+
#: inc/core/class.data.php:398
|
193 |
+
#: inc/core/class.data.php:414
|
194 |
+
#: inc/core/class.data.php:450
|
195 |
+
#: inc/core/class.data.php:486
|
196 |
+
#: inc/core/class.data.php:601
|
197 |
+
#: inc/core/class.data.php:635
|
198 |
+
#: inc/core/class.data.php:687
|
199 |
+
#: inc/core/class.data.php:722
|
200 |
+
#: inc/core/class.data.php:753
|
201 |
+
#: inc/core/class.data.php:855
|
202 |
+
#: inc/core/class.data.php:871
|
203 |
+
#: inc/core/class.data.php:923
|
204 |
+
#: inc/core/class.data.php:972
|
205 |
+
#: inc/core/class.data.php:1014
|
206 |
+
#: inc/core/class.data.php:1052
|
207 |
+
#: inc/core/class.data.php:1121
|
208 |
+
#: inc/core/class.data.php:1142
|
209 |
+
#: inc/core/class.data.php:1173
|
210 |
+
#: inc/core/class.data.php:1206
|
211 |
+
#: inc/core/class.data.php:1222
|
212 |
+
#: inc/core/class.data.php:1247
|
213 |
+
#: inc/core/class.data.php:1266
|
214 |
+
#: inc/core/class.data.php:1292
|
215 |
+
#: inc/core/class.data.php:1312
|
216 |
+
#: inc/core/class.data.php:1356
|
217 |
+
#: inc/core/class.data.php:1400
|
218 |
+
#: inc/core/class.data.php:1490
|
219 |
+
#: inc/core/class.data.php:1596
|
220 |
+
#: inc/core/class.data.php:1647
|
221 |
msgid "Extra CSS class"
|
222 |
msgstr "Дополнительный CSS класс"
|
223 |
|
267 |
msgid "Tab"
|
268 |
msgstr "Вкладка"
|
269 |
|
270 |
+
#: inc/core/class.data.php:119
|
271 |
msgid "Tab name"
|
272 |
msgstr "Имя вкладки"
|
273 |
|
274 |
+
#: inc/core/class.data.php:120
|
275 |
+
#: inc/core/class.data.php:147
|
276 |
+
#: inc/core/class.data.php:616
|
277 |
+
#: inc/core/class.data.php:649
|
278 |
+
#: inc/core/class.data.php:1079
|
279 |
msgid "Title"
|
280 |
msgstr "Заголовок"
|
281 |
|
282 |
+
#: inc/core/class.data.php:121
|
283 |
msgid "Enter tab name"
|
284 |
msgstr "Введите имя вкладки"
|
285 |
|
286 |
+
#: inc/core/class.data.php:126
|
287 |
+
msgid "Disabled"
|
288 |
+
msgstr "Отключено"
|
289 |
+
|
290 |
+
#: inc/core/class.data.php:127
|
291 |
+
msgid "Is this tab disabled"
|
292 |
+
msgstr "Эта вкладка отключена"
|
293 |
+
|
294 |
+
#: inc/core/class.data.php:136
|
295 |
msgid "Tab content"
|
296 |
msgstr "Содержимое вкладки"
|
297 |
|
298 |
+
#: inc/core/class.data.php:137
|
299 |
msgid "Single tab"
|
300 |
msgstr "Одиночная вкладка"
|
301 |
|
302 |
+
#: inc/core/class.data.php:141
|
303 |
msgid "Spoiler"
|
304 |
msgstr "Спойлер"
|
305 |
|
306 |
+
#: inc/core/class.data.php:146
|
307 |
+
#: inc/core/shortcodes.php:93
|
308 |
msgid "Spoiler title"
|
309 |
msgstr "Скрытый текст"
|
310 |
|
311 |
+
#: inc/core/class.data.php:147
|
312 |
msgid "Text in spoiler title"
|
313 |
msgstr "Текст для заголовка спойлера"
|
314 |
|
315 |
+
#: inc/core/class.data.php:152
|
316 |
msgid "Open"
|
317 |
msgstr "Открыт"
|
318 |
|
319 |
+
#: inc/core/class.data.php:153
|
320 |
msgid "Is spoiler content visible by default"
|
321 |
msgstr "Виден ли контент спойлера по умолчанию"
|
322 |
|
323 |
+
#: inc/core/class.data.php:159
|
324 |
msgid "Fancy"
|
325 |
msgstr "Стильный"
|
326 |
|
327 |
+
#: inc/core/class.data.php:160
|
328 |
+
#: inc/core/class.data.php:359
|
329 |
msgid "Simple"
|
330 |
msgstr "Простой"
|
331 |
|
332 |
+
#: inc/core/class.data.php:164
|
333 |
msgid "Spoiler skin"
|
334 |
msgstr "Скин спойлера"
|
335 |
|
336 |
+
#: inc/core/class.data.php:172
|
337 |
msgid "Hidden content"
|
338 |
msgstr "Скрытое содержимое"
|
339 |
|
340 |
+
#: inc/core/class.data.php:172
|
341 |
msgid "Spoiler with hidden content"
|
342 |
msgstr "Спойлер со скрытым содержимым"
|
343 |
|
344 |
+
#: inc/core/class.data.php:176
|
345 |
msgid "Accordion"
|
346 |
msgstr "Аккордион"
|
347 |
|
348 |
+
#: inc/core/class.data.php:187
|
349 |
msgid ""
|
350 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
351 |
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
355 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]\n"
|
356 |
"[%prefix_spoiler]Скрытый текст[/%prefix_spoiler]"
|
357 |
|
358 |
+
#: inc/core/class.data.php:188
|
359 |
msgid "Accordion with spoilers"
|
360 |
msgstr "Аккордион со спойлерами"
|
361 |
|
362 |
+
#: inc/core/class.data.php:192
|
363 |
msgid "Divider"
|
364 |
msgstr "Разделитель"
|
365 |
|
366 |
+
#: inc/core/class.data.php:199
|
367 |
msgid "Show TOP link"
|
368 |
msgstr "Показать ссылку ВВЕРХ"
|
369 |
|
370 |
+
#: inc/core/class.data.php:200
|
371 |
msgid "Show link to top of the page or not"
|
372 |
msgstr "Показывать ссылку ВВЕРХ или нет"
|
373 |
|
374 |
+
#: inc/core/class.data.php:204
|
375 |
+
#: inc/core/shortcodes.php:128
|
376 |
msgid "Go to top"
|
377 |
msgstr "Вверх"
|
378 |
|
379 |
+
#: inc/core/class.data.php:205
|
380 |
msgid "Link text"
|
381 |
msgstr "Текст ссылки"
|
382 |
|
383 |
+
#: inc/core/class.data.php:205
|
384 |
msgid "Text for the GO TOP link"
|
385 |
msgstr "Текст ссылки ВВЕРХ"
|
386 |
|
387 |
+
#: inc/core/class.data.php:214
|
388 |
msgid "Content divider with optional TOP link"
|
389 |
msgstr "Разделитель текста со ссылкой ВВЕРХ"
|
390 |
|
391 |
+
#: inc/core/class.data.php:218
|
392 |
msgid "Spacer"
|
393 |
msgstr "Пробел"
|
394 |
|
395 |
+
#: inc/core/class.data.php:228
|
396 |
+
#: inc/core/class.data.php:905
|
397 |
+
#: inc/core/class.data.php:954
|
398 |
+
#: inc/core/class.data.php:1002
|
399 |
+
#: inc/core/class.data.php:1097
|
400 |
+
#: inc/core/class.data.php:1344
|
401 |
+
#: inc/core/class.data.php:1382
|
402 |
+
#: inc/core/class.data.php:1430
|
403 |
+
#: inc/core/class.data.php:1520
|
404 |
+
#: inc/core/class.data.php:1626
|
405 |
msgid "Height"
|
406 |
msgstr "Высота"
|
407 |
|
408 |
+
#: inc/core/class.data.php:228
|
409 |
msgid "Height of the spacer in pixels"
|
410 |
msgstr "Высота пробела в пикселях"
|
411 |
|
412 |
+
#: inc/core/class.data.php:237
|
413 |
msgid "Empty space with adjustable height"
|
414 |
msgstr "Пробел с настраиваемой высотой"
|
415 |
|
416 |
+
#: inc/core/class.data.php:241
|
417 |
msgid "Highlight"
|
418 |
msgstr "Выделитель"
|
419 |
|
420 |
+
#: inc/core/class.data.php:249
|
421 |
+
#: inc/core/class.data.php:533
|
422 |
+
#: inc/core/class.data.php:704
|
423 |
msgid "Background"
|
424 |
msgstr "Фон"
|
425 |
|
426 |
+
#: inc/core/class.data.php:250
|
427 |
msgid "Highlighted text background color"
|
428 |
msgstr "Цвет фона выделяемого текста"
|
429 |
|
430 |
+
#: inc/core/class.data.php:256
|
431 |
+
#: inc/core/class.data.php:539
|
432 |
+
#: inc/core/class.data.php:710
|
433 |
msgid "Text color"
|
434 |
msgstr "Цвет текста"
|
435 |
|
436 |
+
#: inc/core/class.data.php:256
|
437 |
msgid "Highlighted text color"
|
438 |
msgstr "Цвет выделяемого текста"
|
439 |
|
440 |
+
#: inc/core/class.data.php:264
|
441 |
+
#: inc/core/class.data.php:265
|
442 |
msgid "Highlighted text"
|
443 |
msgstr "Подсвеченный текст"
|
444 |
|
445 |
+
#: inc/core/class.data.php:269
|
446 |
+
#: inc/core/class.data.php:293
|
447 |
msgid "Label"
|
448 |
msgstr "Ярлык"
|
449 |
|
450 |
+
#: inc/core/class.data.php:277
|
451 |
msgid "Success"
|
452 |
msgstr "Успех"
|
453 |
|
454 |
+
#: inc/core/class.data.php:278
|
455 |
msgid "Warning"
|
456 |
msgstr "Внимание"
|
457 |
|
458 |
+
#: inc/core/class.data.php:279
|
459 |
msgid "Important"
|
460 |
msgstr "Важно"
|
461 |
|
462 |
+
#: inc/core/class.data.php:280
|
463 |
msgid "Black"
|
464 |
msgstr "Черный"
|
465 |
|
466 |
+
#: inc/core/class.data.php:281
|
467 |
msgid "Info"
|
468 |
msgstr "Инфо"
|
469 |
|
470 |
+
#: inc/core/class.data.php:284
|
471 |
msgid "Type"
|
472 |
msgstr "Тип"
|
473 |
|
474 |
+
#: inc/core/class.data.php:285
|
475 |
msgid "Style of the label"
|
476 |
msgstr "Стиль ярлыка"
|
477 |
|
478 |
+
#: inc/core/class.data.php:294
|
479 |
msgid "Styled label"
|
480 |
msgstr "Стильный ярлык"
|
481 |
|
482 |
+
#: inc/core/class.data.php:298
|
483 |
+
#: inc/core/class.data.php:320
|
484 |
msgid "Quote"
|
485 |
msgstr "Цитата"
|
486 |
|
487 |
+
#: inc/core/class.data.php:305
|
488 |
msgid "Cite"
|
489 |
msgstr "Автор"
|
490 |
|
491 |
+
#: inc/core/class.data.php:306
|
492 |
msgid "Quote author name"
|
493 |
msgstr "Имя автора цитаты"
|
494 |
|
495 |
+
#: inc/core/class.data.php:311
|
496 |
msgid "Cite url"
|
497 |
msgstr "Ссылка автора"
|
498 |
|
499 |
+
#: inc/core/class.data.php:312
|
500 |
msgid "Url of the quote author. Leave empty to disable link"
|
501 |
msgstr "Ссылка автора цитаты. Оставьте пустым, чтобы отключить ссылку"
|
502 |
|
503 |
+
#: inc/core/class.data.php:321
|
504 |
msgid "Blockquote alternative"
|
505 |
msgstr "Альтернатива цитаты"
|
506 |
|
507 |
+
#: inc/core/class.data.php:325
|
508 |
+
#: inc/core/class.data.php:344
|
509 |
+
#: inc/core/class.data.php:345
|
510 |
msgid "Pullquote"
|
511 |
msgstr "Цитата с обтеканием"
|
512 |
|
513 |
+
#: inc/core/class.data.php:336
|
514 |
msgid "Pullquote alignment (float)"
|
515 |
msgstr "Выравнивание цитаты (обтекание)"
|
516 |
|
517 |
+
#: inc/core/class.data.php:349
|
518 |
+
#: inc/core/class.data.php:376
|
519 |
msgid "Dropcap"
|
520 |
msgstr "Буквица"
|
521 |
|
522 |
+
#: inc/core/class.data.php:357
|
523 |
+
#: inc/core/class.data.php:518
|
524 |
msgid "Flat"
|
525 |
msgstr "Плоский"
|
526 |
|
527 |
+
#: inc/core/class.data.php:358
|
528 |
+
#: inc/core/class.data.php:574
|
529 |
msgid "Light"
|
530 |
msgstr "Светлый"
|
531 |
|
532 |
+
#: inc/core/class.data.php:362
|
533 |
msgid "Dropcap style preset"
|
534 |
msgstr "Стиль буквицы"
|
535 |
|
536 |
+
#: inc/core/class.data.php:367
|
537 |
msgid "Choose dropcap size"
|
538 |
msgstr "Выберите размер буквицы"
|
539 |
|
540 |
+
#: inc/core/class.data.php:375
|
541 |
msgid "D"
|
542 |
msgstr "D"
|
543 |
|
544 |
+
#: inc/core/class.data.php:380
|
545 |
msgid "Frame"
|
546 |
msgstr "Рамка"
|
547 |
|
548 |
+
#: inc/core/class.data.php:393
|
549 |
msgid "Frame alignment"
|
550 |
msgstr "Выравнивание рамки"
|
551 |
|
552 |
+
#: inc/core/class.data.php:403
|
553 |
msgid "Styled image frame"
|
554 |
msgstr "Стильный рамка изображения"
|
555 |
|
556 |
+
#: inc/core/class.data.php:407
|
557 |
msgid "Row"
|
558 |
msgstr "Колонки"
|
559 |
|
560 |
+
#: inc/core/class.data.php:418
|
561 |
msgid ""
|
562 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
563 |
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
567 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]\n"
|
568 |
"[%prefix_column size=\"1/3\"]Содержимое колонки[/%prefix_column]"
|
569 |
|
570 |
+
#: inc/core/class.data.php:419
|
571 |
msgid "Row for flexible columns"
|
572 |
msgstr "Контейнер с резиновыми колонками"
|
573 |
|
574 |
+
#: inc/core/class.data.php:423
|
575 |
msgid "Column"
|
576 |
msgstr "Колонка"
|
577 |
|
578 |
+
#: inc/core/class.data.php:430
|
579 |
msgid "Full width"
|
580 |
msgstr "Во всю ширину"
|
581 |
|
582 |
+
#: inc/core/class.data.php:431
|
583 |
msgid "One half"
|
584 |
msgstr "Одна вторая"
|
585 |
|
586 |
+
#: inc/core/class.data.php:432
|
587 |
msgid "One third"
|
588 |
msgstr "Одна третья"
|
589 |
|
590 |
+
#: inc/core/class.data.php:433
|
591 |
msgid "Two third"
|
592 |
msgstr "Две трети"
|
593 |
|
594 |
+
#: inc/core/class.data.php:434
|
595 |
msgid "One fourth"
|
596 |
msgstr "Одна четвертая"
|
597 |
|
598 |
+
#: inc/core/class.data.php:435
|
599 |
msgid "Three fourth"
|
600 |
msgstr "Три четвертых"
|
601 |
|
602 |
+
#: inc/core/class.data.php:436
|
603 |
msgid "One fifth"
|
604 |
msgstr "Одна пятая"
|
605 |
|
606 |
+
#: inc/core/class.data.php:437
|
607 |
msgid "Two fifth"
|
608 |
msgstr "Две пятых"
|
609 |
|
610 |
+
#: inc/core/class.data.php:438
|
611 |
msgid "Three fifth"
|
612 |
msgstr "Три пятых"
|
613 |
|
614 |
+
#: inc/core/class.data.php:439
|
615 |
msgid "Four fifth"
|
616 |
msgstr "Четыре пятых"
|
617 |
|
618 |
+
#: inc/core/class.data.php:440
|
619 |
msgid "One sixth"
|
620 |
msgstr "Одна шестая"
|
621 |
|
622 |
+
#: inc/core/class.data.php:441
|
623 |
msgid "Five sixth"
|
624 |
msgstr "Пять шестых"
|
625 |
|
626 |
+
#: inc/core/class.data.php:445
|
627 |
msgid "Select column width. This width will be calculated depend page width"
|
628 |
msgstr "Выберите ширину колнки. Эта ширина будет рассчитана на основе ширины страницы"
|
629 |
|
630 |
+
#: inc/core/class.data.php:453
|
631 |
msgid "Column content"
|
632 |
msgstr "Содержимое колонки"
|
633 |
|
634 |
+
#: inc/core/class.data.php:453
|
635 |
msgid "Flexible and responsive columns"
|
636 |
msgstr "Резновые колонки"
|
637 |
|
638 |
+
#: inc/core/class.data.php:457
|
639 |
msgid "List"
|
640 |
msgstr "Список"
|
641 |
|
642 |
+
#: inc/core/class.data.php:464
|
643 |
msgid "Star"
|
644 |
msgstr "Звезда"
|
645 |
|
646 |
+
#: inc/core/class.data.php:465
|
647 |
msgid "Arrow"
|
648 |
msgstr "Стрелка"
|
649 |
|
650 |
+
#: inc/core/class.data.php:466
|
651 |
msgid "Check"
|
652 |
msgstr "Отметка"
|
653 |
|
654 |
+
#: inc/core/class.data.php:467
|
655 |
msgid "Cross"
|
656 |
msgstr "Крестик"
|
657 |
|
658 |
+
#: inc/core/class.data.php:468
|
659 |
msgid "Thumbs up"
|
660 |
msgstr "Палец вверх"
|
661 |
|
662 |
+
#: inc/core/class.data.php:469
|
663 |
+
#: inc/core/class.data.php:501
|
664 |
msgid "Link"
|
665 |
msgstr "Ссылка"
|
666 |
|
667 |
+
#: inc/core/class.data.php:470
|
668 |
msgid "Gear"
|
669 |
msgstr "Шестеренка"
|
670 |
|
671 |
+
#: inc/core/class.data.php:471
|
672 |
msgid "Time"
|
673 |
msgstr "Время"
|
674 |
|
675 |
+
#: inc/core/class.data.php:472
|
676 |
+
#: inc/core/class.data.php:696
|
677 |
msgid "Note"
|
678 |
msgstr "Заметка"
|
679 |
|
680 |
+
#: inc/core/class.data.php:473
|
681 |
msgid "Plus"
|
682 |
msgstr "Плюс"
|
683 |
|
684 |
+
#: inc/core/class.data.php:474
|
685 |
msgid "Guard"
|
686 |
msgstr "Защита"
|
687 |
|
688 |
+
#: inc/core/class.data.php:475
|
689 |
msgid "Event"
|
690 |
msgstr "Событие"
|
691 |
|
692 |
+
#: inc/core/class.data.php:476
|
693 |
msgid "Idea"
|
694 |
msgstr "Идя"
|
695 |
|
696 |
+
#: inc/core/class.data.php:477
|
697 |
#: inc/core/class.generator.php:88
|
698 |
#: inc/core/class.shortcodes-ultimate.php:115
|
699 |
#: inc/vendor/class.sunrise-framework.php:281
|
700 |
msgid "Settings"
|
701 |
msgstr "Настройки"
|
702 |
|
703 |
+
#: inc/core/class.data.php:478
|
704 |
msgid "Twitter"
|
705 |
msgstr "Твиттер"
|
706 |
|
707 |
+
#: inc/core/class.data.php:481
|
708 |
msgid "List items style/icons"
|
709 |
msgstr "Стиль/иконка элементов списка"
|
710 |
|
711 |
+
#: inc/core/class.data.php:490
|
712 |
msgid ""
|
713 |
"<ul>\n"
|
714 |
"<li>List item</li>\n"
|
722 |
"<li>Элемент списка</li>\n"
|
723 |
"</ul>"
|
724 |
|
725 |
+
#: inc/core/class.data.php:490
|
726 |
msgid "Styled unordered list"
|
727 |
msgstr "Стильный неупорядоченный список"
|
728 |
|
729 |
+
#: inc/core/class.data.php:494
|
730 |
msgid "Button"
|
731 |
msgstr "Кнопка"
|
732 |
|
733 |
+
#: inc/core/class.data.php:502
|
734 |
msgid "Button link"
|
735 |
msgstr "Ссылка кнопки"
|
736 |
|
737 |
+
#: inc/core/class.data.php:507
|
738 |
+
#: inc/core/class.data.php:1163
|
739 |
msgid "Same tab"
|
740 |
msgstr "Та же вкладка"
|
741 |
|
742 |
+
#: inc/core/class.data.php:508
|
743 |
+
#: inc/core/class.data.php:1164
|
744 |
msgid "New tab"
|
745 |
msgstr "Новая вкладка"
|
746 |
|
747 |
+
#: inc/core/class.data.php:511
|
748 |
+
#: inc/core/class.data.php:1167
|
749 |
msgid "Target"
|
750 |
msgstr "Цель"
|
751 |
|
752 |
+
#: inc/core/class.data.php:512
|
753 |
msgid "Button link target"
|
754 |
msgstr "Цель ссылки кнопки"
|
755 |
|
756 |
+
#: inc/core/class.data.php:519
|
757 |
+
#: inc/core/class.data.php:655
|
758 |
msgid "Soft"
|
759 |
msgstr "Мягкий"
|
760 |
|
761 |
+
#: inc/core/class.data.php:520
|
762 |
+
#: inc/core/class.data.php:656
|
763 |
msgid "Glass"
|
764 |
msgstr "Стекло"
|
765 |
|
766 |
+
#: inc/core/class.data.php:521
|
767 |
+
#: inc/core/class.data.php:657
|
768 |
msgid "Bubbles"
|
769 |
msgstr "Пузыри"
|
770 |
|
771 |
+
#: inc/core/class.data.php:522
|
772 |
+
#: inc/core/class.data.php:658
|
773 |
msgid "Noise"
|
774 |
msgstr "Шум"
|
775 |
|
776 |
+
#: inc/core/class.data.php:523
|
777 |
msgid "Stroked"
|
778 |
msgstr "Прошитый"
|
779 |
|
780 |
+
#: inc/core/class.data.php:524
|
781 |
msgid "3D"
|
782 |
msgstr "3D"
|
783 |
|
784 |
+
#: inc/core/class.data.php:527
|
785 |
msgid "Button background style preset"
|
786 |
msgstr "Стиль фона кнопки"
|
787 |
|
788 |
+
#: inc/core/class.data.php:533
|
789 |
msgid "Button background color"
|
790 |
msgstr "Цвет фона кнопки"
|
791 |
|
792 |
+
#: inc/core/class.data.php:540
|
793 |
msgid "Button text color"
|
794 |
msgstr "Цвет текста кнопки"
|
795 |
|
796 |
+
#: inc/core/class.data.php:546
|
797 |
msgid "Button size"
|
798 |
msgstr "Размер кнопки"
|
799 |
|
800 |
+
#: inc/core/class.data.php:551
|
801 |
msgid "Fluid"
|
802 |
msgstr "Резиновая"
|
803 |
|
804 |
+
#: inc/core/class.data.php:551
|
805 |
msgid "Fluid buttons has 100% width"
|
806 |
msgstr "Резиновые кнопки имеют ширину 100%"
|
807 |
|
808 |
+
#: inc/core/class.data.php:556
|
809 |
msgid "Centered"
|
810 |
msgstr "По центру"
|
811 |
|
812 |
+
#: inc/core/class.data.php:556
|
813 |
msgid "Is button centered on the page"
|
814 |
msgstr "Кнопка выровнена по центру страницы"
|
815 |
|
816 |
+
#: inc/core/class.data.php:562
|
817 |
+
#: inc/core/class.data.php:681
|
818 |
+
#: inc/core/class.data.php:717
|
819 |
msgid "Radius"
|
820 |
msgstr "Радиус"
|
821 |
|
822 |
+
#: inc/core/class.data.php:563
|
823 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
824 |
msgstr "Радиус углов кнопки. Значени auto рассчитывается на основе размера кнопки"
|
825 |
|
826 |
+
#: inc/core/class.data.php:568
|
827 |
+
#: inc/core/class.data.php:622
|
828 |
msgid "Icon"
|
829 |
msgstr "Иконка"
|
830 |
|
831 |
+
#: inc/core/class.data.php:569
|
832 |
msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
|
833 |
msgstr "Вы можете загрузить любую иконку для этой кнопки. Попробуйте начать с <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">этого бесплатного набора качественных иконок</a>. Скачайте архив, распакуйте иконки и загрузите любую из них в это поле"
|
834 |
|
835 |
+
#: inc/core/class.data.php:575
|
836 |
msgid "Dark"
|
837 |
msgstr "Темный"
|
838 |
|
839 |
+
#: inc/core/class.data.php:578
|
840 |
msgid "Text shadow color"
|
841 |
msgstr "Цвет тени текста"
|
842 |
|
843 |
+
#: inc/core/class.data.php:578
|
844 |
msgid "Color of button text shadow"
|
845 |
msgstr "Цвет тени текста кнопки"
|
846 |
|
847 |
+
#: inc/core/class.data.php:583
|
848 |
+
#: inc/core/class.data.php:1738
|
849 |
msgid "None"
|
850 |
msgstr "Нет"
|
851 |
|
852 |
+
#: inc/core/class.data.php:584
|
853 |
+
#: inc/core/class.data.php:789
|
854 |
msgid "Top"
|
855 |
msgstr "Сверху"
|
856 |
|
857 |
+
#: inc/core/class.data.php:586
|
858 |
+
#: inc/core/class.data.php:790
|
859 |
msgid "Bottom"
|
860 |
msgstr "Снизу"
|
861 |
|
862 |
+
#: inc/core/class.data.php:588
|
863 |
msgid "Top right"
|
864 |
msgstr "Сверху справа"
|
865 |
|
866 |
+
#: inc/core/class.data.php:589
|
867 |
msgid "Top left"
|
868 |
msgstr "Сверху слева"
|
869 |
|
870 |
+
#: inc/core/class.data.php:589
|
871 |
msgid "Bottom right"
|
872 |
msgstr "Снизу справа"
|
873 |
|
874 |
+
#: inc/core/class.data.php:589
|
875 |
msgid "Bottom left"
|
876 |
msgstr "Снизу слева"
|
877 |
|
878 |
+
#: inc/core/class.data.php:591
|
879 |
msgid "Text shadow position"
|
880 |
msgstr "Положение тени текста"
|
881 |
|
882 |
+
#: inc/core/class.data.php:591
|
883 |
msgid "Position of button text shadow"
|
884 |
msgstr "Положение тени текста кнопки"
|
885 |
|
886 |
+
#: inc/core/class.data.php:595
|
887 |
msgid "Description"
|
888 |
msgstr "Описание"
|
889 |
|
890 |
+
#: inc/core/class.data.php:596
|
891 |
msgid "Small description under button text. This option is incompatible with icon."
|
892 |
msgstr "Небольшое описание под текстом кнопки. Это описание не совместимо с иконками кнопок."
|
893 |
|
894 |
+
#: inc/core/class.data.php:604
|
895 |
msgid "Button text"
|
896 |
msgstr "Текст кнопки"
|
897 |
|
898 |
+
#: inc/core/class.data.php:605
|
899 |
msgid "Styled button"
|
900 |
msgstr "Стильная кнопка"
|
901 |
|
902 |
+
#: inc/core/class.data.php:609
|
903 |
msgid "Service"
|
904 |
msgstr "Услуга"
|
905 |
|
906 |
+
#: inc/core/class.data.php:615
|
907 |
+
#: inc/core/shortcodes.php:464
|
908 |
msgid "Service title"
|
909 |
msgstr "Название услуги"
|
910 |
|
911 |
+
#: inc/core/class.data.php:617
|
912 |
msgid "Service name"
|
913 |
msgstr "Название услуги"
|
914 |
|
915 |
+
#: inc/core/class.data.php:623
|
916 |
msgid "You can upload custom icon for this box"
|
917 |
msgstr "Вы можете загрузить свою иконку для этого блока"
|
918 |
|
919 |
+
#: inc/core/class.data.php:629
|
920 |
msgid "Icon size"
|
921 |
msgstr "Размер иконки"
|
922 |
|
923 |
+
#: inc/core/class.data.php:630
|
924 |
msgid "Size of the uploaded icon in pixels"
|
925 |
msgstr "Размер загруженной иконки в пикселях"
|
926 |
|
927 |
+
#: inc/core/class.data.php:638
|
928 |
msgid "Service description"
|
929 |
msgstr "Описание услуги"
|
930 |
|
931 |
+
#: inc/core/class.data.php:638
|
932 |
msgid "Service box with title"
|
933 |
msgstr "Блок услуга с заголовком"
|
934 |
|
935 |
+
#: inc/core/class.data.php:648
|
936 |
msgid "Box title"
|
937 |
msgstr "Заголовок блока"
|
938 |
|
939 |
+
#: inc/core/class.data.php:649
|
940 |
msgid "Text for the box title"
|
941 |
msgstr "Текст для заголовка блока"
|
942 |
|
943 |
+
#: inc/core/class.data.php:662
|
944 |
msgid "Box style preset"
|
945 |
msgstr "Стиль блока"
|
946 |
|
947 |
+
#: inc/core/class.data.php:668
|
948 |
msgid "Color"
|
949 |
msgstr "Цвет"
|
950 |
|
951 |
+
#: inc/core/class.data.php:669
|
952 |
msgid "Color for the box title and borders"
|
953 |
msgstr "Цвет заголовка блока и его рамки"
|
954 |
|
955 |
+
#: inc/core/class.data.php:675
|
956 |
msgid "Title text color"
|
957 |
msgstr "Цвет текста заголовка"
|
958 |
|
959 |
+
#: inc/core/class.data.php:675
|
960 |
msgid "Color for the box title text"
|
961 |
msgstr "Цвет текста в заголовке блока"
|
962 |
|
963 |
+
#: inc/core/class.data.php:682
|
964 |
msgid "Box corners radius"
|
965 |
msgstr "Радиус углов"
|
966 |
|
967 |
+
#: inc/core/class.data.php:691
|
968 |
msgid "Box content"
|
969 |
msgstr "Содержимое блока"
|
970 |
|
971 |
+
#: inc/core/class.data.php:692
|
972 |
msgid "Colored box with caption"
|
973 |
msgstr "Цветной блок с заголовком"
|
974 |
|
975 |
+
#: inc/core/class.data.php:704
|
976 |
msgid "Note background color"
|
977 |
msgstr "Цвет фона заметки"
|
978 |
|
979 |
+
#: inc/core/class.data.php:711
|
980 |
msgid "Note text color"
|
981 |
msgstr "Цвет текста заметки"
|
982 |
|
983 |
+
#: inc/core/class.data.php:717
|
984 |
msgid "Note corners radius"
|
985 |
msgstr "Радиус углов"
|
986 |
|
987 |
+
#: inc/core/class.data.php:725
|
988 |
msgid "Note text"
|
989 |
msgstr "Текст заметки"
|
990 |
|
991 |
+
#: inc/core/class.data.php:726
|
992 |
msgid "Colored box"
|
993 |
msgstr "Цветной блок"
|
994 |
|
995 |
+
#: inc/core/class.data.php:730
|
996 |
msgid "Lightbox"
|
997 |
msgstr "Лайтбокс"
|
998 |
|
999 |
+
#: inc/core/class.data.php:737
|
1000 |
msgid "Iframe"
|
1001 |
msgstr "Фрейм (iframe)"
|
1002 |
|
1003 |
+
#: inc/core/class.data.php:738
|
1004 |
msgid "Image"
|
1005 |
msgstr "Изображение"
|
1006 |
|
1007 |
+
#: inc/core/class.data.php:739
|
1008 |
msgid "Inline (html content)"
|
1009 |
msgstr "HTML элемент"
|
1010 |
|
1011 |
+
#: inc/core/class.data.php:742
|
1012 |
msgid "Content type"
|
1013 |
msgstr "Тип содержимого"
|
1014 |
|
1015 |
+
#: inc/core/class.data.php:743
|
1016 |
msgid "Select type of the lightbox window content"
|
1017 |
msgstr "Выберите тип содержимого в окне лайтбокса"
|
1018 |
|
1019 |
+
#: inc/core/class.data.php:747
|
1020 |
msgid "Content source"
|
1021 |
msgstr "Источник содержимого"
|
1022 |
|
1023 |
+
#: inc/core/class.data.php:748
|
1024 |
msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
|
1025 |
msgstr "Вставьте URL или CSS селектор. Используйте URL для типов содержимого Фрейм (iframe) и Изображение. Используйте CSS селектор для содержимого типа HTML элемент.<br />Примеры значений:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube видео (фрейм)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - загруженное изображение (изображение)<br /><b%value>http://example.com/</b> - любая веб-страница (фрейм)<br /><b%value>#contact-form</b> - любой HTML элемент (html элемент)"
|
1026 |
|
1027 |
+
#: inc/core/class.data.php:757
|
1028 |
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
1029 |
msgstr "[%prefix_button] Нажмите здесь чтобы посмотреть видео [/%prefix_button]"
|
1030 |
|
1031 |
+
#: inc/core/class.data.php:758
|
1032 |
msgid "Lightbox window with custom content"
|
1033 |
msgstr "Лайтбокс с произвольным содержимым"
|
1034 |
|
1035 |
+
#: inc/core/class.data.php:762
|
1036 |
msgid "Tooltip"
|
1037 |
msgstr "Подсказка"
|
1038 |
|
1039 |
+
#: inc/core/class.data.php:769
|
1040 |
msgid "Basic: Light"
|
1041 |
msgstr "Базовый: Светлый"
|
1042 |
|
1043 |
+
#: inc/core/class.data.php:770
|
1044 |
msgid "Basic: Dark"
|
1045 |
msgstr "Базовый: Темный"
|
1046 |
|
1047 |
+
#: inc/core/class.data.php:771
|
1048 |
msgid "Basic: Yellow"
|
1049 |
msgstr "Базовый: Желтый"
|
1050 |
|
1051 |
+
#: inc/core/class.data.php:772
|
1052 |
msgid "Basic: Green"
|
1053 |
msgstr "Базовый: Зеленый"
|
1054 |
|
1055 |
+
#: inc/core/class.data.php:773
|
1056 |
msgid "Basic: Red"
|
1057 |
msgstr "Базовый: Красный"
|
1058 |
|
1059 |
+
#: inc/core/class.data.php:774
|
1060 |
msgid "Basic: Blue"
|
1061 |
msgstr "Базовый: Голубой"
|
1062 |
|
1063 |
+
#: inc/core/class.data.php:775
|
1064 |
msgid "Youtube"
|
1065 |
msgstr "Youtube"
|
1066 |
|
1067 |
+
#: inc/core/class.data.php:776
|
1068 |
msgid "Tipsy"
|
1069 |
msgstr "Tipsy"
|
1070 |
|
1071 |
+
#: inc/core/class.data.php:777
|
1072 |
msgid "Bootstrap"
|
1073 |
msgstr "Bootstrap"
|
1074 |
|
1075 |
+
#: inc/core/class.data.php:778
|
1076 |
msgid "jTools"
|
1077 |
msgstr "jTools"
|
1078 |
|
1079 |
+
#: inc/core/class.data.php:779
|
1080 |
msgid "Tipped"
|
1081 |
msgstr "Tipped"
|
1082 |
|
1083 |
+
#: inc/core/class.data.php:780
|
1084 |
msgid "Cluetip"
|
1085 |
msgstr "Cluetip"
|
1086 |
|
1087 |
+
#: inc/core/class.data.php:784
|
1088 |
msgid "Tooltip window style"
|
1089 |
msgstr "Стиль окна подсказки"
|
1090 |
|
1091 |
+
#: inc/core/class.data.php:795
|
1092 |
msgid "Position"
|
1093 |
msgstr "Положение"
|
1094 |
|
1095 |
+
#: inc/core/class.data.php:796
|
1096 |
msgid "Tooltip position"
|
1097 |
msgstr "Положение всплывающей подсказки"
|
1098 |
|
1099 |
+
#: inc/core/class.data.php:801
|
1100 |
msgid "Shadow"
|
1101 |
msgstr "Тень"
|
1102 |
|
1103 |
+
#: inc/core/class.data.php:802
|
1104 |
msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
|
1105 |
msgstr "Добавить тень окну подсказки. Тень работает только для базовых стилей."
|
1106 |
|
1107 |
+
#: inc/core/class.data.php:807
|
1108 |
msgid "Rounded corners"
|
1109 |
msgstr "Скругление"
|
1110 |
|
1111 |
+
#: inc/core/class.data.php:808
|
1112 |
msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
|
1113 |
msgstr "Добавить скругленные уголки окну подсказки. Скругление работает только для базовых стилей."
|
1114 |
|
1115 |
+
#: inc/core/class.data.php:822
|
1116 |
msgid "Font size"
|
1117 |
msgstr "Размер шрифта"
|
1118 |
|
1119 |
+
#: inc/core/class.data.php:823
|
1120 |
msgid "Tooltip font size"
|
1121 |
msgstr "Размер шрифта подсказки"
|
1122 |
|
1123 |
+
#: inc/core/class.data.php:827
|
1124 |
msgid "Tooltip title"
|
1125 |
msgstr "Заголовок подсказки"
|
1126 |
|
1127 |
+
#: inc/core/class.data.php:828
|
1128 |
msgid "Enter title for tooltip window. Leave this field empty to hide the title"
|
1129 |
msgstr "Укажите заголовок окна подсказки. Оставьте поле пустым, чтобы скрыть заголовок"
|
1130 |
|
1131 |
+
#: inc/core/class.data.php:831
|
1132 |
+
#: inc/core/shortcodes.php:573
|
1133 |
msgid "Tooltip text"
|
1134 |
msgstr "Текст подсказки"
|
1135 |
|
1136 |
+
#: inc/core/class.data.php:832
|
1137 |
msgid "Tooltip content"
|
1138 |
msgstr "Содержимое подсказки"
|
1139 |
|
1140 |
+
#: inc/core/class.data.php:833
|
1141 |
msgid "Enter tooltip content here"
|
1142 |
msgstr "Введите сюда содержимое подсказки"
|
1143 |
|
1144 |
+
#: inc/core/class.data.php:838
|
1145 |
msgid "Show and hide on mouse hover"
|
1146 |
msgstr "Показать и скрыть при наведении мыши"
|
1147 |
|
1148 |
+
#: inc/core/class.data.php:839
|
1149 |
msgid "Show and hide by mouse click"
|
1150 |
msgstr "Показать и скрыть по клику мыши"
|
1151 |
|
1152 |
+
#: inc/core/class.data.php:840
|
1153 |
msgid "Always visible"
|
1154 |
msgstr "Всегда видима"
|
1155 |
|
1156 |
+
#: inc/core/class.data.php:843
|
1157 |
msgid "Behavior"
|
1158 |
msgstr "Поведение"
|
1159 |
|
1160 |
+
#: inc/core/class.data.php:844
|
1161 |
msgid "Select tooltip behavior"
|
1162 |
msgstr "Выберите поведение подсказки"
|
1163 |
|
1164 |
+
#: inc/core/class.data.php:849
|
1165 |
msgid "Close button"
|
1166 |
msgstr "Кнопка закрыть"
|
1167 |
|
1168 |
+
#: inc/core/class.data.php:850
|
1169 |
msgid "Show close button"
|
1170 |
msgstr "Показывать кнопку закрыть"
|
1171 |
|
1172 |
+
#: inc/core/class.data.php:859
|
1173 |
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1174 |
msgstr "[%prefix_button] Наведите мышку чтобы увидеть подсказку [/%prefix_button]"
|
1175 |
|
1176 |
+
#: inc/core/class.data.php:860
|
1177 |
msgid "Tooltip window with custom content"
|
1178 |
msgstr "Всплывающая подсказка с произвольным содержимым"
|
1179 |
|
1180 |
+
#: inc/core/class.data.php:864
|
1181 |
msgid "Private"
|
1182 |
msgstr "Заметка для авторов"
|
1183 |
|
1184 |
+
#: inc/core/class.data.php:875
|
1185 |
msgid "Private note text"
|
1186 |
msgstr "Текст приватной заметки"
|
1187 |
|
1188 |
+
#: inc/core/class.data.php:876
|
1189 |
msgid "Private note for post authors"
|
1190 |
msgstr "Приватный текст для других авторов"
|
1191 |
|
1192 |
+
#: inc/core/class.data.php:880
|
1193 |
msgid "YouTube"
|
1194 |
msgstr "YouTube"
|
1195 |
|
1196 |
+
#: inc/core/class.data.php:887
|
1197 |
+
#: inc/core/class.data.php:937
|
1198 |
+
#: inc/core/class.data.php:985
|
1199 |
+
#: inc/core/class.data.php:1236
|
1200 |
+
#: inc/core/class.data.php:1326
|
1201 |
msgid "Url"
|
1202 |
msgstr "Ссылка"
|
1203 |
|
1204 |
+
#: inc/core/class.data.php:888
|
1205 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1206 |
msgstr "Ссылка на страницу YouTube с видео. Пример: http://youtube.com/watch?v=XXXXXX"
|
1207 |
|
1208 |
+
#: inc/core/class.data.php:896
|
1209 |
+
#: inc/core/class.data.php:945
|
1210 |
+
#: inc/core/class.data.php:993
|
1211 |
+
#: inc/core/class.data.php:1034
|
1212 |
+
#: inc/core/class.data.php:1088
|
1213 |
+
#: inc/core/class.data.php:1335
|
1214 |
+
#: inc/core/class.data.php:1373
|
1215 |
+
#: inc/core/class.data.php:1422
|
1216 |
+
#: inc/core/class.data.php:1512
|
1217 |
+
#: inc/core/class.data.php:1618
|
1218 |
msgid "Width"
|
1219 |
msgstr "Ширина"
|
1220 |
|
1221 |
+
#: inc/core/class.data.php:897
|
1222 |
+
#: inc/core/class.data.php:946
|
1223 |
+
#: inc/core/class.data.php:994
|
1224 |
+
#: inc/core/class.data.php:1089
|
1225 |
msgid "Player width"
|
1226 |
msgstr "Ширина плеера"
|
1227 |
|
1228 |
+
#: inc/core/class.data.php:906
|
1229 |
+
#: inc/core/class.data.php:955
|
1230 |
+
#: inc/core/class.data.php:1003
|
1231 |
+
#: inc/core/class.data.php:1098
|
1232 |
msgid "Player height"
|
1233 |
msgstr "Высота плеера"
|
1234 |
|
1235 |
+
#: inc/core/class.data.php:911
|
1236 |
+
#: inc/core/class.data.php:960
|
1237 |
+
#: inc/core/class.data.php:1008
|
1238 |
+
#: inc/core/class.data.php:1350
|
1239 |
+
#: inc/core/class.data.php:1388
|
1240 |
+
#: inc/core/class.data.php:1435
|
1241 |
+
#: inc/core/class.data.php:1525
|
1242 |
msgid "Responsive"
|
1243 |
msgstr "Отзывчивость (responsive)"
|
1244 |
|
1245 |
+
#: inc/core/class.data.php:912
|
1246 |
+
#: inc/core/class.data.php:961
|
1247 |
+
#: inc/core/class.data.php:1009
|
1248 |
msgid "Ignore width and height parameters and make player responsive"
|
1249 |
msgstr "Игнорировать значения ширины и высоты и сделать проигрыватель отзывчивым"
|
1250 |
|
1251 |
+
#: inc/core/class.data.php:917
|
1252 |
+
#: inc/core/class.data.php:966
|
1253 |
+
#: inc/core/class.data.php:1040
|
1254 |
+
#: inc/core/class.data.php:1109
|
1255 |
+
#: inc/core/class.data.php:1470
|
1256 |
+
#: inc/core/class.data.php:1576
|
1257 |
msgid "Autoplay"
|
1258 |
msgstr "Автовоспроизведение"
|
1259 |
|
1260 |
+
#: inc/core/class.data.php:918
|
1261 |
+
#: inc/core/class.data.php:967
|
1262 |
msgid "Play video automatically when page is loaded"
|
1263 |
msgstr "Воспроизвести видео автоматически при открытии страницы"
|
1264 |
|
1265 |
+
#: inc/core/class.data.php:926
|
1266 |
msgid "YouTube video"
|
1267 |
msgstr "Видео YouTube"
|
1268 |
|
1269 |
+
#: inc/core/class.data.php:930
|
1270 |
msgid "Vimeo"
|
1271 |
msgstr "Vimeo"
|
1272 |
|
1273 |
+
#: inc/core/class.data.php:937
|
1274 |
msgid "Url of Vimeo page with video"
|
1275 |
msgstr "Ссылка на страницу Vimeo с видео"
|
1276 |
|
1277 |
+
#: inc/core/class.data.php:975
|
1278 |
msgid "Vimeo video"
|
1279 |
msgstr "Видео Vimeo"
|
1280 |
|
1281 |
+
#: inc/core/class.data.php:979
|
1282 |
msgid "Screenr"
|
1283 |
msgstr "Screenr"
|
1284 |
|
1285 |
+
#: inc/core/class.data.php:985
|
1286 |
msgid "Url of Screenr page with video"
|
1287 |
msgstr "Ссылка на страницу Screenr с видео"
|
1288 |
|
1289 |
+
#: inc/core/class.data.php:1017
|
1290 |
msgid "Screenr video"
|
1291 |
msgstr "Видео Screenr"
|
1292 |
|
1293 |
+
#: inc/core/class.data.php:1021
|
1294 |
msgid "Audio"
|
1295 |
msgstr "Аудио"
|
1296 |
|
1297 |
+
#: inc/core/class.data.php:1028
|
1298 |
+
#: inc/core/class.data.php:1067
|
1299 |
msgid "File"
|
1300 |
msgstr "Файл"
|
1301 |
|
1302 |
+
#: inc/core/class.data.php:1029
|
1303 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1304 |
msgstr "Ссылка на аудио-файл. Поддерживаемые форматы: mp3, ogg"
|
1305 |
|
1306 |
+
#: inc/core/class.data.php:1035
|
1307 |
msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1308 |
msgstr "Ширина плеера. Вы можете указать ширину в процентах и плеер станет отзывчивым (responsive). Примеры значений: <b%value>200px</b>, <b%value>100%</b>"
|
1309 |
|
1310 |
+
#: inc/core/class.data.php:1041
|
1311 |
+
#: inc/core/class.data.php:1110
|
1312 |
msgid "Play file automatically when page is loaded"
|
1313 |
msgstr "Воспроизводить файл автоматически при открытии страницы"
|
1314 |
|
1315 |
+
#: inc/core/class.data.php:1046
|
1316 |
+
#: inc/core/class.data.php:1115
|
1317 |
msgid "Loop"
|
1318 |
msgstr "Повтор"
|
1319 |
|
1320 |
+
#: inc/core/class.data.php:1047
|
1321 |
+
#: inc/core/class.data.php:1116
|
1322 |
msgid "Repeat when playback is ended"
|
1323 |
msgstr "Повторять, когда воспроизведение окночено"
|
1324 |
|
1325 |
+
#: inc/core/class.data.php:1056
|
1326 |
msgid "Custom audio player"
|
1327 |
msgstr "Настраиваемый аудио-плеер"
|
1328 |
|
1329 |
+
#: inc/core/class.data.php:1060
|
1330 |
msgid "Video"
|
1331 |
msgstr "Видео"
|
1332 |
|
1333 |
+
#: inc/core/class.data.php:1068
|
1334 |
msgid "Url to mp4/flv video-file"
|
1335 |
msgstr "Ссылка на mp4/flv видео-файл"
|
1336 |
|
1337 |
+
#: inc/core/class.data.php:1073
|
1338 |
msgid "Poster"
|
1339 |
msgstr "Постер"
|
1340 |
|
1341 |
+
#: inc/core/class.data.php:1074
|
1342 |
msgid "Url to poster image, that will be shown before playback"
|
1343 |
msgstr "Ссылка на изображение постера. Изображение будет показано перед началом воспроизведения"
|
1344 |
|
1345 |
+
#: inc/core/class.data.php:1080
|
1346 |
msgid "Player title"
|
1347 |
msgstr "Заголовок плеера"
|
1348 |
|
1349 |
+
#: inc/core/class.data.php:1103
|
1350 |
msgid "Controls"
|
1351 |
msgstr "Элементы управления"
|
1352 |
|
1353 |
+
#: inc/core/class.data.php:1104
|
1354 |
msgid "Show player controls (play/pause etc.) or not"
|
1355 |
msgstr "Показывать элементы управления плеером (воспроизведение/пауза и т.д.) или нет"
|
1356 |
|
1357 |
+
#: inc/core/class.data.php:1125
|
1358 |
msgid "Custom video player"
|
1359 |
msgstr "Настраиваемый видео-плеер"
|
1360 |
|
1361 |
+
#: inc/core/class.data.php:1129
|
1362 |
msgid "Table"
|
1363 |
msgstr "Таблица"
|
1364 |
|
1365 |
+
#: inc/core/class.data.php:1136
|
1366 |
msgid "CSV file"
|
1367 |
msgstr "CSV файл"
|
1368 |
|
1369 |
+
#: inc/core/class.data.php:1137
|
1370 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1371 |
msgstr "Если вы хотите создать HTML-таблицу из CSV-файла, то загрузите его в это поле"
|
1372 |
|
1373 |
+
#: inc/core/class.data.php:1146
|
1374 |
msgid ""
|
1375 |
"<table>\n"
|
1376 |
"<tr>\n"
|
1394 |
"</tr>\n"
|
1395 |
"</table>"
|
1396 |
|
1397 |
+
#: inc/core/class.data.php:1147
|
1398 |
msgid "Styled table from HTML or CSV file"
|
1399 |
msgstr "Стильная таблица из HTML или CSV файла"
|
1400 |
|
1401 |
+
#: inc/core/class.data.php:1151
|
1402 |
msgid "Permalink"
|
1403 |
msgstr "Постоянная ссылка"
|
1404 |
|
1405 |
+
#: inc/core/class.data.php:1157
|
1406 |
msgid "ID"
|
1407 |
msgstr "ID"
|
1408 |
|
1409 |
+
#: inc/core/class.data.php:1158
|
1410 |
msgid "Post or page ID"
|
1411 |
msgstr "ID записи или страницы"
|
1412 |
|
1413 |
+
#: inc/core/class.data.php:1168
|
1414 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1415 |
msgstr "Цель ссылки. blank - означает что ссылка будет открыта в новом окне или вкладке"
|
1416 |
|
1417 |
+
#: inc/core/class.data.php:1178
|
1418 |
msgid "Permalink to specified post/page"
|
1419 |
msgstr "Постоянная ссылка на страницу"
|
1420 |
|
1421 |
+
#: inc/core/class.data.php:1182
|
1422 |
msgid "Members"
|
1423 |
msgstr "Участники"
|
1424 |
|
1425 |
+
#: inc/core/class.data.php:1187
|
1426 |
+
#: inc/core/shortcodes.php:872
|
1427 |
msgid "This content is for registered users only. Please %login%."
|
1428 |
msgstr "Это содержимое только для авторизованых пользователей. Пожалуйста %login%."
|
1429 |
|
1430 |
+
#: inc/core/class.data.php:1188
|
1431 |
msgid "Message"
|
1432 |
msgstr "Сообщение"
|
1433 |
|
1434 |
+
#: inc/core/class.data.php:1188
|
1435 |
msgid "Message for not logged users"
|
1436 |
msgstr "Собщение для неавторизованных"
|
1437 |
|
1438 |
+
#: inc/core/class.data.php:1193
|
1439 |
msgid "Box color"
|
1440 |
msgstr "Цвет блока"
|
1441 |
|
1442 |
+
#: inc/core/class.data.php:1193
|
1443 |
msgid "This color will applied only to box for not logged users"
|
1444 |
msgstr "Этот цвет будет применен только к блоку для не авторизованных посетителей"
|
1445 |
|
1446 |
+
#: inc/core/class.data.php:1196
|
1447 |
+
#: inc/core/shortcodes.php:875
|
1448 |
msgid "login"
|
1449 |
msgstr "войдите"
|
1450 |
|
1451 |
+
#: inc/core/class.data.php:1197
|
1452 |
msgid "Login link text"
|
1453 |
msgstr "Текст ссылки войти"
|
1454 |
|
1455 |
+
#: inc/core/class.data.php:1197
|
1456 |
msgid "Text for the login link"
|
1457 |
msgstr "Текст ссылки ВОЙТИ"
|
1458 |
|
1459 |
+
#: inc/core/class.data.php:1201
|
1460 |
msgid "Login link url"
|
1461 |
msgstr "Адрес ссылки войти"
|
1462 |
|
1463 |
+
#: inc/core/class.data.php:1210
|
1464 |
msgid "Content for logged members"
|
1465 |
msgstr "Содержимое для авторизованых пользователей"
|
1466 |
|
1467 |
+
#: inc/core/class.data.php:1211
|
1468 |
msgid "Content for logged in members only"
|
1469 |
msgstr "Ссодержимое для авторизованых"
|
1470 |
|
1471 |
+
#: inc/core/class.data.php:1215
|
1472 |
msgid "Guests"
|
1473 |
msgstr "Гости"
|
1474 |
|
1475 |
+
#: inc/core/class.data.php:1225
|
1476 |
msgid "Content for guests"
|
1477 |
msgstr "Содержимое для гостей"
|
1478 |
|
1479 |
+
#: inc/core/class.data.php:1225
|
1480 |
msgid "Content for guests only"
|
1481 |
msgstr "Ссодержимое только для гостей"
|
1482 |
|
1483 |
+
#: inc/core/class.data.php:1229
|
1484 |
msgid "RSS Feed"
|
1485 |
msgstr "RSS лента"
|
1486 |
|
1487 |
+
#: inc/core/class.data.php:1237
|
1488 |
msgid "Url to RSS-feed"
|
1489 |
msgstr "Ссылка на RSS-ленту"
|
1490 |
|
1491 |
+
#: inc/core/class.data.php:1242
|
1492 |
msgid "Limit"
|
1493 |
msgstr "Лимит"
|
1494 |
|
1495 |
+
#: inc/core/class.data.php:1242
|
1496 |
msgid "Number of items to show"
|
1497 |
msgstr "Количество элементов для отображения"
|
1498 |
|
1499 |
+
#: inc/core/class.data.php:1250
|
1500 |
msgid "Feed grabber"
|
1501 |
msgstr "Граббер новостных лент"
|
1502 |
|
1503 |
+
#: inc/core/class.data.php:1254
|
1504 |
msgid "Menu"
|
1505 |
msgstr "Меню"
|
1506 |
|
1507 |
+
#: inc/core/class.data.php:1261
|
1508 |
msgid "Menu name"
|
1509 |
msgstr "Имя меню"
|
1510 |
|
1511 |
+
#: inc/core/class.data.php:1261
|
1512 |
msgid "Custom menu name. Ex: Main menu"
|
1513 |
msgstr "Имя произвольного меню. Например: Главное меню"
|
1514 |
|
1515 |
+
#: inc/core/class.data.php:1269
|
1516 |
msgid "Custom menu by name"
|
1517 |
msgstr "Произвольное меню"
|
1518 |
|
1519 |
+
#: inc/core/class.data.php:1273
|
1520 |
msgid "Sub pages"
|
1521 |
msgstr "Подстраницы"
|
1522 |
|
1523 |
+
#: inc/core/class.data.php:1280
|
1524 |
+
#: inc/core/class.data.php:1306
|
1525 |
msgid "Depth"
|
1526 |
msgstr "Глубина"
|
1527 |
|
1528 |
+
#: inc/core/class.data.php:1281
|
1529 |
msgid "Max depth level of children pages"
|
1530 |
msgstr "Максимальная глубина дочерних страниц"
|
1531 |
|
1532 |
+
#: inc/core/class.data.php:1286
|
1533 |
msgid "Parent ID"
|
1534 |
msgstr "ID родителя"
|
1535 |
|
1536 |
+
#: inc/core/class.data.php:1287
|
1537 |
msgid "ID of the parent page. Leave blank to use current page"
|
1538 |
msgstr "ID родительской страницы. Оставьте пустым, чтобы использовать текущую страницу"
|
1539 |
|
1540 |
+
#: inc/core/class.data.php:1295
|
1541 |
msgid "List of sub pages"
|
1542 |
msgstr "Список дочерних страниц"
|
1543 |
|
1544 |
+
#: inc/core/class.data.php:1299
|
1545 |
msgid "Siblings"
|
1546 |
msgstr "Соседние страницы"
|
1547 |
|
1548 |
+
#: inc/core/class.data.php:1307
|
1549 |
msgid "Max depth level"
|
1550 |
msgstr "Максимальный уровень вложенности"
|
1551 |
|
1552 |
+
#: inc/core/class.data.php:1315
|
1553 |
msgid "List of cureent page siblings"
|
1554 |
msgstr "Список страниц, соседних с текущей"
|
1555 |
|
1556 |
+
#: inc/core/class.data.php:1319
|
1557 |
msgid "Document"
|
1558 |
msgstr "Документ"
|
1559 |
|
1560 |
+
#: inc/core/class.data.php:1327
|
1561 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1562 |
msgstr "Ссылка на загруженный документ. Поддерживаемые форматы: doc, xls, pdf и т.д."
|
1563 |
|
1564 |
+
#: inc/core/class.data.php:1336
|
1565 |
msgid "Viewer width"
|
1566 |
msgstr "Ширина просмотрщика"
|
1567 |
|
1568 |
+
#: inc/core/class.data.php:1345
|
1569 |
msgid "Viewer height"
|
1570 |
msgstr "Высота просмотрщика"
|
1571 |
|
1572 |
+
#: inc/core/class.data.php:1351
|
1573 |
msgid "Ignore width and height parameters and make viewer responsive"
|
1574 |
msgstr "Игнорировать значения ширины и высоты и сделать просмотрщик отзывчивым"
|
1575 |
|
1576 |
+
#: inc/core/class.data.php:1359
|
1577 |
msgid "Document viewer by Google"
|
1578 |
msgstr "Просмотрщик документов от Google"
|
1579 |
|
1580 |
+
#: inc/core/class.data.php:1363
|
1581 |
msgid "Gmap"
|
1582 |
msgstr "Google карта"
|
1583 |
|
1584 |
+
#: inc/core/class.data.php:1374
|
1585 |
msgid "Map width"
|
1586 |
msgstr "Ширина карты"
|
1587 |
|
1588 |
+
#: inc/core/class.data.php:1383
|
1589 |
msgid "Map height"
|
1590 |
msgstr "Высота карты"
|
1591 |
|
1592 |
+
#: inc/core/class.data.php:1389
|
1593 |
msgid "Ignore width and height parameters and make map responsive"
|
1594 |
msgstr "Игнорировать значения ширины и высоты и сделать карту отзывчивой"
|
1595 |
|
1596 |
+
#: inc/core/class.data.php:1394
|
1597 |
msgid "Marker"
|
1598 |
msgstr "Маркер"
|
1599 |
|
1600 |
+
#: inc/core/class.data.php:1395
|
1601 |
msgid "Address for the marker. You can type it in any language"
|
1602 |
msgstr "Адрес маркера. Вы можете ввести адрес на русском языке"
|
1603 |
|
1604 |
+
#: inc/core/class.data.php:1403
|
1605 |
msgid "Maps by Google"
|
1606 |
msgstr "Карты от Google"
|
1607 |
|
1608 |
+
#: inc/core/class.data.php:1407
|
1609 |
msgid "Slider"
|
1610 |
msgstr "Слайдер"
|
1611 |
|
1612 |
+
#: inc/core/class.data.php:1414
|
1613 |
msgid "Choose source gallery, that will be used for this slider"
|
1614 |
msgstr "Выберите галерею-источник, которая будет использована для создания этого слайдера"
|
1615 |
|
1616 |
+
#: inc/core/class.data.php:1422
|
1617 |
msgid "Slider width (in pixels)"
|
1618 |
msgstr "Ширина слайдера (в пикселях)"
|
1619 |
|
1620 |
+
#: inc/core/class.data.php:1430
|
1621 |
msgid "Slider height (in pixels)"
|
1622 |
msgstr "Высота слайдера (в пикселях)"
|
1623 |
|
1624 |
+
#: inc/core/class.data.php:1436
|
1625 |
msgid "Ignore width and height parameters and make slider responsive"
|
1626 |
msgstr "Игнорировать значения ширины и высоты и сделать слайдер отзывчивым"
|
1627 |
|
1628 |
+
#: inc/core/class.data.php:1441
|
1629 |
+
#: inc/core/class.data.php:1547
|
1630 |
+
#: inc/core/class.data.php:1636
|
1631 |
msgid "Show titles"
|
1632 |
msgstr "Показывать заголовки"
|
1633 |
|
1634 |
+
#: inc/core/class.data.php:1441
|
1635 |
msgid "Display slide titles"
|
1636 |
msgstr "Отображать заголовки слайдов"
|
1637 |
|
1638 |
+
#: inc/core/class.data.php:1446
|
1639 |
msgid "Is slider centered on the page"
|
1640 |
msgstr "Слайдер выровнен по центру страницы"
|
1641 |
|
1642 |
+
#: inc/core/class.data.php:1451
|
1643 |
+
#: inc/core/class.data.php:1557
|
1644 |
msgid "Arrows"
|
1645 |
msgstr "Стрелки"
|
1646 |
|
1647 |
+
#: inc/core/class.data.php:1451
|
1648 |
+
#: inc/core/class.data.php:1557
|
1649 |
msgid "Show left and right arrows"
|
1650 |
msgstr "Показывать стрелки влево/вправо"
|
1651 |
|
1652 |
+
#: inc/core/class.data.php:1456
|
1653 |
+
#: inc/core/class.data.php:1562
|
1654 |
msgid "Pagination"
|
1655 |
msgstr "Страницы"
|
1656 |
|
1657 |
+
#: inc/core/class.data.php:1457
|
1658 |
+
#: inc/core/class.data.php:1563
|
1659 |
msgid "Show pagination"
|
1660 |
msgstr "Показывать страницы"
|
1661 |
|
1662 |
+
#: inc/core/class.data.php:1461
|
1663 |
+
#: inc/core/class.data.php:1567
|
1664 |
msgid "Mouse wheel control"
|
1665 |
msgstr "Управление колесом мыши"
|
1666 |
|
1667 |
+
#: inc/core/class.data.php:1462
|
1668 |
msgid "Allow to change slides with mouse wheel"
|
1669 |
msgstr "Разрешить перелистывание слайдов колесом мышки"
|
1670 |
|
1671 |
+
#: inc/core/class.data.php:1471
|
1672 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1673 |
msgstr "Укажите интервал между автоматической сменой слайдов. Задайте 0, чтобы отключить автовоспроизведение"
|
1674 |
|
1675 |
+
#: inc/core/class.data.php:1479
|
1676 |
+
#: inc/core/class.data.php:1585
|
1677 |
msgid "Speed"
|
1678 |
msgstr "Скорость"
|
1679 |
|
1680 |
+
#: inc/core/class.data.php:1479
|
1681 |
+
#: inc/core/class.data.php:1585
|
1682 |
msgid "Specify animation speed"
|
1683 |
msgstr "Укажите скорость анимации"
|
1684 |
|
1685 |
+
#: inc/core/class.data.php:1484
|
1686 |
+
#: inc/core/class.data.php:1590
|
1687 |
+
#: inc/core/class.data.php:1642
|
1688 |
msgid "Links target"
|
1689 |
msgstr "Цель ссылок"
|
1690 |
|
1691 |
+
#: inc/core/class.data.php:1485
|
1692 |
msgid "Open slides links in new window/tab"
|
1693 |
msgstr "Открывать ссылки слайдов в новом окне или вкладке"
|
1694 |
|
1695 |
+
#: inc/core/class.data.php:1493
|
1696 |
msgid "Customizable image slider"
|
1697 |
msgstr "Настраиваемый слайдер изображений"
|
1698 |
|
1699 |
+
#: inc/core/class.data.php:1497
|
1700 |
msgid "Carousel"
|
1701 |
msgstr "Карусель"
|
1702 |
|
1703 |
+
#: inc/core/class.data.php:1504
|
1704 |
msgid "Choose source gallery, that will be used for this carousel"
|
1705 |
msgstr "Выберите галерею-источник, которая будет использована для создания этой карусели"
|
1706 |
|
1707 |
+
#: inc/core/class.data.php:1512
|
1708 |
msgid "Carousel width (in pixels)"
|
1709 |
msgstr "Ширина карусели (в пикселях)"
|
1710 |
|
1711 |
+
#: inc/core/class.data.php:1520
|
1712 |
msgid "Carousel height (in pixels)"
|
1713 |
msgstr "Высота карусели (в пикселях)"
|
1714 |
|
1715 |
+
#: inc/core/class.data.php:1526
|
1716 |
msgid "Ignore width and height parameters and make carousel responsive"
|
1717 |
msgstr "Игнорировать значения ширины и высоты и сделать карусель отзывчивой"
|
1718 |
|
1719 |
+
#: inc/core/class.data.php:1533
|
1720 |
msgid "Items to show"
|
1721 |
msgstr "Количество элементов для отображения"
|
1722 |
|
1723 |
+
#: inc/core/class.data.php:1534
|
1724 |
msgid "How much carousel items is visible"
|
1725 |
msgstr "Сколько элементов карусели видны постоянно"
|
1726 |
|
1727 |
+
#: inc/core/class.data.php:1541
|
1728 |
msgid "Scroll number"
|
1729 |
msgstr "Кол-во прокручиваемых"
|
1730 |
|
1731 |
+
#: inc/core/class.data.php:1542
|
1732 |
msgid "How much items are scrolled in one transition"
|
1733 |
msgstr "Сколько элементов карусели прокручивается за один переход"
|
1734 |
|
1735 |
+
#: inc/core/class.data.php:1547
|
1736 |
msgid "Display titles for each item"
|
1737 |
msgstr "Показывать заголовки для каждого элемента карусели"
|
1738 |
|
1739 |
+
#: inc/core/class.data.php:1552
|
1740 |
msgid "Is carousel centered on the page"
|
1741 |
msgstr "Карусель выровнена по центру страницы"
|
1742 |
|
1743 |
+
#: inc/core/class.data.php:1568
|
1744 |
msgid "Allow to rotate carousel with mouse wheel"
|
1745 |
msgstr "Разрешить прокрутку карусели колесом мыши"
|
1746 |
|
1747 |
+
#: inc/core/class.data.php:1577
|
1748 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1749 |
msgstr "Укажите интервал между автоматической анимацией. Задайте 0, чтобы отключить автовоспроизведение"
|
1750 |
|
1751 |
+
#: inc/core/class.data.php:1591
|
1752 |
msgid "Open carousel links in new window/tab"
|
1753 |
msgstr "Открывать ссылки карусели в новом окне или вкладке"
|
1754 |
|
1755 |
+
#: inc/core/class.data.php:1599
|
1756 |
msgid "Customizable image carousel"
|
1757 |
msgstr "Настраиваемая карусель изображений"
|
1758 |
|
1759 |
+
#: inc/core/class.data.php:1610
|
1760 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1761 |
msgstr "Выберите галерею-источник, которая будет использована для этого шорткода"
|
1762 |
|
1763 |
+
#: inc/core/class.data.php:1618
|
1764 |
msgid "Single item width (in pixels)"
|
1765 |
msgstr "Ширина одного изображения (в пикселях)"
|
1766 |
|
1767 |
+
#: inc/core/class.data.php:1626
|
1768 |
msgid "Single item height (in pixels)"
|
1769 |
msgstr "Высота одного изображения (в пикселях)"
|
1770 |
|
1771 |
+
#: inc/core/class.data.php:1631
|
1772 |
msgid "Never"
|
1773 |
msgstr "Никогда"
|
1774 |
|
1775 |
+
#: inc/core/class.data.php:1632
|
1776 |
msgid "On mouse over"
|
1777 |
msgstr "При наведении мыши"
|
1778 |
|
1779 |
+
#: inc/core/class.data.php:1633
|
1780 |
msgid "Always"
|
1781 |
msgstr "Всегда"
|
1782 |
|
1783 |
+
#: inc/core/class.data.php:1637
|
1784 |
msgid "Title display mode"
|
1785 |
msgstr "Режим отображения заголовков"
|
1786 |
|
1787 |
+
#: inc/core/class.data.php:1642
|
1788 |
msgid "Open links in new window/tab"
|
1789 |
msgstr "Открывать ссылки в новом окне или вкладке"
|
1790 |
|
1791 |
+
#: inc/core/class.data.php:1650
|
1792 |
msgid "Customizable image gallery"
|
1793 |
msgstr "Настраиваемая галерея изображений"
|
1794 |
|
1795 |
+
#: inc/core/class.data.php:1654
|
1796 |
msgid "Posts"
|
1797 |
msgstr "Записи"
|
1798 |
|
1799 |
+
#: inc/core/class.data.php:1659
|
1800 |
msgid "Template"
|
1801 |
msgstr "Шаблон"
|
1802 |
|
1803 |
+
#: inc/core/class.data.php:1660
|
1804 |
msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1805 |
msgstr "<b>Не изменяйте значение этого поля, если вы не понимаете описания ниже.</b><br/>Относительный путь к файлу шаблона. Шаблоны по умолчанию расположены в папке с плагином (папка templates). Вы можете скопировать шаблоны в папку со своей темой и изменить как вам угодно. Вы можете использовать следующие шаблоны, которые уже поставляются с плагином и находятся в его папке:<br/><b%value>templates/default-loop.php</b> - обычный цикл постов<br/><b%value>templates/teaser-loop.php</b> - цикл постов в виде тизеров, изображения + заголовки<br/><b%value>templates/single-post.php</b> - шаблон одиночной записи или страницы<br/><b%value>templates/list-loop.php</b> - маркированный список с заголовками постов"
|
1806 |
|
1807 |
+
#: inc/core/class.data.php:1664
|
1808 |
msgid "Post ID's"
|
1809 |
msgstr "ID постов"
|
1810 |
|
1811 |
+
#: inc/core/class.data.php:1665
|
1812 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1813 |
msgstr "Введите ID постов, которые хотите отобразить, разделенные запятыми"
|
1814 |
|
1815 |
+
#: inc/core/class.data.php:1673
|
1816 |
msgid "Posts per page"
|
1817 |
msgstr "Кол-во записей"
|
1818 |
|
1819 |
+
#: inc/core/class.data.php:1674
|
1820 |
msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
|
1821 |
msgstr "Укажите число записей, которое хотите отобразить. Введите -1 чтобы отобразить все найденные записи"
|
1822 |
|
1823 |
+
#: inc/core/class.data.php:1681
|
1824 |
msgid "Post types"
|
1825 |
msgstr "Типы постов"
|
1826 |
|
1827 |
+
#: inc/core/class.data.php:1682
|
1828 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1829 |
msgstr "Выберите типы постов. Удерживайте клавишу Ctrl чтобы выбрать несколько типов"
|
1830 |
|
1831 |
+
#: inc/core/class.data.php:1688
|
1832 |
msgid "Taxonomy"
|
1833 |
msgstr "Таксономия"
|
1834 |
|
1835 |
+
#: inc/core/class.data.php:1689
|
1836 |
msgid "Select taxonomy to show posts from"
|
1837 |
msgstr "Выберите таксономию, чтобы посмотреть её категории и выбрать их"
|
1838 |
|
1839 |
+
#: inc/core/class.data.php:1696
|
1840 |
msgid "Terms"
|
1841 |
msgstr "Категории (terms)"
|
1842 |
|
1843 |
+
#: inc/core/class.data.php:1696
|
1844 |
msgid "Select terms to show posts from"
|
1845 |
msgstr "Выберите категории, из которых нужно показать записи"
|
1846 |
|
1847 |
+
#: inc/core/class.data.php:1701
|
1848 |
msgid "Taxonomy term operator"
|
1849 |
msgstr "Оператор выбора категорий"
|
1850 |
|
1851 |
+
#: inc/core/class.data.php:1702
|
1852 |
msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
|
1853 |
msgstr "IN - будут показана записи имеющие любую из выбранных категорий<br/>NOT IN - будут показаны записи, которые НЕ имеют ни одной из выбранных категорий<br/>AND - будут показаны записи, имеющие ТОЛЬКО выбранные категории"
|
1854 |
|
1855 |
+
#: inc/core/class.data.php:1709
|
1856 |
msgid "Authors"
|
1857 |
msgstr "Авторы"
|
1858 |
|
1859 |
+
#: inc/core/class.data.php:1710
|
1860 |
msgid "Choose the authors whose posts you want to show"
|
1861 |
msgstr "Выберите авторов, чьи записи хотите показать"
|
1862 |
|
1863 |
+
#: inc/core/class.data.php:1714
|
1864 |
msgid "Meta key"
|
1865 |
msgstr "Произвольное поле"
|
1866 |
|
1867 |
+
#: inc/core/class.data.php:1715
|
1868 |
msgid "Enter meta key name to show posts that have this key"
|
1869 |
msgstr "Введите оригинальное имя произвольного поля, чтобы показать все записи у которых это поле задано"
|
1870 |
|
1871 |
+
#: inc/core/class.data.php:1722
|
1872 |
msgid "Offset"
|
1873 |
msgstr "Смещение (offset)"
|
1874 |
|
1875 |
+
#: inc/core/class.data.php:1723
|
1876 |
msgid "Specify offset to start posts loop not from first post"
|
1877 |
msgstr "Укажите кол-во записей, которые будут пропущены и не показаны. Например, если указать 2, то будут показаны записи начиная со третьей"
|
1878 |
|
1879 |
+
#: inc/core/class.data.php:1728
|
1880 |
msgid "Descending"
|
1881 |
msgstr "По убыванию"
|
1882 |
|
1883 |
+
#: inc/core/class.data.php:1729
|
1884 |
msgid "Ascending"
|
1885 |
msgstr "По возрастанию"
|
1886 |
|
1887 |
+
#: inc/core/class.data.php:1732
|
1888 |
msgid "Order"
|
1889 |
msgstr "Порядок"
|
1890 |
|
1891 |
+
#: inc/core/class.data.php:1733
|
1892 |
msgid "Posts order"
|
1893 |
msgstr "Порядок сортировки записей"
|
1894 |
|
1895 |
+
#: inc/core/class.data.php:1739
|
1896 |
msgid "Post ID"
|
1897 |
msgstr "ID записи"
|
1898 |
|
1899 |
+
#: inc/core/class.data.php:1740
|
1900 |
msgid "Post author"
|
1901 |
msgstr "Автор записи"
|
1902 |
|
1903 |
+
#: inc/core/class.data.php:1741
|
1904 |
msgid "Post title"
|
1905 |
msgstr "Заголовок записи"
|
1906 |
|
1907 |
+
#: inc/core/class.data.php:1742
|
1908 |
msgid "Post slug"
|
1909 |
msgstr "Ссылка записи (slug)"
|
1910 |
|
1911 |
+
#: inc/core/class.data.php:1743
|
1912 |
msgid "Date"
|
1913 |
msgstr "Дата"
|
1914 |
|
1915 |
+
#: inc/core/class.data.php:1743
|
1916 |
msgid "Last modified date"
|
1917 |
msgstr "Дата изменения"
|
1918 |
|
1919 |
+
#: inc/core/class.data.php:1744
|
1920 |
+
#: inc/core/class.data.php:1754
|
1921 |
msgid "Post parent"
|
1922 |
msgstr "Родитель"
|
1923 |
|
1924 |
+
#: inc/core/class.data.php:1745
|
1925 |
msgid "Random"
|
1926 |
msgstr "Случайно"
|
1927 |
|
1928 |
+
#: inc/core/class.data.php:1745
|
1929 |
msgid "Comments number"
|
1930 |
msgstr "Кол-во комментариев"
|
1931 |
|
1932 |
+
#: inc/core/class.data.php:1746
|
1933 |
msgid "Menu order"
|
1934 |
msgstr "Порядок меню"
|
1935 |
|
1936 |
+
#: inc/core/class.data.php:1746
|
1937 |
msgid "Meta key values"
|
1938 |
msgstr "Значение произвольного поля"
|
1939 |
|
1940 |
+
#: inc/core/class.data.php:1749
|
1941 |
msgid "Order by"
|
1942 |
msgstr "Сортировать по"
|
1943 |
|
1944 |
+
#: inc/core/class.data.php:1750
|
1945 |
msgid "Order posts by"
|
1946 |
msgstr "Сортировать записи по следующему признаку"
|
1947 |
|
1948 |
+
#: inc/core/class.data.php:1755
|
1949 |
msgid "Show childrens of entered post (enter post ID)"
|
1950 |
msgstr "Отобразить потомков введенной записи/страницы (нужно вводить ID)"
|
1951 |
|
1952 |
+
#: inc/core/class.data.php:1760
|
1953 |
msgid "Published"
|
1954 |
msgstr "Опубликован"
|
1955 |
|
1956 |
+
#: inc/core/class.data.php:1761
|
1957 |
msgid "Pending"
|
1958 |
msgstr "Ожидает"
|
1959 |
|
1960 |
+
#: inc/core/class.data.php:1762
|
1961 |
msgid "Draft"
|
1962 |
msgstr "Черновик"
|
1963 |
|
1964 |
+
#: inc/core/class.data.php:1763
|
1965 |
msgid "Auto-draft"
|
1966 |
msgstr "Авто-черновик"
|
1967 |
|
1968 |
+
#: inc/core/class.data.php:1764
|
1969 |
msgid "Future post"
|
1970 |
msgstr "Запланирован"
|
1971 |
|
1972 |
+
#: inc/core/class.data.php:1765
|
1973 |
msgid "Private post"
|
1974 |
msgstr "Приватная запись"
|
1975 |
|
1976 |
+
#: inc/core/class.data.php:1766
|
1977 |
msgid "Inherit"
|
1978 |
msgstr "Вложенный"
|
1979 |
|
1980 |
+
#: inc/core/class.data.php:1767
|
1981 |
msgid "Trashed"
|
1982 |
msgstr "В корзине"
|
1983 |
|
1984 |
+
#: inc/core/class.data.php:1768
|
1985 |
msgid "Any"
|
1986 |
msgstr "Любой"
|
1987 |
|
1988 |
+
#: inc/core/class.data.php:1771
|
1989 |
msgid "Post status"
|
1990 |
msgstr "Статус записи"
|
1991 |
|
1992 |
+
#: inc/core/class.data.php:1772
|
1993 |
msgid "Show only posts with selected status"
|
1994 |
msgstr "Показать только записи с выбранным статусом"
|
1995 |
|
1996 |
+
#: inc/core/class.data.php:1777
|
1997 |
msgid "Ignore sticky"
|
1998 |
msgstr "Игнорировать прикрепленные"
|
1999 |
|
2000 |
+
#: inc/core/class.data.php:1778
|
2001 |
msgid "Select Yes to ignore posts that is sticked"
|
2002 |
msgstr "Выберите Да, чтобы не показывать прикрепленные (прилепленные) записи"
|
2003 |
|
2004 |
+
#: inc/core/class.data.php:1782
|
2005 |
msgid "Custom posts query with customizable template"
|
2006 |
msgstr "Произвольный запрос записей/страниц с настраиваемым шаблоном"
|
2007 |
|
2104 |
msgid "Access denied"
|
2105 |
msgstr "Доступ запрещен"
|
2106 |
|
2107 |
+
#: inc/core/class.requirements.php:23
|
2108 |
msgid "<b>Shortcodes Ultimate:</b> Your current theme does not use wp_footer tag. Shortcodes will not work properly. Please add the wp_footer in the footer of your theme."
|
2109 |
msgstr "<b>Shortcodes Ultimate:</b> ваша текущая тема не использует тег wp_footer. Шорткоды не будут работать правильно. Пожалуйста добавьте этот тег в подвале вашей темы."
|
2110 |
|
2111 |
+
#: inc/core/class.requirements.php:23
|
2112 |
msgid "Learn more"
|
2113 |
msgstr "Узнать больше"
|
2114 |
|
2115 |
+
#: inc/core/class.requirements.php:38
|
2116 |
#, php-format
|
2117 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your version of WordPress (%s).<br />Reccomended WordPress version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
2118 |
msgstr "<h1>Упс! Плагин не активирован…</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией WordPress (%s).<br />Рекомендуемая версия WordPress – %s (или выше).</p><a href=\"%s\">← Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать →</a>"
|
2119 |
|
2120 |
+
#: inc/core/class.requirements.php:39
|
2121 |
#, php-format
|
2122 |
msgid "<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not fully compatible with your PHP version (%s).<br />Reccomended PHP version – %s (or higher).</p><a href=\"%s\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
2123 |
msgstr "<h1>Упс! Плагин не активирован…</h1> <p>Плагин Shortcodes Ultimate не полностью совместим с вашей версией PHP (%s).<br />Рекомендуемая версия PHP – %s (или выше).</p><a href=\"%s\">← Вернуться к списку плагинов</a> <a href=\"%s\"%s>Продолжить и все равно активировать →</a>"
|
2256 |
msgid "Title:"
|
2257 |
msgstr "Заголовок:"
|
2258 |
|
2259 |
+
#: inc/core/shortcodes.php:483
|
2260 |
msgid "This is box title"
|
2261 |
msgstr "Заголовок блока"
|
2262 |
|
2263 |
+
#: inc/core/shortcodes.php:663
|
2264 |
+
#: inc/core/shortcodes.php:696
|
2265 |
+
#: inc/core/shortcodes.php:730
|
2266 |
+
#: inc/core/shortcodes.php:764
|
2267 |
+
#: inc/core/shortcodes.php:804
|
2268 |
msgid "please specify correct url"
|
2269 |
msgstr "пожалуйста укажите корректную ссылку"
|
2270 |
|
2271 |
+
#: inc/core/shortcodes.php:1006
|
2272 |
msgid "This menu doesn't exists, or has no elements"
|
2273 |
msgstr "Такое меню не существует, или в нем нет ни одного элемента"
|
2274 |
|
2275 |
+
#: inc/core/shortcodes.php:1094
|
2276 |
+
#: inc/core/shortcodes.php:1180
|
2277 |
+
#: inc/core/shortcodes.php:1249
|
2278 |
msgid "images not found"
|
2279 |
msgstr "изображения не найдены"
|
2280 |
|
2281 |
+
#: inc/core/shortcodes.php:1447
|
2282 |
msgid "template not found"
|
2283 |
msgstr "шаблон не найден"
|
2284 |
|
2348 |
msgstr "Возможности плагина"
|
2349 |
|
2350 |
#: inc/views/about.php:21
|
2351 |
+
msgid "40+ amazing shortcodes"
|
2352 |
+
msgstr "40+ невероятных шорткодов"
|
2353 |
|
2354 |
#: inc/views/about.php:22
|
2355 |
msgid "Power of CSS3 transitions"
|
readme.txt
CHANGED
@@ -18,7 +18,7 @@ With this plugin you can easily create tabs, buttons, boxes, different sliders,
|
|
18 |
|
19 |
= Features =
|
20 |
* Shortcode Generator
|
21 |
-
*
|
22 |
* Modern responsive design
|
23 |
* Power of CSS3
|
24 |
* Custom CSS editor with syntax highlight
|
@@ -50,13 +50,15 @@ With this plugin you can easily create tabs, buttons, boxes, different sliders,
|
|
50 |
= Bundled translations =
|
51 |
* Ru, [Vladimir Anokhin](http://gndev.info/)
|
52 |
* Fr, [Nicolas Leclerc](http://etic-studio.fr/)
|
|
|
53 |
* Unforunately old translations is incompatible with current version
|
54 |
|
55 |
Have a translation? [Contact me](http://gndev.info/feedback/)
|
56 |
|
57 |
= Thanks =
|
58 |
-
*
|
59 |
-
*
|
|
|
60 |
|
61 |
|
62 |
== Installation ==
|
@@ -92,12 +94,18 @@ Upgrade normally via your Wordpress admin -> Plugins panel.
|
|
92 |
|
93 |
== Changelog ==
|
94 |
|
|
|
|
|
|
|
|
|
|
|
95 |
= 4.1.2 =
|
96 |
* Added compatibility mode prefix for spoilers inside of accordion
|
97 |
* Updated qTip plugin
|
98 |
* Added shortcode [tooltip]
|
99 |
* Added new attribute. [tab disabled="yes"]. Now, any tab can be disabled. [Forum topic](http://wordpress.org/support/topic/tabs-how-to-disable-one-of-the-tabs)
|
100 |
* Added [accordion] scrolling. [Forum topic](http://wordpress.org/support/topic/accordion-usability-issue)
|
|
|
101 |
|
102 |
= 4.1.1 =
|
103 |
* Updated caching mechanism. Cache will be reseted when you add or remove terms
|
18 |
|
19 |
= Features =
|
20 |
* Shortcode Generator
|
21 |
+
* 40+ amazing shortcodes
|
22 |
* Modern responsive design
|
23 |
* Power of CSS3
|
24 |
* Custom CSS editor with syntax highlight
|
50 |
= Bundled translations =
|
51 |
* Ru, [Vladimir Anokhin](http://gndev.info/)
|
52 |
* Fr, [Nicolas Leclerc](http://etic-studio.fr/)
|
53 |
+
* Gr, [Kleanthis Manolopoulos]()
|
54 |
* Unforunately old translations is incompatible with current version
|
55 |
|
56 |
Have a translation? [Contact me](http://gndev.info/feedback/)
|
57 |
|
58 |
= Thanks =
|
59 |
+
* Dmitry Semenov - [Magnific Popup jQuery plugin](http://dimsemenov.com/plugins/magnific-popup/)
|
60 |
+
* Craig Thompson - [qTip jQuery plugin](http://qtip2.com/)
|
61 |
+
* Vladimir Kharlampidi - [Swiper jQuery plugin](http://www.idangero.us/sliders/swiper/)
|
62 |
|
63 |
|
64 |
== Installation ==
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
= 4.1.3 =
|
98 |
+
* Small fix for tooltips
|
99 |
+
* Fixed wp_footer notice
|
100 |
+
* Greek translation
|
101 |
+
|
102 |
= 4.1.2 =
|
103 |
* Added compatibility mode prefix for spoilers inside of accordion
|
104 |
* Updated qTip plugin
|
105 |
* Added shortcode [tooltip]
|
106 |
* Added new attribute. [tab disabled="yes"]. Now, any tab can be disabled. [Forum topic](http://wordpress.org/support/topic/tabs-how-to-disable-one-of-the-tabs)
|
107 |
* Added [accordion] scrolling. [Forum topic](http://wordpress.org/support/topic/accordion-usability-issue)
|
108 |
+
* Added wp_footer check. User will be noticed if current theme doen't includes wp_footer
|
109 |
|
110 |
= 4.1.1 =
|
111 |
* Updated caching mechanism. Cache will be reseted when you add or remove terms
|
shortcodes-ultimate.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Shortcodes Ultimate
|
4 |
Plugin URI: http://gndev.info/shortcodes-ultimate/
|
5 |
-
Version: 4.1.
|
6 |
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.3
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://gndev.info/
|
8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|