Version Description
- Added pot file
- Fixed [button] css code
- Updated [accordion], [spoiler] and [tabs] js code
- Fixed [tooltip]
- Updated Greek translation
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 4.1.6 |
Comparing to | |
See all releases |
Code changes from version 4.1.5 to 4.1.6
- assets/css/content-shortcodes.css +2 -2
- assets/js/other-shortcodes.js +59 -56
- inc/core/shortcodes.php +1 -1
- languages/su-el_GR.mo +0 -0
- languages/su-el_GR.po +1304 -840
- languages/su-ru_RU.mo +0 -0
- languages/su-ru_RU.po +4 -12
- languages/su.po +0 -2200
- languages/su.pot +2549 -0
- readme.txt +8 -1
- shortcodes-ultimate.php +1 -1
assets/css/content-shortcodes.css
CHANGED
@@ -213,7 +213,7 @@
|
|
213 |
---------------------------------------------------------------*/
|
214 |
|
215 |
.su-button {
|
216 |
-
display: inline-block;
|
217 |
text-align: center;
|
218 |
text-decoration: none !important;
|
219 |
box-sizing: content-box !important;
|
@@ -225,7 +225,7 @@
|
|
225 |
-moz-transition: all .2s;
|
226 |
-webkit-transition: all .2s;
|
227 |
}
|
228 |
-
.su-button-wide { display: block }
|
229 |
.su-button-center { text-align: center; }
|
230 |
.su-button span {
|
231 |
display: block !important;
|
213 |
---------------------------------------------------------------*/
|
214 |
|
215 |
.su-button {
|
216 |
+
display: inline-block !important;
|
217 |
text-align: center;
|
218 |
text-decoration: none !important;
|
219 |
box-sizing: content-box !important;
|
225 |
-moz-transition: all .2s;
|
226 |
-webkit-transition: all .2s;
|
227 |
}
|
228 |
+
.su-button..su-button-wide { display: block !important; }
|
229 |
.su-button-center { text-align: center; }
|
230 |
.su-button span {
|
231 |
display: block !important;
|
assets/js/other-shortcodes.js
CHANGED
@@ -1,66 +1,58 @@
|
|
1 |
jQuery(document).ready(function ($) {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
$title
|
6 |
-
$
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
bar = ($('#wpadminbar').length > 0) ? 28 : 0;
|
17 |
-
if ($title.hasClass('su-spoiler-closed')) $title.parent().siblings().addClass('su-spoiler-closed');
|
18 |
-
if ($(window).scrollTop() > $title.offset().top) $(window).scrollTop($title.offset().top - $title.height() - bar);
|
19 |
-
e.preventDefault();
|
20 |
-
});
|
21 |
-
// Tabs
|
22 |
-
$('.su-tabs-nav span').click(function (e) {
|
23 |
-
var $tab = $(this),
|
24 |
-
index = $tab.index(),
|
25 |
-
is_disabled = $tab.hasClass('su-tabs-disabled'),
|
26 |
-
$tabs = $tab.parent('.su-tabs-nav').children('span'),
|
27 |
-
$panes = $tab.parents('.su-tabs').find('.su-tabs-pane'),
|
28 |
-
$gmaps = $panes.eq(index).find('.su-gmap:not(.su-gmap-reloaded)');
|
29 |
-
// Check tab is not disabled
|
30 |
-
if (is_disabled) return false;
|
31 |
-
// Hide all panes, show selected pane
|
32 |
-
$panes.hide().eq(index).show();
|
33 |
-
// Disable all tabs, enable selected tab
|
34 |
-
$tabs.removeClass('su-tabs-current').eq(index).addClass('su-tabs-current');
|
35 |
-
// Reload gmaps
|
36 |
-
if ($gmaps.length > 0) $gmaps.each(function () {
|
37 |
-
var $iframe = $(this).find('iframe:first');
|
38 |
-
$(this).addClass('su-gmap-reloaded');
|
39 |
-
$iframe.attr('src', $iframe.attr('src'));
|
40 |
});
|
41 |
-
//
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
$('.su-tabs').each(function () {
|
46 |
var active = parseInt($(this).data('active')) - 1;
|
47 |
$(this).children('.su-tabs-nav').children('span').eq(active).trigger('click');
|
48 |
-
|
49 |
});
|
50 |
|
51 |
-
|
52 |
-
$('.su-tabs-vertical').each(function () {
|
53 |
-
var $tabs = $(this),
|
54 |
-
$panes = $(this).children('.su-tabs-panes'),
|
55 |
-
height = 0;
|
56 |
-
$panes.css('height', 'auto').css('height', $tabs.height());
|
57 |
-
});
|
58 |
-
}
|
59 |
-
// Tables
|
60 |
-
$('.su-table tr:even').addClass('su-even');
|
61 |
-
// Magnific popup
|
62 |
$('.su-lightbox').each(function () {
|
63 |
-
$(this).click
|
64 |
e.preventDefault();
|
65 |
e.stopPropagation();
|
66 |
if ($(this).parent().attr('id') === 'su-generator-preview') $(this).html(su_other_shortcodes.no_preview);
|
@@ -72,6 +64,8 @@ jQuery(document).ready(function ($) {
|
|
72 |
}
|
73 |
});
|
74 |
});
|
|
|
|
|
75 |
// Frame
|
76 |
$('.su-frame-align-center, .su-frame-align-none').each(function () {
|
77 |
var frame_width = $(this).find('img').width();
|
@@ -104,7 +98,7 @@ jQuery(document).ready(function ($) {
|
|
104 |
if (data.behavior === 'click') {
|
105 |
config.show = 'click';
|
106 |
config.hide = 'click';
|
107 |
-
$tt.click
|
108 |
e.preventDefault();
|
109 |
e.stopPropagation();
|
110 |
});
|
@@ -125,4 +119,13 @@ jQuery(document).ready(function ($) {
|
|
125 |
}
|
126 |
$tt.qtip(config);
|
127 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
});
|
1 |
jQuery(document).ready(function ($) {
|
2 |
+
|
3 |
+
function init_live() {
|
4 |
+
// Spoiler
|
5 |
+
$('.su-spoiler-title').live('click', function (e) {
|
6 |
+
var $title = $(this),
|
7 |
+
$spoiler = $title.parent(),
|
8 |
+
bar = ($('#wpadminbar').length > 0) ? 28 : 0;
|
9 |
+
// Open/close spoiler
|
10 |
+
$spoiler.toggleClass('su-spoiler-closed');
|
11 |
+
// Close other spoilers in accordion
|
12 |
+
$spoiler.parent('.su-accordion').children('.su-spoiler').not($spoiler).addClass('su-spoiler-closed');
|
13 |
+
// Scroll in spoiler in accordion
|
14 |
+
if ($(window).scrollTop() > $title.offset().top) $(window).scrollTop($title.offset().top - $title.height() - bar);
|
15 |
+
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
});
|
17 |
+
// Tabs
|
18 |
+
$('.su-tabs-nav span').live('click', function (e) {
|
19 |
+
var $tab = $(this),
|
20 |
+
index = $tab.index(),
|
21 |
+
is_disabled = $tab.hasClass('su-tabs-disabled'),
|
22 |
+
$tabs = $tab.parent('.su-tabs-nav').children('span'),
|
23 |
+
$panes = $tab.parents('.su-tabs').find('.su-tabs-pane'),
|
24 |
+
$gmaps = $panes.eq(index).find('.su-gmap:not(.su-gmap-reloaded)');
|
25 |
+
// Check tab is not disabled
|
26 |
+
if (is_disabled) return false;
|
27 |
+
// Hide all panes, show selected pane
|
28 |
+
$panes.hide().eq(index).show();
|
29 |
+
// Disable all tabs, enable selected tab
|
30 |
+
$tabs.removeClass('su-tabs-current').eq(index).addClass('su-tabs-current');
|
31 |
+
// Reload gmaps
|
32 |
+
if ($gmaps.length > 0) $gmaps.each(function () {
|
33 |
+
var $iframe = $(this).find('iframe:first');
|
34 |
+
$(this).addClass('su-gmap-reloaded');
|
35 |
+
$iframe.attr('src', $iframe.attr('src'));
|
36 |
+
});
|
37 |
+
// Set height for vertical tabs
|
38 |
+
tabs_height();
|
39 |
+
e.preventDefault();
|
40 |
+
});
|
41 |
+
$('body').addClass('su-other-shortcodes-live');
|
42 |
+
} // function init_live()
|
43 |
+
|
44 |
+
if (!$('body').hasClass('su-other-shortcodes-live')) init_live();
|
45 |
+
|
46 |
+
// Activate tabs
|
47 |
$('.su-tabs').each(function () {
|
48 |
var active = parseInt($(this).data('active')) - 1;
|
49 |
$(this).children('.su-tabs-nav').children('span').eq(active).trigger('click');
|
50 |
+
tabs_height();
|
51 |
});
|
52 |
|
53 |
+
// Lightbox
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
$('.su-lightbox').each(function () {
|
55 |
+
$(this).live('click', function (e) {
|
56 |
e.preventDefault();
|
57 |
e.stopPropagation();
|
58 |
if ($(this).parent().attr('id') === 'su-generator-preview') $(this).html(su_other_shortcodes.no_preview);
|
64 |
}
|
65 |
});
|
66 |
});
|
67 |
+
// Tables
|
68 |
+
$('.su-table tr:even').addClass('su-even');
|
69 |
// Frame
|
70 |
$('.su-frame-align-center, .su-frame-align-none').each(function () {
|
71 |
var frame_width = $(this).find('img').width();
|
98 |
if (data.behavior === 'click') {
|
99 |
config.show = 'click';
|
100 |
config.hide = 'click';
|
101 |
+
$tt.live('click', function (e) {
|
102 |
e.preventDefault();
|
103 |
e.stopPropagation();
|
104 |
});
|
119 |
}
|
120 |
$tt.qtip(config);
|
121 |
});
|
122 |
+
|
123 |
+
function tabs_height() {
|
124 |
+
$('.su-tabs-vertical').each(function () {
|
125 |
+
var $tabs = $(this),
|
126 |
+
$panes = $(this).children('.su-tabs-panes'),
|
127 |
+
height = 0;
|
128 |
+
$panes.css('height', 'auto').css('height', $tabs.height());
|
129 |
+
});
|
130 |
+
}
|
131 |
});
|
inc/core/shortcodes.php
CHANGED
@@ -594,7 +594,7 @@ function su_tooltip_shortcode( $atts, $content = null ) {
|
|
594 |
su_query_asset( 'js', 'jquery' );
|
595 |
su_query_asset( 'js', 'qtip' );
|
596 |
su_query_asset( 'js', 'su-other-shortcodes' );
|
597 |
-
return '<
|
598 |
}
|
599 |
|
600 |
function su_ttc_shortcode( $atts = null, $content = null ) {
|
594 |
su_query_asset( 'js', 'jquery' );
|
595 |
su_query_asset( 'js', 'qtip' );
|
596 |
su_query_asset( 'js', 'su-other-shortcodes' );
|
597 |
+
return '<span class="su-tooltip' . su_ecssc( $atts ) . '" data-close="' . $atts['close'] . '" data-behavior="' . $atts['behavior'] . '" data-my="' . $position['my'] . '" data-at="' . $position['at'] . '" data-classes="' . implode( ' ', $classes ) . '" data-title="' . $atts['title'] . '" title="' . esc_attr( $atts['content'] ) . '">' . do_shortcode( $content ) . '</span>';
|
598 |
}
|
599 |
|
600 |
function su_ttc_shortcode( $atts = null, $content = null ) {
|
languages/su-el_GR.mo
CHANGED
Binary file
|
languages/su-el_GR.po
CHANGED
@@ -1,38 +1,29 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Shortcodes Ultimate 4.1.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
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/
|
29 |
-
#: ../inc/
|
30 |
-
#: ../inc/
|
31 |
-
#: ../inc/
|
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 |
|
@@ -40,14 +31,10 @@ msgstr "Προεπιλογή"
|
|
40 |
msgid "Small"
|
41 |
msgstr "Μικρό"
|
42 |
|
43 |
-
#: ../inc/example-addon.php:49 ../inc/
|
44 |
-
#: ../inc/
|
45 |
-
#: ../inc/
|
46 |
-
#: ../inc/
|
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 |
|
@@ -63,720 +50,597 @@ msgstr "Κείμενο κεφαλίδας 2"
|
|
63 |
msgid "Styled heading 2"
|
64 |
msgstr "Μορφοποίημένη κεφαλίδα 2"
|
65 |
|
66 |
-
#: ../inc/
|
67 |
-
msgid "
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
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/
|
91 |
msgid "All"
|
92 |
msgstr "Όλα"
|
93 |
|
94 |
-
#: ../inc/
|
95 |
msgid "Content"
|
96 |
msgstr "Περιεχόμενο"
|
97 |
|
98 |
-
#: ../inc/
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#: ../inc/
|
103 |
msgid "Media"
|
104 |
msgstr "Πολυμέσα"
|
105 |
|
106 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
msgid "Other"
|
108 |
msgstr "Άλλα"
|
109 |
|
110 |
-
#: ../inc/
|
111 |
-
|
112 |
-
|
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/
|
272 |
-
|
273 |
-
|
|
|
274 |
|
275 |
-
#: ../inc/
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
-
#: ../inc/
|
280 |
-
|
281 |
-
|
|
|
282 |
|
283 |
-
#: ../inc/
|
284 |
-
|
285 |
-
|
|
|
286 |
|
287 |
-
#: ../inc/
|
288 |
-
|
289 |
-
|
|
|
290 |
|
291 |
-
#: ../inc/
|
292 |
-
|
293 |
-
|
|
|
294 |
|
295 |
-
#: ../inc/
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
#: ../inc/
|
300 |
-
#: ../inc/
|
301 |
-
#: ../inc/
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
#: ../inc/
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
#: ../inc/
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
msgid "Heading text"
|
315 |
msgstr "Κείμενο κεφαλίδας"
|
316 |
|
317 |
-
#: ../inc/
|
318 |
msgid "Styled heading"
|
319 |
msgstr "Μορφοποιημένη κεφαλίδα"
|
320 |
|
321 |
-
#: ../inc/
|
322 |
msgid "Tabs"
|
323 |
msgstr "Tabs"
|
324 |
|
325 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
msgid "Vertical"
|
327 |
msgstr "Κάθετο"
|
328 |
|
329 |
-
#: ../inc/
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
332 |
|
333 |
-
#: ../inc/
|
334 |
msgid ""
|
335 |
-
"[
|
336 |
-
"[
|
337 |
-
"[
|
338 |
msgstr ""
|
339 |
-
"[
|
340 |
-
"[
|
341 |
-
"[
|
342 |
|
343 |
-
#: ../inc/
|
344 |
msgid "Tabs container"
|
345 |
msgstr "Δοχείο καρτελών"
|
346 |
|
347 |
-
#: ../inc/
|
348 |
msgid "Tab"
|
349 |
msgstr "Tab"
|
350 |
|
351 |
-
#: ../inc/
|
352 |
msgid "Tab name"
|
353 |
-
msgstr "Όνομα
|
354 |
|
355 |
-
#: ../inc/
|
356 |
-
#: ../inc/
|
357 |
-
#: ../inc/
|
|
|
358 |
msgid "Title"
|
359 |
msgstr "Τίτλος"
|
360 |
|
361 |
-
#: ../inc/
|
362 |
msgid "Enter tab name"
|
363 |
-
msgstr "Εισάγετε το όνομα
|
|
|
|
|
|
|
|
|
364 |
|
365 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
366 |
msgid "Tab content"
|
367 |
-
msgstr "Περιεχόμενο
|
368 |
|
369 |
-
#: ../inc/
|
370 |
msgid "Single tab"
|
371 |
msgstr "Ενιαία καρτέλα"
|
372 |
|
373 |
-
#: ../inc/
|
374 |
msgid "Spoiler"
|
375 |
msgstr "Spoiler"
|
376 |
|
377 |
-
#: ../inc/
|
378 |
msgid "Spoiler title"
|
379 |
msgstr "Τίτλος Spoiler"
|
380 |
|
381 |
-
#: ../inc/
|
382 |
msgid "Text in spoiler title"
|
383 |
msgstr "Κείμενο στον τίτλο του spoiler"
|
384 |
|
385 |
-
#: ../inc/
|
386 |
msgid "Open"
|
387 |
msgstr "Ανοιχτό"
|
388 |
|
389 |
-
#: ../inc/
|
390 |
msgid "Is spoiler content visible by default"
|
391 |
msgstr "Είναι το περιεχόμενο του spoiler προκαθορισμένα ορατό"
|
392 |
|
393 |
-
#: ../inc/
|
394 |
-
msgid "
|
395 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
|
397 |
-
#: ../inc/
|
398 |
msgid "Hidden content"
|
399 |
msgstr "Κρυμένο περιεχόμενο"
|
400 |
|
401 |
-
#: ../inc/
|
402 |
msgid "Spoiler with hidden content"
|
403 |
msgstr "Spoiler με κρυφό περιεχόμενο"
|
404 |
|
405 |
-
#: ../inc/
|
406 |
msgid "Accordion"
|
407 |
msgstr "Accordion"
|
408 |
|
409 |
-
#: ../inc/
|
410 |
msgid ""
|
411 |
-
"[
|
412 |
-
"[
|
413 |
-
"[
|
414 |
msgstr ""
|
415 |
-
"[
|
416 |
-
"[
|
417 |
-
"[
|
418 |
|
419 |
-
#: ../inc/
|
420 |
msgid "Accordion with spoilers"
|
421 |
msgstr "Accordion με spoilers"
|
422 |
|
423 |
-
#: ../inc/
|
424 |
msgid "Divider"
|
425 |
msgstr "Divider"
|
426 |
|
427 |
-
#: ../inc/
|
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/
|
441 |
msgid "Show link to top of the page or not"
|
442 |
msgstr "Προβολή ή όχι του συνδέσμου στο πάνω μέρος της σελίδας"
|
443 |
|
444 |
-
#: ../inc/
|
445 |
msgid "Go to top"
|
446 |
msgstr "Επιστροφή στην αρχή"
|
447 |
|
448 |
-
#: ../inc/
|
449 |
msgid "Link text"
|
450 |
msgstr "Κείμενο συνδέσμου"
|
451 |
|
452 |
-
#: ../inc/
|
453 |
msgid "Text for the GO TOP link"
|
454 |
msgstr "Κείμενο για τον σύνδεσμο GO TOP"
|
455 |
|
456 |
-
#: ../inc/
|
457 |
msgid "Content divider with optional TOP link"
|
458 |
msgstr "Περιεχόμενο του divider με προαιρετικό σύνδεσμο TOP"
|
459 |
|
460 |
-
#: ../inc/
|
461 |
msgid "Spacer"
|
462 |
msgstr "Spacer"
|
463 |
|
464 |
-
#: ../inc/
|
465 |
-
#: ../inc/
|
466 |
-
#: ../inc/
|
467 |
-
#: ../inc/
|
468 |
-
#: ../inc/
|
469 |
msgid "Height"
|
470 |
msgstr "Ύψος"
|
471 |
|
472 |
-
#: ../inc/
|
473 |
msgid "Height of the spacer in pixels"
|
474 |
msgstr "Ύψος του spacer σε pixels"
|
475 |
|
476 |
-
#: ../inc/
|
477 |
msgid "Empty space with adjustable height"
|
478 |
msgstr "Κενός χώρος με ρυθμιζόμενο ύψος"
|
479 |
|
480 |
-
#: ../inc/
|
481 |
msgid "Highlight"
|
482 |
msgstr "Highlight"
|
483 |
|
484 |
-
#: ../inc/
|
485 |
-
#: ../inc/
|
486 |
msgid "Background"
|
487 |
msgstr "Φόντο"
|
488 |
|
489 |
-
#: ../inc/
|
490 |
msgid "Highlighted text background color"
|
491 |
msgstr "Χρώμα φόντου τονισμένου κειμένου"
|
492 |
|
493 |
-
#: ../inc/
|
494 |
-
#: ../inc/
|
495 |
msgid "Text color"
|
496 |
msgstr "Χρώμα κειμένου"
|
497 |
|
498 |
-
#: ../inc/
|
499 |
msgid "Highlighted text color"
|
500 |
msgstr "Χρώμα κειμένου"
|
501 |
|
502 |
-
#: ../inc/
|
503 |
msgid "Highlighted text"
|
504 |
msgstr "Τονισμένο κείμενο"
|
505 |
|
506 |
-
#: ../inc/
|
507 |
msgid "Label"
|
508 |
msgstr "Label"
|
509 |
|
510 |
-
#: ../inc/
|
511 |
msgid "Success"
|
512 |
msgstr "Επιτυχία"
|
513 |
|
514 |
-
#: ../inc/
|
515 |
msgid "Warning"
|
516 |
msgstr "Προειδοποίηση"
|
517 |
|
518 |
-
#: ../inc/
|
519 |
msgid "Important"
|
520 |
msgstr "Σημαντικό"
|
521 |
|
522 |
-
#: ../inc/
|
523 |
msgid "Black"
|
524 |
msgstr "Μαύρο"
|
525 |
|
526 |
-
#: ../inc/
|
527 |
msgid "Info"
|
528 |
msgstr "Πληροφορίες"
|
529 |
|
530 |
-
#: ../inc/
|
531 |
msgid "Type"
|
532 |
msgstr "Τύπος"
|
533 |
|
534 |
-
#: ../inc/
|
535 |
msgid "Style of the label"
|
536 |
msgstr "Στυλ ετικέτας"
|
537 |
|
538 |
-
#: ../inc/
|
539 |
msgid "Styled label"
|
540 |
msgstr "Μορφοποιημένη ετικέτα"
|
541 |
|
542 |
-
#: ../inc/
|
543 |
msgid "Quote"
|
544 |
msgstr "Quote"
|
545 |
|
546 |
-
#: ../inc/
|
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/
|
560 |
msgid "Quote author name"
|
561 |
msgstr "Παράθεση ονόματος του συγγραφέα"
|
562 |
|
563 |
-
#: ../inc/
|
564 |
msgid "Cite url"
|
565 |
msgstr "Διεύθυνση αναφοράς"
|
566 |
|
567 |
-
#: ../inc/
|
568 |
msgid "Url of the quote author. Leave empty to disable link"
|
569 |
msgstr ""
|
570 |
"Διεύθυνση του συγγραφέα αναφοράς. Αφήστε κενό για απενεργοποίηση του "
|
571 |
"συνδέσμου"
|
572 |
|
573 |
-
#: ../inc/
|
574 |
msgid "Blockquote alternative"
|
575 |
msgstr "Εναλλακτικά blockquote"
|
576 |
|
577 |
-
#: ../inc/
|
578 |
-
#: ../inc/
|
579 |
msgid "Pullquote"
|
580 |
msgstr "Pullquote"
|
581 |
|
582 |
-
#: ../inc/
|
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/
|
603 |
msgid "Dropcap"
|
604 |
msgstr "Dropcap"
|
605 |
|
606 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "Dropcap style preset"
|
608 |
msgstr "Προκαθορισμένο στυλ dropcap"
|
609 |
|
610 |
-
#: ../inc/
|
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/
|
620 |
msgid "D"
|
621 |
msgstr "Δ"
|
622 |
|
623 |
-
#: ../inc/
|
624 |
-
msgid "
|
625 |
-
msgstr "
|
626 |
|
627 |
-
#: ../inc/
|
628 |
-
msgid "
|
629 |
-
msgstr "
|
630 |
|
631 |
-
#: ../inc/
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
634 |
|
635 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
636 |
msgid ""
|
637 |
-
"[
|
638 |
-
"[
|
639 |
-
"[
|
640 |
msgstr ""
|
641 |
-
"[
|
642 |
-
"[
|
643 |
-
"[
|
644 |
|
645 |
-
#: ../inc/
|
646 |
msgid "Row for flexible columns"
|
647 |
msgstr "Γραμμή για ευέλικτες στήλες"
|
648 |
|
649 |
-
#: ../inc/
|
650 |
msgid "Column"
|
651 |
msgstr "Column"
|
652 |
|
653 |
-
#: ../inc/
|
654 |
msgid "Full width"
|
655 |
msgstr "Πλήρες πλάτος"
|
656 |
|
657 |
-
#: ../inc/
|
658 |
msgid "One half"
|
659 |
msgstr "Ένα δεύτερο"
|
660 |
|
661 |
-
#: ../inc/
|
662 |
msgid "One third"
|
663 |
msgstr "Ένα τρίτο"
|
664 |
|
665 |
-
#: ../inc/
|
666 |
msgid "Two third"
|
667 |
msgstr "Δύο τρίτα"
|
668 |
|
669 |
-
#: ../inc/
|
670 |
msgid "One fourth"
|
671 |
msgstr "Ένα τέταρτο"
|
672 |
|
673 |
-
#: ../inc/
|
674 |
msgid "Three fourth"
|
675 |
msgstr "Τρία τέταρτα"
|
676 |
|
677 |
-
#: ../inc/
|
678 |
msgid "One fifth"
|
679 |
msgstr "Ένα πέμπτο"
|
680 |
|
681 |
-
#: ../inc/
|
682 |
msgid "Two fifth"
|
683 |
msgstr "Δύο πέμπτα"
|
684 |
|
685 |
-
#: ../inc/
|
686 |
msgid "Three fifth"
|
687 |
msgstr "Τρία πέμπτα"
|
688 |
|
689 |
-
#: ../inc/
|
690 |
msgid "Four fifth"
|
691 |
msgstr "Τέσσερα πέμπτα"
|
692 |
|
693 |
-
#: ../inc/
|
694 |
msgid "One sixth"
|
695 |
msgstr "Ένα έκτο"
|
696 |
|
697 |
-
#: ../inc/
|
698 |
msgid "Five sixth"
|
699 |
msgstr "Πέντε έκτα"
|
700 |
|
701 |
-
#: ../inc/
|
702 |
msgid "Select column width. This width will be calculated depend page width"
|
703 |
msgstr ""
|
704 |
"Επιπέξτε το πλάτος της στήλης. Το πλάτος θα υπολογιστεί σε σχέση με το "
|
705 |
"πλάτος της σελίδας"
|
706 |
|
707 |
-
#: ../inc/
|
708 |
msgid "Column content"
|
709 |
msgstr "Περιεχόμενο στήλης"
|
710 |
|
711 |
-
#: ../inc/
|
712 |
msgid "Flexible and responsive columns"
|
713 |
msgstr "Ευέλικτες και ευπροσάρμοστες στήλες"
|
714 |
|
715 |
-
#: ../inc/
|
716 |
msgid "List"
|
717 |
msgstr "List"
|
718 |
|
719 |
-
#: ../inc/
|
720 |
msgid "Star"
|
721 |
msgstr "Αστέρι"
|
722 |
|
723 |
-
#: ../inc/
|
724 |
msgid "Arrow"
|
725 |
msgstr "Βέλος"
|
726 |
|
727 |
-
#: ../inc/
|
728 |
msgid "Check"
|
729 |
msgstr "Check"
|
730 |
|
731 |
-
#: ../inc/
|
732 |
msgid "Cross"
|
733 |
msgstr "Σταυρός"
|
734 |
|
735 |
-
#: ../inc/
|
736 |
msgid "Thumbs up"
|
737 |
msgstr "Thumbs up"
|
738 |
|
739 |
-
#: ../inc/
|
|
|
740 |
msgid "Link"
|
741 |
msgstr "Σύνδεση"
|
742 |
|
743 |
-
#: ../inc/
|
744 |
msgid "Gear"
|
745 |
msgstr "Γρανάζι"
|
746 |
|
747 |
-
#: ../inc/
|
748 |
msgid "Time"
|
749 |
msgstr "Ώρα"
|
750 |
|
751 |
-
#: ../inc/
|
752 |
msgid "Note"
|
753 |
-
msgstr "
|
754 |
|
755 |
-
#: ../inc/
|
756 |
msgid "Plus"
|
757 |
msgstr "Συν"
|
758 |
|
759 |
-
#: ../inc/
|
760 |
msgid "Guard"
|
761 |
msgstr "Guard"
|
762 |
|
763 |
-
#: ../inc/
|
764 |
msgid "Event"
|
765 |
msgstr "Συμβάν"
|
766 |
|
767 |
-
#: ../inc/
|
768 |
msgid "Idea"
|
769 |
msgstr "Ιδέα"
|
770 |
|
771 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
msgid "Twitter"
|
773 |
msgstr "Twitter"
|
774 |
|
775 |
-
#: ../inc/
|
776 |
msgid "List items style/icons"
|
777 |
msgstr "Στυλ/Εικονίδια αντικειμένων λίστας"
|
778 |
|
779 |
-
#: ../inc/
|
780 |
msgid ""
|
781 |
"<ul>\n"
|
782 |
"<li>List item</li>\n"
|
@@ -790,98 +654,106 @@ msgstr ""
|
|
790 |
"<li>Αντικείμενο λίστας</li>\n"
|
791 |
"</ul>"
|
792 |
|
793 |
-
#: ../inc/
|
794 |
msgid "Styled unordered list"
|
795 |
msgstr "Στυλ αταξινόμητης λίστας"
|
796 |
|
797 |
-
#: ../inc/
|
798 |
msgid "Button"
|
799 |
msgstr "Button"
|
800 |
|
801 |
-
#: ../inc/
|
802 |
msgid "Button link"
|
803 |
msgstr "Σύνδεσμος κουμπιού"
|
804 |
|
805 |
-
#: ../inc/
|
806 |
msgid "Same tab"
|
807 |
-
msgstr "
|
808 |
|
809 |
-
#: ../inc/
|
810 |
msgid "New tab"
|
811 |
-
msgstr "
|
812 |
|
813 |
-
#: ../inc/
|
814 |
msgid "Target"
|
815 |
msgstr "Στόχος"
|
816 |
|
817 |
-
#: ../inc/
|
818 |
msgid "Button link target"
|
819 |
msgstr "Σύνδεσμος προορισμού του κουμπιού"
|
820 |
|
821 |
-
#: ../inc/
|
822 |
msgid "Soft"
|
823 |
msgstr "Απαλό"
|
824 |
|
825 |
-
#: ../inc/
|
826 |
msgid "Glass"
|
827 |
msgstr "Γυάλινο"
|
828 |
|
829 |
-
#: ../inc/
|
830 |
msgid "Bubbles"
|
831 |
msgstr "Φυσαλίδες"
|
832 |
|
833 |
-
#: ../inc/
|
834 |
msgid "Noise"
|
835 |
msgstr "Θόρυβος"
|
836 |
|
837 |
-
#: ../inc/
|
838 |
msgid "Stroked"
|
839 |
msgstr "Stroked"
|
840 |
|
841 |
-
#: ../inc/
|
842 |
msgid "3D"
|
843 |
msgstr "3D"
|
844 |
|
845 |
-
#: ../inc/
|
846 |
msgid "Button background style preset"
|
847 |
msgstr "Προκαθορισμένο στυλ φόντου κουμπιού"
|
848 |
|
849 |
-
#: ../inc/
|
850 |
msgid "Button background color"
|
851 |
msgstr "Χρώμα φόντου κουμπιού"
|
852 |
|
853 |
-
#: ../inc/
|
854 |
msgid "Button text color"
|
855 |
msgstr "Χρώμα κειμένου κουμπιού"
|
856 |
|
857 |
-
#: ../inc/
|
858 |
msgid "Button size"
|
859 |
msgstr "Μέγεθος κουμπιού"
|
860 |
|
861 |
-
#: ../inc/
|
862 |
msgid "Fluid"
|
863 |
msgstr "Fluid"
|
864 |
|
865 |
-
#: ../inc/
|
866 |
msgid "Fluid buttons has 100% width"
|
867 |
msgstr "Τα κουμπιά fluid έχουν 100% πλάτος"
|
868 |
|
869 |
-
#: ../inc/
|
870 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
871 |
msgid "Radius"
|
872 |
msgstr "Radius"
|
873 |
|
874 |
-
#: ../inc/
|
875 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
876 |
msgstr ""
|
877 |
"Στρογγύλεμα των γωνιών του κουμπιού. Ο υπολογισμός για αυτόματο στρογγύλεμα "
|
878 |
"γίνεται βάση του μεγέθους του κουμπιού"
|
879 |
|
880 |
-
#: ../inc/
|
881 |
msgid "Icon"
|
882 |
msgstr "Εικονίδιο"
|
883 |
|
884 |
-
#: ../inc/
|
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-"
|
@@ -894,336 +766,559 @@ msgstr ""
|
|
894 |
"εικονίδια υψηλής ποιότητας</a>. Κατεβάστε το αρχείο, ξεπακετάρετε τα "
|
895 |
"εικονίδια και μεταφορτώστε τα εικονίδια σε αυτό το πεδίο"
|
896 |
|
897 |
-
#: ../inc/
|
898 |
msgid "Dark"
|
899 |
msgstr "Σκούρο"
|
900 |
|
901 |
-
#: ../inc/
|
902 |
msgid "Text shadow color"
|
903 |
msgstr "Χρώμα σκιάς κειμένου"
|
904 |
|
905 |
-
#: ../inc/
|
906 |
msgid "Color of button text shadow"
|
907 |
msgstr "Χρώμα σκιάς κειμένου του κουμπιού"
|
908 |
|
909 |
-
#: ../inc/
|
910 |
msgid "None"
|
911 |
msgstr "Κανένα"
|
912 |
|
913 |
-
#: ../inc/
|
914 |
msgid "Top"
|
915 |
msgstr "Επάνω"
|
916 |
|
917 |
-
#: ../inc/
|
918 |
msgid "Bottom"
|
919 |
msgstr "Κάτω"
|
920 |
|
921 |
-
#: ../inc/
|
922 |
msgid "Top right"
|
923 |
msgstr "Πάνω δεξιά"
|
924 |
|
925 |
-
#: ../inc/
|
926 |
msgid "Top left"
|
927 |
msgstr "Πάνω αριστερά"
|
928 |
|
929 |
-
#: ../inc/
|
930 |
msgid "Bottom right"
|
931 |
msgstr "Κάτω δεξιά"
|
932 |
|
933 |
-
#: ../inc/
|
934 |
msgid "Bottom left"
|
935 |
msgstr "Κάτω αριστερά"
|
936 |
|
937 |
-
#: ../inc/
|
938 |
msgid "Text shadow position"
|
939 |
msgstr "Θέση σκιάς κειμένου"
|
940 |
|
941 |
-
#: ../inc/
|
942 |
msgid "Position of button text shadow"
|
943 |
msgstr "Θέση σκιάς κειμένου κουμπιού"
|
944 |
|
945 |
-
#: ../inc/
|
946 |
-
msgid "
|
947 |
-
msgstr "
|
948 |
|
949 |
-
#: ../inc/
|
950 |
-
msgid "
|
951 |
-
|
|
|
|
|
|
|
952 |
|
953 |
-
#: ../inc/
|
954 |
msgid "Button text"
|
955 |
msgstr "Κείμενο κουμπιού"
|
956 |
|
957 |
-
#: ../inc/
|
958 |
msgid "Styled button"
|
959 |
msgstr "Μορφοποίηση κουμπιού"
|
960 |
|
961 |
-
#: ../inc/
|
962 |
msgid "Service"
|
963 |
msgstr "Service"
|
964 |
|
965 |
-
#: ../inc/
|
966 |
msgid "Service title"
|
967 |
msgstr "Τίτλος service"
|
968 |
|
969 |
-
#: ../inc/
|
970 |
msgid "Service name"
|
971 |
-
msgstr "
|
972 |
|
973 |
-
#: ../inc/
|
974 |
msgid "You can upload custom icon for this box"
|
975 |
msgstr "Μπορείτε να μεταφορτώσετε δικά σας εικονίδια για αυτό το πλαίσιο"
|
976 |
|
977 |
-
#: ../inc/
|
978 |
msgid "Icon size"
|
979 |
msgstr "Μέγεθος εικονιδίου"
|
980 |
|
981 |
-
#: ../inc/
|
982 |
msgid "Size of the uploaded icon in pixels"
|
983 |
msgstr "Μέγεθος του μεταφορτωμένου εικονιδίου σε pixels"
|
984 |
|
985 |
-
#: ../inc/
|
986 |
msgid "Service description"
|
987 |
msgstr "Περιγραφή Service"
|
988 |
|
989 |
-
#: ../inc/
|
990 |
msgid "Service box with title"
|
991 |
msgstr "Πλαίσιο service με τίτλο"
|
992 |
|
993 |
-
#: ../inc/
|
994 |
-
msgid "Box"
|
995 |
-
msgstr "Box"
|
996 |
-
|
997 |
-
#: ../inc/shortcodes/data.php:513
|
998 |
msgid "Box title"
|
999 |
msgstr "Τίτλος πλαισίου"
|
1000 |
|
1001 |
-
#: ../inc/
|
1002 |
msgid "Text for the box title"
|
1003 |
msgstr "Κείμενο για τον τίτλο του πλαισίου"
|
1004 |
|
1005 |
-
#: ../inc/
|
1006 |
msgid "Box style preset"
|
1007 |
msgstr "Προκαθορισμένο στυλ πλαισίου"
|
1008 |
|
1009 |
-
#: ../inc/
|
1010 |
msgid "Color"
|
1011 |
msgstr "Χρώμα"
|
1012 |
|
1013 |
-
#: ../inc/
|
1014 |
msgid "Color for the box title and borders"
|
1015 |
msgstr "Χρώμα τίτλου και περιθωρίων πλαισίου"
|
1016 |
|
1017 |
-
#: ../inc/
|
1018 |
msgid "Title text color"
|
1019 |
msgstr "Χρώμα κειμένου τίτλου"
|
1020 |
|
1021 |
-
#: ../inc/
|
1022 |
msgid "Color for the box title text"
|
1023 |
msgstr "Χρώμα κειμένου τίτλου του πλαισίου"
|
1024 |
|
1025 |
-
#: ../inc/
|
1026 |
msgid "Box corners radius"
|
1027 |
msgstr "Στρογγυλεμένες γωνίες πλαισίου"
|
1028 |
|
1029 |
-
#: ../inc/
|
1030 |
msgid "Box content"
|
1031 |
msgstr "Περιεχόμενο πλαισίου"
|
1032 |
|
1033 |
-
#: ../inc/
|
1034 |
msgid "Colored box with caption"
|
1035 |
msgstr "Χρωματισμένο πλαίσιο με λεζάντα"
|
1036 |
|
1037 |
-
#: ../inc/
|
1038 |
msgid "Note background color"
|
1039 |
msgstr "Χρώμα φόντου σημείωσης"
|
1040 |
|
1041 |
-
#: ../inc/
|
1042 |
msgid "Note text color"
|
1043 |
msgstr "Χρώμα κειμένου σημείωσης"
|
1044 |
|
1045 |
-
#: ../inc/
|
1046 |
msgid "Note corners radius"
|
1047 |
msgstr "Στρογγυλεμένες γωνίες σημείωσης"
|
1048 |
|
1049 |
-
#: ../inc/
|
1050 |
msgid "Note text"
|
1051 |
msgstr "Κείμενο σημείωσης"
|
1052 |
|
1053 |
-
#: ../inc/
|
1054 |
msgid "Colored box"
|
1055 |
msgstr "Χρωματισμένο πλαίσιο"
|
1056 |
|
1057 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
msgid "Private"
|
1059 |
msgstr "Private"
|
1060 |
|
1061 |
-
#: ../inc/
|
1062 |
msgid "Private note text"
|
1063 |
msgstr "Κείμενο σημείωσης Private"
|
1064 |
|
1065 |
-
#: ../inc/
|
1066 |
msgid "Private note for post authors"
|
1067 |
msgstr "Σημείωση Private για συγγραφείς δημοσιευμάτων"
|
1068 |
|
1069 |
-
#: ../inc/
|
1070 |
msgid "YouTube"
|
1071 |
msgstr "YouTube"
|
1072 |
|
1073 |
-
#: ../inc/
|
1074 |
-
#: ../inc/
|
|
|
1075 |
msgid "Url"
|
1076 |
msgstr "Διεύθυνση"
|
1077 |
|
1078 |
-
#: ../inc/
|
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/
|
1085 |
-
#: ../inc/
|
1086 |
-
#: ../inc/
|
1087 |
-
#: ../inc/
|
1088 |
-
#: ../inc/
|
1089 |
msgid "Width"
|
1090 |
msgstr "Πλάτος"
|
1091 |
|
1092 |
-
#: ../inc/
|
1093 |
-
#: ../inc/
|
1094 |
msgid "Player width"
|
1095 |
msgstr "Πλάτος Player"
|
1096 |
|
1097 |
-
#: ../inc/
|
1098 |
-
#: ../inc/
|
1099 |
msgid "Player height"
|
1100 |
msgstr "Ύψος Player"
|
1101 |
|
1102 |
-
#: ../inc/
|
1103 |
-
#: ../inc/
|
1104 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1105 |
msgid "Autoplay"
|
1106 |
msgstr "Αυτόματη αναπαραγωγή"
|
1107 |
|
1108 |
-
#: ../inc/
|
1109 |
msgid "Play video automatically when page is loaded"
|
1110 |
msgstr "Αυτόματη αναπαραγωγή βίντεο με την φόρτωση της σελίδας"
|
1111 |
|
1112 |
-
#: ../inc/
|
1113 |
msgid "YouTube video"
|
1114 |
msgstr "Βίντεο YouTube"
|
1115 |
|
1116 |
-
#: ../inc/
|
1117 |
msgid "Vimeo"
|
1118 |
msgstr "Vimeo"
|
1119 |
|
1120 |
-
#: ../inc/
|
1121 |
msgid "Url of Vimeo page with video"
|
1122 |
msgstr "Διεύθυνση της σελίδας Vimeo με το βίντεο."
|
1123 |
|
1124 |
-
#: ../inc/
|
1125 |
msgid "Vimeo video"
|
1126 |
msgstr "Βίντεο Vimeo"
|
1127 |
|
1128 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1129 |
msgid "Audio"
|
1130 |
msgstr "Audio"
|
1131 |
|
1132 |
-
#: ../inc/
|
1133 |
msgid "File"
|
1134 |
msgstr "Αρχείο"
|
1135 |
|
1136 |
-
#: ../inc/
|
1137 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1138 |
msgstr "Διεύθυνση αρχείου ήχου. Υποστηριζόμενοι τύποι: mp3, ogg"
|
1139 |
|
1140 |
-
#: ../inc/
|
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
|
|
|
1151 |
msgstr ""
|
1152 |
"Πλάτος player. Μπορείτε να ορίσετε το πλάτος σε ποσοστό επί τοις εκατό και ο "
|
1153 |
-
"player θα
|
|
|
1154 |
|
1155 |
-
#: ../inc/
|
1156 |
msgid "Play file automatically when page is loaded"
|
1157 |
msgstr "Αυτόματη αναπαραγωγή αρχείου όταν θα φορτωθεί η σελίδα"
|
1158 |
|
1159 |
-
#: ../inc/
|
1160 |
msgid "Loop"
|
1161 |
msgstr "Ανακύκλωση"
|
1162 |
|
1163 |
-
#: ../inc/
|
1164 |
msgid "Repeat when playback is ended"
|
1165 |
msgstr "Επανάληψη όταν η αναπαραγωγή τερματιστεί"
|
1166 |
|
1167 |
-
#: ../inc/
|
1168 |
msgid "Custom audio player"
|
1169 |
msgstr "Προσαρμοσμένος player ήχου"
|
1170 |
|
1171 |
-
#: ../inc/
|
1172 |
msgid "Video"
|
1173 |
msgstr "Video"
|
1174 |
|
1175 |
-
#: ../inc/
|
1176 |
msgid "Url to mp4/flv video-file"
|
1177 |
msgstr "Διεύθυνση του αρχείου βίντεο mp4/flv"
|
1178 |
|
1179 |
-
#: ../inc/
|
1180 |
msgid "Poster"
|
1181 |
msgstr "Αφίσα"
|
1182 |
|
1183 |
-
#: ../inc/
|
1184 |
msgid "Url to poster image, that will be shown before playback"
|
1185 |
msgstr ""
|
1186 |
"Διεύθυσνη της φωτογραφίας αφίσας, που θα προβάλλεται πριν από την αναπαραγωγή"
|
1187 |
|
1188 |
-
#: ../inc/
|
1189 |
msgid "Player title"
|
1190 |
msgstr "Τίτλος player"
|
1191 |
|
1192 |
-
#: ../inc/
|
1193 |
-
msgid "Minimal"
|
1194 |
-
msgstr "Minimal"
|
1195 |
-
|
1196 |
-
#: ../inc/shortcodes/data.php:769
|
1197 |
msgid "Controls"
|
1198 |
msgstr "Χειριστήρια"
|
1199 |
|
1200 |
-
#: ../inc/
|
1201 |
msgid "Show player controls (play/pause etc.) or not"
|
1202 |
msgstr "Προβολή ή όχι των χειριστηρίων του player (αναπαραγωγή/παύση κτλ)"
|
1203 |
|
1204 |
-
#: ../inc/
|
1205 |
msgid "Custom video player"
|
1206 |
msgstr "Προσαρμοσμένος player για βίντεο"
|
1207 |
|
1208 |
-
#: ../inc/
|
1209 |
msgid "Table"
|
1210 |
msgstr "Table"
|
1211 |
|
1212 |
-
#: ../inc/
|
1213 |
-
msgid "Table style preset"
|
1214 |
-
msgstr "Προκαθορισμένο στυλ πίνακα"
|
1215 |
-
|
1216 |
-
#: ../inc/shortcodes/data.php:808
|
1217 |
msgid "CSV file"
|
1218 |
msgstr "Αρχείο CSV"
|
1219 |
|
1220 |
-
#: ../inc/
|
1221 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1222 |
msgstr ""
|
1223 |
"Μεταφορτώστε ένα αρχείο CSV αν θέλετε να δημιουργήσετε πίνακα - HTML από "
|
1224 |
"αρχείο"
|
1225 |
|
1226 |
-
#: ../inc/
|
1227 |
msgid ""
|
1228 |
"<table>\n"
|
1229 |
"<tr>\n"
|
@@ -1247,399 +1342,419 @@ msgstr ""
|
|
1247 |
"</tr>\n"
|
1248 |
"</table>"
|
1249 |
|
1250 |
-
#: ../inc/
|
1251 |
msgid "Styled table from HTML or CSV file"
|
1252 |
msgstr "Μορφοποιημένος πίνακας από HTML ή CSV αρχείο"
|
1253 |
|
1254 |
-
#: ../inc/
|
1255 |
msgid "Permalink"
|
1256 |
msgstr "Permalink"
|
1257 |
|
1258 |
-
#: ../inc/
|
1259 |
msgid "ID"
|
1260 |
msgstr "ID"
|
1261 |
|
1262 |
-
#: ../inc/
|
1263 |
msgid "Post or page ID"
|
1264 |
msgstr "Δημοσίευση ή ID σελίδας"
|
1265 |
|
1266 |
-
#: ../inc/
|
1267 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1268 |
msgstr ""
|
1269 |
"Στόχος συναδέσμου. Κενό - ο σύνδεσμος θα ανοίξει σε νέο παράθυρο/νέα καρτέλα"
|
1270 |
|
1271 |
-
#: ../inc/
|
1272 |
msgid "Permalink to specified post/page"
|
1273 |
msgstr "Το permalink για τον ορισμό του δημοσιεύματος/της σελίδας"
|
1274 |
|
1275 |
-
#: ../inc/
|
1276 |
msgid "Members"
|
1277 |
msgstr "Members"
|
1278 |
|
1279 |
-
#: ../inc/
|
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/
|
1292 |
msgid "Message"
|
1293 |
-
msgstr "
|
1294 |
|
1295 |
-
#: ../inc/
|
1296 |
msgid "Message for not logged users"
|
1297 |
msgstr "Μήνυμα για μη συνδεδεμένους χρήστες"
|
1298 |
|
1299 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1300 |
msgid "login"
|
1301 |
-
msgstr "
|
1302 |
|
1303 |
-
#: ../inc/
|
1304 |
msgid "Login link text"
|
1305 |
msgstr "Κείμενο διεύθυνσης σύνδεσης"
|
1306 |
|
1307 |
-
#: ../inc/
|
1308 |
msgid "Text for the login link"
|
1309 |
msgstr "Κείμενο για την διεύθυσνη σύνδεσης"
|
1310 |
|
1311 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
1312 |
msgid "Content for logged members"
|
1313 |
msgstr "Περιεχόμενο για συνδεδεμένους χρήστες"
|
1314 |
|
1315 |
-
#: ../inc/
|
1316 |
msgid "Content for logged in members only"
|
1317 |
msgstr "Περιεχόμενο μόνο για συνδεδεμένους χρήστες"
|
1318 |
|
1319 |
-
#: ../inc/
|
1320 |
msgid "Guests"
|
1321 |
msgstr "Guests"
|
1322 |
|
1323 |
-
#: ../inc/
|
1324 |
msgid "Content for guests"
|
1325 |
msgstr "Περιεχόμενο για guests"
|
1326 |
|
1327 |
-
#: ../inc/
|
1328 |
msgid "Content for guests only"
|
1329 |
msgstr "Περιεχόμενο μόνο για guests"
|
1330 |
|
1331 |
-
#: ../inc/
|
1332 |
msgid "RSS Feed"
|
1333 |
msgstr "RSS Feed"
|
1334 |
|
1335 |
-
#: ../inc/
|
1336 |
msgid "Url to RSS-feed"
|
1337 |
msgstr "Διεύθυνση του RSS-feed"
|
1338 |
|
1339 |
-
#: ../inc/
|
1340 |
msgid "Limit"
|
1341 |
msgstr "Όριο"
|
1342 |
|
1343 |
-
#: ../inc/
|
1344 |
msgid "Number of items to show"
|
1345 |
msgstr "Αριθμός αντικειμένων που θα προβάλλονται"
|
1346 |
|
1347 |
-
#: ../inc/
|
1348 |
msgid "Feed grabber"
|
1349 |
msgstr "Feed grabber"
|
1350 |
|
1351 |
-
#: ../inc/
|
1352 |
msgid "Menu"
|
1353 |
msgstr "Menu"
|
1354 |
|
1355 |
-
#: ../inc/
|
1356 |
msgid "Menu name"
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
-
#: ../inc/
|
1360 |
msgid "Custom menu name. Ex: Main menu"
|
1361 |
msgstr "Προσαρμοσμένη ονομασία μενού. Π.χ. Main menu"
|
1362 |
|
1363 |
-
#: ../inc/
|
1364 |
msgid "Custom menu by name"
|
1365 |
msgstr "Προσαρμοσμένο μενού κατά όνομα"
|
1366 |
|
1367 |
-
#: ../inc/
|
1368 |
msgid "Sub pages"
|
1369 |
msgstr "Sub pages"
|
1370 |
|
1371 |
-
#: ../inc/
|
1372 |
msgid "Depth"
|
1373 |
msgstr "Βάθος"
|
1374 |
|
1375 |
-
#: ../inc/
|
1376 |
msgid "Max depth level of children pages"
|
1377 |
msgstr "Μέγιστο επίπεδο βάθους για υποσελίδες"
|
1378 |
|
1379 |
-
#: ../inc/
|
1380 |
msgid "Parent ID"
|
1381 |
msgstr "ID γονέα"
|
1382 |
|
1383 |
-
#: ../inc/
|
1384 |
msgid "ID of the parent page. Leave blank to use current page"
|
1385 |
msgstr ""
|
1386 |
"ID της γονικής σελίδας. Αφήστε το κενό, ώστε να χρησιμοποιηθεί η τρέχουσα "
|
1387 |
"σελίδα"
|
1388 |
|
1389 |
-
#: ../inc/
|
1390 |
msgid "List of sub pages"
|
1391 |
msgstr "Λίστα για υποσελίδες"
|
1392 |
|
1393 |
-
#: ../inc/
|
1394 |
msgid "Siblings"
|
1395 |
msgstr "Siblings"
|
1396 |
|
1397 |
-
#: ../inc/
|
1398 |
msgid "Max depth level"
|
1399 |
msgstr "Μέγιστο επίπεδο βάθους"
|
1400 |
|
1401 |
-
#: ../inc/
|
1402 |
msgid "List of cureent page siblings"
|
1403 |
msgstr "Λίστα από τρέχουσες σελίδες siblings"
|
1404 |
|
1405 |
-
#: ../inc/
|
1406 |
msgid "Document"
|
1407 |
msgstr "Document"
|
1408 |
|
1409 |
-
#: ../inc/
|
1410 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1411 |
msgstr ""
|
1412 |
"Διεύθυνση για τη μεταφόρτωση εγγράφου. Υποστηριζόμενοι τύποι: doc, xls, pdf "
|
1413 |
"κτλ."
|
1414 |
|
1415 |
-
#: ../inc/
|
1416 |
msgid "Viewer width"
|
1417 |
msgstr "Πλάτος Viewer"
|
1418 |
|
1419 |
-
#: ../inc/
|
1420 |
msgid "Viewer height"
|
1421 |
msgstr "Ύψος Viewer"
|
1422 |
|
1423 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
1424 |
msgid "Document viewer by Google"
|
1425 |
msgstr "Viewer εγγράφου από Google"
|
1426 |
|
1427 |
-
#: ../inc/
|
1428 |
msgid "Gmap"
|
1429 |
msgstr "Gmap"
|
1430 |
|
1431 |
-
#: ../inc/
|
1432 |
msgid "Map width"
|
1433 |
msgstr "Πλάτος χάρτη"
|
1434 |
|
1435 |
-
#: ../inc/
|
1436 |
msgid "Map height"
|
1437 |
msgstr "Ύψος χάρτη"
|
1438 |
|
1439 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
1440 |
msgid "Marker"
|
1441 |
msgstr "Δείκτης"
|
1442 |
|
1443 |
-
#: ../inc/
|
1444 |
msgid "Address for the marker. You can type it in any language"
|
1445 |
msgstr "Διεύθυνση του δείκτη. Μπορείτε να την γράψετε σε οποιαδήποτε γλώσσα"
|
1446 |
|
1447 |
-
#: ../inc/
|
1448 |
msgid "Maps by Google"
|
1449 |
msgstr "Χάρτες από Google"
|
1450 |
|
1451 |
-
#: ../inc/
|
1452 |
msgid "Slider"
|
1453 |
msgstr "Slider"
|
1454 |
|
1455 |
-
#: ../inc/
|
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/
|
1465 |
msgid "Slider width (in pixels)"
|
1466 |
msgstr "Πλάτος slider (σε pixels)"
|
1467 |
|
1468 |
-
#: ../inc/
|
1469 |
msgid "Slider height (in pixels)"
|
1470 |
msgstr "Ycow slider (σε pixels)"
|
1471 |
|
1472 |
-
#: ../inc/
|
1473 |
-
|
|
|
|
|
|
|
|
|
|
|
1474 |
msgid "Show titles"
|
1475 |
msgstr "Προβολή τίτλων"
|
1476 |
|
1477 |
-
#: ../inc/
|
1478 |
msgid "Display slide titles"
|
1479 |
msgstr "Προβολή των τίτλων του slide"
|
1480 |
|
1481 |
-
#: ../inc/
|
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/
|
1490 |
msgid "Arrows"
|
1491 |
msgstr "Βέλη"
|
1492 |
|
1493 |
-
#: ../inc/
|
1494 |
msgid "Show left and right arrows"
|
1495 |
msgstr "Προβολή αριστερού και δεξιού βέλους"
|
1496 |
|
1497 |
-
#: ../inc/
|
1498 |
msgid "Pagination"
|
1499 |
msgstr "Σελιδοποίηση"
|
1500 |
|
1501 |
-
#: ../inc/
|
1502 |
msgid "Show pagination"
|
1503 |
msgstr "Προβολή σελιδοποίησης"
|
1504 |
|
1505 |
-
#: ../inc/
|
1506 |
msgid "Mouse wheel control"
|
1507 |
msgstr "Έλεγχος ρόδας ποντικιού"
|
1508 |
|
1509 |
-
#: ../inc/
|
1510 |
msgid "Allow to change slides with mouse wheel"
|
1511 |
msgstr "Επιτρέψτε την αλλαγή των slides με την ρόδα του ποντικιού"
|
1512 |
|
1513 |
-
#: ../inc/
|
1514 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1515 |
msgstr ""
|
1516 |
"Επιλέξτε το χρονικό διάστημα μεταξύ των κινούμενων εικόνων του slide. Ορίστε "
|
1517 |
"σε 0 για απενεργοποίηση την αυτόματης αναπαραγωγής"
|
1518 |
|
1519 |
-
#: ../inc/
|
1520 |
msgid "Speed"
|
1521 |
msgstr "Ταχύτητα"
|
1522 |
|
1523 |
-
#: ../inc/
|
1524 |
msgid "Specify animation speed"
|
1525 |
msgstr "Καθορίστε την ταχύτητα κίνησης"
|
1526 |
|
1527 |
-
#: ../inc/
|
1528 |
-
#: ../inc/
|
1529 |
msgid "Links target"
|
1530 |
msgstr "Στόχος συνδέσμου"
|
1531 |
|
1532 |
-
#: ../inc/
|
1533 |
msgid "Open slides links in new window/tab"
|
1534 |
msgstr "Άνοιγμα των συνδέσμων του slide σε νέο παράθυρο/νέα καρτέλα"
|
1535 |
|
1536 |
-
#: ../inc/
|
1537 |
msgid "Customizable image slider"
|
1538 |
msgstr "Προσαρμοζόμενο slider εικόνων"
|
1539 |
|
1540 |
-
#: ../inc/
|
1541 |
msgid "Carousel"
|
1542 |
msgstr "Carousel"
|
1543 |
|
1544 |
-
#: ../inc/
|
1545 |
msgid "Choose source gallery, that will be used for this carousel"
|
1546 |
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το carousel"
|
1547 |
|
1548 |
-
#: ../inc/
|
1549 |
msgid "Carousel width (in pixels)"
|
1550 |
msgstr "Πλάτος Carousel (σε pixels)"
|
1551 |
|
1552 |
-
#: ../inc/
|
1553 |
msgid "Carousel height (in pixels)"
|
1554 |
msgstr "Ύψος Carousel (σε pixels)"
|
1555 |
|
1556 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
1557 |
msgid "Items to show"
|
1558 |
msgstr "Αντικείμενα για προβολή"
|
1559 |
|
1560 |
-
#: ../inc/
|
1561 |
msgid "How much carousel items is visible"
|
1562 |
msgstr "Πόσα αντικείμενα του Carousel θα προβάλονται"
|
1563 |
|
1564 |
-
#: ../inc/
|
1565 |
msgid "Scroll number"
|
1566 |
msgstr "Αριθμός κύλισης"
|
1567 |
|
1568 |
-
#: ../inc/
|
1569 |
msgid "How much items are scrolled in one transition"
|
1570 |
msgstr "Πόσα στοιχεία μετακυλίονται σε ένα μεταβατικό στάδιο"
|
1571 |
|
1572 |
-
#: ../inc/
|
1573 |
msgid "Display titles for each item"
|
1574 |
msgstr "Προβολή τίτλων για κάθε αντικέιμενο"
|
1575 |
|
1576 |
-
#: ../inc/
|
1577 |
msgid "Is carousel centered on the page"
|
1578 |
msgstr "Είναι το carousel κεντραρισμένο στην σελίδα"
|
1579 |
|
1580 |
-
#: ../inc/
|
1581 |
msgid "Allow to rotate carousel with mouse wheel"
|
1582 |
msgstr "Να επιτρέπεται η περιστροφή του carousel με τη ρόδα του ποντικιού"
|
1583 |
|
1584 |
-
#: ../inc/
|
1585 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1586 |
msgstr ""
|
1587 |
"Επιλέξτε το χρονικό διάστημα μεταξύ των αυτόματων κινούμενων εικόνων. Ορίστε "
|
1588 |
"σε 0 για απενεργοποίηση την αυτόματης αναπαραγωγής"
|
1589 |
|
1590 |
-
#: ../inc/
|
1591 |
msgid "Open carousel links in new window/tab"
|
1592 |
msgstr "Άνοιγμα των συνδέσμων του carousel σε νέο παράθυρο/νέα καρτέλα"
|
1593 |
|
1594 |
-
#: ../inc/
|
1595 |
msgid "Customizable image carousel"
|
1596 |
msgstr "Carousel προσαρμοζόμενης εικόνας"
|
1597 |
|
1598 |
-
#: ../inc/
|
1599 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1600 |
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το shortcode"
|
1601 |
|
1602 |
-
#: ../inc/
|
1603 |
msgid "Single item width (in pixels)"
|
1604 |
msgstr "Πλάτος ενιαίου αντικειμένου (σε pixels)"
|
1605 |
|
1606 |
-
#: ../inc/
|
1607 |
msgid "Single item height (in pixels)"
|
1608 |
msgstr "Ύψος ενιαίου αντικειμένου (σε pixels)"
|
1609 |
|
1610 |
-
#: ../inc/
|
1611 |
msgid "Never"
|
1612 |
msgstr "Ποτέ"
|
1613 |
|
1614 |
-
#: ../inc/
|
1615 |
msgid "On mouse over"
|
1616 |
msgstr "Με το ποντίκι πάνω"
|
1617 |
|
1618 |
-
#: ../inc/
|
1619 |
msgid "Always"
|
1620 |
msgstr "Πάντα"
|
1621 |
|
1622 |
-
#: ../inc/
|
1623 |
msgid "Title display mode"
|
1624 |
msgstr "Τρόπος προβολής τίτλου"
|
1625 |
|
1626 |
-
#: ../inc/
|
1627 |
msgid "Open links in new window/tab"
|
1628 |
msgstr "Άνοιγμα συνδέσμων σε νέο παράθυρο/νέα καρτέλα"
|
1629 |
|
1630 |
-
#: ../inc/
|
1631 |
msgid "Customizable image gallery"
|
1632 |
msgstr "Προσαρμόσιμη γκαλερί εικόνων"
|
1633 |
|
1634 |
-
#: ../inc/
|
1635 |
msgid "Posts"
|
1636 |
msgstr "Posts"
|
1637 |
|
1638 |
-
#: ../inc/
|
1639 |
msgid "Template"
|
1640 |
msgstr "Πρότυπο"
|
1641 |
|
1642 |
-
#: ../inc/
|
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 "
|
@@ -1662,58 +1777,58 @@ msgstr ""
|
|
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/
|
1666 |
msgid "Post ID's"
|
1667 |
msgstr "ID δημοσιευμάτων"
|
1668 |
|
1669 |
-
#: ../inc/
|
1670 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1671 |
msgstr ""
|
1672 |
"Εισάγεται τις ID διαχωρισμένες με κόμμα, για τα δημοσιεύματα που θέλετε να "
|
1673 |
"προβάλλονται"
|
1674 |
|
1675 |
-
#: ../inc/
|
1676 |
msgid "Posts per page"
|
1677 |
msgstr "Δημοσιεύματα ανά σελίδα"
|
1678 |
|
1679 |
-
#: ../inc/
|
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/
|
1687 |
msgid "Post types"
|
1688 |
msgstr "Τύπος δημοσιευμάτων"
|
1689 |
|
1690 |
-
#: ../inc/
|
1691 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1692 |
msgstr ""
|
1693 |
"Επιλέξτε τους τύπους των δημοσιευμάτων. Κρατήστε το πλήκτρο Ctrl για να "
|
1694 |
"επιλέξετε πολλαπλούς τύπους δημοσιευμάτων"
|
1695 |
|
1696 |
-
#: ../inc/
|
1697 |
msgid "Taxonomy"
|
1698 |
msgstr "Taxonomy"
|
1699 |
|
1700 |
-
#: ../inc/
|
1701 |
msgid "Select taxonomy to show posts from"
|
1702 |
msgstr "Επιλέξτε taxonomy για την προβολή άρθρων"
|
1703 |
|
1704 |
-
#: ../inc/
|
1705 |
msgid "Terms"
|
1706 |
msgstr "Όροι"
|
1707 |
|
1708 |
-
#: ../inc/
|
1709 |
msgid "Select terms to show posts from"
|
1710 |
msgstr "Επιλογή όρων για την προβολή δημοσιευμάτων"
|
1711 |
|
1712 |
-
#: ../inc/
|
1713 |
msgid "Taxonomy term operator"
|
1714 |
msgstr "Taxonomy term operator"
|
1715 |
|
1716 |
-
#: ../inc/
|
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 "
|
@@ -1723,196 +1838,332 @@ msgstr ""
|
|
1723 |
">NOT IN - δημοσιεύματα που δεν έχουν οποιονδήποτε όρο επιλεγμένο<br/>AND - "
|
1724 |
"δημοσιεύματα που έχουν όλους τους όρους επιλεγμένους"
|
1725 |
|
1726 |
-
#: ../inc/
|
1727 |
msgid "Authors"
|
1728 |
msgstr "Συγγραφείς"
|
1729 |
|
1730 |
-
#: ../inc/
|
1731 |
msgid "Choose the authors whose posts you want to show"
|
1732 |
msgstr ""
|
1733 |
"Επιλέξτε τους συγγραφείς των οποίων τα δημοσιεύματα θέλετε να προβάλλονται"
|
1734 |
|
1735 |
-
#: ../inc/
|
1736 |
msgid "Meta key"
|
1737 |
msgstr "Κλειδιά μεταδεδομένων"
|
1738 |
|
1739 |
-
#: ../inc/
|
1740 |
msgid "Enter meta key name to show posts that have this key"
|
1741 |
msgstr ""
|
1742 |
"Εισάγεται ονόματα κλειδιών μεταδεδομένων για να προβληθούν τα δημοσιεύματα "
|
1743 |
"που τα έχουν"
|
1744 |
|
1745 |
-
#: ../inc/
|
1746 |
msgid "Offset"
|
1747 |
msgstr "Offset"
|
1748 |
|
1749 |
-
#: ../inc/
|
1750 |
msgid "Specify offset to start posts loop not from first post"
|
1751 |
msgstr ""
|
1752 |
"Ορίστε offset για την έναρξη του κύκλου δημοσιευμάτων, όχι από το πρώτο "
|
1753 |
"δημοσίευμα"
|
1754 |
|
1755 |
-
#: ../inc/
|
1756 |
msgid "Descending"
|
1757 |
msgstr "Φθίνουσα"
|
1758 |
|
1759 |
-
#: ../inc/
|
1760 |
msgid "Ascending"
|
1761 |
msgstr "Αύξουσα"
|
1762 |
|
1763 |
-
#: ../inc/
|
1764 |
msgid "Order"
|
1765 |
msgstr "Σειρά"
|
1766 |
|
1767 |
-
#: ../inc/
|
1768 |
msgid "Posts order"
|
1769 |
msgstr "Σειρά δημοσιευμάτων"
|
1770 |
|
1771 |
-
#: ../inc/
|
1772 |
msgid "Post ID"
|
1773 |
msgstr "ID δημοσιεύματος"
|
1774 |
|
1775 |
-
#: ../inc/
|
1776 |
msgid "Post author"
|
1777 |
msgstr "Συγγραφέας δημοσιεύματος"
|
1778 |
|
1779 |
-
#: ../inc/
|
1780 |
msgid "Post title"
|
1781 |
msgstr "Τίτλος δημοσιεύματος"
|
1782 |
|
1783 |
-
#: ../inc/
|
1784 |
msgid "Post slug"
|
1785 |
msgstr "Slug δημοσιεύματος"
|
1786 |
|
1787 |
-
#: ../inc/
|
1788 |
msgid "Date"
|
1789 |
msgstr "Ημέρα"
|
1790 |
|
1791 |
-
#: ../inc/
|
1792 |
msgid "Last modified date"
|
1793 |
msgstr "Ημέρα τελευταίας τροποποίησης"
|
1794 |
|
1795 |
-
#: ../inc/
|
1796 |
msgid "Post parent"
|
1797 |
msgstr "Γονέας δημοσιεύματος"
|
1798 |
|
1799 |
-
#: ../inc/
|
1800 |
msgid "Random"
|
1801 |
msgstr "Τυχαίο"
|
1802 |
|
1803 |
-
#: ../inc/
|
1804 |
msgid "Comments number"
|
1805 |
msgstr "Αριθμός σχόλιων"
|
1806 |
|
1807 |
-
#: ../inc/
|
1808 |
msgid "Menu order"
|
1809 |
msgstr "Σειρά μενού"
|
1810 |
|
1811 |
-
#: ../inc/
|
1812 |
msgid "Meta key values"
|
1813 |
msgstr "Τιμές κλειδιών μεταδεδομένων"
|
1814 |
|
1815 |
-
#: ../inc/
|
1816 |
msgid "Order by"
|
1817 |
msgstr "Ταξινόμηση κατά"
|
1818 |
|
1819 |
-
#: ../inc/
|
1820 |
msgid "Order posts by"
|
1821 |
msgstr "Ταξινόμηση δημοσιευμάτων κατά"
|
1822 |
|
1823 |
-
#: ../inc/
|
1824 |
msgid "Show childrens of entered post (enter post ID)"
|
1825 |
msgstr ""
|
1826 |
"Προβολή υποδημοσιευμάτων για τα δημοσιεύματα που έχετε εισάγει (εισάγεται ID "
|
1827 |
"δημοσιεύματος)"
|
1828 |
|
1829 |
-
#: ../inc/
|
1830 |
msgid "Published"
|
1831 |
msgstr "Δημοσιευμένα"
|
1832 |
|
1833 |
-
#: ../inc/
|
1834 |
msgid "Pending"
|
1835 |
msgstr "Εν αναμονή"
|
1836 |
|
1837 |
-
#: ../inc/
|
1838 |
msgid "Draft"
|
1839 |
msgstr "Προσχέδιο"
|
1840 |
|
1841 |
-
#: ../inc/
|
1842 |
msgid "Auto-draft"
|
1843 |
msgstr "Αυτόματο προσχέδιο"
|
1844 |
|
1845 |
-
#: ../inc/
|
1846 |
msgid "Future post"
|
1847 |
msgstr "Μελλοντικό δημοσίευμα"
|
1848 |
|
1849 |
-
#: ../inc/
|
1850 |
msgid "Private post"
|
1851 |
msgstr "Ιδιωτικό δημοσίευμα"
|
1852 |
|
1853 |
-
#: ../inc/
|
1854 |
msgid "Inherit"
|
1855 |
msgstr "Κληρονομημένο"
|
1856 |
|
1857 |
-
#: ../inc/
|
1858 |
msgid "Trashed"
|
1859 |
msgstr "Διεγραμμένο"
|
1860 |
|
1861 |
-
#: ../inc/
|
1862 |
msgid "Any"
|
1863 |
msgstr "Οποιοδήποτε"
|
1864 |
|
1865 |
-
#: ../inc/
|
1866 |
msgid "Post status"
|
1867 |
msgstr "Κατάσταση δημοσιεύματος"
|
1868 |
|
1869 |
-
#: ../inc/
|
1870 |
msgid "Show only posts with selected status"
|
1871 |
msgstr "Προβολή μόνο των δημοσιευμάτων με την επιλεγμένη κατάσταση"
|
1872 |
|
1873 |
-
#: ../inc/
|
1874 |
msgid "Ignore sticky"
|
1875 |
msgstr "Παράβλεψη καρφιτσωμένων"
|
1876 |
|
1877 |
-
#: ../inc/
|
1878 |
msgid "Select Yes to ignore posts that is sticked"
|
1879 |
msgstr "Επιλέξτε Ναι για να παραβλέψετε τα καρφιτσωμένα δημοσιεύματα"
|
1880 |
|
1881 |
-
#: ../inc/
|
1882 |
msgid "Custom posts query with customizable template"
|
1883 |
msgstr "Προσαρμοσμένο ερώτημα δημοσιευμάτων με προσαρμοζόμενο πρότυπο"
|
1884 |
|
1885 |
-
#: ../inc/
|
1886 |
-
msgid "
|
1887 |
-
msgstr "
|
1888 |
|
1889 |
-
#: ../inc/
|
1890 |
-
|
1891 |
-
|
1892 |
-
msgstr "παρακαλώ να διευκρινίστε σωστή διεύθυνση"
|
1893 |
|
1894 |
-
#: ../inc/
|
1895 |
-
msgid "
|
1896 |
-
msgstr "
|
1897 |
|
1898 |
-
#: ../inc/
|
1899 |
-
|
1900 |
-
|
1901 |
-
msgstr "δεν βρέθηκαν εικόνες"
|
1902 |
|
1903 |
-
#: ../inc/
|
1904 |
-
msgid "
|
1905 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1906 |
|
1907 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1908 |
msgid "About"
|
1909 |
msgstr "Σχετικά με"
|
1910 |
|
1911 |
-
#: ../inc/
|
1912 |
msgid "Custom formatting"
|
1913 |
msgstr "Προσαρμοσμένη μορφοποίηση"
|
1914 |
|
1915 |
-
#: ../inc/
|
1916 |
msgid ""
|
1917 |
"Disable this option if you have some problems with other plugins or content "
|
1918 |
"formatting"
|
@@ -1920,19 +2171,22 @@ msgstr ""
|
|
1920 |
"Απενεργοποιήστε αυτή την επιλογή αν έχετε προβλήματα με άλλα πρόσθετα ή με "
|
1921 |
"την μορφοποίηση του περιεχομένου"
|
1922 |
|
1923 |
-
#: ../inc/
|
|
|
1924 |
msgid "Documentation article"
|
1925 |
msgstr "Άρθρο τεκμηρίωσης"
|
1926 |
|
1927 |
-
#: ../inc/
|
|
|
|
|
1928 |
msgid "Enabled"
|
1929 |
msgstr "Ενεργοποιημένο"
|
1930 |
|
1931 |
-
#: ../inc/
|
1932 |
msgid "Compatibility mode"
|
1933 |
msgstr "Λειτουργία συμβατότητας"
|
1934 |
|
1935 |
-
#: ../inc/
|
1936 |
msgid ""
|
1937 |
"Enable this option if you have some problems with other plugins that uses "
|
1938 |
"similar shortcode names"
|
@@ -1940,88 +2194,219 @@ msgstr ""
|
|
1940 |
"Ενεργοποιήστε αυτή την επιλογή, αν έχετε προβλήματα με άλλα πρόσθετα που "
|
1941 |
"χρησιμοποιούν παρόμοια ονόματα στα shortcode"
|
1942 |
|
1943 |
-
#: ../inc/
|
1944 |
msgid "etc."
|
1945 |
msgstr "κτλ"
|
1946 |
|
1947 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1948 |
msgid "Custom CSS"
|
1949 |
msgstr "Προσαρμοσμένο CSS"
|
1950 |
|
1951 |
-
#: ../inc/
|
1952 |
msgid "Galleries"
|
1953 |
msgstr "Γκαλερί"
|
1954 |
|
1955 |
-
#: ../inc/
|
1956 |
msgid "Cheatsheet"
|
1957 |
msgstr "Αρχείο Cheatsheet"
|
1958 |
|
1959 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1960 |
msgid "Welcome to Shortcodes Ultimate"
|
1961 |
msgstr "Καλώς ορίσατε στο Shortcodes Ultimate"
|
1962 |
|
1963 |
-
#: ../inc/
|
1964 |
msgid "A real swiss army knife for WordPress"
|
1965 |
msgstr "Ένας ελβετικός σουγιάς για το WordPress"
|
1966 |
|
1967 |
-
#: ../inc/
|
1968 |
-
msgid "
|
1969 |
-
msgstr "Iστοσελίδα του πρόσθετου"
|
1970 |
-
|
1971 |
-
#: ../inc/sunrise/views/about.php:6
|
1972 |
-
msgid "Add-ons"
|
1973 |
msgstr "Πρόσθετα"
|
1974 |
|
1975 |
-
#: ../inc/
|
1976 |
msgid "Documentation"
|
1977 |
msgstr "Τεκμηρίωση"
|
1978 |
|
1979 |
-
#: ../inc/
|
1980 |
-
msgid "
|
1981 |
-
msgstr "
|
1982 |
|
1983 |
-
#: ../inc/
|
1984 |
msgid "Contact author"
|
1985 |
msgstr "Επικοινωνήστε με τον συντάκτη"
|
1986 |
|
1987 |
-
#: ../inc/
|
1988 |
msgid "Plugin features"
|
1989 |
msgstr "Χαρακτηριστικά πρόσθετου"
|
1990 |
|
1991 |
-
#: ../inc/
|
1992 |
-
msgid "
|
1993 |
-
msgstr "
|
1994 |
|
1995 |
-
#: ../inc/
|
1996 |
msgid "Power of CSS3 transitions"
|
1997 |
msgstr "Ενδυναμωμένο με μεταβάσεις του CSS3"
|
1998 |
|
1999 |
-
#: ../inc/
|
2000 |
msgid "Handy shortcodes generator"
|
2001 |
msgstr "Εύχρηστη παραγωγή των shortcode"
|
2002 |
|
2003 |
-
#: ../inc/
|
2004 |
msgid "International"
|
2005 |
-
msgstr "
|
2006 |
|
2007 |
-
#: ../inc/
|
2008 |
msgid "Documented API"
|
2009 |
msgstr "Τεκμηριωμένο API"
|
2010 |
|
2011 |
-
#: ../inc/
|
2012 |
msgid "What is a shortcode?"
|
2013 |
msgstr "Τι είναι τα shortcodes;"
|
2014 |
|
2015 |
-
#: ../inc/
|
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/
|
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."
|
@@ -2030,99 +2415,104 @@ msgstr ""
|
|
2030 |
"με μία γραμμή, που κανονικά θα χρειαζόταν αρκετά περίπλοκο κώδικα. Shortcode "
|
2031 |
"= Συντόμευση."
|
2032 |
|
2033 |
-
#: ../inc/
|
2034 |
-
msgid "How it works"
|
2035 |
-
msgstr "Πως
|
2036 |
|
2037 |
-
#: ../inc/
|
2038 |
msgid "More videos"
|
2039 |
msgstr "Περισσότερα βίντεο"
|
2040 |
|
2041 |
-
#: ../inc/
|
2042 |
msgid "Shortcodes Ultimate Tutorial"
|
2043 |
msgstr "Εκμάθηση του Shortcodes Ultimate"
|
2044 |
|
2045 |
-
#: ../inc/
|
2046 |
msgid "How to use special widget"
|
2047 |
msgstr "Πως να χρησιμοποιείται συγκεκριμένα widget"
|
2048 |
|
2049 |
-
#: ../inc/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2050 |
msgid "Shortcode"
|
2051 |
msgstr "Shortcode"
|
2052 |
|
2053 |
-
#: ../inc/
|
2054 |
msgid "Parameters"
|
2055 |
msgstr "Παράμετροι"
|
2056 |
|
2057 |
-
#: ../inc/
|
2058 |
msgid "Example"
|
2059 |
msgstr "Παράδειγμα"
|
2060 |
|
2061 |
-
#: ../inc/
|
2062 |
msgid "Demo"
|
2063 |
msgstr "Επίδειξη"
|
2064 |
|
2065 |
-
#: ../inc/
|
2066 |
msgid "Default value"
|
2067 |
msgstr "Προκαθορισμένη τιμή"
|
2068 |
|
2069 |
-
#: ../inc/
|
2070 |
msgid "-- no parameters --"
|
2071 |
msgstr "-- χωρίς παραμέτρους --"
|
2072 |
|
2073 |
-
#: ../inc/
|
2074 |
msgid "Save changes"
|
2075 |
msgstr "Αποθήκευση αλλαγών"
|
2076 |
|
2077 |
-
#: ../inc/
|
2078 |
msgid "Saving"
|
2079 |
msgstr "Αποθηκεύεται"
|
2080 |
|
2081 |
-
#: ../inc/
|
2082 |
msgid "Saved"
|
2083 |
msgstr "Αποθηκεύτηκε"
|
2084 |
|
2085 |
-
#: ../inc/
|
2086 |
msgid ""
|
2087 |
-
"
|
|
|
2088 |
msgstr ""
|
2089 |
-
"
|
2090 |
-
"ενέργεια δεν μπορεί να αναιρεθεί!!!"
|
2091 |
|
2092 |
-
#: ../inc/
|
2093 |
msgid "Restore default settings"
|
2094 |
msgstr "Επαναφορά προκαθορισμένων ρυθμίσεων"
|
2095 |
|
2096 |
-
#: ../inc/
|
2097 |
msgid "Insert code"
|
2098 |
msgstr "Εισαγωγή κώδικα"
|
2099 |
|
2100 |
-
#: ../inc/
|
2101 |
msgid "You can see the original styles to override it"
|
2102 |
msgstr "Μπορείτε να δείτε το πρωτότυπο στυλ για να το παρακάμψετε"
|
2103 |
|
2104 |
-
#: ../inc/
|
2105 |
msgid "You can use next variables in your custom CSS"
|
2106 |
msgstr ""
|
2107 |
"Μπορείτε να χρησμοποιείσετε τις ακόλουθες μεταβλητές στο προσαρμοσμένο CSS"
|
2108 |
|
2109 |
-
#: ../inc/
|
2110 |
msgid "home url"
|
2111 |
msgstr "διεύθυνση αρχικής σελίδας"
|
2112 |
|
2113 |
-
#: ../inc/
|
2114 |
msgid "theme url"
|
2115 |
msgstr "διεύθυνση θέματος"
|
2116 |
|
2117 |
-
#: ../inc/
|
2118 |
msgid "plugin url"
|
2119 |
msgstr "διεύθυνση πρόσθετου"
|
2120 |
|
2121 |
-
#: ../inc/
|
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!"
|
@@ -2130,83 +2520,76 @@ msgstr ""
|
|
2130 |
"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την γκαλερί; Αυτή η ενέργεια "
|
2131 |
"δεν μπορεί να αναιρεθεί!!!"
|
2132 |
|
2133 |
-
#: ../inc/
|
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/
|
2141 |
msgid "Create new gallery"
|
2142 |
msgstr "Δημιουργία νέας γκαλερί"
|
2143 |
|
2144 |
-
#: ../inc/
|
2145 |
msgid "Enter gallery name"
|
2146 |
msgstr "Εισάγετε το όνομα της γκαλερί"
|
2147 |
|
2148 |
-
#: ../inc/
|
2149 |
msgid "Edit gallery"
|
2150 |
msgstr "Επεξεργασία γκαλερί"
|
2151 |
|
2152 |
-
#: ../inc/
|
2153 |
msgid "Save & close"
|
2154 |
msgstr "Αποθήκευση & κλείσιμο"
|
2155 |
|
2156 |
-
#: ../inc/
|
2157 |
-
#: ../inc/
|
2158 |
-
#: ../inc/sunrise/views/galleries.php:107
|
2159 |
msgid "Close"
|
2160 |
msgstr "Κλείσιμο"
|
2161 |
|
2162 |
-
#: ../inc/
|
2163 |
-
#: ../inc/
|
2164 |
msgid "Delete"
|
2165 |
msgstr "Διαγραφή"
|
2166 |
|
2167 |
-
#: ../inc/
|
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/
|
2176 |
msgid "Instructions"
|
2177 |
msgstr "Οδηγίες"
|
2178 |
|
2179 |
-
#: ../inc/
|
2180 |
-
#: ../inc/
|
2181 |
-
#: ../inc/sunrise/views/notifications.php:28
|
2182 |
-
#: ../inc/sunrise/views/notifications.php:36
|
2183 |
msgid "Click to close"
|
2184 |
msgstr "Πατήστε για κλείσιμο"
|
2185 |
|
2186 |
-
#: ../inc/
|
2187 |
msgid ""
|
2188 |
"For full functionality of this page it is reccomended to enable javascript."
|
2189 |
msgstr ""
|
2190 |
"Για την πλήρη ενεργοποίηση των χαρακτηριστικών αυτής της σελίδας, προτείνετε "
|
2191 |
"να ενεργοποιήσετε την javascript."
|
2192 |
|
2193 |
-
#: ../inc/
|
2194 |
msgid "Settings reseted successfully"
|
2195 |
msgstr "Οι ρυθμίσεις επαναφέρθηκαν επιτυχώς"
|
2196 |
|
2197 |
-
#: ../inc/
|
2198 |
msgid "There is already default settings"
|
2199 |
msgstr "Αυτές είναι ήδη οι προκαθορισμένες ρυθμίσεις"
|
2200 |
|
2201 |
-
#: ../inc/
|
2202 |
msgid "Settings saved successfully"
|
2203 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς"
|
2204 |
|
2205 |
-
#: ../inc/
|
2206 |
msgid "Settings not saved, because there is no changes"
|
2207 |
msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν, διότι δεν υπάρχουν αλλαγές"
|
2208 |
|
2209 |
-
#: ../inc/
|
2210 |
msgid "Upload"
|
2211 |
msgstr "Μεταφόρτωση"
|
2212 |
|
@@ -2230,3 +2613,84 @@ msgstr "%n σχόλια"
|
|
2230 |
#: ../templates/single-post.php:30 ../templates/teaser-loop.php:22
|
2231 |
msgid "Posts not found"
|
2232 |
msgstr "Τα δημοσιεύματα δεν βρέθηκαν"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Shortcodes Ultimate 4.1.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-01 10:35+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-10-01 22:10+0200\n"
|
7 |
"Last-Translator: Kleanthis Manolopoulos <akis_manolopoulos@hotmail.com>\n"
|
8 |
"Language-Team: Kleanthis Manolopoulos <akis_manolopoulos@hotmail.com>\n"
|
9 |
+
"Language: el_GR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
16 |
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
|
|
|
|
|
|
|
|
|
|
19 |
#: ../inc/example-addon.php:29
|
20 |
msgid "Heading 2"
|
21 |
msgstr "Κεφαλίδα 2"
|
22 |
|
23 |
+
#: ../inc/example-addon.php:43 ../inc/core/class.data.php:158
|
24 |
+
#: ../inc/core/class.data.php:276 ../inc/core/class.data.php:356
|
25 |
+
#: ../inc/core/class.data.php:517 ../inc/core/class.data.php:654
|
26 |
+
#: ../inc/core/class.data.php:813
|
|
|
|
|
|
|
|
|
27 |
msgid "Default"
|
28 |
msgstr "Προεπιλογή"
|
29 |
|
31 |
msgid "Small"
|
32 |
msgstr "Μικρό"
|
33 |
|
34 |
+
#: ../inc/example-addon.php:49 ../inc/core/class.data.php:163
|
35 |
+
#: ../inc/core/class.data.php:362 ../inc/core/class.data.php:481
|
36 |
+
#: ../inc/core/class.data.php:527 ../inc/core/class.data.php:661
|
37 |
+
#: ../inc/core/class.data.php:783
|
|
|
|
|
|
|
|
|
38 |
msgid "Style"
|
39 |
msgstr "Στυλ"
|
40 |
|
50 |
msgid "Styled heading 2"
|
51 |
msgstr "Μορφοποίημένη κεφαλίδα 2"
|
52 |
|
53 |
+
#: ../inc/core/class.assets.php:76
|
54 |
+
msgid ""
|
55 |
+
"This shortcode doesn't work in live preview. Please insert it into editor "
|
56 |
+
"and preview on the site."
|
57 |
+
msgstr ""
|
58 |
+
"Αυτό το shortcode δεν λειτουργεί στη ζωντανη απεικόνηση. Παρακαλώ να τον "
|
59 |
+
"εισάγετε στον επεξεργαστή κειμένου και να τον δείτε στην ιστοσελίδα σας."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
+
#: ../inc/core/class.data.php:34
|
62 |
msgid "All"
|
63 |
msgstr "Όλα"
|
64 |
|
65 |
+
#: ../inc/core/class.data.php:35 ../inc/core/class.generator.php:233
|
66 |
msgid "Content"
|
67 |
msgstr "Περιεχόμενο"
|
68 |
|
69 |
+
#: ../inc/core/class.data.php:36 ../inc/core/class.data.php:642
|
70 |
+
msgid "Box"
|
71 |
+
msgstr "Box"
|
72 |
|
73 |
+
#: ../inc/core/class.data.php:37
|
74 |
msgid "Media"
|
75 |
msgstr "Πολυμέσα"
|
76 |
|
77 |
+
#: ../inc/core/class.data.php:38 ../inc/core/class.data.php:1413
|
78 |
+
#: ../inc/core/class.data.php:1503 ../inc/core/class.data.php:1603
|
79 |
+
#: ../inc/core/class.data.php:1609
|
80 |
+
msgid "Gallery"
|
81 |
+
msgstr "Gallery"
|
82 |
+
|
83 |
+
#: ../inc/core/class.data.php:39
|
84 |
msgid "Other"
|
85 |
msgstr "Άλλα"
|
86 |
|
87 |
+
#: ../inc/core/class.data.php:50
|
88 |
+
msgid "Heading"
|
89 |
+
msgstr "Heading"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
+
#: ../inc/core/class.data.php:60 ../inc/core/class.data.php:367
|
92 |
+
#: ../inc/core/class.data.php:444 ../inc/core/class.data.php:545
|
93 |
+
msgid "Size"
|
94 |
+
msgstr "Μέγεθος"
|
95 |
|
96 |
+
#: ../inc/core/class.data.php:60
|
97 |
+
msgid "Select heading size"
|
98 |
+
msgstr "Μορφοποιημένη κεφαλίδα 2"
|
99 |
|
100 |
+
#: ../inc/core/class.data.php:65 ../inc/core/class.data.php:332
|
101 |
+
#: ../inc/core/class.data.php:587 ../inc/core/class.data.php:791
|
102 |
+
msgid "Left"
|
103 |
+
msgstr "Αριστερά"
|
104 |
|
105 |
+
#: ../inc/core/class.data.php:66 ../inc/core/class.data.php:1446
|
106 |
+
#: ../inc/core/class.data.php:1552
|
107 |
+
msgid "Center"
|
108 |
+
msgstr "Κέντρο"
|
109 |
|
110 |
+
#: ../inc/core/class.data.php:67 ../inc/core/class.data.php:333
|
111 |
+
#: ../inc/core/class.data.php:585 ../inc/core/class.data.php:792
|
112 |
+
msgid "Right"
|
113 |
+
msgstr "Δεξιά"
|
114 |
|
115 |
+
#: ../inc/core/class.data.php:70 ../inc/core/class.data.php:336
|
116 |
+
#: ../inc/core/class.data.php:392
|
117 |
+
msgid "Align"
|
118 |
+
msgstr "Στοίχιση"
|
119 |
|
120 |
+
#: ../inc/core/class.data.php:70
|
121 |
+
msgid "Heading text alignment"
|
122 |
+
msgstr "Στοίχιση κειμένου κεφαλίδας"
|
123 |
+
|
124 |
+
#: ../inc/core/class.data.php:74 ../inc/core/class.data.php:104
|
125 |
+
#: ../inc/core/class.data.php:131 ../inc/core/class.data.php:168
|
126 |
+
#: ../inc/core/class.data.php:182 ../inc/core/class.data.php:209
|
127 |
+
#: ../inc/core/class.data.php:232 ../inc/core/class.data.php:260
|
128 |
+
#: ../inc/core/class.data.php:289 ../inc/core/class.data.php:316
|
129 |
+
#: ../inc/core/class.data.php:340 ../inc/core/class.data.php:371
|
130 |
+
#: ../inc/core/class.data.php:397 ../inc/core/class.data.php:413
|
131 |
+
#: ../inc/core/class.data.php:449 ../inc/core/class.data.php:485
|
132 |
+
#: ../inc/core/class.data.php:600 ../inc/core/class.data.php:634
|
133 |
+
#: ../inc/core/class.data.php:686 ../inc/core/class.data.php:721
|
134 |
+
#: ../inc/core/class.data.php:752 ../inc/core/class.data.php:854
|
135 |
+
#: ../inc/core/class.data.php:870 ../inc/core/class.data.php:922
|
136 |
+
#: ../inc/core/class.data.php:971 ../inc/core/class.data.php:1013
|
137 |
+
#: ../inc/core/class.data.php:1051 ../inc/core/class.data.php:1120
|
138 |
+
#: ../inc/core/class.data.php:1141 ../inc/core/class.data.php:1172
|
139 |
+
#: ../inc/core/class.data.php:1205 ../inc/core/class.data.php:1221
|
140 |
+
#: ../inc/core/class.data.php:1246 ../inc/core/class.data.php:1265
|
141 |
+
#: ../inc/core/class.data.php:1291 ../inc/core/class.data.php:1311
|
142 |
+
#: ../inc/core/class.data.php:1355 ../inc/core/class.data.php:1399
|
143 |
+
#: ../inc/core/class.data.php:1489 ../inc/core/class.data.php:1595
|
144 |
+
#: ../inc/core/class.data.php:1646
|
145 |
+
msgid "Class"
|
146 |
+
msgstr "Κλάση"
|
147 |
+
|
148 |
+
#: ../inc/core/class.data.php:75 ../inc/core/class.data.php:105
|
149 |
+
#: ../inc/core/class.data.php:132 ../inc/core/class.data.php:169
|
150 |
+
#: ../inc/core/class.data.php:183 ../inc/core/class.data.php:210
|
151 |
+
#: ../inc/core/class.data.php:233 ../inc/core/class.data.php:261
|
152 |
+
#: ../inc/core/class.data.php:290 ../inc/core/class.data.php:317
|
153 |
+
#: ../inc/core/class.data.php:341 ../inc/core/class.data.php:372
|
154 |
+
#: ../inc/core/class.data.php:398 ../inc/core/class.data.php:414
|
155 |
+
#: ../inc/core/class.data.php:450 ../inc/core/class.data.php:486
|
156 |
+
#: ../inc/core/class.data.php:601 ../inc/core/class.data.php:635
|
157 |
+
#: ../inc/core/class.data.php:687 ../inc/core/class.data.php:722
|
158 |
+
#: ../inc/core/class.data.php:753 ../inc/core/class.data.php:855
|
159 |
+
#: ../inc/core/class.data.php:871 ../inc/core/class.data.php:923
|
160 |
+
#: ../inc/core/class.data.php:972 ../inc/core/class.data.php:1014
|
161 |
+
#: ../inc/core/class.data.php:1052 ../inc/core/class.data.php:1121
|
162 |
+
#: ../inc/core/class.data.php:1142 ../inc/core/class.data.php:1173
|
163 |
+
#: ../inc/core/class.data.php:1206 ../inc/core/class.data.php:1222
|
164 |
+
#: ../inc/core/class.data.php:1247 ../inc/core/class.data.php:1266
|
165 |
+
#: ../inc/core/class.data.php:1292 ../inc/core/class.data.php:1312
|
166 |
+
#: ../inc/core/class.data.php:1356 ../inc/core/class.data.php:1400
|
167 |
+
#: ../inc/core/class.data.php:1490 ../inc/core/class.data.php:1596
|
168 |
+
#: ../inc/core/class.data.php:1647
|
169 |
+
msgid "Extra CSS class"
|
170 |
+
msgstr "Επιπρόσθετη CSS κλάση"
|
171 |
+
|
172 |
+
#: ../inc/core/class.data.php:78
|
173 |
msgid "Heading text"
|
174 |
msgstr "Κείμενο κεφαλίδας"
|
175 |
|
176 |
+
#: ../inc/core/class.data.php:79
|
177 |
msgid "Styled heading"
|
178 |
msgstr "Μορφοποιημένη κεφαλίδα"
|
179 |
|
180 |
+
#: ../inc/core/class.data.php:83
|
181 |
msgid "Tabs"
|
182 |
msgstr "Tabs"
|
183 |
|
184 |
+
#: ../inc/core/class.data.php:93
|
185 |
+
msgid "Active tab"
|
186 |
+
msgstr "Ενεργή καρτέλα"
|
187 |
+
|
188 |
+
#: ../inc/core/class.data.php:94
|
189 |
+
msgid "Select which tab is open by default"
|
190 |
+
msgstr "Επιλέξτε την προεπιλεγμένη καρτέλα που θα είναι ανοιχτή"
|
191 |
+
|
192 |
+
#: ../inc/core/class.data.php:99
|
193 |
msgid "Vertical"
|
194 |
msgstr "Κάθετο"
|
195 |
|
196 |
+
#: ../inc/core/class.data.php:100
|
197 |
+
msgid "Show tabs vertically"
|
198 |
+
msgstr "Προβολή καρτελών κάθετα"
|
199 |
|
200 |
+
#: ../inc/core/class.data.php:109
|
201 |
msgid ""
|
202 |
+
"[%prefix_tab title=\"Title 1\"]Content 1[/%prefix_tab]\n"
|
203 |
+
"[%prefix_tab title=\"Title 2\"]Content 2[/%prefix_tab]\n"
|
204 |
+
"[%prefix_tab title=\"Title 3\"]Content 3[/%prefix_tab]"
|
205 |
msgstr ""
|
206 |
+
"[%prefix_tab title=\"Τίτλος 1\"]Περιεχόμενο 1[/%prefix_tab]\n"
|
207 |
+
"[%prefix_tab title=\"Τίτλος 2\"]Περιεχόμενο 2[/%prefix_tab]\n"
|
208 |
+
"[%prefix_tab title=\"Τίτλος 3\"]Περιεχόμενο 3[/%prefix_tab]"
|
209 |
|
210 |
+
#: ../inc/core/class.data.php:110
|
211 |
msgid "Tabs container"
|
212 |
msgstr "Δοχείο καρτελών"
|
213 |
|
214 |
+
#: ../inc/core/class.data.php:114
|
215 |
msgid "Tab"
|
216 |
msgstr "Tab"
|
217 |
|
218 |
+
#: ../inc/core/class.data.php:119
|
219 |
msgid "Tab name"
|
220 |
+
msgstr "Όνομα καρτέλας"
|
221 |
|
222 |
+
#: ../inc/core/class.data.php:120 ../inc/core/class.data.php:147
|
223 |
+
#: ../inc/core/class.data.php:616 ../inc/core/class.data.php:649
|
224 |
+
#: ../inc/core/class.data.php:1079 ../inc/views/galleries.php:45
|
225 |
+
#: ../inc/views/galleries.php:100
|
226 |
msgid "Title"
|
227 |
msgstr "Τίτλος"
|
228 |
|
229 |
+
#: ../inc/core/class.data.php:121
|
230 |
msgid "Enter tab name"
|
231 |
+
msgstr "Εισάγετε το όνομα της καρτέλας"
|
232 |
+
|
233 |
+
#: ../inc/core/class.data.php:126
|
234 |
+
msgid "Disabled"
|
235 |
+
msgstr "Απενεργοποιημένο"
|
236 |
|
237 |
+
#: ../inc/core/class.data.php:127
|
238 |
+
msgid "Is this tab disabled"
|
239 |
+
msgstr "Είναι αυτή η καρτέλα απενεργοποιημένη"
|
240 |
+
|
241 |
+
#: ../inc/core/class.data.php:136
|
242 |
msgid "Tab content"
|
243 |
+
msgstr "Περιεχόμενο της καρτέλας"
|
244 |
|
245 |
+
#: ../inc/core/class.data.php:137
|
246 |
msgid "Single tab"
|
247 |
msgstr "Ενιαία καρτέλα"
|
248 |
|
249 |
+
#: ../inc/core/class.data.php:141
|
250 |
msgid "Spoiler"
|
251 |
msgstr "Spoiler"
|
252 |
|
253 |
+
#: ../inc/core/class.data.php:146 ../inc/core/shortcodes.php:93
|
254 |
msgid "Spoiler title"
|
255 |
msgstr "Τίτλος Spoiler"
|
256 |
|
257 |
+
#: ../inc/core/class.data.php:147
|
258 |
msgid "Text in spoiler title"
|
259 |
msgstr "Κείμενο στον τίτλο του spoiler"
|
260 |
|
261 |
+
#: ../inc/core/class.data.php:152
|
262 |
msgid "Open"
|
263 |
msgstr "Ανοιχτό"
|
264 |
|
265 |
+
#: ../inc/core/class.data.php:153
|
266 |
msgid "Is spoiler content visible by default"
|
267 |
msgstr "Είναι το περιεχόμενο του spoiler προκαθορισμένα ορατό"
|
268 |
|
269 |
+
#: ../inc/core/class.data.php:159
|
270 |
+
msgid "Fancy"
|
271 |
+
msgstr "Fancy"
|
272 |
+
|
273 |
+
#: ../inc/core/class.data.php:160 ../inc/core/class.data.php:359
|
274 |
+
msgid "Simple"
|
275 |
+
msgstr "Απλό"
|
276 |
+
|
277 |
+
#: ../inc/core/class.data.php:164
|
278 |
+
msgid "Spoiler skin"
|
279 |
+
msgstr "Spoiler skin"
|
280 |
|
281 |
+
#: ../inc/core/class.data.php:172
|
282 |
msgid "Hidden content"
|
283 |
msgstr "Κρυμένο περιεχόμενο"
|
284 |
|
285 |
+
#: ../inc/core/class.data.php:172
|
286 |
msgid "Spoiler with hidden content"
|
287 |
msgstr "Spoiler με κρυφό περιεχόμενο"
|
288 |
|
289 |
+
#: ../inc/core/class.data.php:176
|
290 |
msgid "Accordion"
|
291 |
msgstr "Accordion"
|
292 |
|
293 |
+
#: ../inc/core/class.data.php:187
|
294 |
msgid ""
|
295 |
+
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
296 |
+
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
297 |
+
"[%prefix_spoiler]Content[/%prefix_spoiler]"
|
298 |
msgstr ""
|
299 |
+
"[%prefix_spoiler]Περιεχόμενο[/%prefix_spoiler]\n"
|
300 |
+
"[%prefix_spoiler]Περιεχόμενο[/%prefix_spoiler]\n"
|
301 |
+
"[%prefix_spoiler]Περιεχόμενο[/%prefix_spoiler]"
|
302 |
|
303 |
+
#: ../inc/core/class.data.php:188
|
304 |
msgid "Accordion with spoilers"
|
305 |
msgstr "Accordion με spoilers"
|
306 |
|
307 |
+
#: ../inc/core/class.data.php:192
|
308 |
msgid "Divider"
|
309 |
msgstr "Divider"
|
310 |
|
311 |
+
#: ../inc/core/class.data.php:199
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Show TOP link"
|
313 |
msgstr "Προβολή συνδέσμου TOP"
|
314 |
|
315 |
+
#: ../inc/core/class.data.php:200
|
316 |
msgid "Show link to top of the page or not"
|
317 |
msgstr "Προβολή ή όχι του συνδέσμου στο πάνω μέρος της σελίδας"
|
318 |
|
319 |
+
#: ../inc/core/class.data.php:204 ../inc/core/shortcodes.php:128
|
320 |
msgid "Go to top"
|
321 |
msgstr "Επιστροφή στην αρχή"
|
322 |
|
323 |
+
#: ../inc/core/class.data.php:205
|
324 |
msgid "Link text"
|
325 |
msgstr "Κείμενο συνδέσμου"
|
326 |
|
327 |
+
#: ../inc/core/class.data.php:205
|
328 |
msgid "Text for the GO TOP link"
|
329 |
msgstr "Κείμενο για τον σύνδεσμο GO TOP"
|
330 |
|
331 |
+
#: ../inc/core/class.data.php:214
|
332 |
msgid "Content divider with optional TOP link"
|
333 |
msgstr "Περιεχόμενο του divider με προαιρετικό σύνδεσμο TOP"
|
334 |
|
335 |
+
#: ../inc/core/class.data.php:218
|
336 |
msgid "Spacer"
|
337 |
msgstr "Spacer"
|
338 |
|
339 |
+
#: ../inc/core/class.data.php:228 ../inc/core/class.data.php:905
|
340 |
+
#: ../inc/core/class.data.php:954 ../inc/core/class.data.php:1002
|
341 |
+
#: ../inc/core/class.data.php:1097 ../inc/core/class.data.php:1344
|
342 |
+
#: ../inc/core/class.data.php:1382 ../inc/core/class.data.php:1430
|
343 |
+
#: ../inc/core/class.data.php:1520 ../inc/core/class.data.php:1626
|
344 |
msgid "Height"
|
345 |
msgstr "Ύψος"
|
346 |
|
347 |
+
#: ../inc/core/class.data.php:228
|
348 |
msgid "Height of the spacer in pixels"
|
349 |
msgstr "Ύψος του spacer σε pixels"
|
350 |
|
351 |
+
#: ../inc/core/class.data.php:237
|
352 |
msgid "Empty space with adjustable height"
|
353 |
msgstr "Κενός χώρος με ρυθμιζόμενο ύψος"
|
354 |
|
355 |
+
#: ../inc/core/class.data.php:241
|
356 |
msgid "Highlight"
|
357 |
msgstr "Highlight"
|
358 |
|
359 |
+
#: ../inc/core/class.data.php:249 ../inc/core/class.data.php:533
|
360 |
+
#: ../inc/core/class.data.php:704
|
361 |
msgid "Background"
|
362 |
msgstr "Φόντο"
|
363 |
|
364 |
+
#: ../inc/core/class.data.php:250
|
365 |
msgid "Highlighted text background color"
|
366 |
msgstr "Χρώμα φόντου τονισμένου κειμένου"
|
367 |
|
368 |
+
#: ../inc/core/class.data.php:256 ../inc/core/class.data.php:539
|
369 |
+
#: ../inc/core/class.data.php:710
|
370 |
msgid "Text color"
|
371 |
msgstr "Χρώμα κειμένου"
|
372 |
|
373 |
+
#: ../inc/core/class.data.php:256
|
374 |
msgid "Highlighted text color"
|
375 |
msgstr "Χρώμα κειμένου"
|
376 |
|
377 |
+
#: ../inc/core/class.data.php:264 ../inc/core/class.data.php:265
|
378 |
msgid "Highlighted text"
|
379 |
msgstr "Τονισμένο κείμενο"
|
380 |
|
381 |
+
#: ../inc/core/class.data.php:269 ../inc/core/class.data.php:293
|
382 |
msgid "Label"
|
383 |
msgstr "Label"
|
384 |
|
385 |
+
#: ../inc/core/class.data.php:277
|
386 |
msgid "Success"
|
387 |
msgstr "Επιτυχία"
|
388 |
|
389 |
+
#: ../inc/core/class.data.php:278
|
390 |
msgid "Warning"
|
391 |
msgstr "Προειδοποίηση"
|
392 |
|
393 |
+
#: ../inc/core/class.data.php:279
|
394 |
msgid "Important"
|
395 |
msgstr "Σημαντικό"
|
396 |
|
397 |
+
#: ../inc/core/class.data.php:280
|
398 |
msgid "Black"
|
399 |
msgstr "Μαύρο"
|
400 |
|
401 |
+
#: ../inc/core/class.data.php:281
|
402 |
msgid "Info"
|
403 |
msgstr "Πληροφορίες"
|
404 |
|
405 |
+
#: ../inc/core/class.data.php:284
|
406 |
msgid "Type"
|
407 |
msgstr "Τύπος"
|
408 |
|
409 |
+
#: ../inc/core/class.data.php:285
|
410 |
msgid "Style of the label"
|
411 |
msgstr "Στυλ ετικέτας"
|
412 |
|
413 |
+
#: ../inc/core/class.data.php:294
|
414 |
msgid "Styled label"
|
415 |
msgstr "Μορφοποιημένη ετικέτα"
|
416 |
|
417 |
+
#: ../inc/core/class.data.php:298 ../inc/core/class.data.php:320
|
418 |
msgid "Quote"
|
419 |
msgstr "Quote"
|
420 |
|
421 |
+
#: ../inc/core/class.data.php:305
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
msgid "Cite"
|
423 |
msgstr "Αναφορά"
|
424 |
|
425 |
+
#: ../inc/core/class.data.php:306
|
426 |
msgid "Quote author name"
|
427 |
msgstr "Παράθεση ονόματος του συγγραφέα"
|
428 |
|
429 |
+
#: ../inc/core/class.data.php:311
|
430 |
msgid "Cite url"
|
431 |
msgstr "Διεύθυνση αναφοράς"
|
432 |
|
433 |
+
#: ../inc/core/class.data.php:312
|
434 |
msgid "Url of the quote author. Leave empty to disable link"
|
435 |
msgstr ""
|
436 |
"Διεύθυνση του συγγραφέα αναφοράς. Αφήστε κενό για απενεργοποίηση του "
|
437 |
"συνδέσμου"
|
438 |
|
439 |
+
#: ../inc/core/class.data.php:321
|
440 |
msgid "Blockquote alternative"
|
441 |
msgstr "Εναλλακτικά blockquote"
|
442 |
|
443 |
+
#: ../inc/core/class.data.php:325 ../inc/core/class.data.php:344
|
444 |
+
#: ../inc/core/class.data.php:345
|
445 |
msgid "Pullquote"
|
446 |
msgstr "Pullquote"
|
447 |
|
448 |
+
#: ../inc/core/class.data.php:336
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
msgid "Pullquote alignment (float)"
|
450 |
msgstr "Στοίχιση Pullquote (float)"
|
451 |
|
452 |
+
#: ../inc/core/class.data.php:349 ../inc/core/class.data.php:376
|
453 |
msgid "Dropcap"
|
454 |
msgstr "Dropcap"
|
455 |
|
456 |
+
#: ../inc/core/class.data.php:357 ../inc/core/class.data.php:518
|
457 |
+
msgid "Flat"
|
458 |
+
msgstr "Επίπεδο"
|
459 |
+
|
460 |
+
#: ../inc/core/class.data.php:358 ../inc/core/class.data.php:574
|
461 |
+
msgid "Light"
|
462 |
+
msgstr "Ανάλαφρο"
|
463 |
+
|
464 |
+
#: ../inc/core/class.data.php:362
|
465 |
msgid "Dropcap style preset"
|
466 |
msgstr "Προκαθορισμένο στυλ dropcap"
|
467 |
|
468 |
+
#: ../inc/core/class.data.php:367
|
|
|
|
|
|
|
|
|
|
|
469 |
msgid "Choose dropcap size"
|
470 |
msgstr "Επιλέξτε το μέγεθος του dropcap"
|
471 |
|
472 |
+
#: ../inc/core/class.data.php:375
|
473 |
msgid "D"
|
474 |
msgstr "Δ"
|
475 |
|
476 |
+
#: ../inc/core/class.data.php:380
|
477 |
+
msgid "Frame"
|
478 |
+
msgstr "Frame"
|
479 |
|
480 |
+
#: ../inc/core/class.data.php:393
|
481 |
+
msgid "Frame alignment"
|
482 |
+
msgstr "Στοίχιση της Frame"
|
483 |
|
484 |
+
#: ../inc/core/class.data.php:403
|
485 |
+
msgid "Styled image frame"
|
486 |
+
msgstr "Μορφοποιημένο περίγραμμα εικόνας"
|
487 |
|
488 |
+
#: ../inc/core/class.data.php:407
|
489 |
+
msgid "Row"
|
490 |
+
msgstr "Row"
|
491 |
+
|
492 |
+
#: ../inc/core/class.data.php:418
|
493 |
msgid ""
|
494 |
+
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
495 |
+
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
496 |
+
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]"
|
497 |
msgstr ""
|
498 |
+
"[%prefix_column size=\"1/3\"]Περιεχόμενο[/%prefix_column]\n"
|
499 |
+
"[%prefix_column size=\"1/3\"]Περιεχόμενο[/%prefix_column]\n"
|
500 |
+
"[%prefix_column size=\"1/3\"]Περιεχόμενο[/%prefix_column]"
|
501 |
|
502 |
+
#: ../inc/core/class.data.php:419
|
503 |
msgid "Row for flexible columns"
|
504 |
msgstr "Γραμμή για ευέλικτες στήλες"
|
505 |
|
506 |
+
#: ../inc/core/class.data.php:423
|
507 |
msgid "Column"
|
508 |
msgstr "Column"
|
509 |
|
510 |
+
#: ../inc/core/class.data.php:430
|
511 |
msgid "Full width"
|
512 |
msgstr "Πλήρες πλάτος"
|
513 |
|
514 |
+
#: ../inc/core/class.data.php:431
|
515 |
msgid "One half"
|
516 |
msgstr "Ένα δεύτερο"
|
517 |
|
518 |
+
#: ../inc/core/class.data.php:432
|
519 |
msgid "One third"
|
520 |
msgstr "Ένα τρίτο"
|
521 |
|
522 |
+
#: ../inc/core/class.data.php:433
|
523 |
msgid "Two third"
|
524 |
msgstr "Δύο τρίτα"
|
525 |
|
526 |
+
#: ../inc/core/class.data.php:434
|
527 |
msgid "One fourth"
|
528 |
msgstr "Ένα τέταρτο"
|
529 |
|
530 |
+
#: ../inc/core/class.data.php:435
|
531 |
msgid "Three fourth"
|
532 |
msgstr "Τρία τέταρτα"
|
533 |
|
534 |
+
#: ../inc/core/class.data.php:436
|
535 |
msgid "One fifth"
|
536 |
msgstr "Ένα πέμπτο"
|
537 |
|
538 |
+
#: ../inc/core/class.data.php:437
|
539 |
msgid "Two fifth"
|
540 |
msgstr "Δύο πέμπτα"
|
541 |
|
542 |
+
#: ../inc/core/class.data.php:438
|
543 |
msgid "Three fifth"
|
544 |
msgstr "Τρία πέμπτα"
|
545 |
|
546 |
+
#: ../inc/core/class.data.php:439
|
547 |
msgid "Four fifth"
|
548 |
msgstr "Τέσσερα πέμπτα"
|
549 |
|
550 |
+
#: ../inc/core/class.data.php:440
|
551 |
msgid "One sixth"
|
552 |
msgstr "Ένα έκτο"
|
553 |
|
554 |
+
#: ../inc/core/class.data.php:441
|
555 |
msgid "Five sixth"
|
556 |
msgstr "Πέντε έκτα"
|
557 |
|
558 |
+
#: ../inc/core/class.data.php:445
|
559 |
msgid "Select column width. This width will be calculated depend page width"
|
560 |
msgstr ""
|
561 |
"Επιπέξτε το πλάτος της στήλης. Το πλάτος θα υπολογιστεί σε σχέση με το "
|
562 |
"πλάτος της σελίδας"
|
563 |
|
564 |
+
#: ../inc/core/class.data.php:453
|
565 |
msgid "Column content"
|
566 |
msgstr "Περιεχόμενο στήλης"
|
567 |
|
568 |
+
#: ../inc/core/class.data.php:453
|
569 |
msgid "Flexible and responsive columns"
|
570 |
msgstr "Ευέλικτες και ευπροσάρμοστες στήλες"
|
571 |
|
572 |
+
#: ../inc/core/class.data.php:457
|
573 |
msgid "List"
|
574 |
msgstr "List"
|
575 |
|
576 |
+
#: ../inc/core/class.data.php:464
|
577 |
msgid "Star"
|
578 |
msgstr "Αστέρι"
|
579 |
|
580 |
+
#: ../inc/core/class.data.php:465
|
581 |
msgid "Arrow"
|
582 |
msgstr "Βέλος"
|
583 |
|
584 |
+
#: ../inc/core/class.data.php:466
|
585 |
msgid "Check"
|
586 |
msgstr "Check"
|
587 |
|
588 |
+
#: ../inc/core/class.data.php:467
|
589 |
msgid "Cross"
|
590 |
msgstr "Σταυρός"
|
591 |
|
592 |
+
#: ../inc/core/class.data.php:468
|
593 |
msgid "Thumbs up"
|
594 |
msgstr "Thumbs up"
|
595 |
|
596 |
+
#: ../inc/core/class.data.php:469 ../inc/core/class.data.php:501
|
597 |
+
#: ../inc/views/galleries.php:47 ../inc/views/galleries.php:102
|
598 |
msgid "Link"
|
599 |
msgstr "Σύνδεση"
|
600 |
|
601 |
+
#: ../inc/core/class.data.php:470
|
602 |
msgid "Gear"
|
603 |
msgstr "Γρανάζι"
|
604 |
|
605 |
+
#: ../inc/core/class.data.php:471
|
606 |
msgid "Time"
|
607 |
msgstr "Ώρα"
|
608 |
|
609 |
+
#: ../inc/core/class.data.php:472 ../inc/core/class.data.php:696
|
610 |
msgid "Note"
|
611 |
+
msgstr "Σημείωση"
|
612 |
|
613 |
+
#: ../inc/core/class.data.php:473
|
614 |
msgid "Plus"
|
615 |
msgstr "Συν"
|
616 |
|
617 |
+
#: ../inc/core/class.data.php:474
|
618 |
msgid "Guard"
|
619 |
msgstr "Guard"
|
620 |
|
621 |
+
#: ../inc/core/class.data.php:475
|
622 |
msgid "Event"
|
623 |
msgstr "Συμβάν"
|
624 |
|
625 |
+
#: ../inc/core/class.data.php:476
|
626 |
msgid "Idea"
|
627 |
msgstr "Ιδέα"
|
628 |
|
629 |
+
#: ../inc/core/class.data.php:477 ../inc/core/class.generator.php:88
|
630 |
+
#: ../inc/core/class.shortcodes-ultimate.php:115
|
631 |
+
#: ../inc/vendor/class.sunrise-framework.php:281
|
632 |
+
msgid "Settings"
|
633 |
+
msgstr "Ρυθμίσεις"
|
634 |
+
|
635 |
+
#: ../inc/core/class.data.php:478
|
636 |
msgid "Twitter"
|
637 |
msgstr "Twitter"
|
638 |
|
639 |
+
#: ../inc/core/class.data.php:481
|
640 |
msgid "List items style/icons"
|
641 |
msgstr "Στυλ/Εικονίδια αντικειμένων λίστας"
|
642 |
|
643 |
+
#: ../inc/core/class.data.php:490
|
644 |
msgid ""
|
645 |
"<ul>\n"
|
646 |
"<li>List item</li>\n"
|
654 |
"<li>Αντικείμενο λίστας</li>\n"
|
655 |
"</ul>"
|
656 |
|
657 |
+
#: ../inc/core/class.data.php:490
|
658 |
msgid "Styled unordered list"
|
659 |
msgstr "Στυλ αταξινόμητης λίστας"
|
660 |
|
661 |
+
#: ../inc/core/class.data.php:494
|
662 |
msgid "Button"
|
663 |
msgstr "Button"
|
664 |
|
665 |
+
#: ../inc/core/class.data.php:502
|
666 |
msgid "Button link"
|
667 |
msgstr "Σύνδεσμος κουμπιού"
|
668 |
|
669 |
+
#: ../inc/core/class.data.php:507 ../inc/core/class.data.php:1163
|
670 |
msgid "Same tab"
|
671 |
+
msgstr "Ίδια καρτέλα"
|
672 |
|
673 |
+
#: ../inc/core/class.data.php:508 ../inc/core/class.data.php:1164
|
674 |
msgid "New tab"
|
675 |
+
msgstr "Νέα καρτέλα"
|
676 |
|
677 |
+
#: ../inc/core/class.data.php:511 ../inc/core/class.data.php:1167
|
678 |
msgid "Target"
|
679 |
msgstr "Στόχος"
|
680 |
|
681 |
+
#: ../inc/core/class.data.php:512
|
682 |
msgid "Button link target"
|
683 |
msgstr "Σύνδεσμος προορισμού του κουμπιού"
|
684 |
|
685 |
+
#: ../inc/core/class.data.php:519 ../inc/core/class.data.php:655
|
686 |
msgid "Soft"
|
687 |
msgstr "Απαλό"
|
688 |
|
689 |
+
#: ../inc/core/class.data.php:520 ../inc/core/class.data.php:656
|
690 |
msgid "Glass"
|
691 |
msgstr "Γυάλινο"
|
692 |
|
693 |
+
#: ../inc/core/class.data.php:521 ../inc/core/class.data.php:657
|
694 |
msgid "Bubbles"
|
695 |
msgstr "Φυσαλίδες"
|
696 |
|
697 |
+
#: ../inc/core/class.data.php:522 ../inc/core/class.data.php:658
|
698 |
msgid "Noise"
|
699 |
msgstr "Θόρυβος"
|
700 |
|
701 |
+
#: ../inc/core/class.data.php:523
|
702 |
msgid "Stroked"
|
703 |
msgstr "Stroked"
|
704 |
|
705 |
+
#: ../inc/core/class.data.php:524
|
706 |
msgid "3D"
|
707 |
msgstr "3D"
|
708 |
|
709 |
+
#: ../inc/core/class.data.php:527
|
710 |
msgid "Button background style preset"
|
711 |
msgstr "Προκαθορισμένο στυλ φόντου κουμπιού"
|
712 |
|
713 |
+
#: ../inc/core/class.data.php:533
|
714 |
msgid "Button background color"
|
715 |
msgstr "Χρώμα φόντου κουμπιού"
|
716 |
|
717 |
+
#: ../inc/core/class.data.php:540
|
718 |
msgid "Button text color"
|
719 |
msgstr "Χρώμα κειμένου κουμπιού"
|
720 |
|
721 |
+
#: ../inc/core/class.data.php:546
|
722 |
msgid "Button size"
|
723 |
msgstr "Μέγεθος κουμπιού"
|
724 |
|
725 |
+
#: ../inc/core/class.data.php:551
|
726 |
msgid "Fluid"
|
727 |
msgstr "Fluid"
|
728 |
|
729 |
+
#: ../inc/core/class.data.php:551
|
730 |
msgid "Fluid buttons has 100% width"
|
731 |
msgstr "Τα κουμπιά fluid έχουν 100% πλάτος"
|
732 |
|
733 |
+
#: ../inc/core/class.data.php:556
|
734 |
+
msgid "Centered"
|
735 |
+
msgstr "Κεντραρισμένο"
|
736 |
+
|
737 |
+
#: ../inc/core/class.data.php:556
|
738 |
+
msgid "Is button centered on the page"
|
739 |
+
msgstr "Είναι το κουμπί κεντραρισμένο στην σελίδα"
|
740 |
+
|
741 |
+
#: ../inc/core/class.data.php:562 ../inc/core/class.data.php:681
|
742 |
+
#: ../inc/core/class.data.php:717
|
743 |
msgid "Radius"
|
744 |
msgstr "Radius"
|
745 |
|
746 |
+
#: ../inc/core/class.data.php:563
|
747 |
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
748 |
msgstr ""
|
749 |
"Στρογγύλεμα των γωνιών του κουμπιού. Ο υπολογισμός για αυτόματο στρογγύλεμα "
|
750 |
"γίνεται βάση του μεγέθους του κουμπιού"
|
751 |
|
752 |
+
#: ../inc/core/class.data.php:568 ../inc/core/class.data.php:622
|
753 |
msgid "Icon"
|
754 |
msgstr "Εικονίδιο"
|
755 |
|
756 |
+
#: ../inc/core/class.data.php:569
|
757 |
msgid ""
|
758 |
"You can upload custom icon for this button. Try to begin with <a href="
|
759 |
"\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-"
|
766 |
"εικονίδια υψηλής ποιότητας</a>. Κατεβάστε το αρχείο, ξεπακετάρετε τα "
|
767 |
"εικονίδια και μεταφορτώστε τα εικονίδια σε αυτό το πεδίο"
|
768 |
|
769 |
+
#: ../inc/core/class.data.php:575
|
770 |
msgid "Dark"
|
771 |
msgstr "Σκούρο"
|
772 |
|
773 |
+
#: ../inc/core/class.data.php:578
|
774 |
msgid "Text shadow color"
|
775 |
msgstr "Χρώμα σκιάς κειμένου"
|
776 |
|
777 |
+
#: ../inc/core/class.data.php:578
|
778 |
msgid "Color of button text shadow"
|
779 |
msgstr "Χρώμα σκιάς κειμένου του κουμπιού"
|
780 |
|
781 |
+
#: ../inc/core/class.data.php:583 ../inc/core/class.data.php:1738
|
782 |
msgid "None"
|
783 |
msgstr "Κανένα"
|
784 |
|
785 |
+
#: ../inc/core/class.data.php:584 ../inc/core/class.data.php:789
|
786 |
msgid "Top"
|
787 |
msgstr "Επάνω"
|
788 |
|
789 |
+
#: ../inc/core/class.data.php:586 ../inc/core/class.data.php:790
|
790 |
msgid "Bottom"
|
791 |
msgstr "Κάτω"
|
792 |
|
793 |
+
#: ../inc/core/class.data.php:588
|
794 |
msgid "Top right"
|
795 |
msgstr "Πάνω δεξιά"
|
796 |
|
797 |
+
#: ../inc/core/class.data.php:589
|
798 |
msgid "Top left"
|
799 |
msgstr "Πάνω αριστερά"
|
800 |
|
801 |
+
#: ../inc/core/class.data.php:589
|
802 |
msgid "Bottom right"
|
803 |
msgstr "Κάτω δεξιά"
|
804 |
|
805 |
+
#: ../inc/core/class.data.php:589
|
806 |
msgid "Bottom left"
|
807 |
msgstr "Κάτω αριστερά"
|
808 |
|
809 |
+
#: ../inc/core/class.data.php:591
|
810 |
msgid "Text shadow position"
|
811 |
msgstr "Θέση σκιάς κειμένου"
|
812 |
|
813 |
+
#: ../inc/core/class.data.php:591
|
814 |
msgid "Position of button text shadow"
|
815 |
msgstr "Θέση σκιάς κειμένου κουμπιού"
|
816 |
|
817 |
+
#: ../inc/core/class.data.php:595
|
818 |
+
msgid "Description"
|
819 |
+
msgstr "Περιγραφή"
|
820 |
|
821 |
+
#: ../inc/core/class.data.php:596
|
822 |
+
msgid ""
|
823 |
+
"Small description under button text. This option is incompatible with icon."
|
824 |
+
msgstr ""
|
825 |
+
"Μικρή περιγραφή κάτω από το κείμενο του κουμπιού. Αυτή η επιλογή δεν είναι "
|
826 |
+
"συμβατή με το εικονίδιο."
|
827 |
|
828 |
+
#: ../inc/core/class.data.php:604
|
829 |
msgid "Button text"
|
830 |
msgstr "Κείμενο κουμπιού"
|
831 |
|
832 |
+
#: ../inc/core/class.data.php:605
|
833 |
msgid "Styled button"
|
834 |
msgstr "Μορφοποίηση κουμπιού"
|
835 |
|
836 |
+
#: ../inc/core/class.data.php:609
|
837 |
msgid "Service"
|
838 |
msgstr "Service"
|
839 |
|
840 |
+
#: ../inc/core/class.data.php:615 ../inc/core/shortcodes.php:464
|
841 |
msgid "Service title"
|
842 |
msgstr "Τίτλος service"
|
843 |
|
844 |
+
#: ../inc/core/class.data.php:617
|
845 |
msgid "Service name"
|
846 |
+
msgstr "Όνομα service"
|
847 |
|
848 |
+
#: ../inc/core/class.data.php:623
|
849 |
msgid "You can upload custom icon for this box"
|
850 |
msgstr "Μπορείτε να μεταφορτώσετε δικά σας εικονίδια για αυτό το πλαίσιο"
|
851 |
|
852 |
+
#: ../inc/core/class.data.php:629
|
853 |
msgid "Icon size"
|
854 |
msgstr "Μέγεθος εικονιδίου"
|
855 |
|
856 |
+
#: ../inc/core/class.data.php:630
|
857 |
msgid "Size of the uploaded icon in pixels"
|
858 |
msgstr "Μέγεθος του μεταφορτωμένου εικονιδίου σε pixels"
|
859 |
|
860 |
+
#: ../inc/core/class.data.php:638
|
861 |
msgid "Service description"
|
862 |
msgstr "Περιγραφή Service"
|
863 |
|
864 |
+
#: ../inc/core/class.data.php:638
|
865 |
msgid "Service box with title"
|
866 |
msgstr "Πλαίσιο service με τίτλο"
|
867 |
|
868 |
+
#: ../inc/core/class.data.php:648
|
|
|
|
|
|
|
|
|
869 |
msgid "Box title"
|
870 |
msgstr "Τίτλος πλαισίου"
|
871 |
|
872 |
+
#: ../inc/core/class.data.php:649
|
873 |
msgid "Text for the box title"
|
874 |
msgstr "Κείμενο για τον τίτλο του πλαισίου"
|
875 |
|
876 |
+
#: ../inc/core/class.data.php:662
|
877 |
msgid "Box style preset"
|
878 |
msgstr "Προκαθορισμένο στυλ πλαισίου"
|
879 |
|
880 |
+
#: ../inc/core/class.data.php:668
|
881 |
msgid "Color"
|
882 |
msgstr "Χρώμα"
|
883 |
|
884 |
+
#: ../inc/core/class.data.php:669
|
885 |
msgid "Color for the box title and borders"
|
886 |
msgstr "Χρώμα τίτλου και περιθωρίων πλαισίου"
|
887 |
|
888 |
+
#: ../inc/core/class.data.php:675
|
889 |
msgid "Title text color"
|
890 |
msgstr "Χρώμα κειμένου τίτλου"
|
891 |
|
892 |
+
#: ../inc/core/class.data.php:675
|
893 |
msgid "Color for the box title text"
|
894 |
msgstr "Χρώμα κειμένου τίτλου του πλαισίου"
|
895 |
|
896 |
+
#: ../inc/core/class.data.php:682
|
897 |
msgid "Box corners radius"
|
898 |
msgstr "Στρογγυλεμένες γωνίες πλαισίου"
|
899 |
|
900 |
+
#: ../inc/core/class.data.php:691
|
901 |
msgid "Box content"
|
902 |
msgstr "Περιεχόμενο πλαισίου"
|
903 |
|
904 |
+
#: ../inc/core/class.data.php:692
|
905 |
msgid "Colored box with caption"
|
906 |
msgstr "Χρωματισμένο πλαίσιο με λεζάντα"
|
907 |
|
908 |
+
#: ../inc/core/class.data.php:704
|
909 |
msgid "Note background color"
|
910 |
msgstr "Χρώμα φόντου σημείωσης"
|
911 |
|
912 |
+
#: ../inc/core/class.data.php:711
|
913 |
msgid "Note text color"
|
914 |
msgstr "Χρώμα κειμένου σημείωσης"
|
915 |
|
916 |
+
#: ../inc/core/class.data.php:717
|
917 |
msgid "Note corners radius"
|
918 |
msgstr "Στρογγυλεμένες γωνίες σημείωσης"
|
919 |
|
920 |
+
#: ../inc/core/class.data.php:725
|
921 |
msgid "Note text"
|
922 |
msgstr "Κείμενο σημείωσης"
|
923 |
|
924 |
+
#: ../inc/core/class.data.php:726
|
925 |
msgid "Colored box"
|
926 |
msgstr "Χρωματισμένο πλαίσιο"
|
927 |
|
928 |
+
#: ../inc/core/class.data.php:730
|
929 |
+
msgid "Lightbox"
|
930 |
+
msgstr "Lightbox"
|
931 |
+
|
932 |
+
#: ../inc/core/class.data.php:737
|
933 |
+
msgid "Iframe"
|
934 |
+
msgstr "Iframe"
|
935 |
+
|
936 |
+
#: ../inc/core/class.data.php:738
|
937 |
+
msgid "Image"
|
938 |
+
msgstr "Image"
|
939 |
+
|
940 |
+
#: ../inc/core/class.data.php:739
|
941 |
+
msgid "Inline (html content)"
|
942 |
+
msgstr "Inline (html περιεχόμενο)"
|
943 |
+
|
944 |
+
#: ../inc/core/class.data.php:742
|
945 |
+
msgid "Content type"
|
946 |
+
msgstr "Τύπος περιεχομένου"
|
947 |
+
|
948 |
+
#: ../inc/core/class.data.php:743
|
949 |
+
msgid "Select type of the lightbox window content"
|
950 |
+
msgstr "Επιλέξτε τον τύπο του περιεχομένου του παραθύρου lightbox"
|
951 |
+
|
952 |
+
#: ../inc/core/class.data.php:747
|
953 |
+
msgid "Content source"
|
954 |
+
msgstr "Πηγή περιεχομένου"
|
955 |
+
|
956 |
+
#: ../inc/core/class.data.php:748
|
957 |
+
msgid ""
|
958 |
+
"Insert here URL or CSS selector. Use URL for Iframe and Image content types. "
|
959 |
+
"Use CSS selector for Inline content type.<br />Example values:<br /><b"
|
960 |
+
"%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video "
|
961 |
+
"(iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - "
|
962 |
+
"uploaded image (image)<br /><b%value>http://example.com/</b> - any web page "
|
963 |
+
"(iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
|
964 |
+
msgstr ""
|
965 |
+
"Εισάγετε εδώ την διεύθυνση ή τον επιλογέα CSS. Χρησιμοποιήστε τύπους "
|
966 |
+
"περιεχομένου για το Iframe και το Image. Χρησιμοποιήστε επιλογέα CSS για "
|
967 |
+
"Inline τύπο περιεχομένου.<br />Παραδείγματα τιμών:<br /><b%value>http://www."
|
968 |
+
"youtube.com/watch?v=NbE8INOjTKM</b> - YouTube βίντεο (iframe)<br /><b"
|
969 |
+
"%value>http://example.com/wp-content/uploads/image.jpg</b> - μεταφορτωμένη "
|
970 |
+
"εικόνα (image)<br /><b%value>http://example.com/</b> - οποιαδήποτε "
|
971 |
+
"ιστοσελίδα (iframe)<br /><b%value>#contact-form</b> - οποιοδήποτε HTML "
|
972 |
+
"περιεχόμενο (inline)"
|
973 |
+
|
974 |
+
#: ../inc/core/class.data.php:757
|
975 |
+
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
976 |
+
msgstr ""
|
977 |
+
"[%prefix_button] Πατήστε εδώ για Αναπαραγωγή του Βίντεο [/%prefix_button]"
|
978 |
+
|
979 |
+
#: ../inc/core/class.data.php:758
|
980 |
+
msgid "Lightbox window with custom content"
|
981 |
+
msgstr "Παράθυρο Lightbox με προσαρμοσμένο περιεχόμενο"
|
982 |
+
|
983 |
+
#: ../inc/core/class.data.php:762
|
984 |
+
msgid "Tooltip"
|
985 |
+
msgstr "Tooltip"
|
986 |
+
|
987 |
+
#: ../inc/core/class.data.php:769
|
988 |
+
msgid "Basic: Light"
|
989 |
+
msgstr "Βασικό: Ανοιχτόχρωμο"
|
990 |
+
|
991 |
+
#: ../inc/core/class.data.php:770
|
992 |
+
msgid "Basic: Dark"
|
993 |
+
msgstr "Βασικό: Σκούρο"
|
994 |
+
|
995 |
+
#: ../inc/core/class.data.php:771
|
996 |
+
msgid "Basic: Yellow"
|
997 |
+
msgstr "Βασικό: Κίτρινο"
|
998 |
+
|
999 |
+
#: ../inc/core/class.data.php:772
|
1000 |
+
msgid "Basic: Green"
|
1001 |
+
msgstr "Βασικό: Πράσινο"
|
1002 |
+
|
1003 |
+
#: ../inc/core/class.data.php:773
|
1004 |
+
msgid "Basic: Red"
|
1005 |
+
msgstr "Βασικό: Κόκκινο"
|
1006 |
+
|
1007 |
+
#: ../inc/core/class.data.php:774
|
1008 |
+
msgid "Basic: Blue"
|
1009 |
+
msgstr "Βασικό: Μπλε"
|
1010 |
+
|
1011 |
+
#: ../inc/core/class.data.php:775
|
1012 |
+
msgid "Youtube"
|
1013 |
+
msgstr "Youtube"
|
1014 |
+
|
1015 |
+
#: ../inc/core/class.data.php:776
|
1016 |
+
msgid "Tipsy"
|
1017 |
+
msgstr "Tipsy"
|
1018 |
+
|
1019 |
+
#: ../inc/core/class.data.php:777
|
1020 |
+
msgid "Bootstrap"
|
1021 |
+
msgstr "Bootstrap"
|
1022 |
+
|
1023 |
+
#: ../inc/core/class.data.php:778
|
1024 |
+
msgid "jTools"
|
1025 |
+
msgstr "jTools"
|
1026 |
+
|
1027 |
+
#: ../inc/core/class.data.php:779
|
1028 |
+
msgid "Tipped"
|
1029 |
+
msgstr "Tipped"
|
1030 |
+
|
1031 |
+
#: ../inc/core/class.data.php:780
|
1032 |
+
msgid "Cluetip"
|
1033 |
+
msgstr "Cluetip"
|
1034 |
+
|
1035 |
+
#: ../inc/core/class.data.php:784
|
1036 |
+
msgid "Tooltip window style"
|
1037 |
+
msgstr "Στυλ παραθύρου Tooltip"
|
1038 |
+
|
1039 |
+
#: ../inc/core/class.data.php:795
|
1040 |
+
msgid "Position"
|
1041 |
+
msgstr "Θέση"
|
1042 |
+
|
1043 |
+
#: ../inc/core/class.data.php:796
|
1044 |
+
msgid "Tooltip position"
|
1045 |
+
msgstr "Θέση του Tooltip"
|
1046 |
+
|
1047 |
+
#: ../inc/core/class.data.php:801
|
1048 |
+
msgid "Shadow"
|
1049 |
+
msgstr "Σκιά"
|
1050 |
+
|
1051 |
+
#: ../inc/core/class.data.php:802
|
1052 |
+
msgid ""
|
1053 |
+
"Add shadow to tooltip. This option is only works with basic styes, e.g. "
|
1054 |
+
"blue, green etc."
|
1055 |
+
msgstr ""
|
1056 |
+
"Προσθέστε σκιά στο tooltip. Αυτή η επιλογή λειτουργεί μόνο με τα βασικά "
|
1057 |
+
"στυλ, π.χ. μπλε, πράσινο κτλ."
|
1058 |
+
|
1059 |
+
#: ../inc/core/class.data.php:807
|
1060 |
+
msgid "Rounded corners"
|
1061 |
+
msgstr "Στρογγυλεμένες γωνίες"
|
1062 |
+
|
1063 |
+
#: ../inc/core/class.data.php:808
|
1064 |
+
msgid ""
|
1065 |
+
"Use rounded for tooltip. This option is only works with basic styes, e.g. "
|
1066 |
+
"blue, green etc."
|
1067 |
+
msgstr ""
|
1068 |
+
"Χρησιμοποιήστε στρογγυλεμένα tooltip. Αυτή η επιλογή λειτουργεί μόνο με τα "
|
1069 |
+
"βασικά στυλ, π.χ. μπλε, πράσινο κτλ."
|
1070 |
+
|
1071 |
+
#: ../inc/core/class.data.php:822
|
1072 |
+
msgid "Font size"
|
1073 |
+
msgstr "Μέγεθος γραμματοσειράς"
|
1074 |
+
|
1075 |
+
#: ../inc/core/class.data.php:823
|
1076 |
+
msgid "Tooltip font size"
|
1077 |
+
msgstr "Μέγεθος γραμματοσειράς του Tooltip"
|
1078 |
+
|
1079 |
+
#: ../inc/core/class.data.php:827
|
1080 |
+
msgid "Tooltip title"
|
1081 |
+
msgstr "Τίτλος Tooltip"
|
1082 |
+
|
1083 |
+
#: ../inc/core/class.data.php:828
|
1084 |
+
msgid ""
|
1085 |
+
"Enter title for tooltip window. Leave this field empty to hide the title"
|
1086 |
+
msgstr ""
|
1087 |
+
"Εισάγεται τον τίτλο για το παράθυρο του tooltip. Αφήστε αυτό το πεδίο κενό "
|
1088 |
+
"για να αποκρύψετε τον τίτλο"
|
1089 |
+
|
1090 |
+
#: ../inc/core/class.data.php:831 ../inc/core/shortcodes.php:573
|
1091 |
+
msgid "Tooltip text"
|
1092 |
+
msgstr "Κείμενο Tooltip"
|
1093 |
+
|
1094 |
+
#: ../inc/core/class.data.php:832
|
1095 |
+
msgid "Tooltip content"
|
1096 |
+
msgstr "Περιεχόμενο Tooltip"
|
1097 |
+
|
1098 |
+
#: ../inc/core/class.data.php:833
|
1099 |
+
msgid "Enter tooltip content here"
|
1100 |
+
msgstr "Εισάγετε το περιεχόμενο του tooltip εδώ"
|
1101 |
+
|
1102 |
+
#: ../inc/core/class.data.php:838
|
1103 |
+
msgid "Show and hide on mouse hover"
|
1104 |
+
msgstr "Προβολή και απόκρυψη όταν είναι το ποντίκι από πάνω"
|
1105 |
+
|
1106 |
+
#: ../inc/core/class.data.php:839
|
1107 |
+
msgid "Show and hide by mouse click"
|
1108 |
+
msgstr "Προβολή και απόκρυψη με πάτημα του ποντικιού"
|
1109 |
+
|
1110 |
+
#: ../inc/core/class.data.php:840
|
1111 |
+
msgid "Always visible"
|
1112 |
+
msgstr "Πάντα ορατό"
|
1113 |
+
|
1114 |
+
#: ../inc/core/class.data.php:843
|
1115 |
+
msgid "Behavior"
|
1116 |
+
msgstr "Συμπεριφορά"
|
1117 |
+
|
1118 |
+
#: ../inc/core/class.data.php:844
|
1119 |
+
msgid "Select tooltip behavior"
|
1120 |
+
msgstr "Επιλέξτε την συμπερηφορά του tooltip"
|
1121 |
+
|
1122 |
+
#: ../inc/core/class.data.php:849
|
1123 |
+
msgid "Close button"
|
1124 |
+
msgstr "Κουμπί κλεισίματος"
|
1125 |
+
|
1126 |
+
#: ../inc/core/class.data.php:850
|
1127 |
+
msgid "Show close button"
|
1128 |
+
msgstr "Προβολή κουμπιού κλεισίματος"
|
1129 |
+
|
1130 |
+
#: ../inc/core/class.data.php:859
|
1131 |
+
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1132 |
+
msgstr ""
|
1133 |
+
"[%prefix_button] Περάστε το ποντίκι από πάνω για να προβληθεί το tooltip [/"
|
1134 |
+
"%prefix_button]"
|
1135 |
+
|
1136 |
+
#: ../inc/core/class.data.php:860
|
1137 |
+
msgid "Tooltip window with custom content"
|
1138 |
+
msgstr "Παράθυρο tooltip με προσαρμοσμένο περιεχόμενο"
|
1139 |
+
|
1140 |
+
#: ../inc/core/class.data.php:864
|
1141 |
msgid "Private"
|
1142 |
msgstr "Private"
|
1143 |
|
1144 |
+
#: ../inc/core/class.data.php:875
|
1145 |
msgid "Private note text"
|
1146 |
msgstr "Κείμενο σημείωσης Private"
|
1147 |
|
1148 |
+
#: ../inc/core/class.data.php:876
|
1149 |
msgid "Private note for post authors"
|
1150 |
msgstr "Σημείωση Private για συγγραφείς δημοσιευμάτων"
|
1151 |
|
1152 |
+
#: ../inc/core/class.data.php:880
|
1153 |
msgid "YouTube"
|
1154 |
msgstr "YouTube"
|
1155 |
|
1156 |
+
#: ../inc/core/class.data.php:887 ../inc/core/class.data.php:937
|
1157 |
+
#: ../inc/core/class.data.php:985 ../inc/core/class.data.php:1236
|
1158 |
+
#: ../inc/core/class.data.php:1326
|
1159 |
msgid "Url"
|
1160 |
msgstr "Διεύθυνση"
|
1161 |
|
1162 |
+
#: ../inc/core/class.data.php:888
|
1163 |
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1164 |
msgstr ""
|
1165 |
"Διεύθυνση της σελίδας YouTube με το βίντεο. Π.χ. http://youtube.com/watch?"
|
1166 |
"v=XXXXXX"
|
1167 |
|
1168 |
+
#: ../inc/core/class.data.php:896 ../inc/core/class.data.php:945
|
1169 |
+
#: ../inc/core/class.data.php:993 ../inc/core/class.data.php:1034
|
1170 |
+
#: ../inc/core/class.data.php:1088 ../inc/core/class.data.php:1335
|
1171 |
+
#: ../inc/core/class.data.php:1373 ../inc/core/class.data.php:1422
|
1172 |
+
#: ../inc/core/class.data.php:1512 ../inc/core/class.data.php:1618
|
1173 |
msgid "Width"
|
1174 |
msgstr "Πλάτος"
|
1175 |
|
1176 |
+
#: ../inc/core/class.data.php:897 ../inc/core/class.data.php:946
|
1177 |
+
#: ../inc/core/class.data.php:994 ../inc/core/class.data.php:1089
|
1178 |
msgid "Player width"
|
1179 |
msgstr "Πλάτος Player"
|
1180 |
|
1181 |
+
#: ../inc/core/class.data.php:906 ../inc/core/class.data.php:955
|
1182 |
+
#: ../inc/core/class.data.php:1003 ../inc/core/class.data.php:1098
|
1183 |
msgid "Player height"
|
1184 |
msgstr "Ύψος Player"
|
1185 |
|
1186 |
+
#: ../inc/core/class.data.php:911 ../inc/core/class.data.php:960
|
1187 |
+
#: ../inc/core/class.data.php:1008 ../inc/core/class.data.php:1350
|
1188 |
+
#: ../inc/core/class.data.php:1388 ../inc/core/class.data.php:1435
|
1189 |
+
#: ../inc/core/class.data.php:1525
|
1190 |
+
msgid "Responsive"
|
1191 |
+
msgstr "Ανταπόκριση"
|
1192 |
+
|
1193 |
+
#: ../inc/core/class.data.php:912 ../inc/core/class.data.php:961
|
1194 |
+
#: ../inc/core/class.data.php:1009
|
1195 |
+
msgid "Ignore width and height parameters and make player responsive"
|
1196 |
+
msgstr ""
|
1197 |
+
"Αγνόηση των παραμέτρων πλάτους και ύψους, και αυτόματη ανταπόκριση του player"
|
1198 |
+
|
1199 |
+
#: ../inc/core/class.data.php:917 ../inc/core/class.data.php:966
|
1200 |
+
#: ../inc/core/class.data.php:1040 ../inc/core/class.data.php:1109
|
1201 |
+
#: ../inc/core/class.data.php:1470 ../inc/core/class.data.php:1576
|
1202 |
msgid "Autoplay"
|
1203 |
msgstr "Αυτόματη αναπαραγωγή"
|
1204 |
|
1205 |
+
#: ../inc/core/class.data.php:918 ../inc/core/class.data.php:967
|
1206 |
msgid "Play video automatically when page is loaded"
|
1207 |
msgstr "Αυτόματη αναπαραγωγή βίντεο με την φόρτωση της σελίδας"
|
1208 |
|
1209 |
+
#: ../inc/core/class.data.php:926
|
1210 |
msgid "YouTube video"
|
1211 |
msgstr "Βίντεο YouTube"
|
1212 |
|
1213 |
+
#: ../inc/core/class.data.php:930
|
1214 |
msgid "Vimeo"
|
1215 |
msgstr "Vimeo"
|
1216 |
|
1217 |
+
#: ../inc/core/class.data.php:937
|
1218 |
msgid "Url of Vimeo page with video"
|
1219 |
msgstr "Διεύθυνση της σελίδας Vimeo με το βίντεο."
|
1220 |
|
1221 |
+
#: ../inc/core/class.data.php:975
|
1222 |
msgid "Vimeo video"
|
1223 |
msgstr "Βίντεο Vimeo"
|
1224 |
|
1225 |
+
#: ../inc/core/class.data.php:979
|
1226 |
+
msgid "Screenr"
|
1227 |
+
msgstr "Screenr"
|
1228 |
+
|
1229 |
+
#: ../inc/core/class.data.php:985
|
1230 |
+
msgid "Url of Screenr page with video"
|
1231 |
+
msgstr "Διεύθυνση της σελίδας Screenr με το βίντεο."
|
1232 |
+
|
1233 |
+
#: ../inc/core/class.data.php:1017
|
1234 |
+
msgid "Screenr video"
|
1235 |
+
msgstr "Βίντεο Screenr"
|
1236 |
+
|
1237 |
+
#: ../inc/core/class.data.php:1021
|
1238 |
msgid "Audio"
|
1239 |
msgstr "Audio"
|
1240 |
|
1241 |
+
#: ../inc/core/class.data.php:1028 ../inc/core/class.data.php:1067
|
1242 |
msgid "File"
|
1243 |
msgstr "Αρχείο"
|
1244 |
|
1245 |
+
#: ../inc/core/class.data.php:1029
|
1246 |
msgid "Audio file url. Supported formats: mp3, ogg"
|
1247 |
msgstr "Διεύθυνση αρχείου ήχου. Υποστηριζόμενοι τύποι: mp3, ogg"
|
1248 |
|
1249 |
+
#: ../inc/core/class.data.php:1035
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1250 |
msgid ""
|
1251 |
+
"Player width. You can specify width in percents and player will be "
|
1252 |
+
"responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1253 |
msgstr ""
|
1254 |
"Πλάτος player. Μπορείτε να ορίσετε το πλάτος σε ποσοστό επί τοις εκατό και ο "
|
1255 |
+
"player θα ανταποκριθεί. Τιμές παραδειγμάτων: <b%value>200px</b>, <b"
|
1256 |
+
"%value>100%</b>"
|
1257 |
|
1258 |
+
#: ../inc/core/class.data.php:1041 ../inc/core/class.data.php:1110
|
1259 |
msgid "Play file automatically when page is loaded"
|
1260 |
msgstr "Αυτόματη αναπαραγωγή αρχείου όταν θα φορτωθεί η σελίδα"
|
1261 |
|
1262 |
+
#: ../inc/core/class.data.php:1046 ../inc/core/class.data.php:1115
|
1263 |
msgid "Loop"
|
1264 |
msgstr "Ανακύκλωση"
|
1265 |
|
1266 |
+
#: ../inc/core/class.data.php:1047 ../inc/core/class.data.php:1116
|
1267 |
msgid "Repeat when playback is ended"
|
1268 |
msgstr "Επανάληψη όταν η αναπαραγωγή τερματιστεί"
|
1269 |
|
1270 |
+
#: ../inc/core/class.data.php:1056
|
1271 |
msgid "Custom audio player"
|
1272 |
msgstr "Προσαρμοσμένος player ήχου"
|
1273 |
|
1274 |
+
#: ../inc/core/class.data.php:1060
|
1275 |
msgid "Video"
|
1276 |
msgstr "Video"
|
1277 |
|
1278 |
+
#: ../inc/core/class.data.php:1068
|
1279 |
msgid "Url to mp4/flv video-file"
|
1280 |
msgstr "Διεύθυνση του αρχείου βίντεο mp4/flv"
|
1281 |
|
1282 |
+
#: ../inc/core/class.data.php:1073
|
1283 |
msgid "Poster"
|
1284 |
msgstr "Αφίσα"
|
1285 |
|
1286 |
+
#: ../inc/core/class.data.php:1074
|
1287 |
msgid "Url to poster image, that will be shown before playback"
|
1288 |
msgstr ""
|
1289 |
"Διεύθυσνη της φωτογραφίας αφίσας, που θα προβάλλεται πριν από την αναπαραγωγή"
|
1290 |
|
1291 |
+
#: ../inc/core/class.data.php:1080
|
1292 |
msgid "Player title"
|
1293 |
msgstr "Τίτλος player"
|
1294 |
|
1295 |
+
#: ../inc/core/class.data.php:1103
|
|
|
|
|
|
|
|
|
1296 |
msgid "Controls"
|
1297 |
msgstr "Χειριστήρια"
|
1298 |
|
1299 |
+
#: ../inc/core/class.data.php:1104
|
1300 |
msgid "Show player controls (play/pause etc.) or not"
|
1301 |
msgstr "Προβολή ή όχι των χειριστηρίων του player (αναπαραγωγή/παύση κτλ)"
|
1302 |
|
1303 |
+
#: ../inc/core/class.data.php:1125
|
1304 |
msgid "Custom video player"
|
1305 |
msgstr "Προσαρμοσμένος player για βίντεο"
|
1306 |
|
1307 |
+
#: ../inc/core/class.data.php:1129
|
1308 |
msgid "Table"
|
1309 |
msgstr "Table"
|
1310 |
|
1311 |
+
#: ../inc/core/class.data.php:1136
|
|
|
|
|
|
|
|
|
1312 |
msgid "CSV file"
|
1313 |
msgstr "Αρχείο CSV"
|
1314 |
|
1315 |
+
#: ../inc/core/class.data.php:1137
|
1316 |
msgid "Upload CSV file if you want to create HTML-table from file"
|
1317 |
msgstr ""
|
1318 |
"Μεταφορτώστε ένα αρχείο CSV αν θέλετε να δημιουργήσετε πίνακα - HTML από "
|
1319 |
"αρχείο"
|
1320 |
|
1321 |
+
#: ../inc/core/class.data.php:1146
|
1322 |
msgid ""
|
1323 |
"<table>\n"
|
1324 |
"<tr>\n"
|
1342 |
"</tr>\n"
|
1343 |
"</table>"
|
1344 |
|
1345 |
+
#: ../inc/core/class.data.php:1147
|
1346 |
msgid "Styled table from HTML or CSV file"
|
1347 |
msgstr "Μορφοποιημένος πίνακας από HTML ή CSV αρχείο"
|
1348 |
|
1349 |
+
#: ../inc/core/class.data.php:1151
|
1350 |
msgid "Permalink"
|
1351 |
msgstr "Permalink"
|
1352 |
|
1353 |
+
#: ../inc/core/class.data.php:1157
|
1354 |
msgid "ID"
|
1355 |
msgstr "ID"
|
1356 |
|
1357 |
+
#: ../inc/core/class.data.php:1158
|
1358 |
msgid "Post or page ID"
|
1359 |
msgstr "Δημοσίευση ή ID σελίδας"
|
1360 |
|
1361 |
+
#: ../inc/core/class.data.php:1168
|
1362 |
msgid "Link target. blank - link will be opened in new window/tab"
|
1363 |
msgstr ""
|
1364 |
"Στόχος συναδέσμου. Κενό - ο σύνδεσμος θα ανοίξει σε νέο παράθυρο/νέα καρτέλα"
|
1365 |
|
1366 |
+
#: ../inc/core/class.data.php:1178
|
1367 |
msgid "Permalink to specified post/page"
|
1368 |
msgstr "Το permalink για τον ορισμό του δημοσιεύματος/της σελίδας"
|
1369 |
|
1370 |
+
#: ../inc/core/class.data.php:1182
|
1371 |
msgid "Members"
|
1372 |
msgstr "Members"
|
1373 |
|
1374 |
+
#: ../inc/core/class.data.php:1187 ../inc/core/shortcodes.php:872
|
|
|
|
|
|
|
|
|
|
|
|
|
1375 |
msgid "This content is for registered users only. Please %login%."
|
1376 |
msgstr ""
|
1377 |
"Αυτό το περιεχόμενο είναι μόνο για εγγεγραμμένους χρήστες. Παρακαλώ "
|
1378 |
"%συνδεθείτε%."
|
1379 |
|
1380 |
+
#: ../inc/core/class.data.php:1188
|
1381 |
msgid "Message"
|
1382 |
+
msgstr "Μήνυμα"
|
1383 |
|
1384 |
+
#: ../inc/core/class.data.php:1188
|
1385 |
msgid "Message for not logged users"
|
1386 |
msgstr "Μήνυμα για μη συνδεδεμένους χρήστες"
|
1387 |
|
1388 |
+
#: ../inc/core/class.data.php:1193
|
1389 |
+
msgid "Box color"
|
1390 |
+
msgstr "Χρώμα πλαισίου"
|
1391 |
+
|
1392 |
+
#: ../inc/core/class.data.php:1193
|
1393 |
+
msgid "This color will applied only to box for not logged users"
|
1394 |
+
msgstr ""
|
1395 |
+
"Αυτό το χρώμα θα εφαρμόζεται στα πλαίσια μόνο για τους μή συνδεδεμένους "
|
1396 |
+
"χρήστες"
|
1397 |
+
|
1398 |
+
#: ../inc/core/class.data.php:1196 ../inc/core/shortcodes.php:875
|
1399 |
msgid "login"
|
1400 |
+
msgstr "συνδεθείτε"
|
1401 |
|
1402 |
+
#: ../inc/core/class.data.php:1197
|
1403 |
msgid "Login link text"
|
1404 |
msgstr "Κείμενο διεύθυνσης σύνδεσης"
|
1405 |
|
1406 |
+
#: ../inc/core/class.data.php:1197
|
1407 |
msgid "Text for the login link"
|
1408 |
msgstr "Κείμενο για την διεύθυσνη σύνδεσης"
|
1409 |
|
1410 |
+
#: ../inc/core/class.data.php:1201
|
1411 |
+
msgid "Login link url"
|
1412 |
+
msgstr "Διεύθυνση σύνδεσης"
|
1413 |
+
|
1414 |
+
#: ../inc/core/class.data.php:1210
|
1415 |
msgid "Content for logged members"
|
1416 |
msgstr "Περιεχόμενο για συνδεδεμένους χρήστες"
|
1417 |
|
1418 |
+
#: ../inc/core/class.data.php:1211
|
1419 |
msgid "Content for logged in members only"
|
1420 |
msgstr "Περιεχόμενο μόνο για συνδεδεμένους χρήστες"
|
1421 |
|
1422 |
+
#: ../inc/core/class.data.php:1215
|
1423 |
msgid "Guests"
|
1424 |
msgstr "Guests"
|
1425 |
|
1426 |
+
#: ../inc/core/class.data.php:1225
|
1427 |
msgid "Content for guests"
|
1428 |
msgstr "Περιεχόμενο για guests"
|
1429 |
|
1430 |
+
#: ../inc/core/class.data.php:1225
|
1431 |
msgid "Content for guests only"
|
1432 |
msgstr "Περιεχόμενο μόνο για guests"
|
1433 |
|
1434 |
+
#: ../inc/core/class.data.php:1229
|
1435 |
msgid "RSS Feed"
|
1436 |
msgstr "RSS Feed"
|
1437 |
|
1438 |
+
#: ../inc/core/class.data.php:1237
|
1439 |
msgid "Url to RSS-feed"
|
1440 |
msgstr "Διεύθυνση του RSS-feed"
|
1441 |
|
1442 |
+
#: ../inc/core/class.data.php:1242
|
1443 |
msgid "Limit"
|
1444 |
msgstr "Όριο"
|
1445 |
|
1446 |
+
#: ../inc/core/class.data.php:1242
|
1447 |
msgid "Number of items to show"
|
1448 |
msgstr "Αριθμός αντικειμένων που θα προβάλλονται"
|
1449 |
|
1450 |
+
#: ../inc/core/class.data.php:1250
|
1451 |
msgid "Feed grabber"
|
1452 |
msgstr "Feed grabber"
|
1453 |
|
1454 |
+
#: ../inc/core/class.data.php:1254
|
1455 |
msgid "Menu"
|
1456 |
msgstr "Menu"
|
1457 |
|
1458 |
+
#: ../inc/core/class.data.php:1261
|
1459 |
msgid "Menu name"
|
1460 |
+
msgstr "Ονομασία μενού"
|
1461 |
|
1462 |
+
#: ../inc/core/class.data.php:1261
|
1463 |
msgid "Custom menu name. Ex: Main menu"
|
1464 |
msgstr "Προσαρμοσμένη ονομασία μενού. Π.χ. Main menu"
|
1465 |
|
1466 |
+
#: ../inc/core/class.data.php:1269
|
1467 |
msgid "Custom menu by name"
|
1468 |
msgstr "Προσαρμοσμένο μενού κατά όνομα"
|
1469 |
|
1470 |
+
#: ../inc/core/class.data.php:1273
|
1471 |
msgid "Sub pages"
|
1472 |
msgstr "Sub pages"
|
1473 |
|
1474 |
+
#: ../inc/core/class.data.php:1280 ../inc/core/class.data.php:1306
|
1475 |
msgid "Depth"
|
1476 |
msgstr "Βάθος"
|
1477 |
|
1478 |
+
#: ../inc/core/class.data.php:1281
|
1479 |
msgid "Max depth level of children pages"
|
1480 |
msgstr "Μέγιστο επίπεδο βάθους για υποσελίδες"
|
1481 |
|
1482 |
+
#: ../inc/core/class.data.php:1286
|
1483 |
msgid "Parent ID"
|
1484 |
msgstr "ID γονέα"
|
1485 |
|
1486 |
+
#: ../inc/core/class.data.php:1287
|
1487 |
msgid "ID of the parent page. Leave blank to use current page"
|
1488 |
msgstr ""
|
1489 |
"ID της γονικής σελίδας. Αφήστε το κενό, ώστε να χρησιμοποιηθεί η τρέχουσα "
|
1490 |
"σελίδα"
|
1491 |
|
1492 |
+
#: ../inc/core/class.data.php:1295
|
1493 |
msgid "List of sub pages"
|
1494 |
msgstr "Λίστα για υποσελίδες"
|
1495 |
|
1496 |
+
#: ../inc/core/class.data.php:1299
|
1497 |
msgid "Siblings"
|
1498 |
msgstr "Siblings"
|
1499 |
|
1500 |
+
#: ../inc/core/class.data.php:1307
|
1501 |
msgid "Max depth level"
|
1502 |
msgstr "Μέγιστο επίπεδο βάθους"
|
1503 |
|
1504 |
+
#: ../inc/core/class.data.php:1315
|
1505 |
msgid "List of cureent page siblings"
|
1506 |
msgstr "Λίστα από τρέχουσες σελίδες siblings"
|
1507 |
|
1508 |
+
#: ../inc/core/class.data.php:1319
|
1509 |
msgid "Document"
|
1510 |
msgstr "Document"
|
1511 |
|
1512 |
+
#: ../inc/core/class.data.php:1327
|
1513 |
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1514 |
msgstr ""
|
1515 |
"Διεύθυνση για τη μεταφόρτωση εγγράφου. Υποστηριζόμενοι τύποι: doc, xls, pdf "
|
1516 |
"κτλ."
|
1517 |
|
1518 |
+
#: ../inc/core/class.data.php:1336
|
1519 |
msgid "Viewer width"
|
1520 |
msgstr "Πλάτος Viewer"
|
1521 |
|
1522 |
+
#: ../inc/core/class.data.php:1345
|
1523 |
msgid "Viewer height"
|
1524 |
msgstr "Ύψος Viewer"
|
1525 |
|
1526 |
+
#: ../inc/core/class.data.php:1351
|
1527 |
+
msgid "Ignore width and height parameters and make viewer responsive"
|
1528 |
+
msgstr ""
|
1529 |
+
"Αγνόηση των παραμέτρων πλάτους και ύψους, και αυτόματη ανταπόκριση του viewer"
|
1530 |
+
|
1531 |
+
#: ../inc/core/class.data.php:1359
|
1532 |
msgid "Document viewer by Google"
|
1533 |
msgstr "Viewer εγγράφου από Google"
|
1534 |
|
1535 |
+
#: ../inc/core/class.data.php:1363
|
1536 |
msgid "Gmap"
|
1537 |
msgstr "Gmap"
|
1538 |
|
1539 |
+
#: ../inc/core/class.data.php:1374
|
1540 |
msgid "Map width"
|
1541 |
msgstr "Πλάτος χάρτη"
|
1542 |
|
1543 |
+
#: ../inc/core/class.data.php:1383
|
1544 |
msgid "Map height"
|
1545 |
msgstr "Ύψος χάρτη"
|
1546 |
|
1547 |
+
#: ../inc/core/class.data.php:1389
|
1548 |
+
msgid "Ignore width and height parameters and make map responsive"
|
1549 |
+
msgstr ""
|
1550 |
+
"Αγνόηση των παραμέτρων πλάτους και ύψους, και αυτόματη ανταπόκριση του χάρτη"
|
1551 |
+
|
1552 |
+
#: ../inc/core/class.data.php:1394
|
1553 |
msgid "Marker"
|
1554 |
msgstr "Δείκτης"
|
1555 |
|
1556 |
+
#: ../inc/core/class.data.php:1395
|
1557 |
msgid "Address for the marker. You can type it in any language"
|
1558 |
msgstr "Διεύθυνση του δείκτη. Μπορείτε να την γράψετε σε οποιαδήποτε γλώσσα"
|
1559 |
|
1560 |
+
#: ../inc/core/class.data.php:1403
|
1561 |
msgid "Maps by Google"
|
1562 |
msgstr "Χάρτες από Google"
|
1563 |
|
1564 |
+
#: ../inc/core/class.data.php:1407
|
1565 |
msgid "Slider"
|
1566 |
msgstr "Slider"
|
1567 |
|
1568 |
+
#: ../inc/core/class.data.php:1414
|
|
|
|
|
|
|
|
|
|
|
1569 |
msgid "Choose source gallery, that will be used for this slider"
|
1570 |
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το slider"
|
1571 |
|
1572 |
+
#: ../inc/core/class.data.php:1422
|
1573 |
msgid "Slider width (in pixels)"
|
1574 |
msgstr "Πλάτος slider (σε pixels)"
|
1575 |
|
1576 |
+
#: ../inc/core/class.data.php:1430
|
1577 |
msgid "Slider height (in pixels)"
|
1578 |
msgstr "Ycow slider (σε pixels)"
|
1579 |
|
1580 |
+
#: ../inc/core/class.data.php:1436
|
1581 |
+
msgid "Ignore width and height parameters and make slider responsive"
|
1582 |
+
msgstr ""
|
1583 |
+
"Αγνόηση των παραμέτρων πλάτους και ύψους, και αυτόματη ανταπόκριση του slider"
|
1584 |
+
|
1585 |
+
#: ../inc/core/class.data.php:1441 ../inc/core/class.data.php:1547
|
1586 |
+
#: ../inc/core/class.data.php:1636
|
1587 |
msgid "Show titles"
|
1588 |
msgstr "Προβολή τίτλων"
|
1589 |
|
1590 |
+
#: ../inc/core/class.data.php:1441
|
1591 |
msgid "Display slide titles"
|
1592 |
msgstr "Προβολή των τίτλων του slide"
|
1593 |
|
1594 |
+
#: ../inc/core/class.data.php:1446
|
|
|
|
|
|
|
|
|
1595 |
msgid "Is slider centered on the page"
|
1596 |
msgstr "Είναι το slider κεντραρισμένο στην σελίδα"
|
1597 |
|
1598 |
+
#: ../inc/core/class.data.php:1451 ../inc/core/class.data.php:1557
|
1599 |
msgid "Arrows"
|
1600 |
msgstr "Βέλη"
|
1601 |
|
1602 |
+
#: ../inc/core/class.data.php:1451 ../inc/core/class.data.php:1557
|
1603 |
msgid "Show left and right arrows"
|
1604 |
msgstr "Προβολή αριστερού και δεξιού βέλους"
|
1605 |
|
1606 |
+
#: ../inc/core/class.data.php:1456 ../inc/core/class.data.php:1562
|
1607 |
msgid "Pagination"
|
1608 |
msgstr "Σελιδοποίηση"
|
1609 |
|
1610 |
+
#: ../inc/core/class.data.php:1457 ../inc/core/class.data.php:1563
|
1611 |
msgid "Show pagination"
|
1612 |
msgstr "Προβολή σελιδοποίησης"
|
1613 |
|
1614 |
+
#: ../inc/core/class.data.php:1461 ../inc/core/class.data.php:1567
|
1615 |
msgid "Mouse wheel control"
|
1616 |
msgstr "Έλεγχος ρόδας ποντικιού"
|
1617 |
|
1618 |
+
#: ../inc/core/class.data.php:1462
|
1619 |
msgid "Allow to change slides with mouse wheel"
|
1620 |
msgstr "Επιτρέψτε την αλλαγή των slides με την ρόδα του ποντικιού"
|
1621 |
|
1622 |
+
#: ../inc/core/class.data.php:1471
|
1623 |
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1624 |
msgstr ""
|
1625 |
"Επιλέξτε το χρονικό διάστημα μεταξύ των κινούμενων εικόνων του slide. Ορίστε "
|
1626 |
"σε 0 για απενεργοποίηση την αυτόματης αναπαραγωγής"
|
1627 |
|
1628 |
+
#: ../inc/core/class.data.php:1479 ../inc/core/class.data.php:1585
|
1629 |
msgid "Speed"
|
1630 |
msgstr "Ταχύτητα"
|
1631 |
|
1632 |
+
#: ../inc/core/class.data.php:1479 ../inc/core/class.data.php:1585
|
1633 |
msgid "Specify animation speed"
|
1634 |
msgstr "Καθορίστε την ταχύτητα κίνησης"
|
1635 |
|
1636 |
+
#: ../inc/core/class.data.php:1484 ../inc/core/class.data.php:1590
|
1637 |
+
#: ../inc/core/class.data.php:1642
|
1638 |
msgid "Links target"
|
1639 |
msgstr "Στόχος συνδέσμου"
|
1640 |
|
1641 |
+
#: ../inc/core/class.data.php:1485
|
1642 |
msgid "Open slides links in new window/tab"
|
1643 |
msgstr "Άνοιγμα των συνδέσμων του slide σε νέο παράθυρο/νέα καρτέλα"
|
1644 |
|
1645 |
+
#: ../inc/core/class.data.php:1493
|
1646 |
msgid "Customizable image slider"
|
1647 |
msgstr "Προσαρμοζόμενο slider εικόνων"
|
1648 |
|
1649 |
+
#: ../inc/core/class.data.php:1497
|
1650 |
msgid "Carousel"
|
1651 |
msgstr "Carousel"
|
1652 |
|
1653 |
+
#: ../inc/core/class.data.php:1504
|
1654 |
msgid "Choose source gallery, that will be used for this carousel"
|
1655 |
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το carousel"
|
1656 |
|
1657 |
+
#: ../inc/core/class.data.php:1512
|
1658 |
msgid "Carousel width (in pixels)"
|
1659 |
msgstr "Πλάτος Carousel (σε pixels)"
|
1660 |
|
1661 |
+
#: ../inc/core/class.data.php:1520
|
1662 |
msgid "Carousel height (in pixels)"
|
1663 |
msgstr "Ύψος Carousel (σε pixels)"
|
1664 |
|
1665 |
+
#: ../inc/core/class.data.php:1526
|
1666 |
+
msgid "Ignore width and height parameters and make carousel responsive"
|
1667 |
+
msgstr ""
|
1668 |
+
"Αγνόηση των παραμέτρων πλάτους και ύψους, και αυτόματη ανταπόκριση του "
|
1669 |
+
"carousel"
|
1670 |
+
|
1671 |
+
#: ../inc/core/class.data.php:1533
|
1672 |
msgid "Items to show"
|
1673 |
msgstr "Αντικείμενα για προβολή"
|
1674 |
|
1675 |
+
#: ../inc/core/class.data.php:1534
|
1676 |
msgid "How much carousel items is visible"
|
1677 |
msgstr "Πόσα αντικείμενα του Carousel θα προβάλονται"
|
1678 |
|
1679 |
+
#: ../inc/core/class.data.php:1541
|
1680 |
msgid "Scroll number"
|
1681 |
msgstr "Αριθμός κύλισης"
|
1682 |
|
1683 |
+
#: ../inc/core/class.data.php:1542
|
1684 |
msgid "How much items are scrolled in one transition"
|
1685 |
msgstr "Πόσα στοιχεία μετακυλίονται σε ένα μεταβατικό στάδιο"
|
1686 |
|
1687 |
+
#: ../inc/core/class.data.php:1547
|
1688 |
msgid "Display titles for each item"
|
1689 |
msgstr "Προβολή τίτλων για κάθε αντικέιμενο"
|
1690 |
|
1691 |
+
#: ../inc/core/class.data.php:1552
|
1692 |
msgid "Is carousel centered on the page"
|
1693 |
msgstr "Είναι το carousel κεντραρισμένο στην σελίδα"
|
1694 |
|
1695 |
+
#: ../inc/core/class.data.php:1568
|
1696 |
msgid "Allow to rotate carousel with mouse wheel"
|
1697 |
msgstr "Να επιτρέπεται η περιστροφή του carousel με τη ρόδα του ποντικιού"
|
1698 |
|
1699 |
+
#: ../inc/core/class.data.php:1577
|
1700 |
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1701 |
msgstr ""
|
1702 |
"Επιλέξτε το χρονικό διάστημα μεταξύ των αυτόματων κινούμενων εικόνων. Ορίστε "
|
1703 |
"σε 0 για απενεργοποίηση την αυτόματης αναπαραγωγής"
|
1704 |
|
1705 |
+
#: ../inc/core/class.data.php:1591
|
1706 |
msgid "Open carousel links in new window/tab"
|
1707 |
msgstr "Άνοιγμα των συνδέσμων του carousel σε νέο παράθυρο/νέα καρτέλα"
|
1708 |
|
1709 |
+
#: ../inc/core/class.data.php:1599
|
1710 |
msgid "Customizable image carousel"
|
1711 |
msgstr "Carousel προσαρμοζόμενης εικόνας"
|
1712 |
|
1713 |
+
#: ../inc/core/class.data.php:1610
|
1714 |
msgid "Choose source gallery, that will be used for this shortcode"
|
1715 |
msgstr "Επιλέξτε τη γκαλερί που θα χρησιμοποιηθεί σε αυτό το shortcode"
|
1716 |
|
1717 |
+
#: ../inc/core/class.data.php:1618
|
1718 |
msgid "Single item width (in pixels)"
|
1719 |
msgstr "Πλάτος ενιαίου αντικειμένου (σε pixels)"
|
1720 |
|
1721 |
+
#: ../inc/core/class.data.php:1626
|
1722 |
msgid "Single item height (in pixels)"
|
1723 |
msgstr "Ύψος ενιαίου αντικειμένου (σε pixels)"
|
1724 |
|
1725 |
+
#: ../inc/core/class.data.php:1631
|
1726 |
msgid "Never"
|
1727 |
msgstr "Ποτέ"
|
1728 |
|
1729 |
+
#: ../inc/core/class.data.php:1632
|
1730 |
msgid "On mouse over"
|
1731 |
msgstr "Με το ποντίκι πάνω"
|
1732 |
|
1733 |
+
#: ../inc/core/class.data.php:1633
|
1734 |
msgid "Always"
|
1735 |
msgstr "Πάντα"
|
1736 |
|
1737 |
+
#: ../inc/core/class.data.php:1637
|
1738 |
msgid "Title display mode"
|
1739 |
msgstr "Τρόπος προβολής τίτλου"
|
1740 |
|
1741 |
+
#: ../inc/core/class.data.php:1642
|
1742 |
msgid "Open links in new window/tab"
|
1743 |
msgstr "Άνοιγμα συνδέσμων σε νέο παράθυρο/νέα καρτέλα"
|
1744 |
|
1745 |
+
#: ../inc/core/class.data.php:1650
|
1746 |
msgid "Customizable image gallery"
|
1747 |
msgstr "Προσαρμόσιμη γκαλερί εικόνων"
|
1748 |
|
1749 |
+
#: ../inc/core/class.data.php:1654
|
1750 |
msgid "Posts"
|
1751 |
msgstr "Posts"
|
1752 |
|
1753 |
+
#: ../inc/core/class.data.php:1659
|
1754 |
msgid "Template"
|
1755 |
msgstr "Πρότυπο"
|
1756 |
|
1757 |
+
#: ../inc/core/class.data.php:1660
|
1758 |
msgid ""
|
1759 |
"<b>Do not change this field value if you do not understand description below."
|
1760 |
"</b><br/>Relative path to the template file. Default templates is placed "
|
1777 |
"title<br/><b%value>templates/single-post.php</b> - single post template<br/"
|
1778 |
"><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1779 |
|
1780 |
+
#: ../inc/core/class.data.php:1664
|
1781 |
msgid "Post ID's"
|
1782 |
msgstr "ID δημοσιευμάτων"
|
1783 |
|
1784 |
+
#: ../inc/core/class.data.php:1665
|
1785 |
msgid "Enter comma separated ID's of the posts that you want to show"
|
1786 |
msgstr ""
|
1787 |
"Εισάγεται τις ID διαχωρισμένες με κόμμα, για τα δημοσιεύματα που θέλετε να "
|
1788 |
"προβάλλονται"
|
1789 |
|
1790 |
+
#: ../inc/core/class.data.php:1673
|
1791 |
msgid "Posts per page"
|
1792 |
msgstr "Δημοσιεύματα ανά σελίδα"
|
1793 |
|
1794 |
+
#: ../inc/core/class.data.php:1674
|
1795 |
msgid ""
|
1796 |
"Specify number of posts that you want to show. Enter -1 to get all posts"
|
1797 |
msgstr ""
|
1798 |
"Ορίστε των αριθμό των δημοσιεύσεων που θέλετε να προβάλονται. Εισάγεται -1 "
|
1799 |
"για να προβληθούν όλες οι δημοσιεύσεις"
|
1800 |
|
1801 |
+
#: ../inc/core/class.data.php:1681
|
1802 |
msgid "Post types"
|
1803 |
msgstr "Τύπος δημοσιευμάτων"
|
1804 |
|
1805 |
+
#: ../inc/core/class.data.php:1682
|
1806 |
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1807 |
msgstr ""
|
1808 |
"Επιλέξτε τους τύπους των δημοσιευμάτων. Κρατήστε το πλήκτρο Ctrl για να "
|
1809 |
"επιλέξετε πολλαπλούς τύπους δημοσιευμάτων"
|
1810 |
|
1811 |
+
#: ../inc/core/class.data.php:1688
|
1812 |
msgid "Taxonomy"
|
1813 |
msgstr "Taxonomy"
|
1814 |
|
1815 |
+
#: ../inc/core/class.data.php:1689
|
1816 |
msgid "Select taxonomy to show posts from"
|
1817 |
msgstr "Επιλέξτε taxonomy για την προβολή άρθρων"
|
1818 |
|
1819 |
+
#: ../inc/core/class.data.php:1696
|
1820 |
msgid "Terms"
|
1821 |
msgstr "Όροι"
|
1822 |
|
1823 |
+
#: ../inc/core/class.data.php:1696
|
1824 |
msgid "Select terms to show posts from"
|
1825 |
msgstr "Επιλογή όρων για την προβολή δημοσιευμάτων"
|
1826 |
|
1827 |
+
#: ../inc/core/class.data.php:1701
|
1828 |
msgid "Taxonomy term operator"
|
1829 |
msgstr "Taxonomy term operator"
|
1830 |
|
1831 |
+
#: ../inc/core/class.data.php:1702
|
1832 |
msgid ""
|
1833 |
"IN - posts that have any of selected categories terms<br/>NOT IN - posts "
|
1834 |
"that is does not have any of selected terms<br/>AND - posts that have all "
|
1838 |
">NOT IN - δημοσιεύματα που δεν έχουν οποιονδήποτε όρο επιλεγμένο<br/>AND - "
|
1839 |
"δημοσιεύματα που έχουν όλους τους όρους επιλεγμένους"
|
1840 |
|
1841 |
+
#: ../inc/core/class.data.php:1709
|
1842 |
msgid "Authors"
|
1843 |
msgstr "Συγγραφείς"
|
1844 |
|
1845 |
+
#: ../inc/core/class.data.php:1710
|
1846 |
msgid "Choose the authors whose posts you want to show"
|
1847 |
msgstr ""
|
1848 |
"Επιλέξτε τους συγγραφείς των οποίων τα δημοσιεύματα θέλετε να προβάλλονται"
|
1849 |
|
1850 |
+
#: ../inc/core/class.data.php:1714
|
1851 |
msgid "Meta key"
|
1852 |
msgstr "Κλειδιά μεταδεδομένων"
|
1853 |
|
1854 |
+
#: ../inc/core/class.data.php:1715
|
1855 |
msgid "Enter meta key name to show posts that have this key"
|
1856 |
msgstr ""
|
1857 |
"Εισάγεται ονόματα κλειδιών μεταδεδομένων για να προβληθούν τα δημοσιεύματα "
|
1858 |
"που τα έχουν"
|
1859 |
|
1860 |
+
#: ../inc/core/class.data.php:1722
|
1861 |
msgid "Offset"
|
1862 |
msgstr "Offset"
|
1863 |
|
1864 |
+
#: ../inc/core/class.data.php:1723
|
1865 |
msgid "Specify offset to start posts loop not from first post"
|
1866 |
msgstr ""
|
1867 |
"Ορίστε offset για την έναρξη του κύκλου δημοσιευμάτων, όχι από το πρώτο "
|
1868 |
"δημοσίευμα"
|
1869 |
|
1870 |
+
#: ../inc/core/class.data.php:1728
|
1871 |
msgid "Descending"
|
1872 |
msgstr "Φθίνουσα"
|
1873 |
|
1874 |
+
#: ../inc/core/class.data.php:1729
|
1875 |
msgid "Ascending"
|
1876 |
msgstr "Αύξουσα"
|
1877 |
|
1878 |
+
#: ../inc/core/class.data.php:1732
|
1879 |
msgid "Order"
|
1880 |
msgstr "Σειρά"
|
1881 |
|
1882 |
+
#: ../inc/core/class.data.php:1733
|
1883 |
msgid "Posts order"
|
1884 |
msgstr "Σειρά δημοσιευμάτων"
|
1885 |
|
1886 |
+
#: ../inc/core/class.data.php:1739
|
1887 |
msgid "Post ID"
|
1888 |
msgstr "ID δημοσιεύματος"
|
1889 |
|
1890 |
+
#: ../inc/core/class.data.php:1740
|
1891 |
msgid "Post author"
|
1892 |
msgstr "Συγγραφέας δημοσιεύματος"
|
1893 |
|
1894 |
+
#: ../inc/core/class.data.php:1741
|
1895 |
msgid "Post title"
|
1896 |
msgstr "Τίτλος δημοσιεύματος"
|
1897 |
|
1898 |
+
#: ../inc/core/class.data.php:1742
|
1899 |
msgid "Post slug"
|
1900 |
msgstr "Slug δημοσιεύματος"
|
1901 |
|
1902 |
+
#: ../inc/core/class.data.php:1743
|
1903 |
msgid "Date"
|
1904 |
msgstr "Ημέρα"
|
1905 |
|
1906 |
+
#: ../inc/core/class.data.php:1743
|
1907 |
msgid "Last modified date"
|
1908 |
msgstr "Ημέρα τελευταίας τροποποίησης"
|
1909 |
|
1910 |
+
#: ../inc/core/class.data.php:1744 ../inc/core/class.data.php:1754
|
1911 |
msgid "Post parent"
|
1912 |
msgstr "Γονέας δημοσιεύματος"
|
1913 |
|
1914 |
+
#: ../inc/core/class.data.php:1745
|
1915 |
msgid "Random"
|
1916 |
msgstr "Τυχαίο"
|
1917 |
|
1918 |
+
#: ../inc/core/class.data.php:1745
|
1919 |
msgid "Comments number"
|
1920 |
msgstr "Αριθμός σχόλιων"
|
1921 |
|
1922 |
+
#: ../inc/core/class.data.php:1746
|
1923 |
msgid "Menu order"
|
1924 |
msgstr "Σειρά μενού"
|
1925 |
|
1926 |
+
#: ../inc/core/class.data.php:1746
|
1927 |
msgid "Meta key values"
|
1928 |
msgstr "Τιμές κλειδιών μεταδεδομένων"
|
1929 |
|
1930 |
+
#: ../inc/core/class.data.php:1749
|
1931 |
msgid "Order by"
|
1932 |
msgstr "Ταξινόμηση κατά"
|
1933 |
|
1934 |
+
#: ../inc/core/class.data.php:1750
|
1935 |
msgid "Order posts by"
|
1936 |
msgstr "Ταξινόμηση δημοσιευμάτων κατά"
|
1937 |
|
1938 |
+
#: ../inc/core/class.data.php:1755
|
1939 |
msgid "Show childrens of entered post (enter post ID)"
|
1940 |
msgstr ""
|
1941 |
"Προβολή υποδημοσιευμάτων για τα δημοσιεύματα που έχετε εισάγει (εισάγεται ID "
|
1942 |
"δημοσιεύματος)"
|
1943 |
|
1944 |
+
#: ../inc/core/class.data.php:1760
|
1945 |
msgid "Published"
|
1946 |
msgstr "Δημοσιευμένα"
|
1947 |
|
1948 |
+
#: ../inc/core/class.data.php:1761
|
1949 |
msgid "Pending"
|
1950 |
msgstr "Εν αναμονή"
|
1951 |
|
1952 |
+
#: ../inc/core/class.data.php:1762
|
1953 |
msgid "Draft"
|
1954 |
msgstr "Προσχέδιο"
|
1955 |
|
1956 |
+
#: ../inc/core/class.data.php:1763
|
1957 |
msgid "Auto-draft"
|
1958 |
msgstr "Αυτόματο προσχέδιο"
|
1959 |
|
1960 |
+
#: ../inc/core/class.data.php:1764
|
1961 |
msgid "Future post"
|
1962 |
msgstr "Μελλοντικό δημοσίευμα"
|
1963 |
|
1964 |
+
#: ../inc/core/class.data.php:1765
|
1965 |
msgid "Private post"
|
1966 |
msgstr "Ιδιωτικό δημοσίευμα"
|
1967 |
|
1968 |
+
#: ../inc/core/class.data.php:1766
|
1969 |
msgid "Inherit"
|
1970 |
msgstr "Κληρονομημένο"
|
1971 |
|
1972 |
+
#: ../inc/core/class.data.php:1767
|
1973 |
msgid "Trashed"
|
1974 |
msgstr "Διεγραμμένο"
|
1975 |
|
1976 |
+
#: ../inc/core/class.data.php:1768
|
1977 |
msgid "Any"
|
1978 |
msgstr "Οποιοδήποτε"
|
1979 |
|
1980 |
+
#: ../inc/core/class.data.php:1771
|
1981 |
msgid "Post status"
|
1982 |
msgstr "Κατάσταση δημοσιεύματος"
|
1983 |
|
1984 |
+
#: ../inc/core/class.data.php:1772
|
1985 |
msgid "Show only posts with selected status"
|
1986 |
msgstr "Προβολή μόνο των δημοσιευμάτων με την επιλεγμένη κατάσταση"
|
1987 |
|
1988 |
+
#: ../inc/core/class.data.php:1777
|
1989 |
msgid "Ignore sticky"
|
1990 |
msgstr "Παράβλεψη καρφιτσωμένων"
|
1991 |
|
1992 |
+
#: ../inc/core/class.data.php:1778
|
1993 |
msgid "Select Yes to ignore posts that is sticked"
|
1994 |
msgstr "Επιλέξτε Ναι για να παραβλέψετε τα καρφιτσωμένα δημοσιεύματα"
|
1995 |
|
1996 |
+
#: ../inc/core/class.data.php:1782
|
1997 |
msgid "Custom posts query with customizable template"
|
1998 |
msgstr "Προσαρμοσμένο ερώτημα δημοσιευμάτων με προσαρμοζόμενο πρότυπο"
|
1999 |
|
2000 |
+
#: ../inc/core/class.generator.php:44 ../inc/core/class.generator.php:147
|
2001 |
+
msgid "Insert shortcode"
|
2002 |
+
msgstr "Εισαγωγή shortcode"
|
2003 |
|
2004 |
+
#: ../inc/core/class.generator.php:88
|
2005 |
+
msgid "Plugin settings"
|
2006 |
+
msgstr "Ρυθμίσεις πρόσθετου"
|
|
|
2007 |
|
2008 |
+
#: ../inc/core/class.generator.php:89
|
2009 |
+
msgid "Plugin homepage"
|
2010 |
+
msgstr "Σελίδα πρόσθετου"
|
2011 |
|
2012 |
+
#: ../inc/core/class.generator.php:90
|
2013 |
+
msgid "Support forums"
|
2014 |
+
msgstr "Forum υποστήριξης"
|
|
|
2015 |
|
2016 |
+
#: ../inc/core/class.generator.php:97
|
2017 |
+
msgid "Search for shortcodes"
|
2018 |
+
msgstr "Αναζήτηση για shortcodes"
|
2019 |
+
|
2020 |
+
#: ../inc/core/class.generator.php:99
|
2021 |
+
msgid "Filter by type"
|
2022 |
+
msgstr "Κατηγοριοποίηση κατά τύπο"
|
2023 |
+
|
2024 |
+
#: ../inc/core/class.generator.php:135
|
2025 |
+
msgid "Shortcode not specified"
|
2026 |
+
msgstr "Δεν καθορίστικε shortcode"
|
2027 |
+
|
2028 |
+
#: ../inc/core/class.generator.php:148
|
2029 |
+
msgid "Live preview"
|
2030 |
+
msgstr "Ζωντανή προεπισκόπηση"
|
2031 |
+
|
2032 |
+
#: ../inc/core/class.generator.php:149
|
2033 |
+
msgid "Close window"
|
2034 |
+
msgstr "Κλείσιμο παραθύρου"
|
2035 |
+
|
2036 |
+
#: ../inc/core/class.generator.php:153
|
2037 |
+
msgid "Click to return to the shortcodes list"
|
2038 |
+
msgstr "Πατήστε εδώ για να επιστρέψετε στην λίστα των shortcode"
|
2039 |
+
|
2040 |
+
#: ../inc/core/class.generator.php:153
|
2041 |
+
msgid "All shortcodes"
|
2042 |
+
msgstr "Όλα τα shortcodes"
|
2043 |
+
|
2044 |
+
#: ../inc/core/class.generator.php:186
|
2045 |
+
msgid "Yes"
|
2046 |
+
msgstr "Ναι"
|
2047 |
+
|
2048 |
+
#: ../inc/core/class.generator.php:186
|
2049 |
+
msgid "No"
|
2050 |
+
msgstr "Όχι"
|
2051 |
+
|
2052 |
+
#: ../inc/core/class.generator.php:190 ../inc/views/galleries.php:28
|
2053 |
+
#: ../inc/views/galleries.php:83
|
2054 |
+
msgid "Max upload file size"
|
2055 |
+
msgstr "Μέγιστο μέγεθος μεταφόρτωσης αρχείου"
|
2056 |
+
|
2057 |
+
#: ../inc/core/class.generator.php:190 ../inc/views/galleries.php:28
|
2058 |
+
#: ../inc/views/galleries.php:83
|
2059 |
+
msgid "Mb"
|
2060 |
+
msgstr "Mb"
|
2061 |
+
|
2062 |
+
#: ../inc/core/class.generator.php:190 ../inc/views/galleries.php:28
|
2063 |
+
#: ../inc/views/galleries.php:83
|
2064 |
+
msgid "How to increase"
|
2065 |
+
msgstr "Πώς να το αυξήσετε"
|
2066 |
+
|
2067 |
+
#: ../inc/core/class.generator.php:201
|
2068 |
+
msgid "Please wait"
|
2069 |
+
msgstr "Παρακαλώ περιμένετε"
|
2070 |
+
|
2071 |
+
#: ../inc/core/class.generator.php:208 ../inc/core/class.generator.php:296
|
2072 |
+
msgid "Untitled gallery"
|
2073 |
+
msgstr "Γκαλερί χωρίς τίτλο"
|
2074 |
+
|
2075 |
+
#: ../inc/core/class.generator.php:214 ../inc/core/class.generator.php:302
|
2076 |
+
#: ../inc/views/galleries.php:64
|
2077 |
+
msgid "Galleries not found"
|
2078 |
+
msgstr "Δεν βρέθηκαν γκαλερί"
|
2079 |
+
|
2080 |
+
#: ../inc/core/class.generator.php:215
|
2081 |
+
msgid "Manage galleries"
|
2082 |
+
msgstr "Διαχείριση γκαλερί"
|
2083 |
+
|
2084 |
+
#: ../inc/core/class.generator.php:215
|
2085 |
+
msgid "Reload galleries"
|
2086 |
+
msgstr "Επαναφόρτωση των γκαλερί"
|
2087 |
+
|
2088 |
+
#: ../inc/core/class.generator.php:226
|
2089 |
+
msgid "Click to set this value"
|
2090 |
+
msgstr "Κάντε κλικ για να ορίσετε αυτήν την τιμή"
|
2091 |
+
|
2092 |
+
#: ../inc/core/class.generator.php:250
|
2093 |
+
msgid "Preview"
|
2094 |
+
msgstr "Προεπισκόπηση"
|
2095 |
+
|
2096 |
+
#: ../inc/core/class.generator.php:311
|
2097 |
+
msgid "Access denied"
|
2098 |
+
msgstr "Άρνηση πρόσβασης"
|
2099 |
+
|
2100 |
+
#: ../inc/core/class.requirements.php:35
|
2101 |
+
#, php-format
|
2102 |
+
msgid ""
|
2103 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
2104 |
+
"fully compatible with your version of WordPress (%s).<br />Reccomended "
|
2105 |
+
"WordPress version – %s (or higher).</p><a href=\"%s\">← Return to "
|
2106 |
+
"the plugins screen</a> <a href=\"%s\"%s>Continue and activate anyway →</"
|
2107 |
+
"a>"
|
2108 |
+
msgstr ""
|
2109 |
+
"<h1>Ωπ! Το Πρόσθετο δεν ενεργοποιήθηκε…</h1> <p>Το Shortcodes "
|
2110 |
+
"Ultimate δεν είναι πλήρως συμβατό με την έκδοση του WordPress (%s).<br />Η "
|
2111 |
+
"προτεινόμενη έκδοση του WordPress είναι – %s (ή μεγαλύτερη).</p><a "
|
2112 |
+
"href=\"%s\">← Επιστροφή στην οθόνη των πρόσθετων</a> <a href=\"%s"
|
2113 |
+
"\"%s>Συνέχεια και ενεργοποίηση οπωσδήποτε →</a>"
|
2114 |
+
|
2115 |
+
#: ../inc/core/class.requirements.php:36
|
2116 |
+
#, php-format
|
2117 |
+
msgid ""
|
2118 |
+
"<h1>Oops! Plugin not activated…</h1> <p>Shortcodes Ultimate is not "
|
2119 |
+
"fully compatible with your PHP version (%s).<br />Reccomended PHP version "
|
2120 |
+
"– %s (or higher).</p><a href=\"%s\">← Return to the plugins "
|
2121 |
+
"screen</a> <a href=\"%s\"%s>Continue and activate anyway →</a>"
|
2122 |
+
msgstr ""
|
2123 |
+
"<h1>Ωπ! Το Πρόσθετο δεν ενεργοποιήθηκε…</h1> <p>Το Shortcodes "
|
2124 |
+
"Ultimate δεν είναι πλήρως συμβατό με την έκδοση της PHP (%s).<br />Η "
|
2125 |
+
"προτεινόμενη έκδοση της PHP είναι – %s (ή μεγαλύτερη).</p><a href=\"%s"
|
2126 |
+
"\">← Return to the plugins screen</a> <a href=\"%s\"%s>Continue and "
|
2127 |
+
"activate anyway →</a>"
|
2128 |
+
|
2129 |
+
#: ../inc/core/class.shortcodes-ultimate.php:25
|
2130 |
+
#: ../inc/core/class.widget.php:40 ../inc/core/class.widget.php:82
|
2131 |
+
msgid "Shortcodes Ultimate"
|
2132 |
+
msgstr "Shortcodes Ultimate"
|
2133 |
+
|
2134 |
+
#: ../inc/core/class.shortcodes-ultimate.php:26 ../inc/core/class.vote.php:37
|
2135 |
+
msgid "Vladimir Anokhin"
|
2136 |
+
msgstr "Vladimir Anokhin"
|
2137 |
|
2138 |
+
#: ../inc/core/class.shortcodes-ultimate.php:27
|
2139 |
+
msgid "Supercharge your WordPress theme with mega pack of shortcodes"
|
2140 |
+
msgstr "Εμπλουτίστε το WordPess θέμα σας με ένα μεγάλο πακέτο από shortcodes"
|
2141 |
+
|
2142 |
+
#: ../inc/core/class.shortcodes-ultimate.php:88
|
2143 |
+
msgid "Where to start?"
|
2144 |
+
msgstr "Από που να ξεκινήσω;"
|
2145 |
+
|
2146 |
+
#: ../inc/core/class.shortcodes-ultimate.php:100 ../inc/views/about.php:4
|
2147 |
+
msgid "Project homepage"
|
2148 |
+
msgstr "Iστοσελίδα του πρόσθετου"
|
2149 |
+
|
2150 |
+
#: ../inc/core/class.shortcodes-ultimate.php:101 ../inc/views/about.php:10
|
2151 |
+
msgid "Support forum"
|
2152 |
+
msgstr "Forum υποστήριξης"
|
2153 |
+
|
2154 |
+
#: ../inc/core/class.shortcodes-ultimate.php:102 ../inc/views/about.php:12
|
2155 |
+
msgid "Changelog"
|
2156 |
+
msgstr "Αρχείο καταγραφής αλλαγών"
|
2157 |
+
|
2158 |
+
#: ../inc/core/class.shortcodes-ultimate.php:112
|
2159 |
msgid "About"
|
2160 |
msgstr "Σχετικά με"
|
2161 |
|
2162 |
+
#: ../inc/core/class.shortcodes-ultimate.php:117
|
2163 |
msgid "Custom formatting"
|
2164 |
msgstr "Προσαρμοσμένη μορφοποίηση"
|
2165 |
|
2166 |
+
#: ../inc/core/class.shortcodes-ultimate.php:118
|
2167 |
msgid ""
|
2168 |
"Disable this option if you have some problems with other plugins or content "
|
2169 |
"formatting"
|
2171 |
"Απενεργοποιήστε αυτή την επιλογή αν έχετε προβλήματα με άλλα πρόσθετα ή με "
|
2172 |
"την μορφοποίηση του περιεχομένου"
|
2173 |
|
2174 |
+
#: ../inc/core/class.shortcodes-ultimate.php:118
|
2175 |
+
#: ../inc/core/class.shortcodes-ultimate.php:126
|
2176 |
msgid "Documentation article"
|
2177 |
msgstr "Άρθρο τεκμηρίωσης"
|
2178 |
|
2179 |
+
#: ../inc/core/class.shortcodes-ultimate.php:122
|
2180 |
+
#: ../inc/core/class.shortcodes-ultimate.php:130
|
2181 |
+
#: ../inc/core/class.shortcodes-ultimate.php:138
|
2182 |
msgid "Enabled"
|
2183 |
msgstr "Ενεργοποιημένο"
|
2184 |
|
2185 |
+
#: ../inc/core/class.shortcodes-ultimate.php:125
|
2186 |
msgid "Compatibility mode"
|
2187 |
msgstr "Λειτουργία συμβατότητας"
|
2188 |
|
2189 |
+
#: ../inc/core/class.shortcodes-ultimate.php:126
|
2190 |
msgid ""
|
2191 |
"Enable this option if you have some problems with other plugins that uses "
|
2192 |
"similar shortcode names"
|
2194 |
"Ενεργοποιήστε αυτή την επιλογή, αν έχετε προβλήματα με άλλα πρόσθετα που "
|
2195 |
"χρησιμοποιούν παρόμοια ονόματα στα shortcode"
|
2196 |
|
2197 |
+
#: ../inc/core/class.shortcodes-ultimate.php:126
|
2198 |
msgid "etc."
|
2199 |
msgstr "κτλ"
|
2200 |
|
2201 |
+
#: ../inc/core/class.shortcodes-ultimate.php:133
|
2202 |
+
msgid "Skip default values"
|
2203 |
+
msgstr "Παράληψη προεπιλεγμένων τιμών"
|
2204 |
+
|
2205 |
+
#: ../inc/core/class.shortcodes-ultimate.php:134
|
2206 |
+
msgid ""
|
2207 |
+
"Enable this option and the generator will insert a shortcode without default "
|
2208 |
+
"attribute values that you have not changed. As a result, the generated code "
|
2209 |
+
"will be shorter."
|
2210 |
+
msgstr ""
|
2211 |
+
"Ενεργοποιήστε αυτή την επιλογή και θα δημιουργείται shortcode χωρίς "
|
2212 |
+
"προεπιλεγμένες τιμές παραμέτρων που δεν έχετε αλλάξει. Σαν αποτέλεσμα, ο "
|
2213 |
+
"παραγόμενος κώδικας θα είναι μικρότερος."
|
2214 |
+
|
2215 |
+
#: ../inc/core/class.shortcodes-ultimate.php:141
|
2216 |
+
msgid "Skin"
|
2217 |
+
msgstr "Θέμα"
|
2218 |
+
|
2219 |
+
#: ../inc/core/class.shortcodes-ultimate.php:142
|
2220 |
+
#, php-format
|
2221 |
+
msgid ""
|
2222 |
+
"Choose skin for shortcodes.<br /><a href=\"%s\" target=\"_blank\">Learn how "
|
2223 |
+
"to create custom skin</a><br /><a href=\"%s\" target=\"_blank\"><b>Download "
|
2224 |
+
"more skins</b></a>"
|
2225 |
+
msgstr ""
|
2226 |
+
"Επιλέξτε ένα θέμα για τα shortcodes σας.<br /><a href=\"%s\" target=\"_blank"
|
2227 |
+
"\">Μάθετε πως να δημιουργείτε νέα θέματα</a><br /><a href=\"%s\" target="
|
2228 |
+
"\"_blank\"><b>Μεταφορτώστε περισσότερα θέματα</b></a>"
|
2229 |
+
|
2230 |
+
#: ../inc/core/class.shortcodes-ultimate.php:148
|
2231 |
msgid "Custom CSS"
|
2232 |
msgstr "Προσαρμοσμένο CSS"
|
2233 |
|
2234 |
+
#: ../inc/core/class.shortcodes-ultimate.php:151
|
2235 |
msgid "Galleries"
|
2236 |
msgstr "Γκαλερί"
|
2237 |
|
2238 |
+
#: ../inc/core/class.shortcodes-ultimate.php:154
|
2239 |
msgid "Cheatsheet"
|
2240 |
msgstr "Αρχείο Cheatsheet"
|
2241 |
|
2242 |
+
#: ../inc/core/class.vote.php:39
|
2243 |
+
msgid ""
|
2244 |
+
"Hello, my name is Vladimir Anokhin, and I am developer of plugin "
|
2245 |
+
"<b>Shortcodes Ultimate</b>.<br>If you like this plugin, please write a few "
|
2246 |
+
"words about it at the wordpress.org or twitter. It will help other people "
|
2247 |
+
"find this useful plugin more quickly.<br><b>Thank you!</b>"
|
2248 |
+
msgstr ""
|
2249 |
+
"Γεια σας, το όνομά μου είναι Vladimir Anokhin, και είμαι ο προγραμματιστής "
|
2250 |
+
"του πρόσθετού <b>Shortcodes Ultimate</b>.<br>Εάν σας αρέσει αυτό το "
|
2251 |
+
"πρόσθετο, παρακαλώ γράψτε μερικές καλές κουβέντες στο wordpress.org ή στο "
|
2252 |
+
"twitter. Αυτό θα βοηθήσει και άλλους ανθρώπους να βρούνε αυτό το χρήσιμο "
|
2253 |
+
"πρόσθετο πιο γρήγορα.<br><b>Ευχαριστώ πολύ!</b>"
|
2254 |
+
|
2255 |
+
#: ../inc/core/class.vote.php:41
|
2256 |
+
msgid "Rate plugin"
|
2257 |
+
msgstr "Βαθμολογήστε το πρόσθετο"
|
2258 |
+
|
2259 |
+
#: ../inc/core/class.vote.php:42
|
2260 |
+
msgid "Shortcodes Ultimate - must have WordPress plugin #shortcodesultimate"
|
2261 |
+
msgstr ""
|
2262 |
+
"Shortcodes Ultimate - ένα πρόσθετο του WordPress που όλοι πρέπει να έχουν "
|
2263 |
+
"#shortcodesultimate"
|
2264 |
+
|
2265 |
+
#: ../inc/core/class.vote.php:42
|
2266 |
+
msgid "Tweet"
|
2267 |
+
msgstr "Tweet"
|
2268 |
+
|
2269 |
+
#: ../inc/core/class.vote.php:43
|
2270 |
+
msgid "No, thanks"
|
2271 |
+
msgstr "Όχι ευχαριστώ"
|
2272 |
+
|
2273 |
+
#: ../inc/core/class.vote.php:44
|
2274 |
+
msgid "or"
|
2275 |
+
msgstr "ή"
|
2276 |
+
|
2277 |
+
#: ../inc/core/class.vote.php:45
|
2278 |
+
msgid "Remind me later"
|
2279 |
+
msgstr "Υπενθύμιση αργότερα"
|
2280 |
+
|
2281 |
+
#: ../inc/core/class.widget.php:36
|
2282 |
+
msgid "Special Shortcodes Ultimate widget"
|
2283 |
+
msgstr "Ειδικό widget για το Shortcodes Ultimate"
|
2284 |
+
|
2285 |
+
#: ../inc/core/class.widget.php:87
|
2286 |
+
msgid "Title:"
|
2287 |
+
msgstr "Τίτλος:"
|
2288 |
+
|
2289 |
+
#: ../inc/core/shortcodes.php:483
|
2290 |
+
msgid "This is box title"
|
2291 |
+
msgstr "Αυτός είναι τίτλος πλαισίου"
|
2292 |
+
|
2293 |
+
#: ../inc/core/shortcodes.php:663 ../inc/core/shortcodes.php:696
|
2294 |
+
#: ../inc/core/shortcodes.php:730 ../inc/core/shortcodes.php:764
|
2295 |
+
#: ../inc/core/shortcodes.php:804
|
2296 |
+
msgid "please specify correct url"
|
2297 |
+
msgstr "παρακαλώ να διευκρινίστε σωστή διεύθυνση"
|
2298 |
+
|
2299 |
+
#: ../inc/core/shortcodes.php:1006
|
2300 |
+
msgid "This menu doesn't exists, or has no elements"
|
2301 |
+
msgstr "Αυτό το μενού δεν υπάρχει ή δεν έχει στοιχεία"
|
2302 |
+
|
2303 |
+
#: ../inc/core/shortcodes.php:1094 ../inc/core/shortcodes.php:1180
|
2304 |
+
#: ../inc/core/shortcodes.php:1249
|
2305 |
+
msgid "images not found"
|
2306 |
+
msgstr "δεν βρέθηκαν εικόνες"
|
2307 |
+
|
2308 |
+
#: ../inc/core/shortcodes.php:1447
|
2309 |
+
msgid "template not found"
|
2310 |
+
msgstr "δεν βρέθηκε πρότυπο"
|
2311 |
+
|
2312 |
+
#: ../inc/core/tools.php:234
|
2313 |
+
msgid "year"
|
2314 |
+
msgstr "έτος"
|
2315 |
+
|
2316 |
+
#: ../inc/core/tools.php:235
|
2317 |
+
msgid "month"
|
2318 |
+
msgstr "μήνας"
|
2319 |
+
|
2320 |
+
#: ../inc/core/tools.php:236
|
2321 |
+
msgid "week"
|
2322 |
+
msgstr "εβδομάδα"
|
2323 |
+
|
2324 |
+
#: ../inc/core/tools.php:237
|
2325 |
+
msgid "day"
|
2326 |
+
msgstr "ημέρα"
|
2327 |
+
|
2328 |
+
#: ../inc/core/tools.php:238
|
2329 |
+
msgid "hour"
|
2330 |
+
msgstr "ώρα"
|
2331 |
+
|
2332 |
+
#: ../inc/core/tools.php:239
|
2333 |
+
msgid "minute"
|
2334 |
+
msgstr "λεπτό"
|
2335 |
+
|
2336 |
+
#: ../inc/core/tools.php:248 ../inc/core/tools.php:255
|
2337 |
+
msgid "s"
|
2338 |
+
msgstr "s"
|
2339 |
+
|
2340 |
+
#: ../inc/core/tools.php:291
|
2341 |
+
msgid "username not specified"
|
2342 |
+
msgstr "Τό όνομα χρήστη δεν προσδιορίστηκε"
|
2343 |
+
|
2344 |
+
#: ../inc/core/tools.php:296
|
2345 |
+
msgid "no public messages"
|
2346 |
+
msgstr "κανένα δημόσιο μήνυμα"
|
2347 |
+
|
2348 |
+
#: ../inc/views/about.php:2
|
2349 |
msgid "Welcome to Shortcodes Ultimate"
|
2350 |
msgstr "Καλώς ορίσατε στο Shortcodes Ultimate"
|
2351 |
|
2352 |
+
#: ../inc/views/about.php:2
|
2353 |
msgid "A real swiss army knife for WordPress"
|
2354 |
msgstr "Ένας ελβετικός σουγιάς για το WordPress"
|
2355 |
|
2356 |
+
#: ../inc/views/about.php:6
|
2357 |
+
msgid "Addons"
|
|
|
|
|
|
|
|
|
2358 |
msgstr "Πρόσθετα"
|
2359 |
|
2360 |
+
#: ../inc/views/about.php:8
|
2361 |
msgid "Documentation"
|
2362 |
msgstr "Τεκμηρίωση"
|
2363 |
|
2364 |
+
#: ../inc/views/about.php:14
|
2365 |
+
msgid "GitHub"
|
2366 |
+
msgstr "GitHub"
|
2367 |
|
2368 |
+
#: ../inc/views/about.php:16
|
2369 |
msgid "Contact author"
|
2370 |
msgstr "Επικοινωνήστε με τον συντάκτη"
|
2371 |
|
2372 |
+
#: ../inc/views/about.php:19
|
2373 |
msgid "Plugin features"
|
2374 |
msgstr "Χαρακτηριστικά πρόσθετου"
|
2375 |
|
2376 |
+
#: ../inc/views/about.php:21
|
2377 |
+
msgid "40+ amazing shortcodes"
|
2378 |
+
msgstr "40+ καταπληκτικά shortcodes"
|
2379 |
|
2380 |
+
#: ../inc/views/about.php:22
|
2381 |
msgid "Power of CSS3 transitions"
|
2382 |
msgstr "Ενδυναμωμένο με μεταβάσεις του CSS3"
|
2383 |
|
2384 |
+
#: ../inc/views/about.php:23
|
2385 |
msgid "Handy shortcodes generator"
|
2386 |
msgstr "Εύχρηστη παραγωγή των shortcode"
|
2387 |
|
2388 |
+
#: ../inc/views/about.php:24
|
2389 |
msgid "International"
|
2390 |
+
msgstr "Διεθνοποιημένο"
|
2391 |
|
2392 |
+
#: ../inc/views/about.php:25
|
2393 |
msgid "Documented API"
|
2394 |
msgstr "Τεκμηριωμένο API"
|
2395 |
|
2396 |
+
#: ../inc/views/about.php:29
|
2397 |
msgid "What is a shortcode?"
|
2398 |
msgstr "Τι είναι τα shortcodes;"
|
2399 |
|
2400 |
+
#: ../inc/views/about.php:30
|
2401 |
msgid ""
|
2402 |
"<strong>Shortcode</strong> is a WordPress-specific code that lets you do "
|
2403 |
"nifty things with very little effort."
|
2404 |
msgstr ""
|
2405 |
"<strong>Τα Shortcode</strong> είναι ένας συγκεκριμένος κώδικας για το "
|
2406 |
+
"WordPress, που σας επιτρέπει να δημιουργείτε κομψά αντικείμενα με πολύ λίγη "
|
2407 |
"προσπάθεια."
|
2408 |
|
2409 |
+
#: ../inc/views/about.php:31
|
2410 |
msgid ""
|
2411 |
"Shortcodes can embed files or create objects that would normally require "
|
2412 |
"lots of complicated, ugly code in just one line. Shortcode = shortcut."
|
2415 |
"με μία γραμμή, που κανονικά θα χρειαζόταν αρκετά περίπλοκο κώδικα. Shortcode "
|
2416 |
"= Συντόμευση."
|
2417 |
|
2418 |
+
#: ../inc/views/about.php:35
|
2419 |
+
msgid "How does it works"
|
2420 |
+
msgstr "Πως λειτουργούνε"
|
2421 |
|
2422 |
+
#: ../inc/views/about.php:39
|
2423 |
msgid "More videos"
|
2424 |
msgstr "Περισσότερα βίντεο"
|
2425 |
|
2426 |
+
#: ../inc/views/about.php:41
|
2427 |
msgid "Shortcodes Ultimate Tutorial"
|
2428 |
msgstr "Εκμάθηση του Shortcodes Ultimate"
|
2429 |
|
2430 |
+
#: ../inc/views/about.php:42
|
2431 |
msgid "How to use special widget"
|
2432 |
msgstr "Πως να χρησιμοποιείται συγκεκριμένα widget"
|
2433 |
|
2434 |
+
#: ../inc/views/about.php:43
|
2435 |
+
msgid "How to create Carousel"
|
2436 |
+
msgstr "Πώς να δημιουργήσετε Carousel"
|
2437 |
+
|
2438 |
+
#: ../inc/views/about.php:44
|
2439 |
+
msgid "How to create image gallery"
|
2440 |
+
msgstr "Πώς να δημιουργήσετε γκαλερί εικόνων"
|
2441 |
+
|
2442 |
+
#: ../inc/views/cheatsheet.php:5
|
2443 |
msgid "Shortcode"
|
2444 |
msgstr "Shortcode"
|
2445 |
|
2446 |
+
#: ../inc/views/cheatsheet.php:6
|
2447 |
msgid "Parameters"
|
2448 |
msgstr "Παράμετροι"
|
2449 |
|
2450 |
+
#: ../inc/views/cheatsheet.php:7
|
2451 |
msgid "Example"
|
2452 |
msgstr "Παράδειγμα"
|
2453 |
|
2454 |
+
#: ../inc/views/cheatsheet.php:17
|
2455 |
msgid "Demo"
|
2456 |
msgstr "Επίδειξη"
|
2457 |
|
2458 |
+
#: ../inc/views/cheatsheet.php:49
|
2459 |
msgid "Default value"
|
2460 |
msgstr "Προκαθορισμένη τιμή"
|
2461 |
|
2462 |
+
#: ../inc/views/cheatsheet.php:55
|
2463 |
msgid "-- no parameters --"
|
2464 |
msgstr "-- χωρίς παραμέτρους --"
|
2465 |
|
2466 |
+
#: ../inc/views/closetab.php:4
|
2467 |
msgid "Save changes"
|
2468 |
msgstr "Αποθήκευση αλλαγών"
|
2469 |
|
2470 |
+
#: ../inc/views/closetab.php:5
|
2471 |
msgid "Saving"
|
2472 |
msgstr "Αποθηκεύεται"
|
2473 |
|
2474 |
+
#: ../inc/views/closetab.php:6
|
2475 |
msgid "Saved"
|
2476 |
msgstr "Αποθηκεύτηκε"
|
2477 |
|
2478 |
+
#: ../inc/views/closetab.php:7
|
2479 |
msgid ""
|
2480 |
+
"This action will remove all your custom CSS, galleries and settings. Are you "
|
2481 |
+
"sure? This action cannot be undone!"
|
2482 |
msgstr ""
|
2483 |
+
"Αυτή η ενέργεια θα αφαιρέσει όλο τον προσαρμοσμένο CSS κώδικα, τις γκαλερί "
|
2484 |
+
"και τις ρυθμίσεις. Είστε σίγουροι; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!!!"
|
2485 |
|
2486 |
+
#: ../inc/views/closetab.php:7
|
2487 |
msgid "Restore default settings"
|
2488 |
msgstr "Επαναφορά προκαθορισμένων ρυθμίσεων"
|
2489 |
|
2490 |
+
#: ../inc/views/code.php:5
|
2491 |
msgid "Insert code"
|
2492 |
msgstr "Εισαγωγή κώδικα"
|
2493 |
|
2494 |
+
#: ../inc/views/css.php:3
|
2495 |
msgid "You can see the original styles to override it"
|
2496 |
msgstr "Μπορείτε να δείτε το πρωτότυπο στυλ για να το παρακάμψετε"
|
2497 |
|
2498 |
+
#: ../inc/views/css.php:17
|
2499 |
msgid "You can use next variables in your custom CSS"
|
2500 |
msgstr ""
|
2501 |
"Μπορείτε να χρησμοποιείσετε τις ακόλουθες μεταβλητές στο προσαρμοσμένο CSS"
|
2502 |
|
2503 |
+
#: ../inc/views/css.php:18
|
2504 |
msgid "home url"
|
2505 |
msgstr "διεύθυνση αρχικής σελίδας"
|
2506 |
|
2507 |
+
#: ../inc/views/css.php:19
|
2508 |
msgid "theme url"
|
2509 |
msgstr "διεύθυνση θέματος"
|
2510 |
|
2511 |
+
#: ../inc/views/css.php:20
|
2512 |
msgid "plugin url"
|
2513 |
msgstr "διεύθυνση πρόσθετου"
|
2514 |
|
2515 |
+
#: ../inc/views/galleries.php:2
|
|
|
|
|
|
|
|
|
2516 |
msgid ""
|
2517 |
"Are you sure that you want to delete this gallery? This action can't be "
|
2518 |
"undone!"
|
2520 |
"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την γκαλερί; Αυτή η ενέργεια "
|
2521 |
"δεν μπορεί να αναιρεθεί!!!"
|
2522 |
|
2523 |
+
#: ../inc/views/galleries.php:2
|
2524 |
msgid ""
|
2525 |
"Are you sure that you want to delete this image? This action can't be undone!"
|
2526 |
msgstr ""
|
2527 |
"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την εικόνα; Αυτή η ενέργεια δεν "
|
2528 |
"είναι αναστρέψιμη!!!"
|
2529 |
|
2530 |
+
#: ../inc/views/galleries.php:4
|
2531 |
msgid "Create new gallery"
|
2532 |
msgstr "Δημιουργία νέας γκαλερί"
|
2533 |
|
2534 |
+
#: ../inc/views/galleries.php:17 ../inc/views/galleries.php:72
|
2535 |
msgid "Enter gallery name"
|
2536 |
msgstr "Εισάγετε το όνομα της γκαλερί"
|
2537 |
|
2538 |
+
#: ../inc/views/galleries.php:19 ../inc/views/galleries.php:74
|
2539 |
msgid "Edit gallery"
|
2540 |
msgstr "Επεξεργασία γκαλερί"
|
2541 |
|
2542 |
+
#: ../inc/views/galleries.php:20 ../inc/views/galleries.php:75
|
2543 |
msgid "Save & close"
|
2544 |
msgstr "Αποθήκευση & κλείσιμο"
|
2545 |
|
2546 |
+
#: ../inc/views/galleries.php:21 ../inc/views/galleries.php:50
|
2547 |
+
#: ../inc/views/galleries.php:76 ../inc/views/galleries.php:105
|
|
|
2548 |
msgid "Close"
|
2549 |
msgstr "Κλείσιμο"
|
2550 |
|
2551 |
+
#: ../inc/views/galleries.php:22 ../inc/views/galleries.php:41
|
2552 |
+
#: ../inc/views/galleries.php:77 ../inc/views/galleries.php:96
|
2553 |
msgid "Delete"
|
2554 |
msgstr "Διαγραφή"
|
2555 |
|
2556 |
+
#: ../inc/views/galleries.php:40 ../inc/views/galleries.php:95
|
|
|
|
|
|
|
|
|
2557 |
msgid "Edit"
|
2558 |
msgstr "Επεξεργασία"
|
2559 |
|
2560 |
+
#: ../inc/views/notifications.php:5
|
2561 |
msgid "Instructions"
|
2562 |
msgstr "Οδηγίες"
|
2563 |
|
2564 |
+
#: ../inc/views/notifications.php:13 ../inc/views/notifications.php:21
|
2565 |
+
#: ../inc/views/notifications.php:29 ../inc/views/notifications.php:37
|
|
|
|
|
2566 |
msgid "Click to close"
|
2567 |
msgstr "Πατήστε για κλείσιμο"
|
2568 |
|
2569 |
+
#: ../inc/views/settings.php:12
|
2570 |
msgid ""
|
2571 |
"For full functionality of this page it is reccomended to enable javascript."
|
2572 |
msgstr ""
|
2573 |
"Για την πλήρη ενεργοποίηση των χαρακτηριστικών αυτής της σελίδας, προτείνετε "
|
2574 |
"να ενεργοποιήσετε την javascript."
|
2575 |
|
2576 |
+
#: ../inc/views/settings.php:14
|
2577 |
msgid "Settings reseted successfully"
|
2578 |
msgstr "Οι ρυθμίσεις επαναφέρθηκαν επιτυχώς"
|
2579 |
|
2580 |
+
#: ../inc/views/settings.php:15
|
2581 |
msgid "There is already default settings"
|
2582 |
msgstr "Αυτές είναι ήδη οι προκαθορισμένες ρυθμίσεις"
|
2583 |
|
2584 |
+
#: ../inc/views/settings.php:16
|
2585 |
msgid "Settings saved successfully"
|
2586 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς"
|
2587 |
|
2588 |
+
#: ../inc/views/settings.php:17
|
2589 |
msgid "Settings not saved, because there is no changes"
|
2590 |
msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν, διότι δεν υπάρχουν αλλαγές"
|
2591 |
|
2592 |
+
#: ../inc/views/upload.php:7
|
2593 |
msgid "Upload"
|
2594 |
msgstr "Μεταφόρτωση"
|
2595 |
|
2613 |
#: ../templates/single-post.php:30 ../templates/teaser-loop.php:22
|
2614 |
msgid "Posts not found"
|
2615 |
msgstr "Τα δημοσιεύματα δεν βρέθηκαν"
|
2616 |
+
|
2617 |
+
#~ msgid "Boxes"
|
2618 |
+
#~ msgstr "Πλαίσια"
|
2619 |
+
|
2620 |
+
#~ msgid "Welcome"
|
2621 |
+
#~ msgstr "Καλώς ορίσατε"
|
2622 |
+
|
2623 |
+
#~ msgid "No image URL has been entered."
|
2624 |
+
#~ msgstr "Δεν έχει εισαχθεί καμία διεύθυνση εικόνας"
|
2625 |
+
|
2626 |
+
#~ msgid "Failed to get $file_path information using \"@getimagesize\"."
|
2627 |
+
#~ msgstr ""
|
2628 |
+
#~ "Αποτυχία λήψης πληροφοριών $file_path χρησιμοποιώντας \"@getimagesize\"."
|
2629 |
+
|
2630 |
+
#~ msgid "Resize path invalid (GIF)"
|
2631 |
+
#~ msgstr "Άκυρη διαδρομή αλλαγής μεγέθους (GIF)"
|
2632 |
+
|
2633 |
+
#~ msgid "Resize path invalid (PNG)."
|
2634 |
+
#~ msgstr "Άκυρη διαδρομή αλλαγής μεγέθους (PNG)"
|
2635 |
+
|
2636 |
+
#~ msgid "Resize path invalid (JPG)."
|
2637 |
+
#~ msgstr "Άκυρη διαδρομή αλλαγής μεγέθους (JPG)"
|
2638 |
+
|
2639 |
+
#~ msgid "Failed to get $dest_file_name (resized image) info via @getimagesize"
|
2640 |
+
#~ msgstr ""
|
2641 |
+
#~ "Αποτυχία λήψης πληροφοριών $dest_file_name (αλλαγμένου μεγέθους εικόνας) "
|
2642 |
+
#~ "μέσω του \"@getimagesize\"."
|
2643 |
+
|
2644 |
+
#~ msgid "Metro"
|
2645 |
+
#~ msgstr "Metro"
|
2646 |
+
|
2647 |
+
#~ msgid "Thin"
|
2648 |
+
#~ msgstr "Λεπτό"
|
2649 |
+
|
2650 |
+
#~ msgid "Choose heading style preset"
|
2651 |
+
#~ msgstr "Επιλέξτε προεπιλεγμένο στυλ κεφαλίδας"
|
2652 |
+
|
2653 |
+
#~ msgid "Choose tabs style preset"
|
2654 |
+
#~ msgstr "Επιλέξτε το προκαθορισμένο στυλ των καρτελών"
|
2655 |
+
|
2656 |
+
#~ msgid "Select spoiler style preset"
|
2657 |
+
#~ msgstr "Επιλογή προκαθορισμένου στυλ spoiler"
|
2658 |
+
|
2659 |
+
#~ msgid "Select divider style preset"
|
2660 |
+
#~ msgstr "Επιλέξτε προκαθορισμένο στυλ divider"
|
2661 |
+
|
2662 |
+
#~ msgid "Quote style preset"
|
2663 |
+
#~ msgstr "Προκαθορισμένο στυλ Quote"
|
2664 |
+
|
2665 |
+
#~ msgid "Choose style preset for pullquote"
|
2666 |
+
#~ msgstr "Επιλέξτε προκαθορισμένο στυλ για pullquote"
|
2667 |
+
|
2668 |
+
#~ msgid "Align to left"
|
2669 |
+
#~ msgstr "Αριστεή στοίχιση"
|
2670 |
+
|
2671 |
+
#~ msgid "Style preset for the inner columns"
|
2672 |
+
#~ msgstr "Προκαθορισμένο στυλ για τις εσωτερικές στήλες"
|
2673 |
+
|
2674 |
+
#~ msgid "Extra CSS class for button"
|
2675 |
+
#~ msgstr "Επιπλέον κλάση CSS για το κουμπί"
|
2676 |
+
|
2677 |
+
#~ msgid "Hidden"
|
2678 |
+
#~ msgstr "Κρυφό"
|
2679 |
+
|
2680 |
+
#~ msgid "Player style preset"
|
2681 |
+
#~ msgstr "Προκαθορισμένο στυλ player"
|
2682 |
+
|
2683 |
+
#~ msgid "Minimal"
|
2684 |
+
#~ msgstr "Minimal"
|
2685 |
+
|
2686 |
+
#~ msgid "Table style preset"
|
2687 |
+
#~ msgstr "Προκαθορισμένο στυλ πίνακα"
|
2688 |
+
|
2689 |
+
#~ msgid "Add-ons"
|
2690 |
+
#~ msgstr "Πρόσθετα"
|
2691 |
+
|
2692 |
+
#~ msgid "Toggle fullscreen"
|
2693 |
+
#~ msgstr "Αλλαγή σε πλήρη οθόνη"
|
2694 |
+
|
2695 |
+
#~ msgid "Add image"
|
2696 |
+
#~ 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-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -2104,20 +2104,12 @@ msgstr "Предпросмотр"
|
|
2104 |
msgid "Access denied"
|
2105 |
msgstr "Доступ запрещен"
|
2106 |
|
2107 |
-
#: inc/core/class.requirements.php:
|
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:
|
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>"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gn_themes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-01 23:50+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-10-01 23:50+0300\n"
|
7 |
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
2104 |
msgid "Access denied"
|
2105 |
msgstr "Доступ запрещен"
|
2106 |
|
2107 |
+
#: inc/core/class.requirements.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:36
|
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>"
|
languages/su.po
DELETED
@@ -1,2200 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Shortcodes Ultimate 4.0.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-07-22 04:02+0300\n"
|
6 |
-
"PO-Revision-Date: 2013-07-22 04:02+0300\n"
|
7 |
-
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
-
"Language-Team: gndev <ano.vladimir@gmail.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 |
-
"X-Poedit-SearchPath-0: ..\n"
|
16 |
-
|
17 |
-
#: ../classes/sunrise.class.php:312
|
18 |
-
#: ../inc/generator.php:26
|
19 |
-
#: ../inc/init.php:53
|
20 |
-
#: ../inc/shortcodes/data.php:362
|
21 |
-
#: ../inc/sunrise/options.php:17
|
22 |
-
msgid "Settings"
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: ../inc/example-addon.php:29
|
26 |
-
msgid "Heading 2"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../inc/example-addon.php:43
|
30 |
-
#: ../inc/shortcodes/data.php:20
|
31 |
-
#: ../inc/shortcodes/data.php:40
|
32 |
-
#: ../inc/shortcodes/data.php:88
|
33 |
-
#: ../inc/shortcodes/data.php:115
|
34 |
-
#: ../inc/shortcodes/data.php:187
|
35 |
-
#: ../inc/shortcodes/data.php:211
|
36 |
-
#: ../inc/shortcodes/data.php:244
|
37 |
-
#: ../inc/shortcodes/data.php:274
|
38 |
-
#: ../inc/shortcodes/data.php:300
|
39 |
-
#: ../inc/shortcodes/data.php:397
|
40 |
-
#: ../inc/shortcodes/data.php:519
|
41 |
-
#: ../inc/shortcodes/data.php:681
|
42 |
-
#: ../inc/shortcodes/data.php:740
|
43 |
-
#: ../inc/shortcodes/data.php:797
|
44 |
-
#: ../inc/shortcodes/data.php:850
|
45 |
-
msgid "Default"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: ../inc/example-addon.php:44
|
49 |
-
msgid "Small"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: ../inc/example-addon.php:49
|
53 |
-
#: ../inc/shortcodes/data.php:25
|
54 |
-
#: ../inc/shortcodes/data.php:45
|
55 |
-
#: ../inc/shortcodes/data.php:92
|
56 |
-
#: ../inc/shortcodes/data.php:120
|
57 |
-
#: ../inc/shortcodes/data.php:216
|
58 |
-
#: ../inc/shortcodes/data.php:249
|
59 |
-
#: ../inc/shortcodes/data.php:280
|
60 |
-
#: ../inc/shortcodes/data.php:304
|
61 |
-
#: ../inc/shortcodes/data.php:366
|
62 |
-
#: ../inc/shortcodes/data.php:407
|
63 |
-
#: ../inc/shortcodes/data.php:526
|
64 |
-
#: ../inc/shortcodes/data.php:687
|
65 |
-
#: ../inc/shortcodes/data.php:745
|
66 |
-
#: ../inc/shortcodes/data.php:802
|
67 |
-
#: ../inc/shortcodes/data.php:855
|
68 |
-
msgid "Style"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: ../inc/example-addon.php:51
|
72 |
-
msgid "Heading 2 style"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: ../inc/example-addon.php:57
|
76 |
-
msgid "Heading 2 text"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: ../inc/example-addon.php:59
|
80 |
-
msgid "Styled heading 2"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: ../inc/generator.php:9
|
84 |
-
#: ../inc/generator.php:163
|
85 |
-
msgid "Insert shortcode"
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: ../inc/generator.php:26
|
89 |
-
msgid "Plugin settings"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: ../inc/generator.php:28
|
93 |
-
msgid "Plugin homepage"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: ../inc/generator.php:30
|
97 |
-
#: ../inc/sunrise/views/about.php:10
|
98 |
-
msgid "Support forums"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: ../inc/generator.php:32
|
102 |
-
msgid "Search for shortcodes"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: ../inc/generator.php:34
|
106 |
-
msgid "Filter by type"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: ../inc/generator.php:35
|
110 |
-
msgid "All"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: ../inc/generator.php:36
|
114 |
-
#: ../inc/generator.php:161
|
115 |
-
msgid "Content"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: ../inc/generator.php:37
|
119 |
-
msgid "Boxes"
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: ../inc/generator.php:38
|
123 |
-
msgid "Media"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: ../inc/generator.php:39
|
127 |
-
msgid "Other"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: ../inc/generator.php:70
|
131 |
-
#: ../inc/generator.php:177
|
132 |
-
#: ../inc/generator.php:196
|
133 |
-
#: ../inc/generator.php:210
|
134 |
-
msgid "Access denied"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: ../inc/generator.php:73
|
138 |
-
msgid "Shortcode not specified"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
#: ../inc/generator.php:77
|
142 |
-
msgid "Click to return to the shortcodes list"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#: ../inc/generator.php:77
|
146 |
-
msgid "All shortcodes"
|
147 |
-
msgstr ""
|
148 |
-
|
149 |
-
#: ../inc/generator.php:109
|
150 |
-
msgid "Yes"
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
#: ../inc/generator.php:109
|
154 |
-
msgid "No"
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: ../inc/generator.php:113
|
158 |
-
msgid "Max upload file size"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: ../inc/generator.php:113
|
162 |
-
msgid "Mb"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: ../inc/generator.php:113
|
166 |
-
msgid "How to increase"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../inc/generator.php:132
|
170 |
-
msgid "Untitled gallery"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: ../inc/generator.php:139
|
174 |
-
msgid "Galleries not found"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: ../inc/generator.php:140
|
178 |
-
msgid "Manage galleries"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../inc/generator.php:152
|
182 |
-
msgid "Click to set this value"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: ../inc/generator.php:163
|
186 |
-
msgid "Live preview"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: ../inc/generator.php:163
|
190 |
-
msgid "Close window"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: ../inc/generator.php:180
|
194 |
-
msgid "Preview"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: ../inc/init.php:17
|
198 |
-
#, php-format
|
199 |
-
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>"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: ../inc/init.php:18
|
203 |
-
#, php-format
|
204 |
-
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>"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: ../inc/init.php:44
|
208 |
-
#: ../inc/widget.php:40
|
209 |
-
#: ../inc/widget.php:83
|
210 |
-
msgid "Shortcodes Ultimate"
|
211 |
-
msgstr ""
|
212 |
-
|
213 |
-
#: ../inc/init.php:45
|
214 |
-
msgid "Vladimir Anokhin"
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: ../inc/init.php:46
|
218 |
-
msgid "Supercharge your WordPress theme with mega pack of shortcodes"
|
219 |
-
msgstr ""
|
220 |
-
|
221 |
-
#: ../inc/init.php:54
|
222 |
-
msgid "Welcome"
|
223 |
-
msgstr ""
|
224 |
-
|
225 |
-
#: ../inc/resize.php:49
|
226 |
-
#: ../inc/resize.php:176
|
227 |
-
msgid "No image URL has been entered."
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: ../inc/resize.php:235
|
231 |
-
msgid "Failed to get $file_path information using \"@getimagesize\"."
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: ../inc/resize.php:277
|
235 |
-
msgid "Resize path invalid (GIF)"
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: ../inc/resize.php:281
|
239 |
-
msgid "Resize path invalid (PNG)."
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: ../inc/resize.php:289
|
243 |
-
msgid "Resize path invalid (JPG)."
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: ../inc/resize.php:303
|
247 |
-
msgid "Failed to get $dest_file_name (resized image) info via @getimagesize"
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: ../inc/tools.php:239
|
251 |
-
msgid "year"
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: ../inc/tools.php:240
|
255 |
-
msgid "month"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
#: ../inc/tools.php:241
|
259 |
-
msgid "week"
|
260 |
-
msgstr ""
|
261 |
-
|
262 |
-
#: ../inc/tools.php:242
|
263 |
-
msgid "day"
|
264 |
-
msgstr ""
|
265 |
-
|
266 |
-
#: ../inc/tools.php:243
|
267 |
-
msgid "hour"
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: ../inc/tools.php:244
|
271 |
-
msgid "minute"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: ../inc/tools.php:255
|
275 |
-
#: ../inc/tools.php:262
|
276 |
-
msgid "s"
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: ../inc/tools.php:294
|
280 |
-
msgid "username not specified"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: ../inc/tools.php:299
|
284 |
-
msgid "no public messages"
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: ../inc/widget.php:36
|
288 |
-
msgid "Special Shortcodes Ultimate widget"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: ../inc/widget.php:88
|
292 |
-
msgid "Title:"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: ../inc/shortcodes/data.php:13
|
296 |
-
msgid "Heading"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: ../inc/shortcodes/data.php:21
|
300 |
-
#: ../inc/shortcodes/data.php:41
|
301 |
-
#: ../inc/shortcodes/data.php:89
|
302 |
-
#: ../inc/shortcodes/data.php:116
|
303 |
-
#: ../inc/shortcodes/data.php:212
|
304 |
-
#: ../inc/shortcodes/data.php:245
|
305 |
-
#: ../inc/shortcodes/data.php:275
|
306 |
-
#: ../inc/shortcodes/data.php:301
|
307 |
-
#: ../inc/shortcodes/data.php:398
|
308 |
-
#: ../inc/shortcodes/data.php:682
|
309 |
-
#: ../inc/shortcodes/data.php:741
|
310 |
-
#: ../inc/shortcodes/data.php:798
|
311 |
-
#: ../inc/shortcodes/data.php:851
|
312 |
-
msgid "Metro"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: ../inc/shortcodes/data.php:22
|
316 |
-
msgid "Thin"
|
317 |
-
msgstr ""
|
318 |
-
|
319 |
-
#: ../inc/shortcodes/data.php:25
|
320 |
-
msgid "Choose heading style preset"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: ../inc/shortcodes/data.php:28
|
324 |
-
msgid "Heading text"
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
#: ../inc/shortcodes/data.php:29
|
328 |
-
msgid "Styled heading"
|
329 |
-
msgstr ""
|
330 |
-
|
331 |
-
#: ../inc/shortcodes/data.php:33
|
332 |
-
msgid "Tabs"
|
333 |
-
msgstr ""
|
334 |
-
|
335 |
-
#: ../inc/shortcodes/data.php:42
|
336 |
-
msgid "Vertical"
|
337 |
-
msgstr ""
|
338 |
-
|
339 |
-
#: ../inc/shortcodes/data.php:45
|
340 |
-
msgid "Choose tabs style preset"
|
341 |
-
msgstr ""
|
342 |
-
|
343 |
-
#: ../inc/shortcodes/data.php:49
|
344 |
-
msgid ""
|
345 |
-
"[tab title=\"Title 1\"]Content 1[/tab]\n"
|
346 |
-
"[tab title=\"Title 2\"]Content 2[/tab]\n"
|
347 |
-
"[tab title=\"Title 3\"]Content 3[/tab]"
|
348 |
-
msgstr ""
|
349 |
-
|
350 |
-
#: ../inc/shortcodes/data.php:50
|
351 |
-
msgid "Tabs container"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
#: ../inc/shortcodes/data.php:54
|
355 |
-
msgid "Tab"
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: ../inc/shortcodes/data.php:60
|
359 |
-
msgid "Tab name"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: ../inc/shortcodes/data.php:61
|
363 |
-
#: ../inc/shortcodes/data.php:77
|
364 |
-
#: ../inc/shortcodes/data.php:486
|
365 |
-
#: ../inc/shortcodes/data.php:514
|
366 |
-
#: ../inc/shortcodes/data.php:734
|
367 |
-
msgid "Title"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: ../inc/shortcodes/data.php:62
|
371 |
-
msgid "Enter tab name"
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: ../inc/shortcodes/data.php:65
|
375 |
-
msgid "Tab content"
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
#: ../inc/shortcodes/data.php:66
|
379 |
-
msgid "Single tab"
|
380 |
-
msgstr ""
|
381 |
-
|
382 |
-
#: ../inc/shortcodes/data.php:70
|
383 |
-
msgid "Spoiler"
|
384 |
-
msgstr ""
|
385 |
-
|
386 |
-
#: ../inc/shortcodes/data.php:76
|
387 |
-
#: ../inc/shortcodes/shortcodes.php:71
|
388 |
-
msgid "Spoiler title"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: ../inc/shortcodes/data.php:77
|
392 |
-
msgid "Text in spoiler title"
|
393 |
-
msgstr ""
|
394 |
-
|
395 |
-
#: ../inc/shortcodes/data.php:82
|
396 |
-
msgid "Open"
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: ../inc/shortcodes/data.php:83
|
400 |
-
msgid "Is spoiler content visible by default"
|
401 |
-
msgstr ""
|
402 |
-
|
403 |
-
#: ../inc/shortcodes/data.php:92
|
404 |
-
msgid "Select spoiler style preset"
|
405 |
-
msgstr ""
|
406 |
-
|
407 |
-
#: ../inc/shortcodes/data.php:95
|
408 |
-
msgid "Hidden content"
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
#: ../inc/shortcodes/data.php:95
|
412 |
-
msgid "Spoiler with hidden content"
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: ../inc/shortcodes/data.php:99
|
416 |
-
msgid "Accordion"
|
417 |
-
msgstr ""
|
418 |
-
|
419 |
-
#: ../inc/shortcodes/data.php:104
|
420 |
-
msgid ""
|
421 |
-
"[spoiler]Content[/spoiler]\n"
|
422 |
-
"[spoiler]Content[/spoiler]\n"
|
423 |
-
"[spoiler]Content[/spoiler]"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#: ../inc/shortcodes/data.php:104
|
427 |
-
msgid "Accordion with spoilers"
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: ../inc/shortcodes/data.php:108
|
431 |
-
msgid "Divider"
|
432 |
-
msgstr ""
|
433 |
-
|
434 |
-
#: ../inc/shortcodes/data.php:117
|
435 |
-
#: ../inc/shortcodes/data.php:276
|
436 |
-
#: ../inc/shortcodes/data.php:449
|
437 |
-
msgid "Light"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: ../inc/shortcodes/data.php:120
|
441 |
-
msgid "Select divider style preset"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: ../inc/shortcodes/data.php:125
|
445 |
-
msgid "Show TOP link"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: ../inc/shortcodes/data.php:126
|
449 |
-
msgid "Show link to top of the page or not"
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: ../inc/shortcodes/data.php:130
|
453 |
-
#: ../inc/shortcodes/shortcodes.php:105
|
454 |
-
msgid "Go to top"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: ../inc/shortcodes/data.php:131
|
458 |
-
msgid "Link text"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: ../inc/shortcodes/data.php:131
|
462 |
-
msgid "Text for the GO TOP link"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: ../inc/shortcodes/data.php:135
|
466 |
-
msgid "Content divider with optional TOP link"
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#: ../inc/shortcodes/data.php:139
|
470 |
-
msgid "Spacer"
|
471 |
-
msgstr ""
|
472 |
-
|
473 |
-
#: ../inc/shortcodes/data.php:149
|
474 |
-
#: ../inc/shortcodes/data.php:616
|
475 |
-
#: ../inc/shortcodes/data.php:654
|
476 |
-
#: ../inc/shortcodes/data.php:763
|
477 |
-
#: ../inc/shortcodes/data.php:977
|
478 |
-
#: ../inc/shortcodes/data.php:1004
|
479 |
-
#: ../inc/shortcodes/data.php:1041
|
480 |
-
#: ../inc/shortcodes/data.php:1120
|
481 |
-
#: ../inc/shortcodes/data.php:1215
|
482 |
-
msgid "Height"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: ../inc/shortcodes/data.php:149
|
486 |
-
msgid "Height of the spacer in pixels"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: ../inc/shortcodes/data.php:153
|
490 |
-
msgid "Empty space with adjustable height"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: ../inc/shortcodes/data.php:157
|
494 |
-
msgid "Highlight"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: ../inc/shortcodes/data.php:165
|
498 |
-
#: ../inc/shortcodes/data.php:413
|
499 |
-
#: ../inc/shortcodes/data.php:562
|
500 |
-
msgid "Background"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: ../inc/shortcodes/data.php:166
|
504 |
-
msgid "Highlighted text background color"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: ../inc/shortcodes/data.php:172
|
508 |
-
#: ../inc/shortcodes/data.php:419
|
509 |
-
#: ../inc/shortcodes/data.php:568
|
510 |
-
msgid "Text color"
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
#: ../inc/shortcodes/data.php:172
|
514 |
-
msgid "Highlighted text color"
|
515 |
-
msgstr ""
|
516 |
-
|
517 |
-
#: ../inc/shortcodes/data.php:175
|
518 |
-
#: ../inc/shortcodes/data.php:176
|
519 |
-
msgid "Highlighted text"
|
520 |
-
msgstr ""
|
521 |
-
|
522 |
-
#: ../inc/shortcodes/data.php:180
|
523 |
-
#: ../inc/shortcodes/data.php:199
|
524 |
-
msgid "Label"
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: ../inc/shortcodes/data.php:188
|
528 |
-
msgid "Success"
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: ../inc/shortcodes/data.php:189
|
532 |
-
msgid "Warning"
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: ../inc/shortcodes/data.php:190
|
536 |
-
msgid "Important"
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: ../inc/shortcodes/data.php:191
|
540 |
-
msgid "Black"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: ../inc/shortcodes/data.php:192
|
544 |
-
msgid "Info"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: ../inc/shortcodes/data.php:195
|
548 |
-
msgid "Type"
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: ../inc/shortcodes/data.php:196
|
552 |
-
msgid "Style of the label"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: ../inc/shortcodes/data.php:200
|
556 |
-
msgid "Styled label"
|
557 |
-
msgstr ""
|
558 |
-
|
559 |
-
#: ../inc/shortcodes/data.php:204
|
560 |
-
#: ../inc/shortcodes/data.php:232
|
561 |
-
msgid "Quote"
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: ../inc/shortcodes/data.php:213
|
565 |
-
#: ../inc/shortcodes/data.php:246
|
566 |
-
#: ../inc/shortcodes/data.php:277
|
567 |
-
#: ../inc/shortcodes/data.php:852
|
568 |
-
msgid "Simple"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: ../inc/shortcodes/data.php:217
|
572 |
-
msgid "Quote style preset"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: ../inc/shortcodes/data.php:222
|
576 |
-
msgid "Cite"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: ../inc/shortcodes/data.php:223
|
580 |
-
msgid "Quote author name"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: ../inc/shortcodes/data.php:228
|
584 |
-
msgid "Cite url"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: ../inc/shortcodes/data.php:229
|
588 |
-
msgid "Url of the quote author. Leave empty to disable link"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: ../inc/shortcodes/data.php:233
|
592 |
-
msgid "Blockquote alternative"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: ../inc/shortcodes/data.php:237
|
596 |
-
#: ../inc/shortcodes/data.php:262
|
597 |
-
#: ../inc/shortcodes/data.php:263
|
598 |
-
msgid "Pullquote"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: ../inc/shortcodes/data.php:250
|
602 |
-
msgid "Choose style preset for pullquote"
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: ../inc/shortcodes/data.php:255
|
606 |
-
#: ../inc/shortcodes/data.php:462
|
607 |
-
msgid "Left"
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: ../inc/shortcodes/data.php:256
|
611 |
-
#: ../inc/shortcodes/data.php:460
|
612 |
-
msgid "Right"
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
#: ../inc/shortcodes/data.php:259
|
616 |
-
msgid "Align"
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: ../inc/shortcodes/data.php:259
|
620 |
-
msgid "Pullquote alignment (float)"
|
621 |
-
msgstr ""
|
622 |
-
|
623 |
-
#: ../inc/shortcodes/data.php:267
|
624 |
-
#: ../inc/shortcodes/data.php:289
|
625 |
-
msgid "Dropcap"
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: ../inc/shortcodes/data.php:280
|
629 |
-
msgid "Dropcap style preset"
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: ../inc/shortcodes/data.php:285
|
633 |
-
#: ../inc/shortcodes/data.php:334
|
634 |
-
#: ../inc/shortcodes/data.php:425
|
635 |
-
msgid "Size"
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
-
#: ../inc/shortcodes/data.php:285
|
639 |
-
msgid "Choose dropcap size"
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: ../inc/shortcodes/data.php:288
|
643 |
-
msgid "D"
|
644 |
-
msgstr ""
|
645 |
-
|
646 |
-
#: ../inc/shortcodes/data.php:293
|
647 |
-
msgid "Row"
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: ../inc/shortcodes/data.php:301
|
651 |
-
msgid "Align to left"
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: ../inc/shortcodes/data.php:305
|
655 |
-
msgid "Style preset for the inner columns"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: ../inc/shortcodes/data.php:309
|
659 |
-
msgid ""
|
660 |
-
"[column size=\"1/3\"]Content[/column]\n"
|
661 |
-
"[column size=\"1/3\"]Content[/column]\n"
|
662 |
-
"[column size=\"1/3\"]Content[/column]"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: ../inc/shortcodes/data.php:309
|
666 |
-
msgid "Row for flexible columns"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: ../inc/shortcodes/data.php:313
|
670 |
-
msgid "Column"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: ../inc/shortcodes/data.php:320
|
674 |
-
msgid "Full width"
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: ../inc/shortcodes/data.php:321
|
678 |
-
msgid "One half"
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
#: ../inc/shortcodes/data.php:322
|
682 |
-
msgid "One third"
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: ../inc/shortcodes/data.php:323
|
686 |
-
msgid "Two third"
|
687 |
-
msgstr ""
|
688 |
-
|
689 |
-
#: ../inc/shortcodes/data.php:324
|
690 |
-
msgid "One fourth"
|
691 |
-
msgstr ""
|
692 |
-
|
693 |
-
#: ../inc/shortcodes/data.php:325
|
694 |
-
msgid "Three fourth"
|
695 |
-
msgstr ""
|
696 |
-
|
697 |
-
#: ../inc/shortcodes/data.php:326
|
698 |
-
msgid "One fifth"
|
699 |
-
msgstr ""
|
700 |
-
|
701 |
-
#: ../inc/shortcodes/data.php:327
|
702 |
-
msgid "Two fifth"
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
-
#: ../inc/shortcodes/data.php:328
|
706 |
-
msgid "Three fifth"
|
707 |
-
msgstr ""
|
708 |
-
|
709 |
-
#: ../inc/shortcodes/data.php:329
|
710 |
-
msgid "Four fifth"
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: ../inc/shortcodes/data.php:330
|
714 |
-
msgid "One sixth"
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
#: ../inc/shortcodes/data.php:331
|
718 |
-
msgid "Five sixth"
|
719 |
-
msgstr ""
|
720 |
-
|
721 |
-
#: ../inc/shortcodes/data.php:335
|
722 |
-
msgid "Select column width. This width will be calculated depend page width"
|
723 |
-
msgstr ""
|
724 |
-
|
725 |
-
#: ../inc/shortcodes/data.php:338
|
726 |
-
msgid "Column content"
|
727 |
-
msgstr ""
|
728 |
-
|
729 |
-
#: ../inc/shortcodes/data.php:338
|
730 |
-
msgid "Flexible and responsive columns"
|
731 |
-
msgstr ""
|
732 |
-
|
733 |
-
#: ../inc/shortcodes/data.php:342
|
734 |
-
msgid "List"
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: ../inc/shortcodes/data.php:349
|
738 |
-
msgid "Star"
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
#: ../inc/shortcodes/data.php:350
|
742 |
-
msgid "Arrow"
|
743 |
-
msgstr ""
|
744 |
-
|
745 |
-
#: ../inc/shortcodes/data.php:351
|
746 |
-
msgid "Check"
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: ../inc/shortcodes/data.php:352
|
750 |
-
msgid "Cross"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: ../inc/shortcodes/data.php:353
|
754 |
-
msgid "Thumbs up"
|
755 |
-
msgstr ""
|
756 |
-
|
757 |
-
#: ../inc/shortcodes/data.php:354
|
758 |
-
#: ../inc/shortcodes/data.php:381
|
759 |
-
msgid "Link"
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
#: ../inc/shortcodes/data.php:355
|
763 |
-
msgid "Gear"
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: ../inc/shortcodes/data.php:356
|
767 |
-
msgid "Time"
|
768 |
-
msgstr ""
|
769 |
-
|
770 |
-
#: ../inc/shortcodes/data.php:357
|
771 |
-
#: ../inc/shortcodes/data.php:554
|
772 |
-
msgid "Note"
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: ../inc/shortcodes/data.php:358
|
776 |
-
msgid "Plus"
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: ../inc/shortcodes/data.php:359
|
780 |
-
msgid "Guard"
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: ../inc/shortcodes/data.php:360
|
784 |
-
msgid "Event"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: ../inc/shortcodes/data.php:361
|
788 |
-
msgid "Idea"
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: ../inc/shortcodes/data.php:363
|
792 |
-
msgid "Twitter"
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: ../inc/shortcodes/data.php:366
|
796 |
-
msgid "List items style/icons"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: ../inc/shortcodes/data.php:370
|
800 |
-
msgid ""
|
801 |
-
"<ul>\n"
|
802 |
-
"<li>List item</li>\n"
|
803 |
-
"<li>List item</li>\n"
|
804 |
-
"<li>List item</li>\n"
|
805 |
-
"</ul>"
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
#: ../inc/shortcodes/data.php:370
|
809 |
-
msgid "Styled unordered list"
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: ../inc/shortcodes/data.php:374
|
813 |
-
#: ../inc/shortcodes/data.php:683
|
814 |
-
msgid "Button"
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: ../inc/shortcodes/data.php:382
|
818 |
-
msgid "Button link"
|
819 |
-
msgstr ""
|
820 |
-
|
821 |
-
#: ../inc/shortcodes/data.php:387
|
822 |
-
#: ../inc/shortcodes/data.php:830
|
823 |
-
msgid "Same tab"
|
824 |
-
msgstr ""
|
825 |
-
|
826 |
-
#: ../inc/shortcodes/data.php:388
|
827 |
-
#: ../inc/shortcodes/data.php:831
|
828 |
-
msgid "New tab"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: ../inc/shortcodes/data.php:391
|
832 |
-
#: ../inc/shortcodes/data.php:834
|
833 |
-
msgid "Target"
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: ../inc/shortcodes/data.php:392
|
837 |
-
msgid "Button link target"
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: ../inc/shortcodes/data.php:399
|
841 |
-
#: ../inc/shortcodes/data.php:520
|
842 |
-
msgid "Soft"
|
843 |
-
msgstr ""
|
844 |
-
|
845 |
-
#: ../inc/shortcodes/data.php:400
|
846 |
-
#: ../inc/shortcodes/data.php:521
|
847 |
-
msgid "Glass"
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: ../inc/shortcodes/data.php:401
|
851 |
-
#: ../inc/shortcodes/data.php:522
|
852 |
-
msgid "Bubbles"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: ../inc/shortcodes/data.php:402
|
856 |
-
#: ../inc/shortcodes/data.php:523
|
857 |
-
msgid "Noise"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: ../inc/shortcodes/data.php:403
|
861 |
-
msgid "Stroked"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: ../inc/shortcodes/data.php:404
|
865 |
-
msgid "3D"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: ../inc/shortcodes/data.php:407
|
869 |
-
msgid "Button background style preset"
|
870 |
-
msgstr ""
|
871 |
-
|
872 |
-
#: ../inc/shortcodes/data.php:413
|
873 |
-
msgid "Button background color"
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
#: ../inc/shortcodes/data.php:420
|
877 |
-
msgid "Button text color"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: ../inc/shortcodes/data.php:426
|
881 |
-
msgid "Button size"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: ../inc/shortcodes/data.php:431
|
885 |
-
msgid "Fluid"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: ../inc/shortcodes/data.php:431
|
889 |
-
msgid "Fluid buttons has 100% width"
|
890 |
-
msgstr ""
|
891 |
-
|
892 |
-
#: ../inc/shortcodes/data.php:437
|
893 |
-
#: ../inc/shortcodes/data.php:546
|
894 |
-
#: ../inc/shortcodes/data.php:575
|
895 |
-
msgid "Radius"
|
896 |
-
msgstr ""
|
897 |
-
|
898 |
-
#: ../inc/shortcodes/data.php:438
|
899 |
-
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: ../inc/shortcodes/data.php:443
|
903 |
-
#: ../inc/shortcodes/data.php:492
|
904 |
-
msgid "Icon"
|
905 |
-
msgstr ""
|
906 |
-
|
907 |
-
#: ../inc/shortcodes/data.php:444
|
908 |
-
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"
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: ../inc/shortcodes/data.php:450
|
912 |
-
msgid "Dark"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: ../inc/shortcodes/data.php:453
|
916 |
-
msgid "Text shadow color"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: ../inc/shortcodes/data.php:453
|
920 |
-
msgid "Color of button text shadow"
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: ../inc/shortcodes/data.php:458
|
924 |
-
#: ../inc/shortcodes/data.php:1322
|
925 |
-
msgid "None"
|
926 |
-
msgstr ""
|
927 |
-
|
928 |
-
#: ../inc/shortcodes/data.php:459
|
929 |
-
msgid "Top"
|
930 |
-
msgstr ""
|
931 |
-
|
932 |
-
#: ../inc/shortcodes/data.php:461
|
933 |
-
msgid "Bottom"
|
934 |
-
msgstr ""
|
935 |
-
|
936 |
-
#: ../inc/shortcodes/data.php:463
|
937 |
-
msgid "Top right"
|
938 |
-
msgstr ""
|
939 |
-
|
940 |
-
#: ../inc/shortcodes/data.php:464
|
941 |
-
msgid "Top left"
|
942 |
-
msgstr ""
|
943 |
-
|
944 |
-
#: ../inc/shortcodes/data.php:464
|
945 |
-
msgid "Bottom right"
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: ../inc/shortcodes/data.php:464
|
949 |
-
msgid "Bottom left"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: ../inc/shortcodes/data.php:466
|
953 |
-
msgid "Text shadow position"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: ../inc/shortcodes/data.php:466
|
957 |
-
msgid "Position of button text shadow"
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#: ../inc/shortcodes/data.php:471
|
961 |
-
msgid "CSS class"
|
962 |
-
msgstr ""
|
963 |
-
|
964 |
-
#: ../inc/shortcodes/data.php:471
|
965 |
-
msgid "Extra CSS class for button"
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#: ../inc/shortcodes/data.php:474
|
969 |
-
msgid "Button text"
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
#: ../inc/shortcodes/data.php:475
|
973 |
-
msgid "Styled button"
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: ../inc/shortcodes/data.php:479
|
977 |
-
msgid "Service"
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#: ../inc/shortcodes/data.php:485
|
981 |
-
#: ../inc/shortcodes/shortcodes.php:398
|
982 |
-
msgid "Service title"
|
983 |
-
msgstr ""
|
984 |
-
|
985 |
-
#: ../inc/shortcodes/data.php:487
|
986 |
-
msgid "Service name"
|
987 |
-
msgstr ""
|
988 |
-
|
989 |
-
#: ../inc/shortcodes/data.php:493
|
990 |
-
msgid "You can upload custom icon for this box"
|
991 |
-
msgstr ""
|
992 |
-
|
993 |
-
#: ../inc/shortcodes/data.php:499
|
994 |
-
msgid "Icon size"
|
995 |
-
msgstr ""
|
996 |
-
|
997 |
-
#: ../inc/shortcodes/data.php:500
|
998 |
-
msgid "Size of the uploaded icon in pixels"
|
999 |
-
msgstr ""
|
1000 |
-
|
1001 |
-
#: ../inc/shortcodes/data.php:503
|
1002 |
-
msgid "Service description"
|
1003 |
-
msgstr ""
|
1004 |
-
|
1005 |
-
#: ../inc/shortcodes/data.php:503
|
1006 |
-
msgid "Service box with title"
|
1007 |
-
msgstr ""
|
1008 |
-
|
1009 |
-
#: ../inc/shortcodes/data.php:507
|
1010 |
-
msgid "Box"
|
1011 |
-
msgstr ""
|
1012 |
-
|
1013 |
-
#: ../inc/shortcodes/data.php:513
|
1014 |
-
msgid "Box title"
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
#: ../inc/shortcodes/data.php:514
|
1018 |
-
msgid "Text for the box title"
|
1019 |
-
msgstr ""
|
1020 |
-
|
1021 |
-
#: ../inc/shortcodes/data.php:527
|
1022 |
-
msgid "Box style preset"
|
1023 |
-
msgstr ""
|
1024 |
-
|
1025 |
-
#: ../inc/shortcodes/data.php:533
|
1026 |
-
msgid "Color"
|
1027 |
-
msgstr ""
|
1028 |
-
|
1029 |
-
#: ../inc/shortcodes/data.php:534
|
1030 |
-
msgid "Color for the box title and borders"
|
1031 |
-
msgstr ""
|
1032 |
-
|
1033 |
-
#: ../inc/shortcodes/data.php:540
|
1034 |
-
msgid "Title text color"
|
1035 |
-
msgstr ""
|
1036 |
-
|
1037 |
-
#: ../inc/shortcodes/data.php:540
|
1038 |
-
msgid "Color for the box title text"
|
1039 |
-
msgstr ""
|
1040 |
-
|
1041 |
-
#: ../inc/shortcodes/data.php:547
|
1042 |
-
msgid "Box corners radius"
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: ../inc/shortcodes/data.php:550
|
1046 |
-
msgid "Box content"
|
1047 |
-
msgstr ""
|
1048 |
-
|
1049 |
-
#: ../inc/shortcodes/data.php:550
|
1050 |
-
msgid "Colored box with caption"
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
#: ../inc/shortcodes/data.php:562
|
1054 |
-
msgid "Note background color"
|
1055 |
-
msgstr ""
|
1056 |
-
|
1057 |
-
#: ../inc/shortcodes/data.php:569
|
1058 |
-
msgid "Note text color"
|
1059 |
-
msgstr ""
|
1060 |
-
|
1061 |
-
#: ../inc/shortcodes/data.php:575
|
1062 |
-
msgid "Note corners radius"
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
#: ../inc/shortcodes/data.php:578
|
1066 |
-
msgid "Note text"
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
-
#: ../inc/shortcodes/data.php:579
|
1070 |
-
msgid "Colored box"
|
1071 |
-
msgstr ""
|
1072 |
-
|
1073 |
-
#: ../inc/shortcodes/data.php:583
|
1074 |
-
msgid "Private"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: ../inc/shortcodes/data.php:587
|
1078 |
-
msgid "Private note text"
|
1079 |
-
msgstr ""
|
1080 |
-
|
1081 |
-
#: ../inc/shortcodes/data.php:587
|
1082 |
-
msgid "Private note for post authors"
|
1083 |
-
msgstr ""
|
1084 |
-
|
1085 |
-
#: ../inc/shortcodes/data.php:591
|
1086 |
-
msgid "YouTube"
|
1087 |
-
msgstr ""
|
1088 |
-
|
1089 |
-
#: ../inc/shortcodes/data.php:598
|
1090 |
-
#: ../inc/shortcodes/data.php:637
|
1091 |
-
#: ../inc/shortcodes/data.php:889
|
1092 |
-
#: ../inc/shortcodes/data.php:959
|
1093 |
-
msgid "Url"
|
1094 |
-
msgstr ""
|
1095 |
-
|
1096 |
-
#: ../inc/shortcodes/data.php:599
|
1097 |
-
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1098 |
-
msgstr ""
|
1099 |
-
|
1100 |
-
#: ../inc/shortcodes/data.php:607
|
1101 |
-
#: ../inc/shortcodes/data.php:645
|
1102 |
-
#: ../inc/shortcodes/data.php:694
|
1103 |
-
#: ../inc/shortcodes/data.php:754
|
1104 |
-
#: ../inc/shortcodes/data.php:968
|
1105 |
-
#: ../inc/shortcodes/data.php:995
|
1106 |
-
#: ../inc/shortcodes/data.php:1033
|
1107 |
-
#: ../inc/shortcodes/data.php:1112
|
1108 |
-
#: ../inc/shortcodes/data.php:1207
|
1109 |
-
msgid "Width"
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: ../inc/shortcodes/data.php:608
|
1113 |
-
#: ../inc/shortcodes/data.php:646
|
1114 |
-
#: ../inc/shortcodes/data.php:755
|
1115 |
-
msgid "Player width"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: ../inc/shortcodes/data.php:617
|
1119 |
-
#: ../inc/shortcodes/data.php:655
|
1120 |
-
#: ../inc/shortcodes/data.php:764
|
1121 |
-
msgid "Player height"
|
1122 |
-
msgstr ""
|
1123 |
-
|
1124 |
-
#: ../inc/shortcodes/data.php:622
|
1125 |
-
#: ../inc/shortcodes/data.php:660
|
1126 |
-
#: ../inc/shortcodes/data.php:700
|
1127 |
-
#: ../inc/shortcodes/data.php:775
|
1128 |
-
#: ../inc/shortcodes/data.php:1075
|
1129 |
-
#: ../inc/shortcodes/data.php:1170
|
1130 |
-
msgid "Autoplay"
|
1131 |
-
msgstr ""
|
1132 |
-
|
1133 |
-
#: ../inc/shortcodes/data.php:623
|
1134 |
-
#: ../inc/shortcodes/data.php:661
|
1135 |
-
msgid "Play video automatically when page is loaded"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: ../inc/shortcodes/data.php:626
|
1139 |
-
msgid "YouTube video"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: ../inc/shortcodes/data.php:630
|
1143 |
-
msgid "Vimeo"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: ../inc/shortcodes/data.php:637
|
1147 |
-
msgid "Url of Vimeo page with video"
|
1148 |
-
msgstr ""
|
1149 |
-
|
1150 |
-
#: ../inc/shortcodes/data.php:664
|
1151 |
-
msgid "Vimeo video"
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: ../inc/shortcodes/data.php:668
|
1155 |
-
msgid "Audio"
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: ../inc/shortcodes/data.php:675
|
1159 |
-
#: ../inc/shortcodes/data.php:722
|
1160 |
-
msgid "File"
|
1161 |
-
msgstr ""
|
1162 |
-
|
1163 |
-
#: ../inc/shortcodes/data.php:676
|
1164 |
-
msgid "Audio file url. Supported formats: mp3, ogg"
|
1165 |
-
msgstr ""
|
1166 |
-
|
1167 |
-
#: ../inc/shortcodes/data.php:684
|
1168 |
-
msgid "Hidden"
|
1169 |
-
msgstr ""
|
1170 |
-
|
1171 |
-
#: ../inc/shortcodes/data.php:688
|
1172 |
-
#: ../inc/shortcodes/data.php:746
|
1173 |
-
msgid "Player style preset"
|
1174 |
-
msgstr ""
|
1175 |
-
|
1176 |
-
#: ../inc/shortcodes/data.php:695
|
1177 |
-
msgid "Player width. You can specify width in percents and player will be responsive"
|
1178 |
-
msgstr ""
|
1179 |
-
|
1180 |
-
#: ../inc/shortcodes/data.php:701
|
1181 |
-
#: ../inc/shortcodes/data.php:776
|
1182 |
-
msgid "Play file automatically when page is loaded"
|
1183 |
-
msgstr ""
|
1184 |
-
|
1185 |
-
#: ../inc/shortcodes/data.php:706
|
1186 |
-
#: ../inc/shortcodes/data.php:781
|
1187 |
-
msgid "Loop"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: ../inc/shortcodes/data.php:707
|
1191 |
-
#: ../inc/shortcodes/data.php:782
|
1192 |
-
msgid "Repeat when playback is ended"
|
1193 |
-
msgstr ""
|
1194 |
-
|
1195 |
-
#: ../inc/shortcodes/data.php:711
|
1196 |
-
msgid "Custom audio player"
|
1197 |
-
msgstr ""
|
1198 |
-
|
1199 |
-
#: ../inc/shortcodes/data.php:715
|
1200 |
-
msgid "Video"
|
1201 |
-
msgstr ""
|
1202 |
-
|
1203 |
-
#: ../inc/shortcodes/data.php:723
|
1204 |
-
msgid "Url to mp4/flv video-file"
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#: ../inc/shortcodes/data.php:728
|
1208 |
-
msgid "Poster"
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#: ../inc/shortcodes/data.php:729
|
1212 |
-
msgid "Url to poster image, that will be shown before playback"
|
1213 |
-
msgstr ""
|
1214 |
-
|
1215 |
-
#: ../inc/shortcodes/data.php:735
|
1216 |
-
msgid "Player title"
|
1217 |
-
msgstr ""
|
1218 |
-
|
1219 |
-
#: ../inc/shortcodes/data.php:742
|
1220 |
-
#: ../inc/shortcodes/data.php:799
|
1221 |
-
msgid "Minimal"
|
1222 |
-
msgstr ""
|
1223 |
-
|
1224 |
-
#: ../inc/shortcodes/data.php:769
|
1225 |
-
msgid "Controls"
|
1226 |
-
msgstr ""
|
1227 |
-
|
1228 |
-
#: ../inc/shortcodes/data.php:770
|
1229 |
-
msgid "Show player controls (play/pause etc.) or not"
|
1230 |
-
msgstr ""
|
1231 |
-
|
1232 |
-
#: ../inc/shortcodes/data.php:786
|
1233 |
-
msgid "Custom video player"
|
1234 |
-
msgstr ""
|
1235 |
-
|
1236 |
-
#: ../inc/shortcodes/data.php:790
|
1237 |
-
msgid "Table"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../inc/shortcodes/data.php:803
|
1241 |
-
msgid "Table style preset"
|
1242 |
-
msgstr ""
|
1243 |
-
|
1244 |
-
#: ../inc/shortcodes/data.php:808
|
1245 |
-
msgid "CSV file"
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
-
#: ../inc/shortcodes/data.php:809
|
1249 |
-
msgid "Upload CSV file if you want to create HTML-table from file"
|
1250 |
-
msgstr ""
|
1251 |
-
|
1252 |
-
#: ../inc/shortcodes/data.php:813
|
1253 |
-
msgid ""
|
1254 |
-
"<table>\n"
|
1255 |
-
"<tr>\n"
|
1256 |
-
"\t<td>Table</td>\n"
|
1257 |
-
"\t<td>Table</td>\n"
|
1258 |
-
"</tr>\n"
|
1259 |
-
"<tr>\n"
|
1260 |
-
"\t<td>Table</td>\n"
|
1261 |
-
"\t<td>Table</td>\n"
|
1262 |
-
"</tr>\n"
|
1263 |
-
"</table>"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: ../inc/shortcodes/data.php:814
|
1267 |
-
msgid "Styled table from HTML or CSV file"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../inc/shortcodes/data.php:818
|
1271 |
-
msgid "Permalink"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: ../inc/shortcodes/data.php:824
|
1275 |
-
msgid "ID"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: ../inc/shortcodes/data.php:825
|
1279 |
-
msgid "Post or page ID"
|
1280 |
-
msgstr ""
|
1281 |
-
|
1282 |
-
#: ../inc/shortcodes/data.php:835
|
1283 |
-
msgid "Link target. blank - link will be opened in new window/tab"
|
1284 |
-
msgstr ""
|
1285 |
-
|
1286 |
-
#: ../inc/shortcodes/data.php:839
|
1287 |
-
msgid "Permalink to specified post/page"
|
1288 |
-
msgstr ""
|
1289 |
-
|
1290 |
-
#: ../inc/shortcodes/data.php:843
|
1291 |
-
msgid "Members"
|
1292 |
-
msgstr ""
|
1293 |
-
|
1294 |
-
#: ../inc/shortcodes/data.php:856
|
1295 |
-
msgid "Box style preset. This box will be shown for not logged users only"
|
1296 |
-
msgstr ""
|
1297 |
-
|
1298 |
-
#: ../inc/shortcodes/data.php:860
|
1299 |
-
#: ../inc/shortcodes/shortcodes.php:648
|
1300 |
-
msgid "This content is for registered users only. Please %login%."
|
1301 |
-
msgstr ""
|
1302 |
-
|
1303 |
-
#: ../inc/shortcodes/data.php:861
|
1304 |
-
msgid "Message"
|
1305 |
-
msgstr ""
|
1306 |
-
|
1307 |
-
#: ../inc/shortcodes/data.php:861
|
1308 |
-
msgid "Message for not logged users"
|
1309 |
-
msgstr ""
|
1310 |
-
|
1311 |
-
#: ../inc/shortcodes/data.php:865
|
1312 |
-
#: ../inc/shortcodes/shortcodes.php:649
|
1313 |
-
msgid "login"
|
1314 |
-
msgstr ""
|
1315 |
-
|
1316 |
-
#: ../inc/shortcodes/data.php:866
|
1317 |
-
msgid "Login link text"
|
1318 |
-
msgstr ""
|
1319 |
-
|
1320 |
-
#: ../inc/shortcodes/data.php:866
|
1321 |
-
msgid "Text for the login link"
|
1322 |
-
msgstr ""
|
1323 |
-
|
1324 |
-
#: ../inc/shortcodes/data.php:869
|
1325 |
-
msgid "Content for logged members"
|
1326 |
-
msgstr ""
|
1327 |
-
|
1328 |
-
#: ../inc/shortcodes/data.php:870
|
1329 |
-
msgid "Content for logged in members only"
|
1330 |
-
msgstr ""
|
1331 |
-
|
1332 |
-
#: ../inc/shortcodes/data.php:874
|
1333 |
-
msgid "Guests"
|
1334 |
-
msgstr ""
|
1335 |
-
|
1336 |
-
#: ../inc/shortcodes/data.php:878
|
1337 |
-
msgid "Content for guests"
|
1338 |
-
msgstr ""
|
1339 |
-
|
1340 |
-
#: ../inc/shortcodes/data.php:878
|
1341 |
-
msgid "Content for guests only"
|
1342 |
-
msgstr ""
|
1343 |
-
|
1344 |
-
#: ../inc/shortcodes/data.php:882
|
1345 |
-
msgid "RSS Feed"
|
1346 |
-
msgstr ""
|
1347 |
-
|
1348 |
-
#: ../inc/shortcodes/data.php:890
|
1349 |
-
msgid "Url to RSS-feed"
|
1350 |
-
msgstr ""
|
1351 |
-
|
1352 |
-
#: ../inc/shortcodes/data.php:895
|
1353 |
-
msgid "Limit"
|
1354 |
-
msgstr ""
|
1355 |
-
|
1356 |
-
#: ../inc/shortcodes/data.php:895
|
1357 |
-
msgid "Number of items to show"
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: ../inc/shortcodes/data.php:898
|
1361 |
-
msgid "Feed grabber"
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: ../inc/shortcodes/data.php:902
|
1365 |
-
msgid "Menu"
|
1366 |
-
msgstr ""
|
1367 |
-
|
1368 |
-
#: ../inc/shortcodes/data.php:909
|
1369 |
-
msgid "Menu name"
|
1370 |
-
msgstr ""
|
1371 |
-
|
1372 |
-
#: ../inc/shortcodes/data.php:909
|
1373 |
-
msgid "Custom menu name. Ex: Main menu"
|
1374 |
-
msgstr ""
|
1375 |
-
|
1376 |
-
#: ../inc/shortcodes/data.php:912
|
1377 |
-
msgid "Custom menu by name"
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
-
#: ../inc/shortcodes/data.php:916
|
1381 |
-
msgid "Sub pages"
|
1382 |
-
msgstr ""
|
1383 |
-
|
1384 |
-
#: ../inc/shortcodes/data.php:923
|
1385 |
-
#: ../inc/shortcodes/data.php:944
|
1386 |
-
msgid "Depth"
|
1387 |
-
msgstr ""
|
1388 |
-
|
1389 |
-
#: ../inc/shortcodes/data.php:924
|
1390 |
-
msgid "Max depth level of children pages"
|
1391 |
-
msgstr ""
|
1392 |
-
|
1393 |
-
#: ../inc/shortcodes/data.php:929
|
1394 |
-
msgid "Parent ID"
|
1395 |
-
msgstr ""
|
1396 |
-
|
1397 |
-
#: ../inc/shortcodes/data.php:930
|
1398 |
-
msgid "ID of the parent page. Leave blank to use current page"
|
1399 |
-
msgstr ""
|
1400 |
-
|
1401 |
-
#: ../inc/shortcodes/data.php:933
|
1402 |
-
msgid "List of sub pages"
|
1403 |
-
msgstr ""
|
1404 |
-
|
1405 |
-
#: ../inc/shortcodes/data.php:937
|
1406 |
-
msgid "Siblings"
|
1407 |
-
msgstr ""
|
1408 |
-
|
1409 |
-
#: ../inc/shortcodes/data.php:945
|
1410 |
-
msgid "Max depth level"
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
#: ../inc/shortcodes/data.php:948
|
1414 |
-
msgid "List of cureent page siblings"
|
1415 |
-
msgstr ""
|
1416 |
-
|
1417 |
-
#: ../inc/shortcodes/data.php:952
|
1418 |
-
msgid "Document"
|
1419 |
-
msgstr ""
|
1420 |
-
|
1421 |
-
#: ../inc/shortcodes/data.php:960
|
1422 |
-
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1423 |
-
msgstr ""
|
1424 |
-
|
1425 |
-
#: ../inc/shortcodes/data.php:969
|
1426 |
-
msgid "Viewer width"
|
1427 |
-
msgstr ""
|
1428 |
-
|
1429 |
-
#: ../inc/shortcodes/data.php:978
|
1430 |
-
msgid "Viewer height"
|
1431 |
-
msgstr ""
|
1432 |
-
|
1433 |
-
#: ../inc/shortcodes/data.php:981
|
1434 |
-
msgid "Document viewer by Google"
|
1435 |
-
msgstr ""
|
1436 |
-
|
1437 |
-
#: ../inc/shortcodes/data.php:985
|
1438 |
-
msgid "Gmap"
|
1439 |
-
msgstr ""
|
1440 |
-
|
1441 |
-
#: ../inc/shortcodes/data.php:996
|
1442 |
-
msgid "Map width"
|
1443 |
-
msgstr ""
|
1444 |
-
|
1445 |
-
#: ../inc/shortcodes/data.php:1005
|
1446 |
-
msgid "Map height"
|
1447 |
-
msgstr ""
|
1448 |
-
|
1449 |
-
#: ../inc/shortcodes/data.php:1010
|
1450 |
-
msgid "Marker"
|
1451 |
-
msgstr ""
|
1452 |
-
|
1453 |
-
#: ../inc/shortcodes/data.php:1011
|
1454 |
-
msgid "Address for the marker. You can type it in any language"
|
1455 |
-
msgstr ""
|
1456 |
-
|
1457 |
-
#: ../inc/shortcodes/data.php:1014
|
1458 |
-
msgid "Maps by Google"
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
#: ../inc/shortcodes/data.php:1018
|
1462 |
-
msgid "Slider"
|
1463 |
-
msgstr ""
|
1464 |
-
|
1465 |
-
#: ../inc/shortcodes/data.php:1024
|
1466 |
-
#: ../inc/shortcodes/data.php:1103
|
1467 |
-
#: ../inc/shortcodes/data.php:1192
|
1468 |
-
#: ../inc/shortcodes/data.php:1198
|
1469 |
-
msgid "Gallery"
|
1470 |
-
msgstr ""
|
1471 |
-
|
1472 |
-
#: ../inc/shortcodes/data.php:1025
|
1473 |
-
msgid "Choose source gallery, that will be used for this slider"
|
1474 |
-
msgstr ""
|
1475 |
-
|
1476 |
-
#: ../inc/shortcodes/data.php:1033
|
1477 |
-
msgid "Slider width (in pixels)"
|
1478 |
-
msgstr ""
|
1479 |
-
|
1480 |
-
#: ../inc/shortcodes/data.php:1041
|
1481 |
-
msgid "Slider height (in pixels)"
|
1482 |
-
msgstr ""
|
1483 |
-
|
1484 |
-
#: ../inc/shortcodes/data.php:1046
|
1485 |
-
#: ../inc/shortcodes/data.php:1141
|
1486 |
-
#: ../inc/shortcodes/data.php:1225
|
1487 |
-
msgid "Show titles"
|
1488 |
-
msgstr ""
|
1489 |
-
|
1490 |
-
#: ../inc/shortcodes/data.php:1046
|
1491 |
-
msgid "Display slide titles"
|
1492 |
-
msgstr ""
|
1493 |
-
|
1494 |
-
#: ../inc/shortcodes/data.php:1051
|
1495 |
-
#: ../inc/shortcodes/data.php:1146
|
1496 |
-
msgid "Center"
|
1497 |
-
msgstr ""
|
1498 |
-
|
1499 |
-
#: ../inc/shortcodes/data.php:1051
|
1500 |
-
msgid "Is slider centered on the page"
|
1501 |
-
msgstr ""
|
1502 |
-
|
1503 |
-
#: ../inc/shortcodes/data.php:1056
|
1504 |
-
#: ../inc/shortcodes/data.php:1151
|
1505 |
-
msgid "Arrows"
|
1506 |
-
msgstr ""
|
1507 |
-
|
1508 |
-
#: ../inc/shortcodes/data.php:1056
|
1509 |
-
#: ../inc/shortcodes/data.php:1151
|
1510 |
-
msgid "Show left and right arrows"
|
1511 |
-
msgstr ""
|
1512 |
-
|
1513 |
-
#: ../inc/shortcodes/data.php:1061
|
1514 |
-
#: ../inc/shortcodes/data.php:1156
|
1515 |
-
msgid "Pagination"
|
1516 |
-
msgstr ""
|
1517 |
-
|
1518 |
-
#: ../inc/shortcodes/data.php:1062
|
1519 |
-
#: ../inc/shortcodes/data.php:1157
|
1520 |
-
msgid "Show pagination"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: ../inc/shortcodes/data.php:1066
|
1524 |
-
#: ../inc/shortcodes/data.php:1161
|
1525 |
-
msgid "Mouse wheel control"
|
1526 |
-
msgstr ""
|
1527 |
-
|
1528 |
-
#: ../inc/shortcodes/data.php:1067
|
1529 |
-
msgid "Allow to change slides with mouse wheel"
|
1530 |
-
msgstr ""
|
1531 |
-
|
1532 |
-
#: ../inc/shortcodes/data.php:1076
|
1533 |
-
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1534 |
-
msgstr ""
|
1535 |
-
|
1536 |
-
#: ../inc/shortcodes/data.php:1084
|
1537 |
-
#: ../inc/shortcodes/data.php:1179
|
1538 |
-
msgid "Speed"
|
1539 |
-
msgstr ""
|
1540 |
-
|
1541 |
-
#: ../inc/shortcodes/data.php:1084
|
1542 |
-
#: ../inc/shortcodes/data.php:1179
|
1543 |
-
msgid "Specify animation speed"
|
1544 |
-
msgstr ""
|
1545 |
-
|
1546 |
-
#: ../inc/shortcodes/data.php:1089
|
1547 |
-
#: ../inc/shortcodes/data.php:1184
|
1548 |
-
#: ../inc/shortcodes/data.php:1231
|
1549 |
-
msgid "Links target"
|
1550 |
-
msgstr ""
|
1551 |
-
|
1552 |
-
#: ../inc/shortcodes/data.php:1090
|
1553 |
-
msgid "Open slides links in new window/tab"
|
1554 |
-
msgstr ""
|
1555 |
-
|
1556 |
-
#: ../inc/shortcodes/data.php:1093
|
1557 |
-
msgid "Customizable image slider"
|
1558 |
-
msgstr ""
|
1559 |
-
|
1560 |
-
#: ../inc/shortcodes/data.php:1097
|
1561 |
-
msgid "Carousel"
|
1562 |
-
msgstr ""
|
1563 |
-
|
1564 |
-
#: ../inc/shortcodes/data.php:1104
|
1565 |
-
msgid "Choose source gallery, that will be used for this carousel"
|
1566 |
-
msgstr ""
|
1567 |
-
|
1568 |
-
#: ../inc/shortcodes/data.php:1112
|
1569 |
-
msgid "Carousel width (in pixels)"
|
1570 |
-
msgstr ""
|
1571 |
-
|
1572 |
-
#: ../inc/shortcodes/data.php:1120
|
1573 |
-
msgid "Carousel height (in pixels)"
|
1574 |
-
msgstr ""
|
1575 |
-
|
1576 |
-
#: ../inc/shortcodes/data.php:1127
|
1577 |
-
msgid "Items to show"
|
1578 |
-
msgstr ""
|
1579 |
-
|
1580 |
-
#: ../inc/shortcodes/data.php:1128
|
1581 |
-
msgid "How much carousel items is visible"
|
1582 |
-
msgstr ""
|
1583 |
-
|
1584 |
-
#: ../inc/shortcodes/data.php:1135
|
1585 |
-
msgid "Scroll number"
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
-
#: ../inc/shortcodes/data.php:1136
|
1589 |
-
msgid "How much items are scrolled in one transition"
|
1590 |
-
msgstr ""
|
1591 |
-
|
1592 |
-
#: ../inc/shortcodes/data.php:1141
|
1593 |
-
msgid "Display titles for each item"
|
1594 |
-
msgstr ""
|
1595 |
-
|
1596 |
-
#: ../inc/shortcodes/data.php:1146
|
1597 |
-
msgid "Is carousel centered on the page"
|
1598 |
-
msgstr ""
|
1599 |
-
|
1600 |
-
#: ../inc/shortcodes/data.php:1162
|
1601 |
-
msgid "Allow to rotate carousel with mouse wheel"
|
1602 |
-
msgstr ""
|
1603 |
-
|
1604 |
-
#: ../inc/shortcodes/data.php:1171
|
1605 |
-
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1606 |
-
msgstr ""
|
1607 |
-
|
1608 |
-
#: ../inc/shortcodes/data.php:1185
|
1609 |
-
msgid "Open carousel links in new window/tab"
|
1610 |
-
msgstr ""
|
1611 |
-
|
1612 |
-
#: ../inc/shortcodes/data.php:1188
|
1613 |
-
msgid "Customizable image carousel"
|
1614 |
-
msgstr ""
|
1615 |
-
|
1616 |
-
#: ../inc/shortcodes/data.php:1199
|
1617 |
-
msgid "Choose source gallery, that will be used for this shortcode"
|
1618 |
-
msgstr ""
|
1619 |
-
|
1620 |
-
#: ../inc/shortcodes/data.php:1207
|
1621 |
-
msgid "Single item width (in pixels)"
|
1622 |
-
msgstr ""
|
1623 |
-
|
1624 |
-
#: ../inc/shortcodes/data.php:1215
|
1625 |
-
msgid "Single item height (in pixels)"
|
1626 |
-
msgstr ""
|
1627 |
-
|
1628 |
-
#: ../inc/shortcodes/data.php:1220
|
1629 |
-
msgid "Never"
|
1630 |
-
msgstr ""
|
1631 |
-
|
1632 |
-
#: ../inc/shortcodes/data.php:1221
|
1633 |
-
msgid "On mouse over"
|
1634 |
-
msgstr ""
|
1635 |
-
|
1636 |
-
#: ../inc/shortcodes/data.php:1222
|
1637 |
-
msgid "Always"
|
1638 |
-
msgstr ""
|
1639 |
-
|
1640 |
-
#: ../inc/shortcodes/data.php:1226
|
1641 |
-
msgid "Title display mode"
|
1642 |
-
msgstr ""
|
1643 |
-
|
1644 |
-
#: ../inc/shortcodes/data.php:1231
|
1645 |
-
msgid "Open links in new window/tab"
|
1646 |
-
msgstr ""
|
1647 |
-
|
1648 |
-
#: ../inc/shortcodes/data.php:1234
|
1649 |
-
msgid "Customizable image gallery"
|
1650 |
-
msgstr ""
|
1651 |
-
|
1652 |
-
#: ../inc/shortcodes/data.php:1238
|
1653 |
-
msgid "Posts"
|
1654 |
-
msgstr ""
|
1655 |
-
|
1656 |
-
#: ../inc/shortcodes/data.php:1243
|
1657 |
-
msgid "Template"
|
1658 |
-
msgstr ""
|
1659 |
-
|
1660 |
-
#: ../inc/shortcodes/data.php:1244
|
1661 |
-
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"
|
1662 |
-
msgstr ""
|
1663 |
-
|
1664 |
-
#: ../inc/shortcodes/data.php:1248
|
1665 |
-
msgid "Post ID's"
|
1666 |
-
msgstr ""
|
1667 |
-
|
1668 |
-
#: ../inc/shortcodes/data.php:1249
|
1669 |
-
msgid "Enter comma separated ID's of the posts that you want to show"
|
1670 |
-
msgstr ""
|
1671 |
-
|
1672 |
-
#: ../inc/shortcodes/data.php:1257
|
1673 |
-
msgid "Posts per page"
|
1674 |
-
msgstr ""
|
1675 |
-
|
1676 |
-
#: ../inc/shortcodes/data.php:1258
|
1677 |
-
msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
|
1678 |
-
msgstr ""
|
1679 |
-
|
1680 |
-
#: ../inc/shortcodes/data.php:1265
|
1681 |
-
msgid "Post types"
|
1682 |
-
msgstr ""
|
1683 |
-
|
1684 |
-
#: ../inc/shortcodes/data.php:1266
|
1685 |
-
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1686 |
-
msgstr ""
|
1687 |
-
|
1688 |
-
#: ../inc/shortcodes/data.php:1272
|
1689 |
-
msgid "Taxonomy"
|
1690 |
-
msgstr ""
|
1691 |
-
|
1692 |
-
#: ../inc/shortcodes/data.php:1273
|
1693 |
-
msgid "Select taxonomy to show posts from"
|
1694 |
-
msgstr ""
|
1695 |
-
|
1696 |
-
#: ../inc/shortcodes/data.php:1280
|
1697 |
-
msgid "Terms"
|
1698 |
-
msgstr ""
|
1699 |
-
|
1700 |
-
#: ../inc/shortcodes/data.php:1280
|
1701 |
-
msgid "Select terms to show posts from"
|
1702 |
-
msgstr ""
|
1703 |
-
|
1704 |
-
#: ../inc/shortcodes/data.php:1285
|
1705 |
-
msgid "Taxonomy term operator"
|
1706 |
-
msgstr ""
|
1707 |
-
|
1708 |
-
#: ../inc/shortcodes/data.php:1286
|
1709 |
-
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"
|
1710 |
-
msgstr ""
|
1711 |
-
|
1712 |
-
#: ../inc/shortcodes/data.php:1293
|
1713 |
-
msgid "Authors"
|
1714 |
-
msgstr ""
|
1715 |
-
|
1716 |
-
#: ../inc/shortcodes/data.php:1294
|
1717 |
-
msgid "Choose the authors whose posts you want to show"
|
1718 |
-
msgstr ""
|
1719 |
-
|
1720 |
-
#: ../inc/shortcodes/data.php:1298
|
1721 |
-
msgid "Meta key"
|
1722 |
-
msgstr ""
|
1723 |
-
|
1724 |
-
#: ../inc/shortcodes/data.php:1299
|
1725 |
-
msgid "Enter meta key name to show posts that have this key"
|
1726 |
-
msgstr ""
|
1727 |
-
|
1728 |
-
#: ../inc/shortcodes/data.php:1306
|
1729 |
-
msgid "Offset"
|
1730 |
-
msgstr ""
|
1731 |
-
|
1732 |
-
#: ../inc/shortcodes/data.php:1307
|
1733 |
-
msgid "Specify offset to start posts loop not from first post"
|
1734 |
-
msgstr ""
|
1735 |
-
|
1736 |
-
#: ../inc/shortcodes/data.php:1312
|
1737 |
-
msgid "Descending"
|
1738 |
-
msgstr ""
|
1739 |
-
|
1740 |
-
#: ../inc/shortcodes/data.php:1313
|
1741 |
-
msgid "Ascending"
|
1742 |
-
msgstr ""
|
1743 |
-
|
1744 |
-
#: ../inc/shortcodes/data.php:1316
|
1745 |
-
msgid "Order"
|
1746 |
-
msgstr ""
|
1747 |
-
|
1748 |
-
#: ../inc/shortcodes/data.php:1317
|
1749 |
-
msgid "Posts order"
|
1750 |
-
msgstr ""
|
1751 |
-
|
1752 |
-
#: ../inc/shortcodes/data.php:1323
|
1753 |
-
msgid "Post ID"
|
1754 |
-
msgstr ""
|
1755 |
-
|
1756 |
-
#: ../inc/shortcodes/data.php:1324
|
1757 |
-
msgid "Post author"
|
1758 |
-
msgstr ""
|
1759 |
-
|
1760 |
-
#: ../inc/shortcodes/data.php:1325
|
1761 |
-
msgid "Post title"
|
1762 |
-
msgstr ""
|
1763 |
-
|
1764 |
-
#: ../inc/shortcodes/data.php:1326
|
1765 |
-
msgid "Post slug"
|
1766 |
-
msgstr ""
|
1767 |
-
|
1768 |
-
#: ../inc/shortcodes/data.php:1327
|
1769 |
-
msgid "Date"
|
1770 |
-
msgstr ""
|
1771 |
-
|
1772 |
-
#: ../inc/shortcodes/data.php:1327
|
1773 |
-
msgid "Last modified date"
|
1774 |
-
msgstr ""
|
1775 |
-
|
1776 |
-
#: ../inc/shortcodes/data.php:1328
|
1777 |
-
#: ../inc/shortcodes/data.php:1338
|
1778 |
-
msgid "Post parent"
|
1779 |
-
msgstr ""
|
1780 |
-
|
1781 |
-
#: ../inc/shortcodes/data.php:1329
|
1782 |
-
msgid "Random"
|
1783 |
-
msgstr ""
|
1784 |
-
|
1785 |
-
#: ../inc/shortcodes/data.php:1329
|
1786 |
-
msgid "Comments number"
|
1787 |
-
msgstr ""
|
1788 |
-
|
1789 |
-
#: ../inc/shortcodes/data.php:1330
|
1790 |
-
msgid "Menu order"
|
1791 |
-
msgstr ""
|
1792 |
-
|
1793 |
-
#: ../inc/shortcodes/data.php:1330
|
1794 |
-
msgid "Meta key values"
|
1795 |
-
msgstr ""
|
1796 |
-
|
1797 |
-
#: ../inc/shortcodes/data.php:1333
|
1798 |
-
msgid "Order by"
|
1799 |
-
msgstr ""
|
1800 |
-
|
1801 |
-
#: ../inc/shortcodes/data.php:1334
|
1802 |
-
msgid "Order posts by"
|
1803 |
-
msgstr ""
|
1804 |
-
|
1805 |
-
#: ../inc/shortcodes/data.php:1339
|
1806 |
-
msgid "Show childrens of entered post (enter post ID)"
|
1807 |
-
msgstr ""
|
1808 |
-
|
1809 |
-
#: ../inc/shortcodes/data.php:1344
|
1810 |
-
msgid "Published"
|
1811 |
-
msgstr ""
|
1812 |
-
|
1813 |
-
#: ../inc/shortcodes/data.php:1345
|
1814 |
-
msgid "Pending"
|
1815 |
-
msgstr ""
|
1816 |
-
|
1817 |
-
#: ../inc/shortcodes/data.php:1346
|
1818 |
-
msgid "Draft"
|
1819 |
-
msgstr ""
|
1820 |
-
|
1821 |
-
#: ../inc/shortcodes/data.php:1347
|
1822 |
-
msgid "Auto-draft"
|
1823 |
-
msgstr ""
|
1824 |
-
|
1825 |
-
#: ../inc/shortcodes/data.php:1348
|
1826 |
-
msgid "Future post"
|
1827 |
-
msgstr ""
|
1828 |
-
|
1829 |
-
#: ../inc/shortcodes/data.php:1349
|
1830 |
-
msgid "Private post"
|
1831 |
-
msgstr ""
|
1832 |
-
|
1833 |
-
#: ../inc/shortcodes/data.php:1350
|
1834 |
-
msgid "Inherit"
|
1835 |
-
msgstr ""
|
1836 |
-
|
1837 |
-
#: ../inc/shortcodes/data.php:1351
|
1838 |
-
msgid "Trashed"
|
1839 |
-
msgstr ""
|
1840 |
-
|
1841 |
-
#: ../inc/shortcodes/data.php:1352
|
1842 |
-
msgid "Any"
|
1843 |
-
msgstr ""
|
1844 |
-
|
1845 |
-
#: ../inc/shortcodes/data.php:1355
|
1846 |
-
msgid "Post status"
|
1847 |
-
msgstr ""
|
1848 |
-
|
1849 |
-
#: ../inc/shortcodes/data.php:1356
|
1850 |
-
msgid "Show only posts with selected status"
|
1851 |
-
msgstr ""
|
1852 |
-
|
1853 |
-
#: ../inc/shortcodes/data.php:1361
|
1854 |
-
msgid "Ignore sticky"
|
1855 |
-
msgstr ""
|
1856 |
-
|
1857 |
-
#: ../inc/shortcodes/data.php:1362
|
1858 |
-
msgid "Select Yes to ignore posts that is sticked"
|
1859 |
-
msgstr ""
|
1860 |
-
|
1861 |
-
#: ../inc/shortcodes/data.php:1366
|
1862 |
-
msgid "Custom posts query with customizable template"
|
1863 |
-
msgstr ""
|
1864 |
-
|
1865 |
-
#: ../inc/shortcodes/shortcodes.php:416
|
1866 |
-
msgid "This is box title"
|
1867 |
-
msgstr ""
|
1868 |
-
|
1869 |
-
#: ../inc/shortcodes/shortcodes.php:486
|
1870 |
-
#: ../inc/shortcodes/shortcodes.php:518
|
1871 |
-
#: ../inc/shortcodes/shortcodes.php:554
|
1872 |
-
#: ../inc/shortcodes/shortcodes.php:588
|
1873 |
-
msgid "please specify correct url"
|
1874 |
-
msgstr ""
|
1875 |
-
|
1876 |
-
#: ../inc/shortcodes/shortcodes.php:755
|
1877 |
-
msgid "This menu doesn't exists, or has no elements"
|
1878 |
-
msgstr ""
|
1879 |
-
|
1880 |
-
#: ../inc/shortcodes/shortcodes.php:832
|
1881 |
-
#: ../inc/shortcodes/shortcodes.php:918
|
1882 |
-
#: ../inc/shortcodes/shortcodes.php:989
|
1883 |
-
msgid "images not found"
|
1884 |
-
msgstr ""
|
1885 |
-
|
1886 |
-
#: ../inc/shortcodes/shortcodes.php:1197
|
1887 |
-
msgid "template not found"
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
#: ../inc/sunrise/options.php:6
|
1891 |
-
msgid "About"
|
1892 |
-
msgstr ""
|
1893 |
-
|
1894 |
-
#: ../inc/sunrise/options.php:21
|
1895 |
-
msgid "Custom formatting"
|
1896 |
-
msgstr ""
|
1897 |
-
|
1898 |
-
#: ../inc/sunrise/options.php:22
|
1899 |
-
msgid "Disable this option if you have some problems with other plugins or content formatting"
|
1900 |
-
msgstr ""
|
1901 |
-
|
1902 |
-
#: ../inc/sunrise/options.php:22
|
1903 |
-
#: ../inc/sunrise/options.php:30
|
1904 |
-
msgid "Documentation article"
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: ../inc/sunrise/options.php:26
|
1908 |
-
#: ../inc/sunrise/options.php:34
|
1909 |
-
msgid "Enabled"
|
1910 |
-
msgstr ""
|
1911 |
-
|
1912 |
-
#: ../inc/sunrise/options.php:29
|
1913 |
-
msgid "Compatibility mode"
|
1914 |
-
msgstr ""
|
1915 |
-
|
1916 |
-
#: ../inc/sunrise/options.php:30
|
1917 |
-
msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
|
1918 |
-
msgstr ""
|
1919 |
-
|
1920 |
-
#: ../inc/sunrise/options.php:30
|
1921 |
-
msgid "etc."
|
1922 |
-
msgstr ""
|
1923 |
-
|
1924 |
-
#: ../inc/sunrise/options.php:40
|
1925 |
-
msgid "Custom CSS"
|
1926 |
-
msgstr ""
|
1927 |
-
|
1928 |
-
#: ../inc/sunrise/options.php:51
|
1929 |
-
msgid "Galleries"
|
1930 |
-
msgstr ""
|
1931 |
-
|
1932 |
-
#: ../inc/sunrise/options.php:62
|
1933 |
-
msgid "Cheatsheet"
|
1934 |
-
msgstr ""
|
1935 |
-
|
1936 |
-
#: ../inc/sunrise/views/about.php:2
|
1937 |
-
msgid "Welcome to Shortcodes Ultimate"
|
1938 |
-
msgstr ""
|
1939 |
-
|
1940 |
-
#: ../inc/sunrise/views/about.php:2
|
1941 |
-
msgid "A real swiss army knife for WordPress"
|
1942 |
-
msgstr ""
|
1943 |
-
|
1944 |
-
#: ../inc/sunrise/views/about.php:4
|
1945 |
-
msgid "Project homepage"
|
1946 |
-
msgstr ""
|
1947 |
-
|
1948 |
-
#: ../inc/sunrise/views/about.php:6
|
1949 |
-
msgid "Add-ons"
|
1950 |
-
msgstr ""
|
1951 |
-
|
1952 |
-
#: ../inc/sunrise/views/about.php:8
|
1953 |
-
msgid "Documentation"
|
1954 |
-
msgstr ""
|
1955 |
-
|
1956 |
-
#: ../inc/sunrise/views/about.php:12
|
1957 |
-
msgid "Changelog"
|
1958 |
-
msgstr ""
|
1959 |
-
|
1960 |
-
#: ../inc/sunrise/views/about.php:14
|
1961 |
-
msgid "Contact author"
|
1962 |
-
msgstr ""
|
1963 |
-
|
1964 |
-
#: ../inc/sunrise/views/about.php:17
|
1965 |
-
msgid "Plugin features"
|
1966 |
-
msgstr ""
|
1967 |
-
|
1968 |
-
#: ../inc/sunrise/views/about.php:19
|
1969 |
-
msgid "30+ amazing shortcodes"
|
1970 |
-
msgstr ""
|
1971 |
-
|
1972 |
-
#: ../inc/sunrise/views/about.php:20
|
1973 |
-
msgid "Power of CSS3 transitions"
|
1974 |
-
msgstr ""
|
1975 |
-
|
1976 |
-
#: ../inc/sunrise/views/about.php:21
|
1977 |
-
msgid "Handy shortcodes generator"
|
1978 |
-
msgstr ""
|
1979 |
-
|
1980 |
-
#: ../inc/sunrise/views/about.php:22
|
1981 |
-
msgid "International"
|
1982 |
-
msgstr ""
|
1983 |
-
|
1984 |
-
#: ../inc/sunrise/views/about.php:23
|
1985 |
-
msgid "Documented API"
|
1986 |
-
msgstr ""
|
1987 |
-
|
1988 |
-
#: ../inc/sunrise/views/about.php:27
|
1989 |
-
msgid "What is a shortcode?"
|
1990 |
-
msgstr ""
|
1991 |
-
|
1992 |
-
#: ../inc/sunrise/views/about.php:28
|
1993 |
-
msgid "<strong>Shortcode</strong> is a WordPress-specific code that lets you do nifty things with very little effort."
|
1994 |
-
msgstr ""
|
1995 |
-
|
1996 |
-
#: ../inc/sunrise/views/about.php:29
|
1997 |
-
msgid "Shortcodes can embed files or create objects that would normally require lots of complicated, ugly code in just one line. Shortcode = shortcut."
|
1998 |
-
msgstr ""
|
1999 |
-
|
2000 |
-
#: ../inc/sunrise/views/about.php:33
|
2001 |
-
msgid "How it works"
|
2002 |
-
msgstr ""
|
2003 |
-
|
2004 |
-
#: ../inc/sunrise/views/about.php:37
|
2005 |
-
msgid "More videos"
|
2006 |
-
msgstr ""
|
2007 |
-
|
2008 |
-
#: ../inc/sunrise/views/about.php:39
|
2009 |
-
msgid "Shortcodes Ultimate Tutorial"
|
2010 |
-
msgstr ""
|
2011 |
-
|
2012 |
-
#: ../inc/sunrise/views/about.php:40
|
2013 |
-
msgid "How to use special widget"
|
2014 |
-
msgstr ""
|
2015 |
-
|
2016 |
-
#: ../inc/sunrise/views/cheatsheet.php:5
|
2017 |
-
msgid "Shortcode"
|
2018 |
-
msgstr ""
|
2019 |
-
|
2020 |
-
#: ../inc/sunrise/views/cheatsheet.php:6
|
2021 |
-
msgid "Parameters"
|
2022 |
-
msgstr ""
|
2023 |
-
|
2024 |
-
#: ../inc/sunrise/views/cheatsheet.php:7
|
2025 |
-
msgid "Example"
|
2026 |
-
msgstr ""
|
2027 |
-
|
2028 |
-
#: ../inc/sunrise/views/cheatsheet.php:17
|
2029 |
-
msgid "Demo"
|
2030 |
-
msgstr ""
|
2031 |
-
|
2032 |
-
#: ../inc/sunrise/views/cheatsheet.php:49
|
2033 |
-
msgid "Default value"
|
2034 |
-
msgstr ""
|
2035 |
-
|
2036 |
-
#: ../inc/sunrise/views/cheatsheet.php:55
|
2037 |
-
msgid "-- no parameters --"
|
2038 |
-
msgstr ""
|
2039 |
-
|
2040 |
-
#: ../inc/sunrise/views/closetab.php:4
|
2041 |
-
msgid "Save changes"
|
2042 |
-
msgstr ""
|
2043 |
-
|
2044 |
-
#: ../inc/sunrise/views/closetab.php:5
|
2045 |
-
msgid "Saving"
|
2046 |
-
msgstr ""
|
2047 |
-
|
2048 |
-
#: ../inc/sunrise/views/closetab.php:6
|
2049 |
-
msgid "Saved"
|
2050 |
-
msgstr ""
|
2051 |
-
|
2052 |
-
#: ../inc/sunrise/views/closetab.php:7
|
2053 |
-
msgid "Reset all settings to default. Are you sure? This action cannot be undone!"
|
2054 |
-
msgstr ""
|
2055 |
-
|
2056 |
-
#: ../inc/sunrise/views/closetab.php:7
|
2057 |
-
msgid "Restore default settings"
|
2058 |
-
msgstr ""
|
2059 |
-
|
2060 |
-
#: ../inc/sunrise/views/code.php:5
|
2061 |
-
msgid "Insert code"
|
2062 |
-
msgstr ""
|
2063 |
-
|
2064 |
-
#: ../inc/sunrise/views/css.php:3
|
2065 |
-
msgid "You can see the original styles to override it"
|
2066 |
-
msgstr ""
|
2067 |
-
|
2068 |
-
#: ../inc/sunrise/views/css.php:17
|
2069 |
-
msgid "You can use next variables in your custom CSS"
|
2070 |
-
msgstr ""
|
2071 |
-
|
2072 |
-
#: ../inc/sunrise/views/css.php:18
|
2073 |
-
msgid "home url"
|
2074 |
-
msgstr ""
|
2075 |
-
|
2076 |
-
#: ../inc/sunrise/views/css.php:19
|
2077 |
-
msgid "theme url"
|
2078 |
-
msgstr ""
|
2079 |
-
|
2080 |
-
#: ../inc/sunrise/views/css.php:20
|
2081 |
-
msgid "plugin url"
|
2082 |
-
msgstr ""
|
2083 |
-
|
2084 |
-
#: ../inc/sunrise/views/css.php:23
|
2085 |
-
msgid "Toggle fullscreen"
|
2086 |
-
msgstr ""
|
2087 |
-
|
2088 |
-
#: ../inc/sunrise/views/galleries.php:2
|
2089 |
-
msgid "Are you sure that you want to delete this gallery? This action can't be undone!"
|
2090 |
-
msgstr ""
|
2091 |
-
|
2092 |
-
#: ../inc/sunrise/views/galleries.php:2
|
2093 |
-
msgid "Are you sure that you want to delete this image? This action can't be undone!"
|
2094 |
-
msgstr ""
|
2095 |
-
|
2096 |
-
#: ../inc/sunrise/views/galleries.php:4
|
2097 |
-
msgid "Create new gallery"
|
2098 |
-
msgstr ""
|
2099 |
-
|
2100 |
-
#: ../inc/sunrise/views/galleries.php:17
|
2101 |
-
#: ../inc/sunrise/views/galleries.php:73
|
2102 |
-
msgid "Enter gallery name"
|
2103 |
-
msgstr ""
|
2104 |
-
|
2105 |
-
#: ../inc/sunrise/views/galleries.php:19
|
2106 |
-
#: ../inc/sunrise/views/galleries.php:75
|
2107 |
-
msgid "Edit gallery"
|
2108 |
-
msgstr ""
|
2109 |
-
|
2110 |
-
#: ../inc/sunrise/views/galleries.php:20
|
2111 |
-
#: ../inc/sunrise/views/galleries.php:76
|
2112 |
-
msgid "Save & close"
|
2113 |
-
msgstr ""
|
2114 |
-
|
2115 |
-
#: ../inc/sunrise/views/galleries.php:21
|
2116 |
-
#: ../inc/sunrise/views/galleries.php:51
|
2117 |
-
#: ../inc/sunrise/views/galleries.php:77
|
2118 |
-
#: ../inc/sunrise/views/galleries.php:107
|
2119 |
-
msgid "Close"
|
2120 |
-
msgstr ""
|
2121 |
-
|
2122 |
-
#: ../inc/sunrise/views/galleries.php:22
|
2123 |
-
#: ../inc/sunrise/views/galleries.php:42
|
2124 |
-
#: ../inc/sunrise/views/galleries.php:78
|
2125 |
-
#: ../inc/sunrise/views/galleries.php:98
|
2126 |
-
msgid "Delete"
|
2127 |
-
msgstr ""
|
2128 |
-
|
2129 |
-
#: ../inc/sunrise/views/galleries.php:27
|
2130 |
-
#: ../inc/sunrise/views/galleries.php:83
|
2131 |
-
msgid "Add image"
|
2132 |
-
msgstr ""
|
2133 |
-
|
2134 |
-
#: ../inc/sunrise/views/galleries.php:41
|
2135 |
-
#: ../inc/sunrise/views/galleries.php:97
|
2136 |
-
msgid "Edit"
|
2137 |
-
msgstr ""
|
2138 |
-
|
2139 |
-
#: ../inc/sunrise/views/notifications.php:5
|
2140 |
-
msgid "Instructions"
|
2141 |
-
msgstr ""
|
2142 |
-
|
2143 |
-
#: ../inc/sunrise/views/notifications.php:12
|
2144 |
-
#: ../inc/sunrise/views/notifications.php:20
|
2145 |
-
#: ../inc/sunrise/views/notifications.php:28
|
2146 |
-
#: ../inc/sunrise/views/notifications.php:36
|
2147 |
-
msgid "Click to close"
|
2148 |
-
msgstr ""
|
2149 |
-
|
2150 |
-
#: ../inc/sunrise/views/settings.php:12
|
2151 |
-
msgid "For full functionality of this page it is reccomended to enable javascript."
|
2152 |
-
msgstr ""
|
2153 |
-
|
2154 |
-
#: ../inc/sunrise/views/settings.php:13
|
2155 |
-
msgid "Settings reseted successfully"
|
2156 |
-
msgstr ""
|
2157 |
-
|
2158 |
-
#: ../inc/sunrise/views/settings.php:14
|
2159 |
-
msgid "There is already default settings"
|
2160 |
-
msgstr ""
|
2161 |
-
|
2162 |
-
#: ../inc/sunrise/views/settings.php:15
|
2163 |
-
msgid "Settings saved successfully"
|
2164 |
-
msgstr ""
|
2165 |
-
|
2166 |
-
#: ../inc/sunrise/views/settings.php:16
|
2167 |
-
msgid "Settings not saved, because there is no changes"
|
2168 |
-
msgstr ""
|
2169 |
-
|
2170 |
-
#: ../inc/sunrise/views/upload.php:7
|
2171 |
-
msgid "Upload"
|
2172 |
-
msgstr ""
|
2173 |
-
|
2174 |
-
#: ../templates/default-loop.php:15
|
2175 |
-
#: ../templates/single-post.php:18
|
2176 |
-
msgid "Posted"
|
2177 |
-
msgstr ""
|
2178 |
-
|
2179 |
-
#: ../templates/default-loop.php:19
|
2180 |
-
#: ../templates/single-post.php:18
|
2181 |
-
msgid "0 comments"
|
2182 |
-
msgstr ""
|
2183 |
-
|
2184 |
-
#: ../templates/default-loop.php:19
|
2185 |
-
#: ../templates/single-post.php:18
|
2186 |
-
msgid "1 comment"
|
2187 |
-
msgstr ""
|
2188 |
-
|
2189 |
-
#: ../templates/default-loop.php:19
|
2190 |
-
#: ../templates/single-post.php:18
|
2191 |
-
msgid "%n comments"
|
2192 |
-
msgstr ""
|
2193 |
-
|
2194 |
-
#: ../templates/default-loop.php:27
|
2195 |
-
#: ../templates/list-loop.php:18
|
2196 |
-
#: ../templates/single-post.php:30
|
2197 |
-
#: ../templates/teaser-loop.php:22
|
2198 |
-
msgid "Posts not found"
|
2199 |
-
msgstr ""
|
2200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/su.pot
ADDED
@@ -0,0 +1,2549 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Shortcodes Ultimate\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-01 17:50+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-10-01 17:50+0300\n"
|
7 |
+
"Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
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 |
+
"X-Poedit-SearchPath-0: .\n"
|
16 |
+
|
17 |
+
#: inc/example-addon.php:29
|
18 |
+
msgid "Heading 2"
|
19 |
+
msgstr ""
|
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 |
+
|
31 |
+
#: inc/example-addon.php:44
|
32 |
+
msgid "Small"
|
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 |
+
|
45 |
+
#: inc/example-addon.php:51
|
46 |
+
msgid "Heading 2 style"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: inc/example-addon.php:57
|
50 |
+
msgid "Heading 2 text"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: inc/example-addon.php:59
|
54 |
+
msgid "Styled heading 2"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: inc/core/class.assets.php:76
|
58 |
+
msgid "This shortcode doesn't work in live preview. Please insert it into editor and preview on the site."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: inc/core/class.data.php:34
|
62 |
+
msgid "All"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: inc/core/class.data.php:35
|
66 |
+
#: inc/core/class.generator.php:233
|
67 |
+
msgid "Content"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: inc/core/class.data.php:36
|
71 |
+
#: inc/core/class.data.php:642
|
72 |
+
msgid "Box"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: inc/core/class.data.php:37
|
76 |
+
msgid "Media"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: inc/core/class.data.php:38
|
80 |
+
#: inc/core/class.data.php:1413
|
81 |
+
#: inc/core/class.data.php:1503
|
82 |
+
#: inc/core/class.data.php:1603
|
83 |
+
#: inc/core/class.data.php:1609
|
84 |
+
msgid "Gallery"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: inc/core/class.data.php:39
|
88 |
+
msgid "Other"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: inc/core/class.data.php:50
|
92 |
+
msgid "Heading"
|
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 |
+
|
102 |
+
#: inc/core/class.data.php:60
|
103 |
+
msgid "Select heading size"
|
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 |
+
|
132 |
+
#: inc/core/class.data.php:70
|
133 |
+
msgid "Heading text alignment"
|
134 |
+
msgstr ""
|
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 ""
|
223 |
+
|
224 |
+
#: inc/core/class.data.php:78
|
225 |
+
msgid "Heading text"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/core/class.data.php:79
|
229 |
+
msgid "Styled heading"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: inc/core/class.data.php:83
|
233 |
+
msgid "Tabs"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: inc/core/class.data.php:93
|
237 |
+
msgid "Active tab"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: inc/core/class.data.php:94
|
241 |
+
msgid "Select which tab is open by default"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: inc/core/class.data.php:99
|
245 |
+
msgid "Vertical"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: inc/core/class.data.php:100
|
249 |
+
msgid "Show tabs vertically"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: inc/core/class.data.php:109
|
253 |
+
msgid ""
|
254 |
+
"[%prefix_tab title=\"Title 1\"]Content 1[/%prefix_tab]\n"
|
255 |
+
"[%prefix_tab title=\"Title 2\"]Content 2[/%prefix_tab]\n"
|
256 |
+
"[%prefix_tab title=\"Title 3\"]Content 3[/%prefix_tab]"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: inc/core/class.data.php:110
|
260 |
+
msgid "Tabs container"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: inc/core/class.data.php:114
|
264 |
+
msgid "Tab"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: inc/core/class.data.php:119
|
268 |
+
msgid "Tab name"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: inc/core/class.data.php:120
|
272 |
+
#: inc/core/class.data.php:147
|
273 |
+
#: inc/core/class.data.php:616
|
274 |
+
#: inc/core/class.data.php:649
|
275 |
+
#: inc/core/class.data.php:1079
|
276 |
+
msgid "Title"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: inc/core/class.data.php:121
|
280 |
+
msgid "Enter tab name"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: inc/core/class.data.php:126
|
284 |
+
msgid "Disabled"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: inc/core/class.data.php:127
|
288 |
+
msgid "Is this tab disabled"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: inc/core/class.data.php:136
|
292 |
+
msgid "Tab content"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: inc/core/class.data.php:137
|
296 |
+
msgid "Single tab"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: inc/core/class.data.php:141
|
300 |
+
msgid "Spoiler"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: inc/core/class.data.php:146
|
304 |
+
#: inc/core/shortcodes.php:93
|
305 |
+
msgid "Spoiler title"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: inc/core/class.data.php:147
|
309 |
+
msgid "Text in spoiler title"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: inc/core/class.data.php:152
|
313 |
+
msgid "Open"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: inc/core/class.data.php:153
|
317 |
+
msgid "Is spoiler content visible by default"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: inc/core/class.data.php:159
|
321 |
+
msgid "Fancy"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: inc/core/class.data.php:160
|
325 |
+
#: inc/core/class.data.php:359
|
326 |
+
msgid "Simple"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: inc/core/class.data.php:164
|
330 |
+
msgid "Spoiler skin"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: inc/core/class.data.php:172
|
334 |
+
msgid "Hidden content"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: inc/core/class.data.php:172
|
338 |
+
msgid "Spoiler with hidden content"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: inc/core/class.data.php:176
|
342 |
+
msgid "Accordion"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: inc/core/class.data.php:187
|
346 |
+
msgid ""
|
347 |
+
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
348 |
+
"[%prefix_spoiler]Content[/%prefix_spoiler]\n"
|
349 |
+
"[%prefix_spoiler]Content[/%prefix_spoiler]"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: inc/core/class.data.php:188
|
353 |
+
msgid "Accordion with spoilers"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: inc/core/class.data.php:192
|
357 |
+
msgid "Divider"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: inc/core/class.data.php:199
|
361 |
+
msgid "Show TOP link"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: inc/core/class.data.php:200
|
365 |
+
msgid "Show link to top of the page or not"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: inc/core/class.data.php:204
|
369 |
+
#: inc/core/shortcodes.php:128
|
370 |
+
msgid "Go to top"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: inc/core/class.data.php:205
|
374 |
+
msgid "Link text"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: inc/core/class.data.php:205
|
378 |
+
msgid "Text for the GO TOP link"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: inc/core/class.data.php:214
|
382 |
+
msgid "Content divider with optional TOP link"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: inc/core/class.data.php:218
|
386 |
+
msgid "Spacer"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: inc/core/class.data.php:228
|
390 |
+
#: inc/core/class.data.php:905
|
391 |
+
#: inc/core/class.data.php:954
|
392 |
+
#: inc/core/class.data.php:1002
|
393 |
+
#: inc/core/class.data.php:1097
|
394 |
+
#: inc/core/class.data.php:1344
|
395 |
+
#: inc/core/class.data.php:1382
|
396 |
+
#: inc/core/class.data.php:1430
|
397 |
+
#: inc/core/class.data.php:1520
|
398 |
+
#: inc/core/class.data.php:1626
|
399 |
+
msgid "Height"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: inc/core/class.data.php:228
|
403 |
+
msgid "Height of the spacer in pixels"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: inc/core/class.data.php:237
|
407 |
+
msgid "Empty space with adjustable height"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: inc/core/class.data.php:241
|
411 |
+
msgid "Highlight"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: inc/core/class.data.php:249
|
415 |
+
#: inc/core/class.data.php:533
|
416 |
+
#: inc/core/class.data.php:704
|
417 |
+
msgid "Background"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: inc/core/class.data.php:250
|
421 |
+
msgid "Highlighted text background color"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: inc/core/class.data.php:256
|
425 |
+
#: inc/core/class.data.php:539
|
426 |
+
#: inc/core/class.data.php:710
|
427 |
+
msgid "Text color"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: inc/core/class.data.php:256
|
431 |
+
msgid "Highlighted text color"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: inc/core/class.data.php:264
|
435 |
+
#: inc/core/class.data.php:265
|
436 |
+
msgid "Highlighted text"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/core/class.data.php:269
|
440 |
+
#: inc/core/class.data.php:293
|
441 |
+
msgid "Label"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: inc/core/class.data.php:277
|
445 |
+
msgid "Success"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: inc/core/class.data.php:278
|
449 |
+
msgid "Warning"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: inc/core/class.data.php:279
|
453 |
+
msgid "Important"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: inc/core/class.data.php:280
|
457 |
+
msgid "Black"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: inc/core/class.data.php:281
|
461 |
+
msgid "Info"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: inc/core/class.data.php:284
|
465 |
+
msgid "Type"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: inc/core/class.data.php:285
|
469 |
+
msgid "Style of the label"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: inc/core/class.data.php:294
|
473 |
+
msgid "Styled label"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: inc/core/class.data.php:298
|
477 |
+
#: inc/core/class.data.php:320
|
478 |
+
msgid "Quote"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: inc/core/class.data.php:305
|
482 |
+
msgid "Cite"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: inc/core/class.data.php:306
|
486 |
+
msgid "Quote author name"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: inc/core/class.data.php:311
|
490 |
+
msgid "Cite url"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: inc/core/class.data.php:312
|
494 |
+
msgid "Url of the quote author. Leave empty to disable link"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: inc/core/class.data.php:321
|
498 |
+
msgid "Blockquote alternative"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: inc/core/class.data.php:325
|
502 |
+
#: inc/core/class.data.php:344
|
503 |
+
#: inc/core/class.data.php:345
|
504 |
+
msgid "Pullquote"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: inc/core/class.data.php:336
|
508 |
+
msgid "Pullquote alignment (float)"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: inc/core/class.data.php:349
|
512 |
+
#: inc/core/class.data.php:376
|
513 |
+
msgid "Dropcap"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: inc/core/class.data.php:357
|
517 |
+
#: inc/core/class.data.php:518
|
518 |
+
msgid "Flat"
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: inc/core/class.data.php:358
|
522 |
+
#: inc/core/class.data.php:574
|
523 |
+
msgid "Light"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: inc/core/class.data.php:362
|
527 |
+
msgid "Dropcap style preset"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: inc/core/class.data.php:367
|
531 |
+
msgid "Choose dropcap size"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: inc/core/class.data.php:375
|
535 |
+
msgid "D"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: inc/core/class.data.php:380
|
539 |
+
msgid "Frame"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: inc/core/class.data.php:393
|
543 |
+
msgid "Frame alignment"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: inc/core/class.data.php:403
|
547 |
+
msgid "Styled image frame"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: inc/core/class.data.php:407
|
551 |
+
msgid "Row"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: inc/core/class.data.php:418
|
555 |
+
msgid ""
|
556 |
+
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
557 |
+
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]\n"
|
558 |
+
"[%prefix_column size=\"1/3\"]Content[/%prefix_column]"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: inc/core/class.data.php:419
|
562 |
+
msgid "Row for flexible columns"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: inc/core/class.data.php:423
|
566 |
+
msgid "Column"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: inc/core/class.data.php:430
|
570 |
+
msgid "Full width"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: inc/core/class.data.php:431
|
574 |
+
msgid "One half"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: inc/core/class.data.php:432
|
578 |
+
msgid "One third"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: inc/core/class.data.php:433
|
582 |
+
msgid "Two third"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: inc/core/class.data.php:434
|
586 |
+
msgid "One fourth"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: inc/core/class.data.php:435
|
590 |
+
msgid "Three fourth"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: inc/core/class.data.php:436
|
594 |
+
msgid "One fifth"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: inc/core/class.data.php:437
|
598 |
+
msgid "Two fifth"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: inc/core/class.data.php:438
|
602 |
+
msgid "Three fifth"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: inc/core/class.data.php:439
|
606 |
+
msgid "Four fifth"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: inc/core/class.data.php:440
|
610 |
+
msgid "One sixth"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: inc/core/class.data.php:441
|
614 |
+
msgid "Five sixth"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: inc/core/class.data.php:445
|
618 |
+
msgid "Select column width. This width will be calculated depend page width"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: inc/core/class.data.php:453
|
622 |
+
msgid "Column content"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: inc/core/class.data.php:453
|
626 |
+
msgid "Flexible and responsive columns"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: inc/core/class.data.php:457
|
630 |
+
msgid "List"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: inc/core/class.data.php:464
|
634 |
+
msgid "Star"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: inc/core/class.data.php:465
|
638 |
+
msgid "Arrow"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: inc/core/class.data.php:466
|
642 |
+
msgid "Check"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: inc/core/class.data.php:467
|
646 |
+
msgid "Cross"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: inc/core/class.data.php:468
|
650 |
+
msgid "Thumbs up"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: inc/core/class.data.php:469
|
654 |
+
#: inc/core/class.data.php:501
|
655 |
+
msgid "Link"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: inc/core/class.data.php:470
|
659 |
+
msgid "Gear"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: inc/core/class.data.php:471
|
663 |
+
msgid "Time"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: inc/core/class.data.php:472
|
667 |
+
#: inc/core/class.data.php:696
|
668 |
+
msgid "Note"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: inc/core/class.data.php:473
|
672 |
+
msgid "Plus"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: inc/core/class.data.php:474
|
676 |
+
msgid "Guard"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: inc/core/class.data.php:475
|
680 |
+
msgid "Event"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: inc/core/class.data.php:476
|
684 |
+
msgid "Idea"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: inc/core/class.data.php:477
|
688 |
+
#: inc/core/class.generator.php:88
|
689 |
+
#: inc/core/class.shortcodes-ultimate.php:115
|
690 |
+
#: inc/vendor/class.sunrise-framework.php:281
|
691 |
+
msgid "Settings"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: inc/core/class.data.php:478
|
695 |
+
msgid "Twitter"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: inc/core/class.data.php:481
|
699 |
+
msgid "List items style/icons"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: inc/core/class.data.php:490
|
703 |
+
msgid ""
|
704 |
+
"<ul>\n"
|
705 |
+
"<li>List item</li>\n"
|
706 |
+
"<li>List item</li>\n"
|
707 |
+
"<li>List item</li>\n"
|
708 |
+
"</ul>"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: inc/core/class.data.php:490
|
712 |
+
msgid "Styled unordered list"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: inc/core/class.data.php:494
|
716 |
+
msgid "Button"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: inc/core/class.data.php:502
|
720 |
+
msgid "Button link"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: inc/core/class.data.php:507
|
724 |
+
#: inc/core/class.data.php:1163
|
725 |
+
msgid "Same tab"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: inc/core/class.data.php:508
|
729 |
+
#: inc/core/class.data.php:1164
|
730 |
+
msgid "New tab"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: inc/core/class.data.php:511
|
734 |
+
#: inc/core/class.data.php:1167
|
735 |
+
msgid "Target"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: inc/core/class.data.php:512
|
739 |
+
msgid "Button link target"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: inc/core/class.data.php:519
|
743 |
+
#: inc/core/class.data.php:655
|
744 |
+
msgid "Soft"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: inc/core/class.data.php:520
|
748 |
+
#: inc/core/class.data.php:656
|
749 |
+
msgid "Glass"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: inc/core/class.data.php:521
|
753 |
+
#: inc/core/class.data.php:657
|
754 |
+
msgid "Bubbles"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: inc/core/class.data.php:522
|
758 |
+
#: inc/core/class.data.php:658
|
759 |
+
msgid "Noise"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: inc/core/class.data.php:523
|
763 |
+
msgid "Stroked"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: inc/core/class.data.php:524
|
767 |
+
msgid "3D"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: inc/core/class.data.php:527
|
771 |
+
msgid "Button background style preset"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: inc/core/class.data.php:533
|
775 |
+
msgid "Button background color"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: inc/core/class.data.php:540
|
779 |
+
msgid "Button text color"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: inc/core/class.data.php:546
|
783 |
+
msgid "Button size"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: inc/core/class.data.php:551
|
787 |
+
msgid "Fluid"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: inc/core/class.data.php:551
|
791 |
+
msgid "Fluid buttons has 100% width"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: inc/core/class.data.php:556
|
795 |
+
msgid "Centered"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: inc/core/class.data.php:556
|
799 |
+
msgid "Is button centered on the page"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: inc/core/class.data.php:562
|
803 |
+
#: inc/core/class.data.php:681
|
804 |
+
#: inc/core/class.data.php:717
|
805 |
+
msgid "Radius"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: inc/core/class.data.php:563
|
809 |
+
msgid "Radius of button corners. Auto-radius calculation based on button size"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: inc/core/class.data.php:568
|
813 |
+
#: inc/core/class.data.php:622
|
814 |
+
msgid "Icon"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: inc/core/class.data.php:569
|
818 |
+
msgid "You can upload custom icon for this button. Try to begin with <a href=\"http://webdesign.tutsplus.com/freebies/icons-freebies/exclusive-freebie-50-crisp-web-app-icons/\" target=\"_blank\">these free high-quality icons</a>. Download archive, unpack icons and upload in this field"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: inc/core/class.data.php:575
|
822 |
+
msgid "Dark"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: inc/core/class.data.php:578
|
826 |
+
msgid "Text shadow color"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: inc/core/class.data.php:578
|
830 |
+
msgid "Color of button text shadow"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: inc/core/class.data.php:583
|
834 |
+
#: inc/core/class.data.php:1738
|
835 |
+
msgid "None"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: inc/core/class.data.php:584
|
839 |
+
#: inc/core/class.data.php:789
|
840 |
+
msgid "Top"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: inc/core/class.data.php:586
|
844 |
+
#: inc/core/class.data.php:790
|
845 |
+
msgid "Bottom"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: inc/core/class.data.php:588
|
849 |
+
msgid "Top right"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: inc/core/class.data.php:589
|
853 |
+
msgid "Top left"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: inc/core/class.data.php:589
|
857 |
+
msgid "Bottom right"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: inc/core/class.data.php:589
|
861 |
+
msgid "Bottom left"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: inc/core/class.data.php:591
|
865 |
+
msgid "Text shadow position"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: inc/core/class.data.php:591
|
869 |
+
msgid "Position of button text shadow"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: inc/core/class.data.php:595
|
873 |
+
msgid "Description"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: inc/core/class.data.php:596
|
877 |
+
msgid "Small description under button text. This option is incompatible with icon."
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: inc/core/class.data.php:604
|
881 |
+
msgid "Button text"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: inc/core/class.data.php:605
|
885 |
+
msgid "Styled button"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: inc/core/class.data.php:609
|
889 |
+
msgid "Service"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: inc/core/class.data.php:615
|
893 |
+
#: inc/core/shortcodes.php:464
|
894 |
+
msgid "Service title"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: inc/core/class.data.php:617
|
898 |
+
msgid "Service name"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: inc/core/class.data.php:623
|
902 |
+
msgid "You can upload custom icon for this box"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: inc/core/class.data.php:629
|
906 |
+
msgid "Icon size"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: inc/core/class.data.php:630
|
910 |
+
msgid "Size of the uploaded icon in pixels"
|
911 |
+
msgstr ""
|
912 |
+
|
913 |
+
#: inc/core/class.data.php:638
|
914 |
+
msgid "Service description"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: inc/core/class.data.php:638
|
918 |
+
msgid "Service box with title"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: inc/core/class.data.php:648
|
922 |
+
msgid "Box title"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: inc/core/class.data.php:649
|
926 |
+
msgid "Text for the box title"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: inc/core/class.data.php:662
|
930 |
+
msgid "Box style preset"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: inc/core/class.data.php:668
|
934 |
+
msgid "Color"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: inc/core/class.data.php:669
|
938 |
+
msgid "Color for the box title and borders"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: inc/core/class.data.php:675
|
942 |
+
msgid "Title text color"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: inc/core/class.data.php:675
|
946 |
+
msgid "Color for the box title text"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: inc/core/class.data.php:682
|
950 |
+
msgid "Box corners radius"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: inc/core/class.data.php:691
|
954 |
+
msgid "Box content"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: inc/core/class.data.php:692
|
958 |
+
msgid "Colored box with caption"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: inc/core/class.data.php:704
|
962 |
+
msgid "Note background color"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: inc/core/class.data.php:711
|
966 |
+
msgid "Note text color"
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: inc/core/class.data.php:717
|
970 |
+
msgid "Note corners radius"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: inc/core/class.data.php:725
|
974 |
+
msgid "Note text"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: inc/core/class.data.php:726
|
978 |
+
msgid "Colored box"
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#: inc/core/class.data.php:730
|
982 |
+
msgid "Lightbox"
|
983 |
+
msgstr ""
|
984 |
+
|
985 |
+
#: inc/core/class.data.php:737
|
986 |
+
msgid "Iframe"
|
987 |
+
msgstr ""
|
988 |
+
|
989 |
+
#: inc/core/class.data.php:738
|
990 |
+
msgid "Image"
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
#: inc/core/class.data.php:739
|
994 |
+
msgid "Inline (html content)"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: inc/core/class.data.php:742
|
998 |
+
msgid "Content type"
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: inc/core/class.data.php:743
|
1002 |
+
msgid "Select type of the lightbox window content"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: inc/core/class.data.php:747
|
1006 |
+
msgid "Content source"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: inc/core/class.data.php:748
|
1010 |
+
msgid "Insert here URL or CSS selector. Use URL for Iframe and Image content types. Use CSS selector for Inline content type.<br />Example values:<br /><b%value>http://www.youtube.com/watch?v=NbE8INOjTKM</b> - YouTube video (iframe)<br /><b%value>http://example.com/wp-content/uploads/image.jpg</b> - uploaded image (image)<br /><b%value>http://example.com/</b> - any web page (iframe)<br /><b%value>#contact-form</b> - any HTML content (inline)"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: inc/core/class.data.php:757
|
1014 |
+
msgid "[%prefix_button] Click Here to Watch the Video [/%prefix_button]"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: inc/core/class.data.php:758
|
1018 |
+
msgid "Lightbox window with custom content"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: inc/core/class.data.php:762
|
1022 |
+
msgid "Tooltip"
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: inc/core/class.data.php:769
|
1026 |
+
msgid "Basic: Light"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: inc/core/class.data.php:770
|
1030 |
+
msgid "Basic: Dark"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: inc/core/class.data.php:771
|
1034 |
+
msgid "Basic: Yellow"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: inc/core/class.data.php:772
|
1038 |
+
msgid "Basic: Green"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: inc/core/class.data.php:773
|
1042 |
+
msgid "Basic: Red"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: inc/core/class.data.php:774
|
1046 |
+
msgid "Basic: Blue"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: inc/core/class.data.php:775
|
1050 |
+
msgid "Youtube"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: inc/core/class.data.php:776
|
1054 |
+
msgid "Tipsy"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: inc/core/class.data.php:777
|
1058 |
+
msgid "Bootstrap"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: inc/core/class.data.php:778
|
1062 |
+
msgid "jTools"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: inc/core/class.data.php:779
|
1066 |
+
msgid "Tipped"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: inc/core/class.data.php:780
|
1070 |
+
msgid "Cluetip"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: inc/core/class.data.php:784
|
1074 |
+
msgid "Tooltip window style"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: inc/core/class.data.php:795
|
1078 |
+
msgid "Position"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: inc/core/class.data.php:796
|
1082 |
+
msgid "Tooltip position"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: inc/core/class.data.php:801
|
1086 |
+
msgid "Shadow"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: inc/core/class.data.php:802
|
1090 |
+
msgid "Add shadow to tooltip. This option is only works with basic styes, e.g. blue, green etc."
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: inc/core/class.data.php:807
|
1094 |
+
msgid "Rounded corners"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: inc/core/class.data.php:808
|
1098 |
+
msgid "Use rounded for tooltip. This option is only works with basic styes, e.g. blue, green etc."
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: inc/core/class.data.php:822
|
1102 |
+
msgid "Font size"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: inc/core/class.data.php:823
|
1106 |
+
msgid "Tooltip font size"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: inc/core/class.data.php:827
|
1110 |
+
msgid "Tooltip title"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: inc/core/class.data.php:828
|
1114 |
+
msgid "Enter title for tooltip window. Leave this field empty to hide the title"
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: inc/core/class.data.php:831
|
1118 |
+
#: inc/core/shortcodes.php:573
|
1119 |
+
msgid "Tooltip text"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: inc/core/class.data.php:832
|
1123 |
+
msgid "Tooltip content"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: inc/core/class.data.php:833
|
1127 |
+
msgid "Enter tooltip content here"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: inc/core/class.data.php:838
|
1131 |
+
msgid "Show and hide on mouse hover"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: inc/core/class.data.php:839
|
1135 |
+
msgid "Show and hide by mouse click"
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: inc/core/class.data.php:840
|
1139 |
+
msgid "Always visible"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: inc/core/class.data.php:843
|
1143 |
+
msgid "Behavior"
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: inc/core/class.data.php:844
|
1147 |
+
msgid "Select tooltip behavior"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: inc/core/class.data.php:849
|
1151 |
+
msgid "Close button"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: inc/core/class.data.php:850
|
1155 |
+
msgid "Show close button"
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: inc/core/class.data.php:859
|
1159 |
+
msgid "[%prefix_button] Hover me to open tooltip [/%prefix_button]"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: inc/core/class.data.php:860
|
1163 |
+
msgid "Tooltip window with custom content"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: inc/core/class.data.php:864
|
1167 |
+
msgid "Private"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: inc/core/class.data.php:875
|
1171 |
+
msgid "Private note text"
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: inc/core/class.data.php:876
|
1175 |
+
msgid "Private note for post authors"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: inc/core/class.data.php:880
|
1179 |
+
msgid "YouTube"
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: inc/core/class.data.php:887
|
1183 |
+
#: inc/core/class.data.php:937
|
1184 |
+
#: inc/core/class.data.php:985
|
1185 |
+
#: inc/core/class.data.php:1236
|
1186 |
+
#: inc/core/class.data.php:1326
|
1187 |
+
msgid "Url"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: inc/core/class.data.php:888
|
1191 |
+
msgid "Url of YouTube page with video. Ex: http://youtube.com/watch?v=XXXXXX"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: inc/core/class.data.php:896
|
1195 |
+
#: inc/core/class.data.php:945
|
1196 |
+
#: inc/core/class.data.php:993
|
1197 |
+
#: inc/core/class.data.php:1034
|
1198 |
+
#: inc/core/class.data.php:1088
|
1199 |
+
#: inc/core/class.data.php:1335
|
1200 |
+
#: inc/core/class.data.php:1373
|
1201 |
+
#: inc/core/class.data.php:1422
|
1202 |
+
#: inc/core/class.data.php:1512
|
1203 |
+
#: inc/core/class.data.php:1618
|
1204 |
+
msgid "Width"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: inc/core/class.data.php:897
|
1208 |
+
#: inc/core/class.data.php:946
|
1209 |
+
#: inc/core/class.data.php:994
|
1210 |
+
#: inc/core/class.data.php:1089
|
1211 |
+
msgid "Player width"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: inc/core/class.data.php:906
|
1215 |
+
#: inc/core/class.data.php:955
|
1216 |
+
#: inc/core/class.data.php:1003
|
1217 |
+
#: inc/core/class.data.php:1098
|
1218 |
+
msgid "Player height"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: inc/core/class.data.php:911
|
1222 |
+
#: inc/core/class.data.php:960
|
1223 |
+
#: inc/core/class.data.php:1008
|
1224 |
+
#: inc/core/class.data.php:1350
|
1225 |
+
#: inc/core/class.data.php:1388
|
1226 |
+
#: inc/core/class.data.php:1435
|
1227 |
+
#: inc/core/class.data.php:1525
|
1228 |
+
msgid "Responsive"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: inc/core/class.data.php:912
|
1232 |
+
#: inc/core/class.data.php:961
|
1233 |
+
#: inc/core/class.data.php:1009
|
1234 |
+
msgid "Ignore width and height parameters and make player responsive"
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: inc/core/class.data.php:917
|
1238 |
+
#: inc/core/class.data.php:966
|
1239 |
+
#: inc/core/class.data.php:1040
|
1240 |
+
#: inc/core/class.data.php:1109
|
1241 |
+
#: inc/core/class.data.php:1470
|
1242 |
+
#: inc/core/class.data.php:1576
|
1243 |
+
msgid "Autoplay"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: inc/core/class.data.php:918
|
1247 |
+
#: inc/core/class.data.php:967
|
1248 |
+
msgid "Play video automatically when page is loaded"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: inc/core/class.data.php:926
|
1252 |
+
msgid "YouTube video"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: inc/core/class.data.php:930
|
1256 |
+
msgid "Vimeo"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: inc/core/class.data.php:937
|
1260 |
+
msgid "Url of Vimeo page with video"
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: inc/core/class.data.php:975
|
1264 |
+
msgid "Vimeo video"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: inc/core/class.data.php:979
|
1268 |
+
msgid "Screenr"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: inc/core/class.data.php:985
|
1272 |
+
msgid "Url of Screenr page with video"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: inc/core/class.data.php:1017
|
1276 |
+
msgid "Screenr video"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: inc/core/class.data.php:1021
|
1280 |
+
msgid "Audio"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: inc/core/class.data.php:1028
|
1284 |
+
#: inc/core/class.data.php:1067
|
1285 |
+
msgid "File"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: inc/core/class.data.php:1029
|
1289 |
+
msgid "Audio file url. Supported formats: mp3, ogg"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: inc/core/class.data.php:1035
|
1293 |
+
msgid "Player width. You can specify width in percents and player will be responsive. Example values: <b%value>200px</b>, <b%value>100%</b>"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: inc/core/class.data.php:1041
|
1297 |
+
#: inc/core/class.data.php:1110
|
1298 |
+
msgid "Play file automatically when page is loaded"
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: inc/core/class.data.php:1046
|
1302 |
+
#: inc/core/class.data.php:1115
|
1303 |
+
msgid "Loop"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: inc/core/class.data.php:1047
|
1307 |
+
#: inc/core/class.data.php:1116
|
1308 |
+
msgid "Repeat when playback is ended"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: inc/core/class.data.php:1056
|
1312 |
+
msgid "Custom audio player"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: inc/core/class.data.php:1060
|
1316 |
+
msgid "Video"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: inc/core/class.data.php:1068
|
1320 |
+
msgid "Url to mp4/flv video-file"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: inc/core/class.data.php:1073
|
1324 |
+
msgid "Poster"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: inc/core/class.data.php:1074
|
1328 |
+
msgid "Url to poster image, that will be shown before playback"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: inc/core/class.data.php:1080
|
1332 |
+
msgid "Player title"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: inc/core/class.data.php:1103
|
1336 |
+
msgid "Controls"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: inc/core/class.data.php:1104
|
1340 |
+
msgid "Show player controls (play/pause etc.) or not"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: inc/core/class.data.php:1125
|
1344 |
+
msgid "Custom video player"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: inc/core/class.data.php:1129
|
1348 |
+
msgid "Table"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: inc/core/class.data.php:1136
|
1352 |
+
msgid "CSV file"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: inc/core/class.data.php:1137
|
1356 |
+
msgid "Upload CSV file if you want to create HTML-table from file"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: inc/core/class.data.php:1146
|
1360 |
+
msgid ""
|
1361 |
+
"<table>\n"
|
1362 |
+
"<tr>\n"
|
1363 |
+
"\t<td>Table</td>\n"
|
1364 |
+
"\t<td>Table</td>\n"
|
1365 |
+
"</tr>\n"
|
1366 |
+
"<tr>\n"
|
1367 |
+
"\t<td>Table</td>\n"
|
1368 |
+
"\t<td>Table</td>\n"
|
1369 |
+
"</tr>\n"
|
1370 |
+
"</table>"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: inc/core/class.data.php:1147
|
1374 |
+
msgid "Styled table from HTML or CSV file"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: inc/core/class.data.php:1151
|
1378 |
+
msgid "Permalink"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: inc/core/class.data.php:1157
|
1382 |
+
msgid "ID"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: inc/core/class.data.php:1158
|
1386 |
+
msgid "Post or page ID"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: inc/core/class.data.php:1168
|
1390 |
+
msgid "Link target. blank - link will be opened in new window/tab"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: inc/core/class.data.php:1178
|
1394 |
+
msgid "Permalink to specified post/page"
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: inc/core/class.data.php:1182
|
1398 |
+
msgid "Members"
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: inc/core/class.data.php:1187
|
1402 |
+
#: inc/core/shortcodes.php:872
|
1403 |
+
msgid "This content is for registered users only. Please %login%."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: inc/core/class.data.php:1188
|
1407 |
+
msgid "Message"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: inc/core/class.data.php:1188
|
1411 |
+
msgid "Message for not logged users"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: inc/core/class.data.php:1193
|
1415 |
+
msgid "Box color"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: inc/core/class.data.php:1193
|
1419 |
+
msgid "This color will applied only to box for not logged users"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: inc/core/class.data.php:1196
|
1423 |
+
#: inc/core/shortcodes.php:875
|
1424 |
+
msgid "login"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: inc/core/class.data.php:1197
|
1428 |
+
msgid "Login link text"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: inc/core/class.data.php:1197
|
1432 |
+
msgid "Text for the login link"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: inc/core/class.data.php:1201
|
1436 |
+
msgid "Login link url"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: inc/core/class.data.php:1210
|
1440 |
+
msgid "Content for logged members"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: inc/core/class.data.php:1211
|
1444 |
+
msgid "Content for logged in members only"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: inc/core/class.data.php:1215
|
1448 |
+
msgid "Guests"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: inc/core/class.data.php:1225
|
1452 |
+
msgid "Content for guests"
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: inc/core/class.data.php:1225
|
1456 |
+
msgid "Content for guests only"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: inc/core/class.data.php:1229
|
1460 |
+
msgid "RSS Feed"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: inc/core/class.data.php:1237
|
1464 |
+
msgid "Url to RSS-feed"
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: inc/core/class.data.php:1242
|
1468 |
+
msgid "Limit"
|
1469 |
+
msgstr ""
|
1470 |
+
|
1471 |
+
#: inc/core/class.data.php:1242
|
1472 |
+
msgid "Number of items to show"
|
1473 |
+
msgstr ""
|
1474 |
+
|
1475 |
+
#: inc/core/class.data.php:1250
|
1476 |
+
msgid "Feed grabber"
|
1477 |
+
msgstr ""
|
1478 |
+
|
1479 |
+
#: inc/core/class.data.php:1254
|
1480 |
+
msgid "Menu"
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: inc/core/class.data.php:1261
|
1484 |
+
msgid "Menu name"
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: inc/core/class.data.php:1261
|
1488 |
+
msgid "Custom menu name. Ex: Main menu"
|
1489 |
+
msgstr ""
|
1490 |
+
|
1491 |
+
#: inc/core/class.data.php:1269
|
1492 |
+
msgid "Custom menu by name"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: inc/core/class.data.php:1273
|
1496 |
+
msgid "Sub pages"
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: inc/core/class.data.php:1280
|
1500 |
+
#: inc/core/class.data.php:1306
|
1501 |
+
msgid "Depth"
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: inc/core/class.data.php:1281
|
1505 |
+
msgid "Max depth level of children pages"
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: inc/core/class.data.php:1286
|
1509 |
+
msgid "Parent ID"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: inc/core/class.data.php:1287
|
1513 |
+
msgid "ID of the parent page. Leave blank to use current page"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: inc/core/class.data.php:1295
|
1517 |
+
msgid "List of sub pages"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: inc/core/class.data.php:1299
|
1521 |
+
msgid "Siblings"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: inc/core/class.data.php:1307
|
1525 |
+
msgid "Max depth level"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: inc/core/class.data.php:1315
|
1529 |
+
msgid "List of cureent page siblings"
|
1530 |
+
msgstr ""
|
1531 |
+
|
1532 |
+
#: inc/core/class.data.php:1319
|
1533 |
+
msgid "Document"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: inc/core/class.data.php:1327
|
1537 |
+
msgid "Url to uploaded document. Supported formats: doc, xls, pdf etc."
|
1538 |
+
msgstr ""
|
1539 |
+
|
1540 |
+
#: inc/core/class.data.php:1336
|
1541 |
+
msgid "Viewer width"
|
1542 |
+
msgstr ""
|
1543 |
+
|
1544 |
+
#: inc/core/class.data.php:1345
|
1545 |
+
msgid "Viewer height"
|
1546 |
+
msgstr ""
|
1547 |
+
|
1548 |
+
#: inc/core/class.data.php:1351
|
1549 |
+
msgid "Ignore width and height parameters and make viewer responsive"
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: inc/core/class.data.php:1359
|
1553 |
+
msgid "Document viewer by Google"
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: inc/core/class.data.php:1363
|
1557 |
+
msgid "Gmap"
|
1558 |
+
msgstr ""
|
1559 |
+
|
1560 |
+
#: inc/core/class.data.php:1374
|
1561 |
+
msgid "Map width"
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: inc/core/class.data.php:1383
|
1565 |
+
msgid "Map height"
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: inc/core/class.data.php:1389
|
1569 |
+
msgid "Ignore width and height parameters and make map responsive"
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: inc/core/class.data.php:1394
|
1573 |
+
msgid "Marker"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: inc/core/class.data.php:1395
|
1577 |
+
msgid "Address for the marker. You can type it in any language"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: inc/core/class.data.php:1403
|
1581 |
+
msgid "Maps by Google"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: inc/core/class.data.php:1407
|
1585 |
+
msgid "Slider"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: inc/core/class.data.php:1414
|
1589 |
+
msgid "Choose source gallery, that will be used for this slider"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: inc/core/class.data.php:1422
|
1593 |
+
msgid "Slider width (in pixels)"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: inc/core/class.data.php:1430
|
1597 |
+
msgid "Slider height (in pixels)"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: inc/core/class.data.php:1436
|
1601 |
+
msgid "Ignore width and height parameters and make slider responsive"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: inc/core/class.data.php:1441
|
1605 |
+
#: inc/core/class.data.php:1547
|
1606 |
+
#: inc/core/class.data.php:1636
|
1607 |
+
msgid "Show titles"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: inc/core/class.data.php:1441
|
1611 |
+
msgid "Display slide titles"
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: inc/core/class.data.php:1446
|
1615 |
+
msgid "Is slider centered on the page"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: inc/core/class.data.php:1451
|
1619 |
+
#: inc/core/class.data.php:1557
|
1620 |
+
msgid "Arrows"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: inc/core/class.data.php:1451
|
1624 |
+
#: inc/core/class.data.php:1557
|
1625 |
+
msgid "Show left and right arrows"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: inc/core/class.data.php:1456
|
1629 |
+
#: inc/core/class.data.php:1562
|
1630 |
+
msgid "Pagination"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: inc/core/class.data.php:1457
|
1634 |
+
#: inc/core/class.data.php:1563
|
1635 |
+
msgid "Show pagination"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: inc/core/class.data.php:1461
|
1639 |
+
#: inc/core/class.data.php:1567
|
1640 |
+
msgid "Mouse wheel control"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: inc/core/class.data.php:1462
|
1644 |
+
msgid "Allow to change slides with mouse wheel"
|
1645 |
+
msgstr ""
|
1646 |
+
|
1647 |
+
#: inc/core/class.data.php:1471
|
1648 |
+
msgid "Choose interval between slide animations. Set to 0 to disable autoplay"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: inc/core/class.data.php:1479
|
1652 |
+
#: inc/core/class.data.php:1585
|
1653 |
+
msgid "Speed"
|
1654 |
+
msgstr ""
|
1655 |
+
|
1656 |
+
#: inc/core/class.data.php:1479
|
1657 |
+
#: inc/core/class.data.php:1585
|
1658 |
+
msgid "Specify animation speed"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: inc/core/class.data.php:1484
|
1662 |
+
#: inc/core/class.data.php:1590
|
1663 |
+
#: inc/core/class.data.php:1642
|
1664 |
+
msgid "Links target"
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
+
#: inc/core/class.data.php:1485
|
1668 |
+
msgid "Open slides links in new window/tab"
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: inc/core/class.data.php:1493
|
1672 |
+
msgid "Customizable image slider"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: inc/core/class.data.php:1497
|
1676 |
+
msgid "Carousel"
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: inc/core/class.data.php:1504
|
1680 |
+
msgid "Choose source gallery, that will be used for this carousel"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: inc/core/class.data.php:1512
|
1684 |
+
msgid "Carousel width (in pixels)"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: inc/core/class.data.php:1520
|
1688 |
+
msgid "Carousel height (in pixels)"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: inc/core/class.data.php:1526
|
1692 |
+
msgid "Ignore width and height parameters and make carousel responsive"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: inc/core/class.data.php:1533
|
1696 |
+
msgid "Items to show"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: inc/core/class.data.php:1534
|
1700 |
+
msgid "How much carousel items is visible"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: inc/core/class.data.php:1541
|
1704 |
+
msgid "Scroll number"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: inc/core/class.data.php:1542
|
1708 |
+
msgid "How much items are scrolled in one transition"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: inc/core/class.data.php:1547
|
1712 |
+
msgid "Display titles for each item"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: inc/core/class.data.php:1552
|
1716 |
+
msgid "Is carousel centered on the page"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: inc/core/class.data.php:1568
|
1720 |
+
msgid "Allow to rotate carousel with mouse wheel"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: inc/core/class.data.php:1577
|
1724 |
+
msgid "Choose interval between auto animations. Set to 0 to disable autoplay"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: inc/core/class.data.php:1591
|
1728 |
+
msgid "Open carousel links in new window/tab"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: inc/core/class.data.php:1599
|
1732 |
+
msgid "Customizable image carousel"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: inc/core/class.data.php:1610
|
1736 |
+
msgid "Choose source gallery, that will be used for this shortcode"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: inc/core/class.data.php:1618
|
1740 |
+
msgid "Single item width (in pixels)"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: inc/core/class.data.php:1626
|
1744 |
+
msgid "Single item height (in pixels)"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: inc/core/class.data.php:1631
|
1748 |
+
msgid "Never"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: inc/core/class.data.php:1632
|
1752 |
+
msgid "On mouse over"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: inc/core/class.data.php:1633
|
1756 |
+
msgid "Always"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: inc/core/class.data.php:1637
|
1760 |
+
msgid "Title display mode"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: inc/core/class.data.php:1642
|
1764 |
+
msgid "Open links in new window/tab"
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: inc/core/class.data.php:1650
|
1768 |
+
msgid "Customizable image gallery"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: inc/core/class.data.php:1654
|
1772 |
+
msgid "Posts"
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: inc/core/class.data.php:1659
|
1776 |
+
msgid "Template"
|
1777 |
+
msgstr ""
|
1778 |
+
|
1779 |
+
#: inc/core/class.data.php:1660
|
1780 |
+
msgid "<b>Do not change this field value if you do not understand description below.</b><br/>Relative path to the template file. Default templates is placed under the plugin directory (templates folder). You can copy it under your theme directory and modify as you want. You can use following default templates that already available in the plugin directory:<br/><b%value>templates/default-loop.php</b> - posts loop<br/><b%value>templates/teaser-loop.php</b> - posts loop with thumbnail and title<br/><b%value>templates/single-post.php</b> - single post template<br/><b%value>templates/list-loop.php</b> - unordered list with posts titles"
|
1781 |
+
msgstr ""
|
1782 |
+
|
1783 |
+
#: inc/core/class.data.php:1664
|
1784 |
+
msgid "Post ID's"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: inc/core/class.data.php:1665
|
1788 |
+
msgid "Enter comma separated ID's of the posts that you want to show"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: inc/core/class.data.php:1673
|
1792 |
+
msgid "Posts per page"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: inc/core/class.data.php:1674
|
1796 |
+
msgid "Specify number of posts that you want to show. Enter -1 to get all posts"
|
1797 |
+
msgstr ""
|
1798 |
+
|
1799 |
+
#: inc/core/class.data.php:1681
|
1800 |
+
msgid "Post types"
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: inc/core/class.data.php:1682
|
1804 |
+
msgid "Select post types. Hold Ctrl key to select multiple post types"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: inc/core/class.data.php:1688
|
1808 |
+
msgid "Taxonomy"
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: inc/core/class.data.php:1689
|
1812 |
+
msgid "Select taxonomy to show posts from"
|
1813 |
+
msgstr ""
|
1814 |
+
|
1815 |
+
#: inc/core/class.data.php:1696
|
1816 |
+
msgid "Terms"
|
1817 |
+
msgstr ""
|
1818 |
+
|
1819 |
+
#: inc/core/class.data.php:1696
|
1820 |
+
msgid "Select terms to show posts from"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
+
#: inc/core/class.data.php:1701
|
1824 |
+
msgid "Taxonomy term operator"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: inc/core/class.data.php:1702
|
1828 |
+
msgid "IN - posts that have any of selected categories terms<br/>NOT IN - posts that is does not have any of selected terms<br/>AND - posts that have all selected terms"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: inc/core/class.data.php:1709
|
1832 |
+
msgid "Authors"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: inc/core/class.data.php:1710
|
1836 |
+
msgid "Choose the authors whose posts you want to show"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: inc/core/class.data.php:1714
|
1840 |
+
msgid "Meta key"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: inc/core/class.data.php:1715
|
1844 |
+
msgid "Enter meta key name to show posts that have this key"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: inc/core/class.data.php:1722
|
1848 |
+
msgid "Offset"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: inc/core/class.data.php:1723
|
1852 |
+
msgid "Specify offset to start posts loop not from first post"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: inc/core/class.data.php:1728
|
1856 |
+
msgid "Descending"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: inc/core/class.data.php:1729
|
1860 |
+
msgid "Ascending"
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: inc/core/class.data.php:1732
|
1864 |
+
msgid "Order"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: inc/core/class.data.php:1733
|
1868 |
+
msgid "Posts order"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: inc/core/class.data.php:1739
|
1872 |
+
msgid "Post ID"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: inc/core/class.data.php:1740
|
1876 |
+
msgid "Post author"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: inc/core/class.data.php:1741
|
1880 |
+
msgid "Post title"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: inc/core/class.data.php:1742
|
1884 |
+
msgid "Post slug"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: inc/core/class.data.php:1743
|
1888 |
+
msgid "Date"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: inc/core/class.data.php:1743
|
1892 |
+
msgid "Last modified date"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: inc/core/class.data.php:1744
|
1896 |
+
#: inc/core/class.data.php:1754
|
1897 |
+
msgid "Post parent"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: inc/core/class.data.php:1745
|
1901 |
+
msgid "Random"
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: inc/core/class.data.php:1745
|
1905 |
+
msgid "Comments number"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: inc/core/class.data.php:1746
|
1909 |
+
msgid "Menu order"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: inc/core/class.data.php:1746
|
1913 |
+
msgid "Meta key values"
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: inc/core/class.data.php:1749
|
1917 |
+
msgid "Order by"
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: inc/core/class.data.php:1750
|
1921 |
+
msgid "Order posts by"
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: inc/core/class.data.php:1755
|
1925 |
+
msgid "Show childrens of entered post (enter post ID)"
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: inc/core/class.data.php:1760
|
1929 |
+
msgid "Published"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: inc/core/class.data.php:1761
|
1933 |
+
msgid "Pending"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: inc/core/class.data.php:1762
|
1937 |
+
msgid "Draft"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: inc/core/class.data.php:1763
|
1941 |
+
msgid "Auto-draft"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: inc/core/class.data.php:1764
|
1945 |
+
msgid "Future post"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: inc/core/class.data.php:1765
|
1949 |
+
msgid "Private post"
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#: inc/core/class.data.php:1766
|
1953 |
+
msgid "Inherit"
|
1954 |
+
msgstr ""
|
1955 |
+
|
1956 |
+
#: inc/core/class.data.php:1767
|
1957 |
+
msgid "Trashed"
|
1958 |
+
msgstr ""
|
1959 |
+
|
1960 |
+
#: inc/core/class.data.php:1768
|
1961 |
+
msgid "Any"
|
1962 |
+
msgstr ""
|
1963 |
+
|
1964 |
+
#: inc/core/class.data.php:1771
|
1965 |
+
msgid "Post status"
|
1966 |
+
msgstr ""
|
1967 |
+
|
1968 |
+
#: inc/core/class.data.php:1772
|
1969 |
+
msgid "Show only posts with selected status"
|
1970 |
+
msgstr ""
|
1971 |
+
|
1972 |
+
#: inc/core/class.data.php:1777
|
1973 |
+
msgid "Ignore sticky"
|
1974 |
+
msgstr ""
|
1975 |
+
|
1976 |
+
#: inc/core/class.data.php:1778
|
1977 |
+
msgid "Select Yes to ignore posts that is sticked"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: inc/core/class.data.php:1782
|
1981 |
+
msgid "Custom posts query with customizable template"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: inc/core/class.generator.php:44
|
1985 |
+
#: inc/core/class.generator.php:147
|
1986 |
+
msgid "Insert shortcode"
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: inc/core/class.generator.php:88
|
1990 |
+
msgid "Plugin settings"
|
1991 |
+
msgstr ""
|
1992 |
+
|
1993 |
+
#: inc/core/class.generator.php:89
|
1994 |
+
msgid "Plugin homepage"
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
#: inc/core/class.generator.php:90
|
1998 |
+
msgid "Support forums"
|
1999 |
+
msgstr ""
|
2000 |
+
|
2001 |
+
#: inc/core/class.generator.php:97
|
2002 |
+
msgid "Search for shortcodes"
|
2003 |
+
msgstr ""
|
2004 |
+
|
2005 |
+
#: inc/core/class.generator.php:99
|
2006 |
+
msgid "Filter by type"
|
2007 |
+
msgstr ""
|
2008 |
+
|
2009 |
+
#: inc/core/class.generator.php:135
|
2010 |
+
msgid "Shortcode not specified"
|
2011 |
+
msgstr ""
|
2012 |
+
|
2013 |
+
#: inc/core/class.generator.php:148
|
2014 |
+
msgid "Live preview"
|
2015 |
+
msgstr ""
|
2016 |
+
|
2017 |
+
#: inc/core/class.generator.php:149
|
2018 |
+
msgid "Close window"
|
2019 |
+
msgstr ""
|
2020 |
+
|
2021 |
+
#: inc/core/class.generator.php:153
|
2022 |
+
msgid "Click to return to the shortcodes list"
|
2023 |
+
msgstr ""
|
2024 |
+
|
2025 |
+
#: inc/core/class.generator.php:153
|
2026 |
+
msgid "All shortcodes"
|
2027 |
+
msgstr ""
|
2028 |
+
|
2029 |
+
#: inc/core/class.generator.php:186
|
2030 |
+
msgid "Yes"
|
2031 |
+
msgstr ""
|
2032 |
+
|
2033 |
+
#: inc/core/class.generator.php:186
|
2034 |
+
msgid "No"
|
2035 |
+
msgstr ""
|
2036 |
+
|
2037 |
+
#: inc/core/class.generator.php:190
|
2038 |
+
msgid "Max upload file size"
|
2039 |
+
msgstr ""
|
2040 |
+
|
2041 |
+
#: inc/core/class.generator.php:190
|
2042 |
+
msgid "Mb"
|
2043 |
+
msgstr ""
|
2044 |
+
|
2045 |
+
#: inc/core/class.generator.php:190
|
2046 |
+
msgid "How to increase"
|
2047 |
+
msgstr ""
|
2048 |
+
|
2049 |
+
#: inc/core/class.generator.php:201
|
2050 |
+
msgid "Please wait"
|
2051 |
+
msgstr ""
|
2052 |
+
|
2053 |
+
#: inc/core/class.generator.php:208
|
2054 |
+
#: inc/core/class.generator.php:296
|
2055 |
+
msgid "Untitled gallery"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: inc/core/class.generator.php:214
|
2059 |
+
#: inc/core/class.generator.php:302
|
2060 |
+
msgid "Galleries not found"
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: inc/core/class.generator.php:215
|
2064 |
+
msgid "Manage galleries"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: inc/core/class.generator.php:215
|
2068 |
+
msgid "Reload galleries"
|
2069 |
+
msgstr ""
|
2070 |
+
|
2071 |
+
#: inc/core/class.generator.php:226
|
2072 |
+
msgid "Click to set this value"
|
2073 |
+
msgstr ""
|
2074 |
+
|
2075 |
+
#: inc/core/class.generator.php:250
|
2076 |
+
msgid "Preview"
|
2077 |
+
msgstr ""
|
2078 |
+
|
2079 |
+
#: inc/core/class.generator.php:311
|
2080 |
+
msgid "Access denied"
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: inc/core/class.requirements.php:35
|
2084 |
+
#, php-format
|
2085 |
+
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>"
|
2086 |
+
msgstr ""
|
2087 |
+
|
2088 |
+
#: inc/core/class.requirements.php:36
|
2089 |
+
#, php-format
|
2090 |
+
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>"
|
2091 |
+
msgstr ""
|
2092 |
+
|
2093 |
+
#: inc/core/class.shortcodes-ultimate.php:25
|
2094 |
+
#: inc/core/class.widget.php:40
|
2095 |
+
#: inc/core/class.widget.php:82
|
2096 |
+
msgid "Shortcodes Ultimate"
|
2097 |
+
msgstr ""
|
2098 |
+
|
2099 |
+
#: inc/core/class.shortcodes-ultimate.php:26
|
2100 |
+
#: inc/core/class.vote.php:37
|
2101 |
+
msgid "Vladimir Anokhin"
|
2102 |
+
msgstr ""
|
2103 |
+
|
2104 |
+
#: inc/core/class.shortcodes-ultimate.php:27
|
2105 |
+
msgid "Supercharge your WordPress theme with mega pack of shortcodes"
|
2106 |
+
msgstr ""
|
2107 |
+
|
2108 |
+
#: inc/core/class.shortcodes-ultimate.php:88
|
2109 |
+
msgid "Where to start?"
|
2110 |
+
msgstr ""
|
2111 |
+
|
2112 |
+
#: inc/core/class.shortcodes-ultimate.php:100
|
2113 |
+
#: inc/views/about.php:4
|
2114 |
+
msgid "Project homepage"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: inc/core/class.shortcodes-ultimate.php:101
|
2118 |
+
#: inc/views/about.php:10
|
2119 |
+
msgid "Support forum"
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
+
#: inc/core/class.shortcodes-ultimate.php:102
|
2123 |
+
#: inc/views/about.php:12
|
2124 |
+
msgid "Changelog"
|
2125 |
+
msgstr ""
|
2126 |
+
|
2127 |
+
#: inc/core/class.shortcodes-ultimate.php:112
|
2128 |
+
msgid "About"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: inc/core/class.shortcodes-ultimate.php:117
|
2132 |
+
msgid "Custom formatting"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: inc/core/class.shortcodes-ultimate.php:118
|
2136 |
+
msgid "Disable this option if you have some problems with other plugins or content formatting"
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: inc/core/class.shortcodes-ultimate.php:118
|
2140 |
+
#: inc/core/class.shortcodes-ultimate.php:126
|
2141 |
+
msgid "Documentation article"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: inc/core/class.shortcodes-ultimate.php:122
|
2145 |
+
#: inc/core/class.shortcodes-ultimate.php:130
|
2146 |
+
#: inc/core/class.shortcodes-ultimate.php:138
|
2147 |
+
msgid "Enabled"
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: inc/core/class.shortcodes-ultimate.php:125
|
2151 |
+
msgid "Compatibility mode"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: inc/core/class.shortcodes-ultimate.php:126
|
2155 |
+
msgid "Enable this option if you have some problems with other plugins that uses similar shortcode names"
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#: inc/core/class.shortcodes-ultimate.php:126
|
2159 |
+
msgid "etc."
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: inc/core/class.shortcodes-ultimate.php:133
|
2163 |
+
msgid "Skip default values"
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: inc/core/class.shortcodes-ultimate.php:134
|
2167 |
+
msgid "Enable this option and the generator will insert a shortcode without default attribute values that you have not changed. As a result, the generated code will be shorter."
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: inc/core/class.shortcodes-ultimate.php:141
|
2171 |
+
msgid "Skin"
|
2172 |
+
msgstr ""
|
2173 |
+
|
2174 |
+
#: inc/core/class.shortcodes-ultimate.php:142
|
2175 |
+
#, php-format
|
2176 |
+
msgid "Choose skin for shortcodes.<br /><a href=\"%s\" target=\"_blank\">Learn how to create custom skin</a><br /><a href=\"%s\" target=\"_blank\"><b>Download more skins</b></a>"
|
2177 |
+
msgstr ""
|
2178 |
+
|
2179 |
+
#: inc/core/class.shortcodes-ultimate.php:148
|
2180 |
+
msgid "Custom CSS"
|
2181 |
+
msgstr ""
|
2182 |
+
|
2183 |
+
#: inc/core/class.shortcodes-ultimate.php:151
|
2184 |
+
msgid "Galleries"
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: inc/core/class.shortcodes-ultimate.php:154
|
2188 |
+
msgid "Cheatsheet"
|
2189 |
+
msgstr ""
|
2190 |
+
|
2191 |
+
#: inc/core/class.vote.php:39
|
2192 |
+
msgid "Hello, my name is Vladimir Anokhin, and I am developer of plugin <b>Shortcodes Ultimate</b>.<br>If you like this plugin, please write a few words about it at the wordpress.org or twitter. It will help other people find this useful plugin more quickly.<br><b>Thank you!</b>"
|
2193 |
+
msgstr ""
|
2194 |
+
|
2195 |
+
#: inc/core/class.vote.php:41
|
2196 |
+
msgid "Rate plugin"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: inc/core/class.vote.php:42
|
2200 |
+
msgid "Shortcodes Ultimate - must have WordPress plugin #shortcodesultimate"
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: inc/core/class.vote.php:42
|
2204 |
+
msgid "Tweet"
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: inc/core/class.vote.php:43
|
2208 |
+
msgid "No, thanks"
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: inc/core/class.vote.php:44
|
2212 |
+
msgid "or"
|
2213 |
+
msgstr ""
|
2214 |
+
|
2215 |
+
#: inc/core/class.vote.php:45
|
2216 |
+
msgid "Remind me later"
|
2217 |
+
msgstr ""
|
2218 |
+
|
2219 |
+
#: inc/core/class.widget.php:36
|
2220 |
+
msgid "Special Shortcodes Ultimate widget"
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#: inc/core/class.widget.php:87
|
2224 |
+
msgid "Title:"
|
2225 |
+
msgstr ""
|
2226 |
+
|
2227 |
+
#: inc/core/shortcodes.php:483
|
2228 |
+
msgid "This is box title"
|
2229 |
+
msgstr ""
|
2230 |
+
|
2231 |
+
#: inc/core/shortcodes.php:663
|
2232 |
+
#: inc/core/shortcodes.php:696
|
2233 |
+
#: inc/core/shortcodes.php:730
|
2234 |
+
#: inc/core/shortcodes.php:764
|
2235 |
+
#: inc/core/shortcodes.php:804
|
2236 |
+
msgid "please specify correct url"
|
2237 |
+
msgstr ""
|
2238 |
+
|
2239 |
+
#: inc/core/shortcodes.php:1006
|
2240 |
+
msgid "This menu doesn't exists, or has no elements"
|
2241 |
+
msgstr ""
|
2242 |
+
|
2243 |
+
#: inc/core/shortcodes.php:1094
|
2244 |
+
#: inc/core/shortcodes.php:1180
|
2245 |
+
#: inc/core/shortcodes.php:1249
|
2246 |
+
msgid "images not found"
|
2247 |
+
msgstr ""
|
2248 |
+
|
2249 |
+
#: inc/core/shortcodes.php:1447
|
2250 |
+
msgid "template not found"
|
2251 |
+
msgstr ""
|
2252 |
+
|
2253 |
+
#: inc/core/tools.php:234
|
2254 |
+
msgid "year"
|
2255 |
+
msgstr ""
|
2256 |
+
|
2257 |
+
#: inc/core/tools.php:235
|
2258 |
+
msgid "month"
|
2259 |
+
msgstr ""
|
2260 |
+
|
2261 |
+
#: inc/core/tools.php:236
|
2262 |
+
msgid "week"
|
2263 |
+
msgstr ""
|
2264 |
+
|
2265 |
+
#: inc/core/tools.php:237
|
2266 |
+
msgid "day"
|
2267 |
+
msgstr ""
|
2268 |
+
|
2269 |
+
#: inc/core/tools.php:238
|
2270 |
+
msgid "hour"
|
2271 |
+
msgstr ""
|
2272 |
+
|
2273 |
+
#: inc/core/tools.php:239
|
2274 |
+
msgid "minute"
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: inc/core/tools.php:248
|
2278 |
+
#: inc/core/tools.php:255
|
2279 |
+
msgid "s"
|
2280 |
+
msgstr ""
|
2281 |
+
|
2282 |
+
#: inc/core/tools.php:291
|
2283 |
+
msgid "username not specified"
|
2284 |
+
msgstr ""
|
2285 |
+
|
2286 |
+
#: inc/core/tools.php:296
|
2287 |
+
msgid "no public messages"
|
2288 |
+
msgstr ""
|
2289 |
+
|
2290 |
+
#: inc/views/about.php:2
|
2291 |
+
msgid "Welcome to Shortcodes Ultimate"
|
2292 |
+
msgstr ""
|
2293 |
+
|
2294 |
+
#: inc/views/about.php:2
|
2295 |
+
msgid "A real swiss army knife for WordPress"
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: inc/views/about.php:6
|
2299 |
+
msgid "Addons"
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: inc/views/about.php:8
|
2303 |
+
msgid "Documentation"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: inc/views/about.php:14
|
2307 |
+
msgid "GitHub"
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: inc/views/about.php:16
|
2311 |
+
msgid "Contact author"
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#: inc/views/about.php:19
|
2315 |
+
msgid "Plugin features"
|
2316 |
+
msgstr ""
|
2317 |
+
|
2318 |
+
#: inc/views/about.php:21
|
2319 |
+
msgid "40+ amazing shortcodes"
|
2320 |
+
msgstr ""
|
2321 |
+
|
2322 |
+
#: inc/views/about.php:22
|
2323 |
+
msgid "Power of CSS3 transitions"
|
2324 |
+
msgstr ""
|
2325 |
+
|
2326 |
+
#: inc/views/about.php:23
|
2327 |
+
msgid "Handy shortcodes generator"
|
2328 |
+
msgstr ""
|
2329 |
+
|
2330 |
+
#: inc/views/about.php:24
|
2331 |
+
msgid "International"
|
2332 |
+
msgstr ""
|
2333 |
+
|
2334 |
+
#: inc/views/about.php:25
|
2335 |
+
msgid "Documented API"
|
2336 |
+
msgstr ""
|
2337 |
+
|
2338 |
+
#: inc/views/about.php:29
|
2339 |
+
msgid "What is a shortcode?"
|
2340 |
+
msgstr ""
|
2341 |
+
|
2342 |
+
#: inc/views/about.php:30
|
2343 |
+
msgid "<strong>Shortcode</strong> is a WordPress-specific code that lets you do nifty things with very little effort."
|
2344 |
+
msgstr ""
|
2345 |
+
|
2346 |
+
#: inc/views/about.php:31
|
2347 |
+
msgid "Shortcodes can embed files or create objects that would normally require lots of complicated, ugly code in just one line. Shortcode = shortcut."
|
2348 |
+
msgstr ""
|
2349 |
+
|
2350 |
+
#: inc/views/about.php:35
|
2351 |
+
msgid "How does it works"
|
2352 |
+
msgstr ""
|
2353 |
+
|
2354 |
+
#: inc/views/about.php:39
|
2355 |
+
msgid "More videos"
|
2356 |
+
msgstr ""
|
2357 |
+
|
2358 |
+
#: inc/views/about.php:41
|
2359 |
+
msgid "Shortcodes Ultimate Tutorial"
|
2360 |
+
msgstr ""
|
2361 |
+
|
2362 |
+
#: inc/views/about.php:42
|
2363 |
+
msgid "How to use special widget"
|
2364 |
+
msgstr ""
|
2365 |
+
|
2366 |
+
#: inc/views/about.php:43
|
2367 |
+
msgid "How to create Carousel"
|
2368 |
+
msgstr ""
|
2369 |
+
|
2370 |
+
#: inc/views/about.php:44
|
2371 |
+
msgid "How to create image gallery"
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: inc/views/cheatsheet.php:5
|
2375 |
+
msgid "Shortcode"
|
2376 |
+
msgstr ""
|
2377 |
+
|
2378 |
+
#: inc/views/cheatsheet.php:6
|
2379 |
+
msgid "Parameters"
|
2380 |
+
msgstr ""
|
2381 |
+
|
2382 |
+
#: inc/views/cheatsheet.php:7
|
2383 |
+
msgid "Example"
|
2384 |
+
msgstr ""
|
2385 |
+
|
2386 |
+
#: inc/views/cheatsheet.php:17
|
2387 |
+
msgid "Demo"
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: inc/views/cheatsheet.php:49
|
2391 |
+
msgid "Default value"
|
2392 |
+
msgstr ""
|
2393 |
+
|
2394 |
+
#: inc/views/cheatsheet.php:55
|
2395 |
+
msgid "-- no parameters --"
|
2396 |
+
msgstr ""
|
2397 |
+
|
2398 |
+
#: inc/views/closetab.php:4
|
2399 |
+
msgid "Save changes"
|
2400 |
+
msgstr ""
|
2401 |
+
|
2402 |
+
#: inc/views/closetab.php:5
|
2403 |
+
msgid "Saving"
|
2404 |
+
msgstr ""
|
2405 |
+
|
2406 |
+
#: inc/views/closetab.php:6
|
2407 |
+
msgid "Saved"
|
2408 |
+
msgstr ""
|
2409 |
+
|
2410 |
+
#: inc/views/closetab.php:7
|
2411 |
+
msgid "This action will remove all your custom CSS, galleries and settings. Are you sure? This action cannot be undone!"
|
2412 |
+
msgstr ""
|
2413 |
+
|
2414 |
+
#: inc/views/closetab.php:7
|
2415 |
+
msgid "Restore default settings"
|
2416 |
+
msgstr ""
|
2417 |
+
|
2418 |
+
#: inc/views/code.php:5
|
2419 |
+
msgid "Insert code"
|
2420 |
+
msgstr ""
|
2421 |
+
|
2422 |
+
#: inc/views/css.php:3
|
2423 |
+
msgid "You can see the original styles to override it"
|
2424 |
+
msgstr ""
|
2425 |
+
|
2426 |
+
#: inc/views/css.php:17
|
2427 |
+
msgid "You can use next variables in your custom CSS"
|
2428 |
+
msgstr ""
|
2429 |
+
|
2430 |
+
#: inc/views/css.php:18
|
2431 |
+
msgid "home url"
|
2432 |
+
msgstr ""
|
2433 |
+
|
2434 |
+
#: inc/views/css.php:19
|
2435 |
+
msgid "theme url"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: inc/views/css.php:20
|
2439 |
+
msgid "plugin url"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: inc/views/galleries.php:2
|
2443 |
+
msgid "Are you sure that you want to delete this gallery? This action can't be undone!"
|
2444 |
+
msgstr ""
|
2445 |
+
|
2446 |
+
#: inc/views/galleries.php:2
|
2447 |
+
msgid "Are you sure that you want to delete this image? This action can't be undone!"
|
2448 |
+
msgstr ""
|
2449 |
+
|
2450 |
+
#: inc/views/galleries.php:4
|
2451 |
+
msgid "Create new gallery"
|
2452 |
+
msgstr ""
|
2453 |
+
|
2454 |
+
#: inc/views/galleries.php:17
|
2455 |
+
#: inc/views/galleries.php:72
|
2456 |
+
msgid "Enter gallery name"
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: inc/views/galleries.php:19
|
2460 |
+
#: inc/views/galleries.php:74
|
2461 |
+
msgid "Edit gallery"
|
2462 |
+
msgstr ""
|
2463 |
+
|
2464 |
+
#: inc/views/galleries.php:20
|
2465 |
+
#: inc/views/galleries.php:75
|
2466 |
+
msgid "Save & close"
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: inc/views/galleries.php:21
|
2470 |
+
#: inc/views/galleries.php:50
|
2471 |
+
#: inc/views/galleries.php:76
|
2472 |
+
#: inc/views/galleries.php:105
|
2473 |
+
msgid "Close"
|
2474 |
+
msgstr ""
|
2475 |
+
|
2476 |
+
#: inc/views/galleries.php:22
|
2477 |
+
#: inc/views/galleries.php:41
|
2478 |
+
#: inc/views/galleries.php:77
|
2479 |
+
#: inc/views/galleries.php:96
|
2480 |
+
msgid "Delete"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: inc/views/galleries.php:40
|
2484 |
+
#: inc/views/galleries.php:95
|
2485 |
+
msgid "Edit"
|
2486 |
+
msgstr ""
|
2487 |
+
|
2488 |
+
#: inc/views/notifications.php:5
|
2489 |
+
msgid "Instructions"
|
2490 |
+
msgstr ""
|
2491 |
+
|
2492 |
+
#: inc/views/notifications.php:13
|
2493 |
+
#: inc/views/notifications.php:21
|
2494 |
+
#: inc/views/notifications.php:29
|
2495 |
+
#: inc/views/notifications.php:37
|
2496 |
+
msgid "Click to close"
|
2497 |
+
msgstr ""
|
2498 |
+
|
2499 |
+
#: inc/views/settings.php:12
|
2500 |
+
msgid "For full functionality of this page it is reccomended to enable javascript."
|
2501 |
+
msgstr ""
|
2502 |
+
|
2503 |
+
#: inc/views/settings.php:14
|
2504 |
+
msgid "Settings reseted successfully"
|
2505 |
+
msgstr ""
|
2506 |
+
|
2507 |
+
#: inc/views/settings.php:15
|
2508 |
+
msgid "There is already default settings"
|
2509 |
+
msgstr ""
|
2510 |
+
|
2511 |
+
#: inc/views/settings.php:16
|
2512 |
+
msgid "Settings saved successfully"
|
2513 |
+
msgstr ""
|
2514 |
+
|
2515 |
+
#: inc/views/settings.php:17
|
2516 |
+
msgid "Settings not saved, because there is no changes"
|
2517 |
+
msgstr ""
|
2518 |
+
|
2519 |
+
#: inc/views/upload.php:7
|
2520 |
+
msgid "Upload"
|
2521 |
+
msgstr ""
|
2522 |
+
|
2523 |
+
#: templates/default-loop.php:15
|
2524 |
+
#: templates/single-post.php:18
|
2525 |
+
msgid "Posted"
|
2526 |
+
msgstr ""
|
2527 |
+
|
2528 |
+
#: templates/default-loop.php:19
|
2529 |
+
#: templates/single-post.php:18
|
2530 |
+
msgid "0 comments"
|
2531 |
+
msgstr ""
|
2532 |
+
|
2533 |
+
#: templates/default-loop.php:19
|
2534 |
+
#: templates/single-post.php:18
|
2535 |
+
msgid "1 comment"
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: templates/default-loop.php:19
|
2539 |
+
#: templates/single-post.php:18
|
2540 |
+
msgid "%n comments"
|
2541 |
+
msgstr ""
|
2542 |
+
|
2543 |
+
#: templates/default-loop.php:27
|
2544 |
+
#: templates/list-loop.php:18
|
2545 |
+
#: templates/single-post.php:30
|
2546 |
+
#: templates/teaser-loop.php:22
|
2547 |
+
msgid "Posts not found"
|
2548 |
+
msgstr ""
|
2549 |
+
|
readme.txt
CHANGED
@@ -50,7 +50,7 @@ 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 |
-
* Gr, [Kleanthis Manolopoulos]()
|
54 |
* Unforunately old translations is incompatible with current version
|
55 |
|
56 |
Have a translation? [Contact me](http://gndev.info/feedback/)
|
@@ -94,6 +94,13 @@ Upgrade normally via your Wordpress admin -> Plugins panel.
|
|
94 |
|
95 |
== Changelog ==
|
96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
= 4.1.5 =
|
98 |
* Fixed [lightbox]
|
99 |
* Disabled wp_footer check
|
50 |
= Bundled translations =
|
51 |
* Ru, [Vladimir Anokhin](http://gndev.info/)
|
52 |
* Fr, [Nicolas Leclerc](http://etic-studio.fr/)
|
53 |
+
* Gr, [Kleanthis Manolopoulos](mailto:akis_manolopoulos_at_hotmail_dot_com)
|
54 |
* Unforunately old translations is incompatible with current version
|
55 |
|
56 |
Have a translation? [Contact me](http://gndev.info/feedback/)
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
= 4.1.6 =
|
98 |
+
* Added pot file
|
99 |
+
* Fixed [button] css code
|
100 |
+
* Updated [accordion], [spoiler] and [tabs] js code
|
101 |
+
* Fixed [tooltip]
|
102 |
+
* Updated Greek translation
|
103 |
+
|
104 |
= 4.1.5 =
|
105 |
* Fixed [lightbox]
|
106 |
* Disabled wp_footer check
|
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.6
|
6 |
Author: Vladimir Anokhin
|
7 |
Author URI: http://gndev.info/
|
8 |
Description: Supercharge your WordPress theme with mega pack of shortcodes
|