Version Description
- JavaScript async.
- Minified files.
- Language files removed.
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront Scroll Top |
Version | 1.5 |
Comparing to | |
See all releases |
Code changes from version 1.4.5 to 1.5
- classes/base/class-wpfront-base.php +1 -9
- classes/class-wpfront-scroll-top-options.php +1 -0
- classes/class-wpfront-scroll-top.php +40 -22
- css/options.min.css +1 -0
- css/wpfront-scroll-top.min.css +1 -0
- jquery-plugins/colorpicker/css/colorpicker.min.css +1 -0
- jquery-plugins/colorpicker/js/colorpicker.min.js +1 -0
- js/wpfront-scroll-top.js +2 -2
- js/wpfront-scroll-top.min.js +1 -0
- languages/wpfront-scroll-top-de_DE.mo +0 -0
- languages/wpfront-scroll-top-de_DE/readme.txt +0 -1
- languages/wpfront-scroll-top-de_DE/wpfront-scroll-top-de_DE.mo +0 -0
- languages/wpfront-scroll-top-de_DE/wpfront-scroll-top-de_DE.po +0 -382
- languages/wpfront-scroll-top-es_ES.mo +0 -0
- languages/wpfront-scroll-top-es_ES/readme.txt +0 -1
- languages/wpfront-scroll-top-es_ES/wpfront-scroll-top-es_ES.mo +0 -0
- languages/wpfront-scroll-top-es_ES/wpfront-scroll-top-es_ES.po +0 -504
- languages/wpfront-scroll-top-ru_RU.mo +0 -0
- languages/wpfront-scroll-top-ru_RU/readme.txt +0 -1
- languages/wpfront-scroll-top-ru_RU/wpfront-scroll-top-ru_RU.mo +0 -0
- languages/wpfront-scroll-top-ru_RU/wpfront-scroll-top-ru_RU.po +0 -509
- languages/wpfront-scroll-top-sr_RS.mo +0 -0
- languages/wpfront-scroll-top-sr_RS/readme.txt +0 -1
- languages/wpfront-scroll-top-sr_RS/wpfront-scroll-top-sr_RS.mo +0 -0
- languages/wpfront-scroll-top-sr_RS/wpfront-scroll-top-sr_RS.po +0 -497
- languages/wpfront-scroll-top-uk_UK.mo +0 -0
- languages/wpfront-scroll-top-uk_UK/readme.txt +0 -1
- languages/wpfront-scroll-top-uk_UK/wpfront-scroll-top-uk_UK.mo +0 -0
- languages/wpfront-scroll-top-uk_UK/wpfront-scroll-top-uk_UK.po +0 -509
- languages/wpfront-scroll-top.mo +0 -0
- languages/wpfront-scroll-top.po +81 -73
- readme.txt +14 -12
- templates/options-template.php +9 -0
- wpfront-scroll-top.php +1 -1
classes/base/class-wpfront-base.php
CHANGED
@@ -79,7 +79,7 @@ if (!class_exists('WPFront_Base')) {
|
|
79 |
|
80 |
public function plugins_loaded_base() {
|
81 |
//for localization
|
82 |
-
load_plugin_textdomain($this->plugin_slug, FALSE, $this->plugin_slug . '/languages/');
|
83 |
|
84 |
$this->plugins_loaded();
|
85 |
}
|
@@ -167,16 +167,8 @@ if (!class_exists('WPFront_Base')) {
|
|
167 |
echo '
|
168 |
<a href="http://wpfront.com/' . $settingsLink . '" target="_blank">' . $this->__('Settings Description') . '</a>
|
169 |
|
|
170 |
-
<a href="http://wpfront.com/' . $FAQLink . '" target="_blank">' . $this->__('Plugin FAQ') . '</a>
|
171 |
-
|
|
172 |
-
<a href="http://wpfront.com/contact/" target="_blank">' . $this->__('Feature Request') . '</a>
|
173 |
-
|
|
174 |
-
<a href="http://wpfront.com/contact/" target="_blank">' . $this->__('Report Bug') . '</a>
|
175 |
-
|
|
176 |
<a href="http://wordpress.org/support/view/plugin-reviews/' . $this->plugin_slug . '" target="_blank">' . $this->__('Write Review') . '</a>
|
177 |
|
|
178 |
-
<a href="http://wpfront.com/contact/" target="_blank">' . $this->__('Contact Me') . '</a>
|
179 |
-
|
|
180 |
<a href="http://wpfront.com/donate/" target="_blank">' . $this->__('Buy me a Beer or Coffee') . '</a>
|
181 |
';
|
182 |
echo '</form>';
|
79 |
|
80 |
public function plugins_loaded_base() {
|
81 |
//for localization
|
82 |
+
//load_plugin_textdomain($this->plugin_slug, FALSE, $this->plugin_slug . '/languages/');
|
83 |
|
84 |
$this->plugins_loaded();
|
85 |
}
|
167 |
echo '
|
168 |
<a href="http://wpfront.com/' . $settingsLink . '" target="_blank">' . $this->__('Settings Description') . '</a>
|
169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
<a href="http://wordpress.org/support/view/plugin-reviews/' . $this->plugin_slug . '" target="_blank">' . $this->__('Write Review') . '</a>
|
171 |
|
|
|
|
|
|
172 |
<a href="http://wpfront.com/donate/" target="_blank">' . $this->__('Buy me a Beer or Coffee') . '</a>
|
173 |
';
|
174 |
echo '</form>';
|
classes/class-wpfront-scroll-top-options.php
CHANGED
@@ -39,6 +39,7 @@ if (!class_exists('WPFront_Scroll_Top_Options')) {
|
|
39 |
|
40 |
//add the options required for this plugin
|
41 |
$this->addOption('enabled', 'bit', FALSE)->__('Enabled');
|
|
|
42 |
$this->addOption('scroll_offset', 'int', 100, array($this, 'validate_zero_positive'))->__('Scroll Offset');
|
43 |
$this->addOption('button_width', 'int', 0, array($this, 'validate_zero_positive'));
|
44 |
$this->addOption('button_height', 'int', 0, array($this, 'validate_zero_positive'));
|
39 |
|
40 |
//add the options required for this plugin
|
41 |
$this->addOption('enabled', 'bit', FALSE)->__('Enabled');
|
42 |
+
$this->addOption('javascript_async', 'bit', FALSE)->__('JavaScript Async');
|
43 |
$this->addOption('scroll_offset', 'int', 100, array($this, 'validate_zero_positive'))->__('Scroll Offset');
|
44 |
$this->addOption('button_width', 'int', 0, array($this, 'validate_zero_positive'));
|
45 |
$this->addOption('button_height', 'int', 0, array($this, 'validate_zero_positive'));
|
classes/class-wpfront-scroll-top.php
CHANGED
@@ -36,7 +36,7 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
36 |
class WPFront_Scroll_Top extends WPFront_Base {
|
37 |
|
38 |
//Constants
|
39 |
-
const VERSION = '1.
|
40 |
const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
|
41 |
const OPTION_NAME = 'wpfront-scroll-top-options';
|
42 |
const PLUGIN_SLUG = 'wpfront-scroll-top';
|
@@ -47,11 +47,13 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
47 |
protected $options;
|
48 |
protected $markupLoaded;
|
49 |
protected $scriptLoaded;
|
50 |
-
|
|
|
51 |
function __construct() {
|
52 |
parent::__construct(__FILE__, self::PLUGIN_SLUG);
|
53 |
|
54 |
$this->markupLoaded = FALSE;
|
|
|
55 |
|
56 |
//Root variables
|
57 |
$this->iconsDIR = $this->pluginDIRRoot . 'images/icons/';
|
@@ -71,7 +73,7 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
71 |
$jsRoot = $this->pluginURLRoot . 'js/';
|
72 |
|
73 |
wp_enqueue_script('jquery');
|
74 |
-
wp_enqueue_script('wpfront-scroll-top', $jsRoot . 'wpfront-scroll-top.js', array('jquery'), self::VERSION);
|
75 |
|
76 |
$this->scriptLoaded = TRUE;
|
77 |
}
|
@@ -83,7 +85,7 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
83 |
|
84 |
$cssRoot = $this->pluginURLRoot . 'css/';
|
85 |
|
86 |
-
wp_enqueue_style('wpfront-scroll-top', $cssRoot . 'wpfront-scroll-top.css', array(), self::VERSION);
|
87 |
}
|
88 |
|
89 |
public function admin_init() {
|
@@ -97,21 +99,31 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
97 |
$this->enqueue_scripts();
|
98 |
|
99 |
$jsRoot = $this->pluginURLRoot . 'jquery-plugins/colorpicker/js/';
|
100 |
-
wp_enqueue_script('jquery.eyecon.colorpicker', $jsRoot . 'colorpicker.js', array('jquery'), self::VERSION);
|
101 |
}
|
102 |
|
103 |
//options page styles
|
104 |
public function enqueue_options_styles() {
|
105 |
$styleRoot = $this->pluginURLRoot . 'jquery-plugins/colorpicker/css/';
|
106 |
-
wp_enqueue_style('jquery.eyecon.colorpicker.colorpicker', $styleRoot . 'colorpicker.css', array(), self::VERSION);
|
107 |
|
108 |
$styleRoot = $this->pluginURLRoot . 'css/';
|
109 |
-
wp_enqueue_style('wpfront-scroll-top-options', $styleRoot . 'options.css', array(), self::VERSION);
|
110 |
}
|
111 |
|
112 |
public function plugins_loaded() {
|
113 |
//load plugin options
|
114 |
$this->options = new WPFront_Scroll_Top_Options(self::OPTION_NAME, self::PLUGIN_SLUG);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
}
|
116 |
|
117 |
public function shutdown_callback() {
|
@@ -151,21 +163,27 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
151 |
include($this->pluginDIRRoot . 'templates/scroll-top-template.php');
|
152 |
|
153 |
echo '<script type="text/javascript">';
|
154 |
-
echo
|
155 |
-
echo
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
echo '</script>';
|
170 |
}
|
171 |
|
36 |
class WPFront_Scroll_Top extends WPFront_Base {
|
37 |
|
38 |
//Constants
|
39 |
+
const VERSION = '1.5';
|
40 |
const OPTIONS_GROUP_NAME = 'wpfront-scroll-top-options-group';
|
41 |
const OPTION_NAME = 'wpfront-scroll-top-options';
|
42 |
const PLUGIN_SLUG = 'wpfront-scroll-top';
|
47 |
protected $options;
|
48 |
protected $markupLoaded;
|
49 |
protected $scriptLoaded;
|
50 |
+
protected $min_file_suffix;
|
51 |
+
|
52 |
function __construct() {
|
53 |
parent::__construct(__FILE__, self::PLUGIN_SLUG);
|
54 |
|
55 |
$this->markupLoaded = FALSE;
|
56 |
+
$this->min_file_suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
|
57 |
|
58 |
//Root variables
|
59 |
$this->iconsDIR = $this->pluginDIRRoot . 'images/icons/';
|
73 |
$jsRoot = $this->pluginURLRoot . 'js/';
|
74 |
|
75 |
wp_enqueue_script('jquery');
|
76 |
+
wp_enqueue_script('wpfront-scroll-top', $jsRoot . 'wpfront-scroll-top' . $this->min_file_suffix . '.js', array('jquery'), self::VERSION);
|
77 |
|
78 |
$this->scriptLoaded = TRUE;
|
79 |
}
|
85 |
|
86 |
$cssRoot = $this->pluginURLRoot . 'css/';
|
87 |
|
88 |
+
wp_enqueue_style('wpfront-scroll-top', $cssRoot . 'wpfront-scroll-top' . $this->min_file_suffix . '.css', array(), self::VERSION);
|
89 |
}
|
90 |
|
91 |
public function admin_init() {
|
99 |
$this->enqueue_scripts();
|
100 |
|
101 |
$jsRoot = $this->pluginURLRoot . 'jquery-plugins/colorpicker/js/';
|
102 |
+
wp_enqueue_script('jquery.eyecon.colorpicker', $jsRoot . 'colorpicker' . $this->min_file_suffix . '.js', array('jquery'), self::VERSION);
|
103 |
}
|
104 |
|
105 |
//options page styles
|
106 |
public function enqueue_options_styles() {
|
107 |
$styleRoot = $this->pluginURLRoot . 'jquery-plugins/colorpicker/css/';
|
108 |
+
wp_enqueue_style('jquery.eyecon.colorpicker.colorpicker', $styleRoot . 'colorpicker' . $this->min_file_suffix . '.css', array(), self::VERSION);
|
109 |
|
110 |
$styleRoot = $this->pluginURLRoot . 'css/';
|
111 |
+
wp_enqueue_style('wpfront-scroll-top-options', $styleRoot . 'options' . $this->min_file_suffix . '.css', array(), self::VERSION);
|
112 |
}
|
113 |
|
114 |
public function plugins_loaded() {
|
115 |
//load plugin options
|
116 |
$this->options = new WPFront_Scroll_Top_Options(self::OPTION_NAME, self::PLUGIN_SLUG);
|
117 |
+
|
118 |
+
if($this->options->javascript_async())
|
119 |
+
add_filter('script_loader_tag', array($this, 'script_loader_tag'), 999999, 3);
|
120 |
+
}
|
121 |
+
|
122 |
+
public function script_loader_tag($tag, $handle, $src) {
|
123 |
+
if($handle === 'wpfront-scroll-top')
|
124 |
+
return '<script type="text/javascript" src="' . $src . '" async="true"></script>' . "\n";
|
125 |
+
|
126 |
+
return $tag;
|
127 |
}
|
128 |
|
129 |
public function shutdown_callback() {
|
163 |
include($this->pluginDIRRoot . 'templates/scroll-top-template.php');
|
164 |
|
165 |
echo '<script type="text/javascript">';
|
166 |
+
echo 'function wpfront_scroll_top_init() {';
|
167 |
+
echo 'if(typeof wpfront_scroll_top == "function" && typeof jQuery !== "undefined") {';
|
168 |
+
echo 'wpfront_scroll_top(' . json_encode(array(
|
169 |
+
'scroll_offset' => $this->options->scroll_offset(),
|
170 |
+
'button_width' => $this->options->button_width(),
|
171 |
+
'button_height' => $this->options->button_height(),
|
172 |
+
'button_opacity' => $this->options->button_opacity() / 100,
|
173 |
+
'button_fade_duration' => $this->options->button_fade_duration(),
|
174 |
+
'scroll_duration' => $this->options->scroll_duration(),
|
175 |
+
'location' => $this->options->location(),
|
176 |
+
'marginX' => $this->options->marginX(),
|
177 |
+
'marginY' => $this->options->marginY(),
|
178 |
+
'hide_iframe' => $this->options->hide_iframe(),
|
179 |
+
'auto_hide' => $this->options->auto_hide(),
|
180 |
+
'auto_hide_after' => $this->options->auto_hide_after(),
|
181 |
+
)) . ');';
|
182 |
+
echo '} else {';
|
183 |
+
echo 'setTimeout(wpfront_scroll_top_init, 100);';
|
184 |
+
echo '}';
|
185 |
+
echo '}';
|
186 |
+
echo 'wpfront_scroll_top_init();';
|
187 |
echo '</script>';
|
188 |
}
|
189 |
|
css/options.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
#icon-wpfront-scroll-top{background:url("../images/settings32x32.png") no-repeat scroll 0 0 rgba(0,0,0,0)}#wpfront-scroll-top-options input.pixels{width:40px}#wpfront-scroll-top-options input.seconds{width:40px}#wpfront-scroll-top-options div.icons-container{display:inline-block;width:80%}#wpfront-scroll-top-options div.icons-container div{float:left;margin-right:20px;margin-bottom:10px;min-width:100px;min-height:70px}#wpfront-scroll-top-options div.icons-container div.selected{background-color:silver}#wpfront-scroll-top-options div.icons-container div:hover{background-color:silver}#wpfront-scroll-top-options div.icons-container div input{vertical-align:top}#wpfront-scroll-top-options div input.customImage{width:50%}#wpfront-scroll-top-options table.form-table .color-selector-div{display:inline-block;width:100px}#wpfront-scroll-top-options table.form-table .color-selector{vertical-align:middle}#wpfront-scroll-top-options table.form-table div.pages-selection{width:70%;height:150px;background-color:#fff;overflow:auto;border:1px solid #dfdfdf;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}#wpfront-scroll-top-options table.form-table div.page-div{float:left;width:250px;padding:2px;white-space:nowrap;overflow:hidden}
|
css/wpfront-scroll-top.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
#wpfront-scroll-top-container{display:none;position:fixed;cursor:pointer;z-index:9999}
|
jquery-plugins/colorpicker/css/colorpicker.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.colorpicker{width:356px;height:176px;overflow:hidden;position:absolute;background:url(../images/colorpicker_background.png);font-family:Arial,Helvetica,sans-serif;display:none}.colorpicker_color{width:150px;height:150px;left:14px;top:13px;position:absolute;background:red;overflow:hidden;cursor:crosshair}.colorpicker_color div{position:absolute;top:0;left:0;width:150px;height:150px;background:url(../images/colorpicker_overlay.png)}.colorpicker_color div div{position:absolute;top:0;left:0;width:11px;height:11px;overflow:hidden;background:url(../images/colorpicker_select.gif);margin:-5px 0 0 -5px}.colorpicker_hue{position:absolute;top:13px;left:171px;width:35px;height:150px;cursor:n-resize}.colorpicker_hue div{position:absolute;width:35px;height:9px;overflow:hidden;background:url(../images/colorpicker_indic.gif) left top;margin:-4px 0 0;left:0}.colorpicker_new_color{position:absolute;width:60px;height:30px;left:213px;top:13px;background:red}.colorpicker_current_color{position:absolute;width:60px;height:30px;left:283px;top:13px;background:red}.colorpicker input{background-color:transparent;border:1px solid transparent;position:absolute;font-size:10px;font-family:Arial,Helvetica,sans-serif;color:#898989;top:4px;right:11px;text-align:right;margin:0;padding:0;height:13px;outline:none}.colorpicker_hex{position:absolute;width:72px;height:22px;background:url(../images/colorpicker_hex.png) top;left:212px;top:142px}.colorpicker_hex input{right:6px}.colorpicker_field{height:22px;width:62px;background-position:top;position:absolute}.colorpicker_field span{position:absolute;width:12px;height:22px;overflow:hidden;top:0;right:0;cursor:n-resize}.colorpicker_rgb_r{background-image:url(../images/colorpicker_rgb_r.png);top:52px;left:212px}.colorpicker_rgb_g{background-image:url(../images/colorpicker_rgb_g.png);top:82px;left:212px}.colorpicker_rgb_b{background-image:url(../images/colorpicker_rgb_b.png);top:112px;left:212px}.colorpicker_hsb_h{background-image:url(../images/colorpicker_hsb_h.png);top:52px;left:282px}.colorpicker_hsb_s{background-image:url(../images/colorpicker_hsb_s.png);top:82px;left:282px}.colorpicker_hsb_b{background-image:url(../images/colorpicker_hsb_b.png);top:112px;left:282px}.colorpicker_submit{position:absolute;width:22px;height:22px;background:url(../images/colorpicker_submit.png) top;left:322px;top:142px;overflow:hidden}.colorpicker_focus{background-position:center}.colorpicker_hex.colorpicker_focus{background-position:bottom}.colorpicker_submit.colorpicker_focus{background-position:bottom}.colorpicker_slider{background-position:bottom}.color-selector{display:inline-block;width:26px;height:26px;background:url(../images/select2.png) center}
|
jquery-plugins/colorpicker/js/colorpicker.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(a){var b=function(){var d=65,f='<div class="colorpicker"><div class="colorpicker_color"><div><div></div></div></div><div class="colorpicker_hue"><div></div></div><div class="colorpicker_new_color"></div><div class="colorpicker_current_color"></div><div class="colorpicker_hex"><input type="text" maxlength="6" size="6" /></div><div class="colorpicker_rgb_r colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_rgb_g colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_rgb_b colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_h colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_s colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_b colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_submit"></div></div>',g={eventName:"click",onShow:function(){},onBeforeShow:function(){},onHide:function(){},onChange:function(){},onSubmit:function(){},color:"ff0000",livePreview:!0,flat:!1},h=function(b,c){var d=O(b);a(c).data("colorpicker").fields.eq(1).val(d.r).end().eq(2).val(d.g).end().eq(3).val(d.b).end()},i=function(b,c){a(c).data("colorpicker").fields.eq(4).val(b.h).end().eq(5).val(b.s).end().eq(6).val(b.b).end()},j=function(b,c){a(c).data("colorpicker").fields.eq(0).val(Q(b)).end()},k=function(b,c){a(c).data("colorpicker").selector.css("backgroundColor","#"+Q({h:b.h,s:100,b:100})),a(c).data("colorpicker").selectorIndic.css({left:parseInt(150*b.s/100,10),top:parseInt(150*(100-b.b)/100,10)})},l=function(b,c){a(c).data("colorpicker").hue.css("top",parseInt(150-150*b.h/360,10))},m=function(b,c){a(c).data("colorpicker").currentColor.css("backgroundColor","#"+Q(b))},n=function(b,c){a(c).data("colorpicker").newColor.css("backgroundColor","#"+Q(b))},o=function(b){var c=b.charCode||b.keyCode||-1;if(c>d&&c<=90||32==c)return!1;var e=a(this).parent().parent();e.data("colorpicker").livePreview===!0&&p.apply(this)},p=function(b){var d,c=a(this).parent().parent();this.parentNode.className.indexOf("_hex")>0?c.data("colorpicker").color=d=M(K(this.value)):this.parentNode.className.indexOf("_hsb")>0?c.data("colorpicker").color=d=I({h:parseInt(c.data("colorpicker").fields.eq(4).val(),10),s:parseInt(c.data("colorpicker").fields.eq(5).val(),10),b:parseInt(c.data("colorpicker").fields.eq(6).val(),10)}):c.data("colorpicker").color=d=N(J({r:parseInt(c.data("colorpicker").fields.eq(1).val(),10),g:parseInt(c.data("colorpicker").fields.eq(2).val(),10),b:parseInt(c.data("colorpicker").fields.eq(3).val(),10)})),b&&(h(d,c.get(0)),j(d,c.get(0)),i(d,c.get(0))),k(d,c.get(0)),l(d,c.get(0)),n(d,c.get(0)),c.data("colorpicker").onChange.apply(c,[d,Q(d),O(d)])},q=function(b){var c=a(this).parent().parent();c.data("colorpicker").fields.parent().removeClass("colorpicker_focus")},r=function(){d=this.parentNode.className.indexOf("_hex")>0?70:65,a(this).parent().parent().data("colorpicker").fields.parent().removeClass("colorpicker_focus"),a(this).parent().addClass("colorpicker_focus")},s=function(b){var c=a(this).parent().find("input").focus(),d={el:a(this).parent().addClass("colorpicker_slider"),max:this.parentNode.className.indexOf("_hsb_h")>0?360:this.parentNode.className.indexOf("_hsb")>0?100:255,y:b.pageY,field:c,val:parseInt(c.val(),10),preview:a(this).parent().parent().data("colorpicker").livePreview};a(document).bind("mouseup",d,u),a(document).bind("mousemove",d,t)},t=function(a){return a.data.field.val(Math.max(0,Math.min(a.data.max,parseInt(a.data.val+a.pageY-a.data.y,10)))),a.data.preview&&p.apply(a.data.field.get(0),[!0]),!1},u=function(b){return p.apply(b.data.field.get(0),[!0]),b.data.el.removeClass("colorpicker_slider").find("input").focus(),a(document).unbind("mouseup",u),a(document).unbind("mousemove",t),!1},v=function(b){var c={cal:a(this).parent(),y:a(this).offset().top};c.preview=c.cal.data("colorpicker").livePreview,a(document).bind("mouseup",c,x),a(document).bind("mousemove",c,w)},w=function(a){return p.apply(a.data.cal.data("colorpicker").fields.eq(4).val(parseInt(360*(150-Math.max(0,Math.min(150,a.pageY-a.data.y)))/150,10)).get(0),[a.data.preview]),!1},x=function(b){return h(b.data.cal.data("colorpicker").color,b.data.cal.get(0)),j(b.data.cal.data("colorpicker").color,b.data.cal.get(0)),a(document).unbind("mouseup",x),a(document).unbind("mousemove",w),!1},y=function(b){var c={cal:a(this).parent(),pos:a(this).offset()};c.preview=c.cal.data("colorpicker").livePreview,a(document).bind("mouseup",c,A),a(document).bind("mousemove",c,z)},z=function(a){return p.apply(a.data.cal.data("colorpicker").fields.eq(6).val(parseInt(100*(150-Math.max(0,Math.min(150,a.pageY-a.data.pos.top)))/150,10)).end().eq(5).val(parseInt(100*Math.max(0,Math.min(150,a.pageX-a.data.pos.left))/150,10)).get(0),[a.data.preview]),!1},A=function(b){return h(b.data.cal.data("colorpicker").color,b.data.cal.get(0)),j(b.data.cal.data("colorpicker").color,b.data.cal.get(0)),a(document).unbind("mouseup",A),a(document).unbind("mousemove",z),!1},B=function(b){a(this).addClass("colorpicker_focus")},C=function(b){a(this).removeClass("colorpicker_focus")},D=function(b){var c=a(this).parent(),d=c.data("colorpicker").color;c.data("colorpicker").origColor=d,m(d,c.get(0)),c.data("colorpicker").onSubmit(d,Q(d),O(d),c.data("colorpicker").el)},E=function(b){var c=a("#"+a(this).data("colorpickerId"));c.data("colorpicker").onBeforeShow.apply(this,[c.get(0)]);var d=a(this).offset(),e=H(),f=d.top+this.offsetHeight,g=d.left;return f+176>e.t+e.h&&(f-=this.offsetHeight+176),g+356>e.l+e.w&&(g-=356),c.css({left:g+"px",top:f+"px"}),0!=c.data("colorpicker").onShow.apply(this,[c.get(0)])&&c.show(),a(document).bind("mousedown",{cal:c},F),!1},F=function(b){G(b.data.cal.get(0),b.target,b.data.cal.get(0))||(0!=b.data.cal.data("colorpicker").onHide.apply(this,[b.data.cal.get(0)])&&b.data.cal.hide(),a(document).unbind("mousedown",F))},G=function(a,b,c){if(a==b)return!0;if(a.contains)return a.contains(b);if(a.compareDocumentPosition)return!!(16&a.compareDocumentPosition(b));for(var d=b.parentNode;d&&d!=c;){if(d==a)return!0;d=d.parentNode}return!1},H=function(){var a="CSS1Compat"==document.compatMode;return{l:window.pageXOffset||(a?document.documentElement.scrollLeft:document.body.scrollLeft),t:window.pageYOffset||(a?document.documentElement.scrollTop:document.body.scrollTop),w:window.innerWidth||(a?document.documentElement.clientWidth:document.body.clientWidth),h:window.innerHeight||(a?document.documentElement.clientHeight:document.body.clientHeight)}},I=function(a){return{h:Math.min(360,Math.max(0,a.h)),s:Math.min(100,Math.max(0,a.s)),b:Math.min(100,Math.max(0,a.b))}},J=function(a){return{r:Math.min(255,Math.max(0,a.r)),g:Math.min(255,Math.max(0,a.g)),b:Math.min(255,Math.max(0,a.b))}},K=function(a){var b=6-a.length;if(b>0){for(var c=[],d=0;d<b;d++)c.push("0");c.push(a),a=c.join("")}return a},L=function(a){var a=parseInt(a.indexOf("#")>-1?a.substring(1):a,16);return{r:a>>16,g:(65280&a)>>8,b:255&a}},M=function(a){return N(L(a))},N=function(a){var b={h:0,s:0,b:0},c=Math.min(a.r,a.g,a.b),d=Math.max(a.r,a.g,a.b),e=d-c;return b.b=d,b.s=0!=d?255*e/d:0,0!=b.s?a.r==d?b.h=(a.g-a.b)/e:a.g==d?b.h=2+(a.b-a.r)/e:b.h=4+(a.r-a.g)/e:b.h=-1,b.h*=60,b.h<0&&(b.h+=360),b.s*=100/255,b.b*=100/255,b},O=function(a){var b={},c=Math.round(a.h),d=Math.round(255*a.s/100),e=Math.round(255*a.b/100);if(0==d)b.r=b.g=b.b=e;else{var f=e,g=(255-d)*e/255,h=(f-g)*(c%60)/60;360==c&&(c=0),c<60?(b.r=f,b.b=g,b.g=g+h):c<120?(b.g=f,b.b=g,b.r=f-h):c<180?(b.g=f,b.r=g,b.b=g+h):c<240?(b.b=f,b.r=g,b.g=f-h):c<300?(b.b=f,b.g=g,b.r=g+h):c<360?(b.r=f,b.g=g,b.b=f-h):(b.r=0,b.g=0,b.b=0)}return{r:Math.round(b.r),g:Math.round(b.g),b:Math.round(b.b)}},P=function(b){var c=[b.r.toString(16),b.g.toString(16),b.b.toString(16)];return a.each(c,function(a,b){1==b.length&&(c[a]="0"+b)}),c.join("")},Q=function(a){return P(O(a))},R=function(){var b=a(this).parent(),c=b.data("colorpicker").origColor;b.data("colorpicker").color=c,h(c,b.get(0)),j(c,b.get(0)),i(c,b.get(0)),k(c,b.get(0)),l(c,b.get(0)),n(c,b.get(0))};return{init:function(b){if(b=a.extend({},g,b||{}),"string"==typeof b.color)b.color=M(b.color);else if(void 0!=b.color.r&&void 0!=b.color.g&&void 0!=b.color.b)b.color=N(b.color);else{if(void 0==b.color.h||void 0==b.color.s||void 0==b.color.b)return this;b.color=I(b.color)}return this.each(function(){if(!a(this).data("colorpickerId")){var c=a.extend({},b);c.origColor=b.color;var d="collorpicker_"+parseInt(1e3*Math.random());a(this).data("colorpickerId",d);var e=a(f).attr("id",d);c.flat?e.appendTo(this).show():e.appendTo(document.body),c.fields=e.find("input").bind("keyup",o).bind("change",p).bind("blur",q).bind("focus",r),e.find("span").bind("mousedown",s).end().find(">div.colorpicker_current_color").bind("click",R),c.selector=e.find("div.colorpicker_color").bind("mousedown",y),c.selectorIndic=c.selector.find("div div"),c.el=this,c.hue=e.find("div.colorpicker_hue div"),e.find("div.colorpicker_hue").bind("mousedown",v),c.newColor=e.find("div.colorpicker_new_color"),c.currentColor=e.find("div.colorpicker_current_color"),e.data("colorpicker",c),e.find("div.colorpicker_submit").bind("mouseenter",B).bind("mouseleave",C).bind("click",D),h(c.color,e.get(0)),i(c.color,e.get(0)),j(c.color,e.get(0)),l(c.color,e.get(0)),k(c.color,e.get(0)),m(c.color,e.get(0)),n(c.color,e.get(0)),c.flat?e.css({position:"relative",display:"block"}):a(this).bind(c.eventName,E)}})},showPicker:function(){return this.each(function(){a(this).data("colorpickerId")&&E.apply(this)})},hidePicker:function(){return this.each(function(){a(this).data("colorpickerId")&&a("#"+a(this).data("colorpickerId")).hide()})},setColor:function(b){if("string"==typeof b)b=M(b);else if(void 0!=b.r&&void 0!=b.g&&void 0!=b.b)b=N(b);else{if(void 0==b.h||void 0==b.s||void 0==b.b)return this;b=I(b)}return this.each(function(){if(a(this).data("colorpickerId")){var c=a("#"+a(this).data("colorpickerId"));c.data("colorpicker").color=b,c.data("colorpicker").origColor=b,h(b,c.get(0)),i(b,c.get(0)),j(b,c.get(0)),l(b,c.get(0)),k(b,c.get(0)),m(b,c.get(0)),n(b,c.get(0))}})}}}();a.fn.extend({ColorPicker:b.init,ColorPickerHide:b.hidePicker,ColorPickerShow:b.showPicker,ColorPickerSetColor:b.setColor})}(jQuery);
|
js/wpfront-scroll-top.js
CHANGED
@@ -11,9 +11,9 @@
|
|
11 |
*/
|
12 |
|
13 |
(function () {
|
14 |
-
var $ = jQuery;
|
15 |
-
|
16 |
window.wpfront_scroll_top = function (data) {
|
|
|
|
|
17 |
var container = $("#wpfront-scroll-top-container").css("opacity", 0);
|
18 |
|
19 |
var css = {};
|
11 |
*/
|
12 |
|
13 |
(function () {
|
|
|
|
|
14 |
window.wpfront_scroll_top = function (data) {
|
15 |
+
var $ = jQuery;
|
16 |
+
|
17 |
var container = $("#wpfront-scroll-top-container").css("opacity", 0);
|
18 |
|
19 |
var css = {};
|
js/wpfront-scroll-top.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
(function(){window.wpfront_scroll_top=function(d){var e=jQuery;var a=e("#wpfront-scroll-top-container").css("opacity",0);var f={};switch(d.location){case 1:f.right=d.marginX+"px";f.bottom=d.marginY+"px";break;case 2:f.left=d.marginX+"px";f.bottom=d.marginY+"px";break;case 3:f.right=d.marginX+"px";f.top=d.marginY+"px";break;case 4:f.left=d.marginX+"px";f.top=d.marginY+"px";break}a.css(f);if(d.button_width==0){d.button_width="auto"}else{d.button_width+="px"}if(d.button_height==0){d.button_height="auto"}else{d.button_height+="px"}a.children("img").css({width:d.button_width,height:d.button_height});if(d.hide_iframe){if(e(window).attr("self")!==e(window).attr("top")){return}}var g=false;var b=0;var h=function(){clearTimeout(b);if(a.is(":visible")){a.stop().fadeTo(d.button_fade_duration,0,function(){a.hide();g=false})}};var j=function(){clearTimeout(b);b=setTimeout(function(){h()},d.auto_hide_after*1000)};var i=false;var c=function(){if(i){return}i=true;if(e(window).scrollTop()>d.scroll_offset){a.stop().css("opacity",g?1:d.button_opacity).show();if(!g&&d.auto_hide){j()}}else{h()}i=false};e(window).scroll(c);e(document).scroll(c);a.hover(function(){clearTimeout(b);g=true;e(this).css("opacity",1)},function(){e(this).css("opacity",d.button_opacity);g=false;j()}).click(function(){e("html, body").animate({scrollTop:0},d.scroll_duration);return false})}})();
|
languages/wpfront-scroll-top-de_DE.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-de_DE/readme.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
Contributor: Rene Wolf <fluchtsportler.de>
|
|
languages/wpfront-scroll-top-de_DE/wpfront-scroll-top-de_DE.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-de_DE/wpfront-scroll-top-de_DE.po
DELETED
@@ -1,382 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WPFront-Scroll-Top 1.4\n"
|
4 |
-
"POT-Creation-Date: 2014-09-18 09:33+0100\n"
|
5 |
-
"PO-Revision-Date: 2014-09-18 15:29+0100\n"
|
6 |
-
"Last-Translator: Kniebremser <kniebremser@fluchtsportler.de>\n"
|
7 |
-
"Language-Team: fluchtsportler.de <kniebremser@fluchtsportler.de>\n"
|
8 |
-
"Language: de_DE\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6.9\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../classes/base/class-wpfront-base-menu.php:52
|
20 |
-
msgid "Name"
|
21 |
-
msgstr "Name"
|
22 |
-
|
23 |
-
#: ../classes/base/class-wpfront-base-menu.php:53
|
24 |
-
msgid "Version"
|
25 |
-
msgstr "Version"
|
26 |
-
|
27 |
-
#: ../classes/base/class-wpfront-base-menu.php:54
|
28 |
-
msgid "Rating"
|
29 |
-
msgstr "Bewertung"
|
30 |
-
|
31 |
-
#: ../classes/base/class-wpfront-base-menu.php:55
|
32 |
-
msgid "Description"
|
33 |
-
msgstr "Beschreibung"
|
34 |
-
|
35 |
-
#: ../classes/base/class-wpfront-base-menu.php:69
|
36 |
-
#, php-format
|
37 |
-
msgid "based on %s rating(s)"
|
38 |
-
msgstr "basiert auf %s Bewertung(en) "
|
39 |
-
|
40 |
-
#: ../classes/base/class-wpfront-base-menu.php:105
|
41 |
-
msgid "Unable to communicate with WordPress.org"
|
42 |
-
msgstr "Unmöglich mit WordPress.org kommunizieren"
|
43 |
-
|
44 |
-
#: ../classes/base/class-wpfront-base-menu.php:123
|
45 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
46 |
-
msgid "WPFront Plugins"
|
47 |
-
msgstr "WPFront Plugins"
|
48 |
-
|
49 |
-
#: ../classes/base/class-wpfront-base-menu.php:147
|
50 |
-
#, php-format
|
51 |
-
msgid "By %s"
|
52 |
-
msgstr "Von %s"
|
53 |
-
|
54 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
55 |
-
#, php-format
|
56 |
-
msgid "More information about %s"
|
57 |
-
msgstr "Mehr Informationen über %s"
|
58 |
-
|
59 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
60 |
-
msgid "Details"
|
61 |
-
msgstr "Details"
|
62 |
-
|
63 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
64 |
-
#, php-format
|
65 |
-
msgid "Install %s"
|
66 |
-
msgstr "Installiere %s"
|
67 |
-
|
68 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
69 |
-
msgid "Install Now"
|
70 |
-
msgstr "Jetzt installieren"
|
71 |
-
|
72 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
73 |
-
#, php-format
|
74 |
-
msgid "Update to version %s"
|
75 |
-
msgstr "Aktualisiere auf Version %s"
|
76 |
-
|
77 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
78 |
-
msgid "Update Now"
|
79 |
-
msgstr "Jetzt aktualisieren"
|
80 |
-
|
81 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
82 |
-
msgid "This plugin is already installed and is up to date"
|
83 |
-
msgstr "Dieses Plugin ist bereits installiert und ist auf dem neuesten Stand"
|
84 |
-
|
85 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
86 |
-
msgid "Installed"
|
87 |
-
msgstr "Installiert"
|
88 |
-
|
89 |
-
#: ../classes/base/class-wpfront-base-menu.php:175
|
90 |
-
#: ../classes/base/class-wpfront-base.php:105
|
91 |
-
msgid "Settings"
|
92 |
-
msgstr "Einstellungen"
|
93 |
-
|
94 |
-
#: ../classes/base/class-wpfront-base-menu.php:177
|
95 |
-
msgid "Activate"
|
96 |
-
msgstr "Aktiviere"
|
97 |
-
|
98 |
-
#: ../classes/base/class-wpfront-base-menu.php:199
|
99 |
-
msgid "Feedback"
|
100 |
-
msgstr "Feedback"
|
101 |
-
|
102 |
-
#: ../classes/base/class-wpfront-base-menu.php:216
|
103 |
-
msgid "WPFront"
|
104 |
-
msgstr "WPFront"
|
105 |
-
|
106 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
107 |
-
msgid "All Plugins"
|
108 |
-
msgstr "Alle Plugins"
|
109 |
-
|
110 |
-
#: ../classes/base/class-wpfront-base.php:130
|
111 |
-
msgid "You do not have sufficient permissions to access this page."
|
112 |
-
msgstr ""
|
113 |
-
"Du verfügst nicht über ausreichende Berechtigungen, um auf diese Seite "
|
114 |
-
"zuzugreifen."
|
115 |
-
|
116 |
-
#: ../classes/base/class-wpfront-base.php:150
|
117 |
-
msgid ""
|
118 |
-
"If you have a caching plugin, clear the cache for the new settings to take "
|
119 |
-
"effect."
|
120 |
-
msgstr ""
|
121 |
-
"Wenn Du ein Caching-Plugin benutzt, lösche den Cache, damit die neuen "
|
122 |
-
"Einstellungen wirksam werden."
|
123 |
-
|
124 |
-
#: ../classes/base/class-wpfront-base.php:168
|
125 |
-
msgid "Settings Description"
|
126 |
-
msgstr "Einstellungen Beschreibung"
|
127 |
-
|
128 |
-
#: ../classes/base/class-wpfront-base.php:170
|
129 |
-
msgid "Plugin FAQ"
|
130 |
-
msgstr "Plugin FAQ"
|
131 |
-
|
132 |
-
#: ../classes/base/class-wpfront-base.php:172
|
133 |
-
msgid "Feature Request"
|
134 |
-
msgstr "Feature Wünsche "
|
135 |
-
|
136 |
-
#: ../classes/base/class-wpfront-base.php:174
|
137 |
-
msgid "Report Bug"
|
138 |
-
msgstr "Fehler melden"
|
139 |
-
|
140 |
-
#: ../classes/base/class-wpfront-base.php:176
|
141 |
-
msgid "Write Review"
|
142 |
-
msgstr "Bewertung schreiben"
|
143 |
-
|
144 |
-
#: ../classes/base/class-wpfront-base.php:178
|
145 |
-
msgid "Contact Me"
|
146 |
-
msgstr "Kontaktiere mich"
|
147 |
-
|
148 |
-
#: ../classes/base/class-wpfront-base.php:180
|
149 |
-
msgid "Buy me a Beer or Coffee"
|
150 |
-
msgstr "Kaufe mir ein Bier oder Kaffee"
|
151 |
-
|
152 |
-
#: ../classes/base/class-wpfront-base.php:197
|
153 |
-
msgid "Save Changes"
|
154 |
-
msgstr "Änderungen speichern"
|
155 |
-
|
156 |
-
#: ../classes/class-wpfront-scroll-top-options.php:41
|
157 |
-
msgid "Enabled"
|
158 |
-
msgstr "Aktiviert"
|
159 |
-
|
160 |
-
#: ../classes/class-wpfront-scroll-top-options.php:42
|
161 |
-
msgid "Scroll Offset"
|
162 |
-
msgstr "Scroll Versatz"
|
163 |
-
|
164 |
-
#: ../classes/class-wpfront-scroll-top-options.php:45
|
165 |
-
msgid "Button Opacity"
|
166 |
-
msgstr "Button Deckkraft"
|
167 |
-
|
168 |
-
#: ../classes/class-wpfront-scroll-top-options.php:46
|
169 |
-
msgid "Button Fade Duration"
|
170 |
-
msgstr "Button Ein-/Ausblendzeit"
|
171 |
-
|
172 |
-
#: ../classes/class-wpfront-scroll-top-options.php:47
|
173 |
-
msgid "Scroll Duration"
|
174 |
-
msgstr "Scrollzeit"
|
175 |
-
|
176 |
-
#: ../classes/class-wpfront-scroll-top-options.php:48
|
177 |
-
msgid "Auto Hide"
|
178 |
-
msgstr "Automatisch Ausblenden"
|
179 |
-
|
180 |
-
#: ../classes/class-wpfront-scroll-top-options.php:49
|
181 |
-
msgid "Auto Hide After"
|
182 |
-
msgstr "Automatisch Ausblenden nach"
|
183 |
-
|
184 |
-
#: ../classes/class-wpfront-scroll-top-options.php:50
|
185 |
-
msgid "Hide on Small Devices"
|
186 |
-
msgstr "Ausblenden auf kleinen Geräten"
|
187 |
-
|
188 |
-
#: ../classes/class-wpfront-scroll-top-options.php:51
|
189 |
-
msgid "Small Device Max Width"
|
190 |
-
msgstr "Kleine Geräte Max. Breite"
|
191 |
-
|
192 |
-
#: ../classes/class-wpfront-scroll-top-options.php:52
|
193 |
-
msgid "Hide on Small Window"
|
194 |
-
msgstr "Ausblenden in kleinen Fenstern"
|
195 |
-
|
196 |
-
#: ../classes/class-wpfront-scroll-top-options.php:53
|
197 |
-
msgid "Small Window Max Width"
|
198 |
-
msgstr "Kleine Fenster Max. Breite"
|
199 |
-
|
200 |
-
#: ../classes/class-wpfront-scroll-top-options.php:54
|
201 |
-
msgid "Button Style"
|
202 |
-
msgstr "Button Stil"
|
203 |
-
|
204 |
-
#: ../classes/class-wpfront-scroll-top-options.php:55
|
205 |
-
msgid "Image ALT"
|
206 |
-
msgstr "Image ALT"
|
207 |
-
|
208 |
-
#: ../classes/class-wpfront-scroll-top-options.php:56
|
209 |
-
msgid "Hide on WP-ADMIN"
|
210 |
-
msgstr "Ausblenden in WP-Admin"
|
211 |
-
|
212 |
-
#: ../classes/class-wpfront-scroll-top-options.php:57
|
213 |
-
msgid "Hide on iframes"
|
214 |
-
msgstr "Ausblenden in iframes"
|
215 |
-
|
216 |
-
#: ../classes/class-wpfront-scroll-top-options.php:59
|
217 |
-
#: ../templates/options-template.php:226
|
218 |
-
msgid "Location"
|
219 |
-
msgstr "Position"
|
220 |
-
|
221 |
-
#: ../classes/class-wpfront-scroll-top-options.php:60
|
222 |
-
msgid "Margin X"
|
223 |
-
msgstr "Margin X"
|
224 |
-
|
225 |
-
#: ../classes/class-wpfront-scroll-top-options.php:61
|
226 |
-
msgid "Margin Y"
|
227 |
-
msgstr "Margin Y"
|
228 |
-
|
229 |
-
#: ../classes/class-wpfront-scroll-top-options.php:63
|
230 |
-
#: ../templates/options-template.php:170
|
231 |
-
msgid "Text"
|
232 |
-
msgstr "Text"
|
233 |
-
|
234 |
-
#: ../classes/class-wpfront-scroll-top-options.php:64
|
235 |
-
msgid "Text Color"
|
236 |
-
msgstr "Textfarbe"
|
237 |
-
|
238 |
-
#: ../classes/class-wpfront-scroll-top-options.php:65
|
239 |
-
msgid "Background Color"
|
240 |
-
msgstr "Hintergrundfarbe"
|
241 |
-
|
242 |
-
#: ../classes/class-wpfront-scroll-top-options.php:66
|
243 |
-
msgid "Custom CSS"
|
244 |
-
msgstr "Benutzerdefiniertes CSS"
|
245 |
-
|
246 |
-
#: ../classes/class-wpfront-scroll-top-options.php:68
|
247 |
-
msgid "Display on Pages"
|
248 |
-
msgstr "Anzeige in Seiten"
|
249 |
-
|
250 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
251 |
-
msgid "WPFront Scroll Top"
|
252 |
-
msgstr "WPFront Scroll Top"
|
253 |
-
|
254 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
255 |
-
msgid "Scroll Top"
|
256 |
-
msgstr "Nach Oben scrollen"
|
257 |
-
|
258 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
259 |
-
#: ../classes/class-wpfront-scroll-top.php:230
|
260 |
-
msgid "[Page]"
|
261 |
-
msgstr "[Seite]"
|
262 |
-
|
263 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
264 |
-
msgid "Home"
|
265 |
-
msgstr "Home"
|
266 |
-
|
267 |
-
#: ../classes/class-wpfront-scroll-top.php:235
|
268 |
-
msgid "[Post]"
|
269 |
-
msgstr "[Beitrag]"
|
270 |
-
|
271 |
-
#: ../templates/options-template.php:32
|
272 |
-
msgid "WPFront Scroll Top Settings"
|
273 |
-
msgstr "WPFront Scroll Top Einstellungen"
|
274 |
-
|
275 |
-
#: ../templates/options-template.php:34
|
276 |
-
msgid "Display"
|
277 |
-
msgstr "Anzeige"
|
278 |
-
|
279 |
-
#: ../templates/options-template.php:50
|
280 |
-
msgid "[Number of pixels to be scrolled before the button appears.]"
|
281 |
-
msgstr "[Anzahl der Pixel zum scrollen, bevor der Button angezeigt wird.]"
|
282 |
-
|
283 |
-
#: ../templates/options-template.php:55
|
284 |
-
msgid "Button Size"
|
285 |
-
msgstr "Button Größe"
|
286 |
-
|
287 |
-
#: ../templates/options-template.php:61
|
288 |
-
msgid "[Set 0px to auto fit.]"
|
289 |
-
msgstr "[Setze 0px für automatsche Anpassung.]"
|
290 |
-
|
291 |
-
#: ../templates/options-template.php:79
|
292 |
-
msgid "[Button fade duration in milliseconds.]"
|
293 |
-
msgstr "[Button Ein-/Ausblendzeit in Millisekunden.]"
|
294 |
-
|
295 |
-
#: ../templates/options-template.php:88
|
296 |
-
msgid "[Window scroll duration in milliseconds.]"
|
297 |
-
msgstr "[Fenster Scrollzeit in Millisekunden.]"
|
298 |
-
|
299 |
-
#: ../templates/options-template.php:105
|
300 |
-
msgid ""
|
301 |
-
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
302 |
-
msgstr ""
|
303 |
-
"[Button wird automatisch ausgeblendet nach dieser Dauer in Sekunden, wenn "
|
304 |
-
"aktiviert.]"
|
305 |
-
|
306 |
-
#: ../templates/options-template.php:114
|
307 |
-
msgid "[Button will be hidden on small devices when the width matches.]"
|
308 |
-
msgstr ""
|
309 |
-
"[Button wird in kleinen Geräten ausgeblendet, wenn die Breite entspricht.]"
|
310 |
-
|
311 |
-
#: ../templates/options-template.php:123
|
312 |
-
msgid "[Button will be hidden on devices with lesser or equal width.]"
|
313 |
-
msgstr ""
|
314 |
-
"[Button wird auf Geräten mit geringerer oder gleicher Breite ausgeblendet.]"
|
315 |
-
|
316 |
-
#: ../templates/options-template.php:132
|
317 |
-
msgid "[Button will be hidden on broswer window when the width matches.]"
|
318 |
-
msgstr ""
|
319 |
-
"[Button wird im Broswerfenster ausgeblendet, wenn die Breite entspricht.]"
|
320 |
-
|
321 |
-
#: ../templates/options-template.php:141
|
322 |
-
msgid "[Button will be hidden on browser window with lesser or equal width.]"
|
323 |
-
msgstr ""
|
324 |
-
"[Button wird im Browserfenster mit geringerer oder gleicher Breite "
|
325 |
-
"ausgeblendet.]"
|
326 |
-
|
327 |
-
#: ../templates/options-template.php:150
|
328 |
-
msgid "[Button will be hidden on 'wp-admin'.]"
|
329 |
-
msgstr "[Button wird in 'wp-admin' ausgeblendet.]"
|
330 |
-
|
331 |
-
#: ../templates/options-template.php:159
|
332 |
-
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
333 |
-
msgstr ""
|
334 |
-
"[Button wird in iframes ausgeblendet, in der Regel innerhalb von Popups.]"
|
335 |
-
|
336 |
-
#: ../templates/options-template.php:168 ../templates/options-template.php:317
|
337 |
-
msgid "Image"
|
338 |
-
msgstr "Bild"
|
339 |
-
|
340 |
-
#: ../templates/options-template.php:184
|
341 |
-
msgid "Text Button"
|
342 |
-
msgstr "Text Button"
|
343 |
-
|
344 |
-
#: ../templates/options-template.php:234
|
345 |
-
msgid "Bottom Right"
|
346 |
-
msgstr "Unten Rechts"
|
347 |
-
|
348 |
-
#: ../templates/options-template.php:235
|
349 |
-
msgid "Bottom Left"
|
350 |
-
msgstr "Unten Links"
|
351 |
-
|
352 |
-
#: ../templates/options-template.php:236
|
353 |
-
msgid "Top Right"
|
354 |
-
msgstr "Oben Rechts"
|
355 |
-
|
356 |
-
#: ../templates/options-template.php:237
|
357 |
-
msgid "Top Left"
|
358 |
-
msgstr "Oben Links"
|
359 |
-
|
360 |
-
#: ../templates/options-template.php:247 ../templates/options-template.php:256
|
361 |
-
msgid "[Negative value allowed.]"
|
362 |
-
msgstr "[Negativer Wert erlaubt.]"
|
363 |
-
|
364 |
-
#: ../templates/options-template.php:261
|
365 |
-
msgid "Filter"
|
366 |
-
msgstr "Filter"
|
367 |
-
|
368 |
-
#: ../templates/options-template.php:270
|
369 |
-
msgid "All pages."
|
370 |
-
msgstr "Alle Seiten."
|
371 |
-
|
372 |
-
#: ../templates/options-template.php:275
|
373 |
-
msgid "Include in following pages"
|
374 |
-
msgstr "Folgende Seiten einschließen"
|
375 |
-
|
376 |
-
#: ../templates/options-template.php:295
|
377 |
-
msgid "Exclude in following pages"
|
378 |
-
msgstr "Folgende Seiten ausschließen"
|
379 |
-
|
380 |
-
#: ../templates/options-template.php:333
|
381 |
-
msgid "Custom URL"
|
382 |
-
msgstr "Benutzerdefinierte URL"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpfront-scroll-top-es_ES.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-es_ES/readme.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
Contributor: Ogi Djuraskovic <firstsiteguide.com>
|
|
languages/wpfront-scroll-top-es_ES/wpfront-scroll-top-es_ES.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-es_ES/wpfront-scroll-top-es_ES.po
DELETED
@@ -1,504 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
-
"POT-Creation-Date: 2014-03-16 22:12-0700\n"
|
5 |
-
"PO-Revision-Date: 2014-06-12 14:11+0100\n"
|
6 |
-
"Last-Translator: jelena kovacevic <jecajeca260@gmail.com>\n"
|
7 |
-
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.5.5\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../classes/base/class-wpfront-base-menu.php:52
|
20 |
-
msgid "Name"
|
21 |
-
msgstr "Nombre"
|
22 |
-
|
23 |
-
#: ../classes/base/class-wpfront-base-menu.php:53
|
24 |
-
msgid "Version"
|
25 |
-
msgstr "Versión"
|
26 |
-
|
27 |
-
#: ../classes/base/class-wpfront-base-menu.php:54
|
28 |
-
msgid "Rating"
|
29 |
-
msgstr "Evaluación"
|
30 |
-
|
31 |
-
#: ../classes/base/class-wpfront-base-menu.php:55
|
32 |
-
msgid "Description"
|
33 |
-
msgstr "Descripción"
|
34 |
-
|
35 |
-
#: ../classes/base/class-wpfront-base-menu.php:69
|
36 |
-
#, php-format
|
37 |
-
msgid "based on %s rating(s)"
|
38 |
-
msgstr "sobre la base de %s calificación (s)"
|
39 |
-
|
40 |
-
#: ../classes/base/class-wpfront-base-menu.php:105
|
41 |
-
msgid "Unable to communicate with WordPress.org"
|
42 |
-
msgstr "No se puede comunicar con WordPress.org"
|
43 |
-
|
44 |
-
#: ../classes/base/class-wpfront-base-menu.php:123
|
45 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
46 |
-
msgid "WPFront Plugins"
|
47 |
-
msgstr "WPFront Plugins"
|
48 |
-
|
49 |
-
#: ../classes/base/class-wpfront-base-menu.php:147
|
50 |
-
#, php-format
|
51 |
-
msgid "By %s"
|
52 |
-
msgstr "Por %s"
|
53 |
-
|
54 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
55 |
-
#, php-format
|
56 |
-
msgid "More information about %s"
|
57 |
-
msgstr "Más información sobre %s"
|
58 |
-
|
59 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
60 |
-
msgid "Details"
|
61 |
-
msgstr "Detalles"
|
62 |
-
|
63 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
64 |
-
#, php-format
|
65 |
-
msgid "Install %s"
|
66 |
-
msgstr "Instalar %s"
|
67 |
-
|
68 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
69 |
-
msgid "Install Now"
|
70 |
-
msgstr "Instalar ahora"
|
71 |
-
|
72 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
73 |
-
#, php-format
|
74 |
-
msgid "Update to version %s"
|
75 |
-
msgstr "Actualizar a la versión %s"
|
76 |
-
|
77 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
78 |
-
msgid "Update Now"
|
79 |
-
msgstr "Actualizar ahora"
|
80 |
-
|
81 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
82 |
-
msgid "This plugin is already installed and is up to date"
|
83 |
-
msgstr "Este plugin ya está instalado y está actualizado"
|
84 |
-
|
85 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
86 |
-
msgid "Installed"
|
87 |
-
msgstr "Instalado"
|
88 |
-
|
89 |
-
#: ../classes/base/class-wpfront-base-menu.php:175
|
90 |
-
#: ../classes/base/class-wpfront-base.php:105
|
91 |
-
msgid "Settings"
|
92 |
-
msgstr "Ajustes"
|
93 |
-
|
94 |
-
#: ../classes/base/class-wpfront-base-menu.php:177
|
95 |
-
msgid "Activate"
|
96 |
-
msgstr "Activar"
|
97 |
-
|
98 |
-
#: ../classes/base/class-wpfront-base-menu.php:199
|
99 |
-
msgid "Feedback"
|
100 |
-
msgstr "Retroalimentación"
|
101 |
-
|
102 |
-
#: ../classes/base/class-wpfront-base-menu.php:216
|
103 |
-
msgid "WPFront"
|
104 |
-
msgstr "WPFront"
|
105 |
-
|
106 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
107 |
-
msgid "All Plugins"
|
108 |
-
msgstr "Todos los Plugins"
|
109 |
-
|
110 |
-
#: ../classes/base/class-wpfront-base.php:130
|
111 |
-
msgid "You do not have sufficient permissions to access this page."
|
112 |
-
msgstr "Usted no tiene los permisos necesarios para acceder a esta página."
|
113 |
-
|
114 |
-
#: ../classes/base/class-wpfront-base.php:150
|
115 |
-
msgid ""
|
116 |
-
"If you have a caching plugin, clear the cache for the new settings to take "
|
117 |
-
"effect."
|
118 |
-
msgstr ""
|
119 |
-
"Si usted tiene un plugin de caché, borrar la caché para que los cambios de "
|
120 |
-
"configuración surtan efecto."
|
121 |
-
|
122 |
-
#: ../classes/base/class-wpfront-base.php:168
|
123 |
-
msgid "Settings Description"
|
124 |
-
msgstr "Descripción Ajustes"
|
125 |
-
|
126 |
-
#: ../classes/base/class-wpfront-base.php:170
|
127 |
-
msgid "Plugin FAQ"
|
128 |
-
msgstr "Plugin PF"
|
129 |
-
|
130 |
-
#: ../classes/base/class-wpfront-base.php:172
|
131 |
-
msgid "Feature Request"
|
132 |
-
msgstr "Solicitud de funciones"
|
133 |
-
|
134 |
-
#: ../classes/base/class-wpfront-base.php:174
|
135 |
-
msgid "Report Bug"
|
136 |
-
msgstr "Reportar Bug"
|
137 |
-
|
138 |
-
#: ../classes/base/class-wpfront-base.php:176
|
139 |
-
msgid "Write Review"
|
140 |
-
msgstr "Escribir Comentario"
|
141 |
-
|
142 |
-
#: ../classes/base/class-wpfront-base.php:178
|
143 |
-
msgid "Contact Me (syam@wpfront.com)"
|
144 |
-
msgstr "Comuníquese Conmigo (syam@wpfront.com)"
|
145 |
-
|
146 |
-
#: ../classes/base/class-wpfront-base.php:180
|
147 |
-
msgid "Buy me a Beer or Coffee"
|
148 |
-
msgstr "Cómpreme una cerveza o café"
|
149 |
-
|
150 |
-
#: ../classes/base/class-wpfront-base.php:197
|
151 |
-
msgid "Save Changes"
|
152 |
-
msgstr "Guardar cambios"
|
153 |
-
|
154 |
-
#: ../classes/class-wpfront-scroll-top-options.php:41
|
155 |
-
msgid "Enabled"
|
156 |
-
msgstr "Habilitado"
|
157 |
-
|
158 |
-
#: ../classes/class-wpfront-scroll-top-options.php:42
|
159 |
-
msgid "Scroll Offset"
|
160 |
-
msgstr "Offset de Desplazamiento"
|
161 |
-
|
162 |
-
#: ../classes/class-wpfront-scroll-top-options.php:45
|
163 |
-
msgid "Button Opacity"
|
164 |
-
msgstr "Opacidad Botón"
|
165 |
-
|
166 |
-
#: ../classes/class-wpfront-scroll-top-options.php:46
|
167 |
-
msgid "Button Fade Duration"
|
168 |
-
msgstr "Duración Botón Desvanecer"
|
169 |
-
|
170 |
-
#: ../classes/class-wpfront-scroll-top-options.php:47
|
171 |
-
msgid "Scroll Duration"
|
172 |
-
msgstr "Duración Desplazamiento"
|
173 |
-
|
174 |
-
#: ../classes/class-wpfront-scroll-top-options.php:48
|
175 |
-
msgid "Auto Hide"
|
176 |
-
msgstr "Auto Ocultar"
|
177 |
-
|
178 |
-
#: ../classes/class-wpfront-scroll-top-options.php:49
|
179 |
-
msgid "Auto Hide After"
|
180 |
-
msgstr "Ocultar automáticamente Después de"
|
181 |
-
|
182 |
-
#: ../classes/class-wpfront-scroll-top-options.php:50
|
183 |
-
msgid "Hide on Small Devices"
|
184 |
-
msgstr "Ocultar en pequeños dispositivos"
|
185 |
-
|
186 |
-
#: ../classes/class-wpfront-scroll-top-options.php:51
|
187 |
-
msgid "Small Device Max Width"
|
188 |
-
msgstr "Anchura máxima Dispositivo pequeño"
|
189 |
-
|
190 |
-
#: ../classes/class-wpfront-scroll-top-options.php:52
|
191 |
-
msgid "Hide on Small Window"
|
192 |
-
msgstr "Ocultar en Ventana Pequeña"
|
193 |
-
|
194 |
-
#: ../classes/class-wpfront-scroll-top-options.php:53
|
195 |
-
msgid "Small Window Max Width"
|
196 |
-
msgstr "Anchura máxima ventana Pequeña"
|
197 |
-
|
198 |
-
#: ../classes/class-wpfront-scroll-top-options.php:54
|
199 |
-
msgid "Button Style"
|
200 |
-
msgstr "Estilo del botón"
|
201 |
-
|
202 |
-
#: ../classes/class-wpfront-scroll-top-options.php:55
|
203 |
-
msgid "Hide on WP-ADMIN"
|
204 |
-
msgstr "Ocultar en WP-ADMIN"
|
205 |
-
|
206 |
-
#: ../classes/class-wpfront-scroll-top-options.php:56
|
207 |
-
msgid "Hide on iframes"
|
208 |
-
msgstr "Ocultar en iframes"
|
209 |
-
|
210 |
-
#: ../classes/class-wpfront-scroll-top-options.php:58
|
211 |
-
#: ../templates/options-template.php:218
|
212 |
-
msgid "Location"
|
213 |
-
msgstr "Ubicación"
|
214 |
-
|
215 |
-
#: ../classes/class-wpfront-scroll-top-options.php:59
|
216 |
-
msgid "Margin X"
|
217 |
-
msgstr "Margen X"
|
218 |
-
|
219 |
-
#: ../classes/class-wpfront-scroll-top-options.php:60
|
220 |
-
msgid "Margin Y"
|
221 |
-
msgstr "Margen Y"
|
222 |
-
|
223 |
-
#: ../classes/class-wpfront-scroll-top-options.php:62
|
224 |
-
#: ../templates/options-template.php:170
|
225 |
-
msgid "Text"
|
226 |
-
msgstr "Texto"
|
227 |
-
|
228 |
-
#: ../classes/class-wpfront-scroll-top-options.php:63
|
229 |
-
msgid "Text Color"
|
230 |
-
msgstr "Color del texto"
|
231 |
-
|
232 |
-
#: ../classes/class-wpfront-scroll-top-options.php:64
|
233 |
-
msgid "Background Color"
|
234 |
-
msgstr "Color de fondo"
|
235 |
-
|
236 |
-
#: ../classes/class-wpfront-scroll-top-options.php:65
|
237 |
-
msgid "Custom CSS"
|
238 |
-
msgstr "CSS personalizado"
|
239 |
-
|
240 |
-
#: ../classes/class-wpfront-scroll-top-options.php:67
|
241 |
-
msgid "Display on Pages"
|
242 |
-
msgstr "Display en las páginas"
|
243 |
-
|
244 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
245 |
-
msgid "WPFront Scroll Top"
|
246 |
-
msgstr "WPFront ScrollTop"
|
247 |
-
|
248 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
249 |
-
msgid "Scroll Top"
|
250 |
-
msgstr "ScrollTop"
|
251 |
-
|
252 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
253 |
-
#: ../classes/class-wpfront-scroll-top.php:230
|
254 |
-
msgid "[Page]"
|
255 |
-
msgstr "[página]"
|
256 |
-
|
257 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
258 |
-
msgid "Home"
|
259 |
-
msgstr "Inicio"
|
260 |
-
|
261 |
-
#: ../classes/class-wpfront-scroll-top.php:235
|
262 |
-
msgid "[Post]"
|
263 |
-
msgstr "[Publicación]"
|
264 |
-
|
265 |
-
#: ../templates/options-template.php:32
|
266 |
-
msgid "WPFront Scroll Top Settings"
|
267 |
-
msgstr "WPFront Ajustes superiores desplazamiento"
|
268 |
-
|
269 |
-
#: ../templates/options-template.php:34
|
270 |
-
msgid "Display"
|
271 |
-
msgstr "Mostrar"
|
272 |
-
|
273 |
-
#: ../templates/options-template.php:50
|
274 |
-
msgid "[Number of pixels to be scrolled before the button appears.]"
|
275 |
-
msgstr ""
|
276 |
-
"[Número de píxeles a ser desplazado antes de que aparezca en el botón.]"
|
277 |
-
|
278 |
-
#: ../templates/options-template.php:55
|
279 |
-
msgid "Button Size"
|
280 |
-
msgstr "Tamaño Botón"
|
281 |
-
|
282 |
-
#: ../templates/options-template.php:61
|
283 |
-
msgid "[Set 0px to auto fit.]"
|
284 |
-
msgstr "[Establecer 0px para autoredimensionamiento.]"
|
285 |
-
|
286 |
-
#: ../templates/options-template.php:79
|
287 |
-
msgid "[Button fade duration in milliseconds.]"
|
288 |
-
msgstr "[Duración de disolvencia botón en milisegundos.]"
|
289 |
-
|
290 |
-
#: ../templates/options-template.php:88
|
291 |
-
msgid "[Window scroll duration in milliseconds.]"
|
292 |
-
msgstr "[Duración de la ventana de desplazamiento en milisegundos.]"
|
293 |
-
|
294 |
-
#: ../templates/options-template.php:105
|
295 |
-
msgid ""
|
296 |
-
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
297 |
-
msgstr ""
|
298 |
-
"[El Botón se auto ocultará después de esta duración en segundos, si está "
|
299 |
-
"activado.]"
|
300 |
-
|
301 |
-
#: ../templates/options-template.php:114
|
302 |
-
msgid "[Button will be hidden on small devices when the width matches.]"
|
303 |
-
msgstr ""
|
304 |
-
"[El Botón estará oculto en pequeños dispositivos cuando el ancho coincida.]"
|
305 |
-
|
306 |
-
#: ../templates/options-template.php:123
|
307 |
-
msgid "[Button will be hidden on devices with lesser or equal width.]"
|
308 |
-
msgstr "[El botón se oculta en los dispositivos con menor o igual anchura.]"
|
309 |
-
|
310 |
-
#: ../templates/options-template.php:132
|
311 |
-
msgid "[Button will be hidden on broswer window when the width matches.]"
|
312 |
-
msgstr ""
|
313 |
-
"[El botón estará oculto en la ventana del navegador cuando el ancho "
|
314 |
-
"coincida.]"
|
315 |
-
|
316 |
-
#: ../templates/options-template.php:141
|
317 |
-
msgid "[Button will be hidden on browser window with lesser or equal width.]"
|
318 |
-
msgstr ""
|
319 |
-
"[El botón se oculta en la ventana del navegador con menor o igual anchura.]"
|
320 |
-
|
321 |
-
#: ../templates/options-template.php:150
|
322 |
-
msgid "[Button will be hidden on 'wp-admin'.]"
|
323 |
-
msgstr "[El botón se ocultará en 'wp-admin'.]"
|
324 |
-
|
325 |
-
#: ../templates/options-template.php:159
|
326 |
-
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
327 |
-
msgstr ""
|
328 |
-
"[El botón se ocultará en iframes, por lo general dentro de las ventanas "
|
329 |
-
"emergentes.]"
|
330 |
-
|
331 |
-
#: ../templates/options-template.php:168 ../templates/options-template.php:309
|
332 |
-
msgid "Image"
|
333 |
-
msgstr "Imagen"
|
334 |
-
|
335 |
-
#: ../templates/options-template.php:176
|
336 |
-
msgid "Text Button"
|
337 |
-
msgstr "Texto del botón"
|
338 |
-
|
339 |
-
#: ../templates/options-template.php:226
|
340 |
-
msgid "Bottom Right"
|
341 |
-
msgstr "Inferior derecha"
|
342 |
-
|
343 |
-
#: ../templates/options-template.php:227
|
344 |
-
msgid "Bottom Left"
|
345 |
-
msgstr "Inferior izquierda"
|
346 |
-
|
347 |
-
#: ../templates/options-template.php:228
|
348 |
-
msgid "Top Right"
|
349 |
-
msgstr "Superior derecha"
|
350 |
-
|
351 |
-
#: ../templates/options-template.php:229
|
352 |
-
msgid "Top Left"
|
353 |
-
msgstr "Superior izquierda"
|
354 |
-
|
355 |
-
#: ../templates/options-template.php:239 ../templates/options-template.php:248
|
356 |
-
msgid "[Negative value allowed.]"
|
357 |
-
msgstr "[Valor negativo permitido.]"
|
358 |
-
|
359 |
-
#: ../templates/options-template.php:253
|
360 |
-
msgid "Filter"
|
361 |
-
msgstr "Filtrar"
|
362 |
-
|
363 |
-
#: ../templates/options-template.php:262
|
364 |
-
msgid "All pages."
|
365 |
-
msgstr "Todas las páginas."
|
366 |
-
|
367 |
-
#: ../templates/options-template.php:267
|
368 |
-
msgid "Include in following pages"
|
369 |
-
msgstr "Incluir en el seguimiento de páginas"
|
370 |
-
|
371 |
-
#: ../templates/options-template.php:287
|
372 |
-
msgid "Exclude in following pages"
|
373 |
-
msgstr "Excluir en las páginas siguientes"
|
374 |
-
|
375 |
-
#: ../templates/options-template.php:325
|
376 |
-
msgid "Custom URL"
|
377 |
-
msgstr "URL personalizada"
|
378 |
-
|
379 |
-
#~ msgid "Bar Height"
|
380 |
-
#~ msgstr "Bar Height"
|
381 |
-
|
382 |
-
#~ msgid "Message Text"
|
383 |
-
#~ msgstr "Message Text"
|
384 |
-
|
385 |
-
#~ msgid "Display After"
|
386 |
-
#~ msgstr "Display After"
|
387 |
-
|
388 |
-
#~ msgid "Display Close Button"
|
389 |
-
#~ msgstr "Display Close Button"
|
390 |
-
|
391 |
-
#~ msgid "Display Button"
|
392 |
-
#~ msgstr "Display Button"
|
393 |
-
|
394 |
-
#~ msgid "Open URL:"
|
395 |
-
#~ msgstr "Open URL:"
|
396 |
-
|
397 |
-
#~ msgid "Open URL in new tab/window"
|
398 |
-
#~ msgstr "Open URL in new tab/window"
|
399 |
-
|
400 |
-
#~ msgid "Execute JavaScript"
|
401 |
-
#~ msgstr "Execute JavaScript"
|
402 |
-
|
403 |
-
#~ msgid "Close Bar on Button Click"
|
404 |
-
#~ msgstr "Close Bar on Button Click"
|
405 |
-
|
406 |
-
#~ msgid "Display Shadow"
|
407 |
-
#~ msgstr "Display Shadow"
|
408 |
-
|
409 |
-
#~ msgid "Fixed at Position"
|
410 |
-
#~ msgstr "Fixed at Position"
|
411 |
-
|
412 |
-
#~ msgid "Message Text Color"
|
413 |
-
#~ msgstr "Message Text Color"
|
414 |
-
|
415 |
-
#~ msgid "From Color"
|
416 |
-
#~ msgstr "From Color"
|
417 |
-
|
418 |
-
#~ msgid "Button Text Color"
|
419 |
-
#~ msgstr "Button Text Color"
|
420 |
-
|
421 |
-
#~ msgid "Display Reopen Button"
|
422 |
-
#~ msgstr "Display Reopen Button"
|
423 |
-
|
424 |
-
#~ msgid "Reopen Button Color"
|
425 |
-
#~ msgstr "Reopen Button Color"
|
426 |
-
|
427 |
-
#~ msgid "Keep Closed"
|
428 |
-
#~ msgstr "Keep Closed"
|
429 |
-
|
430 |
-
#~ msgid "Position Offset"
|
431 |
-
#~ msgstr "Position Offset"
|
432 |
-
|
433 |
-
#~ msgid "WPFront Notification Bar"
|
434 |
-
#~ msgstr "WPFront Notification Bar"
|
435 |
-
|
436 |
-
#~ msgid "Notification Bar"
|
437 |
-
#~ msgstr "Notification Bar"
|
438 |
-
|
439 |
-
#~ msgid "Top"
|
440 |
-
#~ msgstr "Top"
|
441 |
-
|
442 |
-
#~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
443 |
-
#~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
444 |
-
|
445 |
-
#~ msgid "px"
|
446 |
-
#~ msgstr "px"
|
447 |
-
|
448 |
-
#~ msgid ""
|
449 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
450 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
451 |
-
#~ msgstr ""
|
452 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
453 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
454 |
-
|
455 |
-
#~ msgid "second(s)"
|
456 |
-
#~ msgstr "second(s)"
|
457 |
-
|
458 |
-
#~ msgid "Set 0 second(s) to display immediately."
|
459 |
-
#~ msgstr "Set 0 second(s) to display immediately."
|
460 |
-
|
461 |
-
#~ msgid "Set 0 second(s) for no animation."
|
462 |
-
#~ msgstr "Set 0 second(s) for no animation."
|
463 |
-
|
464 |
-
#~ msgid "[Displays a close button at the top right corner of the bar.]"
|
465 |
-
#~ msgstr "[Displays a close button at the top right corner of the bar.]"
|
466 |
-
|
467 |
-
#~ msgid "Set 0 second(s) to disable auto close."
|
468 |
-
#~ msgstr "Set 0 second(s) to disable auto close."
|
469 |
-
|
470 |
-
#~ msgid "A reopen button will be displayed after the bar is closed."
|
471 |
-
#~ msgstr "A reopen button will be displayed after the bar is closed."
|
472 |
-
|
473 |
-
#~ msgid "Once closed, bar will display closed on other pages."
|
474 |
-
#~ msgstr "Once closed, bar will display closed on other pages."
|
475 |
-
|
476 |
-
#~ msgid "Content"
|
477 |
-
#~ msgstr "Content"
|
478 |
-
|
479 |
-
#~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
480 |
-
#~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
481 |
-
|
482 |
-
#~ msgid "[Displays a button next to the message.]"
|
483 |
-
#~ msgstr "[Displays a button next to the message.]"
|
484 |
-
|
485 |
-
#~ msgid "Only in landing page."
|
486 |
-
#~ msgstr "Only in landing page."
|
487 |
-
|
488 |
-
#~ msgid "[The first page they visit on your website.]"
|
489 |
-
#~ msgstr "[The first page they visit on your website.]"
|
490 |
-
|
491 |
-
#~ msgid "Color"
|
492 |
-
#~ msgstr "Color"
|
493 |
-
|
494 |
-
#~ msgid "[Select two different colors to create a gradient.]"
|
495 |
-
#~ msgstr "[Select two different colors to create a gradient.]"
|
496 |
-
|
497 |
-
#~ msgid "Button Color"
|
498 |
-
#~ msgstr "Button Color"
|
499 |
-
|
500 |
-
#~ msgid "Animate Display"
|
501 |
-
#~ msgstr "Animate Display"
|
502 |
-
|
503 |
-
#~ msgid "Animate Display Delay"
|
504 |
-
#~ msgstr "Animate Display Delay"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpfront-scroll-top-ru_RU.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-ru_RU/readme.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
Contributor: Flector <wordpressplugins.ru>
|
|
languages/wpfront-scroll-top-ru_RU/wpfront-scroll-top-ru_RU.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-ru_RU/wpfront-scroll-top-ru_RU.po
DELETED
@@ -1,509 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WPFrontScrollTop-ru_RU\n"
|
4 |
-
"POT-Creation-Date: 2014-08-11 09:33-0700\n"
|
5 |
-
"PO-Revision-Date: 2014-08-14 16:26+0400\n"
|
6 |
-
"Last-Translator: Flector <rlector@gmail.com>\n"
|
7 |
-
"Language-Team: WordpressPlugins.ru <rlector@gmail.com>\n"
|
8 |
-
"Language: ru\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6.7\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
15 |
-
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../classes/base/class-wpfront-base-menu.php:52
|
21 |
-
msgid "Name"
|
22 |
-
msgstr "Имя"
|
23 |
-
|
24 |
-
#: ../classes/base/class-wpfront-base-menu.php:53
|
25 |
-
msgid "Version"
|
26 |
-
msgstr "Версия"
|
27 |
-
|
28 |
-
#: ../classes/base/class-wpfront-base-menu.php:54
|
29 |
-
msgid "Rating"
|
30 |
-
msgstr "Рейтинг"
|
31 |
-
|
32 |
-
#: ../classes/base/class-wpfront-base-menu.php:55
|
33 |
-
msgid "Description"
|
34 |
-
msgstr "Описание"
|
35 |
-
|
36 |
-
#: ../classes/base/class-wpfront-base-menu.php:69
|
37 |
-
#, php-format
|
38 |
-
msgid "based on %s rating(s)"
|
39 |
-
msgstr "на основе %s голосов"
|
40 |
-
|
41 |
-
#: ../classes/base/class-wpfront-base-menu.php:105
|
42 |
-
msgid "Unable to communicate with WordPress.org"
|
43 |
-
msgstr "Невозможно соединиться с WordPress.org"
|
44 |
-
|
45 |
-
#: ../classes/base/class-wpfront-base-menu.php:123
|
46 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
47 |
-
msgid "WPFront Plugins"
|
48 |
-
msgstr "Плагины от WPFront "
|
49 |
-
|
50 |
-
#: ../classes/base/class-wpfront-base-menu.php:147
|
51 |
-
#, php-format
|
52 |
-
msgid "By %s"
|
53 |
-
msgstr "Автор: %s"
|
54 |
-
|
55 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
56 |
-
#, php-format
|
57 |
-
msgid "More information about %s"
|
58 |
-
msgstr "Больше информации о плагине %s"
|
59 |
-
|
60 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
61 |
-
msgid "Details"
|
62 |
-
msgstr "Детали"
|
63 |
-
|
64 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
65 |
-
#, php-format
|
66 |
-
msgid "Install %s"
|
67 |
-
msgstr "Установить %s"
|
68 |
-
|
69 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
70 |
-
msgid "Install Now"
|
71 |
-
msgstr "Установить сейчас"
|
72 |
-
|
73 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
74 |
-
#, php-format
|
75 |
-
msgid "Update to version %s"
|
76 |
-
msgstr "Обновить до версии %s"
|
77 |
-
|
78 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
79 |
-
msgid "Update Now"
|
80 |
-
msgstr "Обновить сейчас"
|
81 |
-
|
82 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
83 |
-
msgid "This plugin is already installed and is up to date"
|
84 |
-
msgstr "Этот плагин уже установлен и не нуждается в обновлении"
|
85 |
-
|
86 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
87 |
-
msgid "Installed"
|
88 |
-
msgstr "Установлен"
|
89 |
-
|
90 |
-
#: ../classes/base/class-wpfront-base-menu.php:175
|
91 |
-
#: ../classes/base/class-wpfront-base.php:105
|
92 |
-
msgid "Settings"
|
93 |
-
msgstr "Настройки"
|
94 |
-
|
95 |
-
#: ../classes/base/class-wpfront-base-menu.php:177
|
96 |
-
msgid "Activate"
|
97 |
-
msgstr "Активировать"
|
98 |
-
|
99 |
-
#: ../classes/base/class-wpfront-base-menu.php:199
|
100 |
-
msgid "Feedback"
|
101 |
-
msgstr "Связаться с автором"
|
102 |
-
|
103 |
-
#: ../classes/base/class-wpfront-base-menu.php:216
|
104 |
-
msgid "WPFront"
|
105 |
-
msgstr "WPFront"
|
106 |
-
|
107 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
108 |
-
msgid "All Plugins"
|
109 |
-
msgstr "Все плагины"
|
110 |
-
|
111 |
-
#: ../classes/base/class-wpfront-base.php:130
|
112 |
-
msgid "You do not have sufficient permissions to access this page."
|
113 |
-
msgstr "У вас нет необходимых прав для доступа к этой странице."
|
114 |
-
|
115 |
-
#: ../classes/base/class-wpfront-base.php:150
|
116 |
-
msgid ""
|
117 |
-
"If you have a caching plugin, clear the cache for the new settings to take "
|
118 |
-
"effect."
|
119 |
-
msgstr ""
|
120 |
-
"Если вы используете плагины кэширования, то вам необходимо скинуть файлы "
|
121 |
-
"кэша."
|
122 |
-
|
123 |
-
#: ../classes/base/class-wpfront-base.php:168
|
124 |
-
msgid "Settings Description"
|
125 |
-
msgstr "Описание настроек"
|
126 |
-
|
127 |
-
#: ../classes/base/class-wpfront-base.php:170
|
128 |
-
msgid "Plugin FAQ"
|
129 |
-
msgstr "FAQ плагина"
|
130 |
-
|
131 |
-
#: ../classes/base/class-wpfront-base.php:172
|
132 |
-
msgid "Feature Request"
|
133 |
-
msgstr "Запрос функций"
|
134 |
-
|
135 |
-
#: ../classes/base/class-wpfront-base.php:174
|
136 |
-
msgid "Report Bug"
|
137 |
-
msgstr "Сообщить об ошибке"
|
138 |
-
|
139 |
-
#: ../classes/base/class-wpfront-base.php:176
|
140 |
-
msgid "Write Review"
|
141 |
-
msgstr "Написать ревью"
|
142 |
-
|
143 |
-
#: ../classes/base/class-wpfront-base.php:178
|
144 |
-
msgid "Contact Me"
|
145 |
-
msgstr "Связаться с автором"
|
146 |
-
|
147 |
-
#: ../classes/base/class-wpfront-base.php:180
|
148 |
-
msgid "Buy me a Beer or Coffee"
|
149 |
-
msgstr "Купить автору пиво"
|
150 |
-
|
151 |
-
#: ../classes/base/class-wpfront-base.php:197
|
152 |
-
msgid "Save Changes"
|
153 |
-
msgstr "Сохранить изменения"
|
154 |
-
|
155 |
-
#: ../classes/class-wpfront-scroll-top-options.php:41
|
156 |
-
msgid "Enabled"
|
157 |
-
msgstr "Включить"
|
158 |
-
|
159 |
-
#: ../classes/class-wpfront-scroll-top-options.php:42
|
160 |
-
msgid "Scroll Offset"
|
161 |
-
msgstr "Скроллирование"
|
162 |
-
|
163 |
-
#: ../classes/class-wpfront-scroll-top-options.php:45
|
164 |
-
msgid "Button Opacity"
|
165 |
-
msgstr "Прозрачность кнопки"
|
166 |
-
|
167 |
-
#: ../classes/class-wpfront-scroll-top-options.php:46
|
168 |
-
msgid "Button Fade Duration"
|
169 |
-
msgstr "Исчезновение кнопки"
|
170 |
-
|
171 |
-
#: ../classes/class-wpfront-scroll-top-options.php:47
|
172 |
-
msgid "Scroll Duration"
|
173 |
-
msgstr "Скорость скролла"
|
174 |
-
|
175 |
-
#: ../classes/class-wpfront-scroll-top-options.php:48
|
176 |
-
msgid "Auto Hide"
|
177 |
-
msgstr "Скрывать"
|
178 |
-
|
179 |
-
#: ../classes/class-wpfront-scroll-top-options.php:49
|
180 |
-
msgid "Auto Hide After"
|
181 |
-
msgstr "Скрывать после"
|
182 |
-
|
183 |
-
#: ../classes/class-wpfront-scroll-top-options.php:50
|
184 |
-
msgid "Hide on Small Devices"
|
185 |
-
msgstr "Скрывать на маленьких устройствах"
|
186 |
-
|
187 |
-
#: ../classes/class-wpfront-scroll-top-options.php:51
|
188 |
-
msgid "Small Device Max Width"
|
189 |
-
msgstr "Ширина маленьких устройств"
|
190 |
-
|
191 |
-
#: ../classes/class-wpfront-scroll-top-options.php:52
|
192 |
-
msgid "Hide on Small Window"
|
193 |
-
msgstr "Скрывать при маленьком окне браузера"
|
194 |
-
|
195 |
-
#: ../classes/class-wpfront-scroll-top-options.php:53
|
196 |
-
msgid "Small Window Max Width"
|
197 |
-
msgstr "Ширина окна браузера"
|
198 |
-
|
199 |
-
#: ../classes/class-wpfront-scroll-top-options.php:54
|
200 |
-
msgid "Button Style"
|
201 |
-
msgstr "Стиль кнопки"
|
202 |
-
|
203 |
-
#: ../classes/class-wpfront-scroll-top-options.php:55
|
204 |
-
msgid "Image ALT"
|
205 |
-
msgstr "Атрибут Alt у картинки"
|
206 |
-
|
207 |
-
#: ../classes/class-wpfront-scroll-top-options.php:56
|
208 |
-
msgid "Hide on WP-ADMIN"
|
209 |
-
msgstr "Скрывать в админке"
|
210 |
-
|
211 |
-
#: ../classes/class-wpfront-scroll-top-options.php:57
|
212 |
-
msgid "Hide on iframes"
|
213 |
-
msgstr "Скрывать во фреймах"
|
214 |
-
|
215 |
-
#: ../classes/class-wpfront-scroll-top-options.php:59
|
216 |
-
#: ../templates/options-template.php:226
|
217 |
-
msgid "Location"
|
218 |
-
msgstr "Расположение"
|
219 |
-
|
220 |
-
#: ../classes/class-wpfront-scroll-top-options.php:60
|
221 |
-
msgid "Margin X"
|
222 |
-
msgstr "Отступ по горизонтали"
|
223 |
-
|
224 |
-
#: ../classes/class-wpfront-scroll-top-options.php:61
|
225 |
-
msgid "Margin Y"
|
226 |
-
msgstr "Отступ по вертикали"
|
227 |
-
|
228 |
-
#: ../classes/class-wpfront-scroll-top-options.php:63
|
229 |
-
#: ../templates/options-template.php:170
|
230 |
-
msgid "Text"
|
231 |
-
msgstr "Текст"
|
232 |
-
|
233 |
-
#: ../classes/class-wpfront-scroll-top-options.php:64
|
234 |
-
msgid "Text Color"
|
235 |
-
msgstr "Цвет текста"
|
236 |
-
|
237 |
-
#: ../classes/class-wpfront-scroll-top-options.php:65
|
238 |
-
msgid "Background Color"
|
239 |
-
msgstr "Цвет фона"
|
240 |
-
|
241 |
-
#: ../classes/class-wpfront-scroll-top-options.php:66
|
242 |
-
msgid "Custom CSS"
|
243 |
-
msgstr "Свои CSS стили"
|
244 |
-
|
245 |
-
#: ../classes/class-wpfront-scroll-top-options.php:68
|
246 |
-
msgid "Display on Pages"
|
247 |
-
msgstr "Выводить на страницах"
|
248 |
-
|
249 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
250 |
-
msgid "WPFront Scroll Top"
|
251 |
-
msgstr "WPFront Scroll Top"
|
252 |
-
|
253 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
254 |
-
msgid "Scroll Top"
|
255 |
-
msgstr "Scroll Top"
|
256 |
-
|
257 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
258 |
-
#: ../classes/class-wpfront-scroll-top.php:230
|
259 |
-
msgid "[Page]"
|
260 |
-
msgstr "[Страница]"
|
261 |
-
|
262 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
263 |
-
msgid "Home"
|
264 |
-
msgstr "Главная"
|
265 |
-
|
266 |
-
#: ../classes/class-wpfront-scroll-top.php:235
|
267 |
-
msgid "[Post]"
|
268 |
-
msgstr "[Запись]"
|
269 |
-
|
270 |
-
#: ../templates/options-template.php:32
|
271 |
-
msgid "WPFront Scroll Top Settings"
|
272 |
-
msgstr "Настройки плагина WPFront Scroll Top:"
|
273 |
-
|
274 |
-
#: ../templates/options-template.php:34
|
275 |
-
msgid "Display"
|
276 |
-
msgstr "Отображение"
|
277 |
-
|
278 |
-
#: ../templates/options-template.php:50
|
279 |
-
msgid "[Number of pixels to be scrolled before the button appears.]"
|
280 |
-
msgstr ""
|
281 |
-
"[число пикселей, на которое надо скроллировать страницу для появления кнопки]"
|
282 |
-
|
283 |
-
#: ../templates/options-template.php:55
|
284 |
-
msgid "Button Size"
|
285 |
-
msgstr "Размер кнопки"
|
286 |
-
|
287 |
-
#: ../templates/options-template.php:61
|
288 |
-
msgid "[Set 0px to auto fit.]"
|
289 |
-
msgstr "[установите 0px для автоматического определения размеров]"
|
290 |
-
|
291 |
-
#: ../templates/options-template.php:79
|
292 |
-
msgid "[Button fade duration in milliseconds.]"
|
293 |
-
msgstr "[скорость исчезновения кнопки в миллисекундах после скролла]"
|
294 |
-
|
295 |
-
#: ../templates/options-template.php:88
|
296 |
-
msgid "[Window scroll duration in milliseconds.]"
|
297 |
-
msgstr "[скорость скролла в миллисекундах при нажатии на кнопку]"
|
298 |
-
|
299 |
-
#: ../templates/options-template.php:105
|
300 |
-
msgid ""
|
301 |
-
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
302 |
-
msgstr ""
|
303 |
-
"[время в секундах, после которого будет скрыта кнопка (если скрытие "
|
304 |
-
"включено)]"
|
305 |
-
|
306 |
-
#: ../templates/options-template.php:114
|
307 |
-
msgid "[Button will be hidden on small devices when the width matches.]"
|
308 |
-
msgstr "[кнопка будет скрыта на маленьких устройствах (проверяется ширина)]"
|
309 |
-
|
310 |
-
#: ../templates/options-template.php:123
|
311 |
-
msgid "[Button will be hidden on devices with lesser or equal width.]"
|
312 |
-
msgstr "[кнопка будет скрыта на устройствах с указанной или меньшей шириной]"
|
313 |
-
|
314 |
-
#: ../templates/options-template.php:132
|
315 |
-
msgid "[Button will be hidden on broswer window when the width matches.]"
|
316 |
-
msgstr "[кнопка будет скрыта при маленьком окне браузера (проверяется ширина)]"
|
317 |
-
|
318 |
-
#: ../templates/options-template.php:141
|
319 |
-
msgid "[Button will be hidden on browser window with lesser or equal width.]"
|
320 |
-
msgstr ""
|
321 |
-
"[кнопка будет скрыта, если окно браузера будет с указанной или меньшей "
|
322 |
-
"шириной]"
|
323 |
-
|
324 |
-
#: ../templates/options-template.php:150
|
325 |
-
msgid "[Button will be hidden on 'wp-admin'.]"
|
326 |
-
msgstr ""
|
327 |
-
"[кнопка будет скрываться на страницах админки (страницы внутри 'wp-admin')]"
|
328 |
-
|
329 |
-
#: ../templates/options-template.php:159
|
330 |
-
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
331 |
-
msgstr "[кнопка будет скрыта во фреймах (обычно фреймы это всплывающие окна)]"
|
332 |
-
|
333 |
-
#: ../templates/options-template.php:168 ../templates/options-template.php:317
|
334 |
-
msgid "Image"
|
335 |
-
msgstr "Картинка"
|
336 |
-
|
337 |
-
#: ../templates/options-template.php:184
|
338 |
-
msgid "Text Button"
|
339 |
-
msgstr "Текстовая кнопка"
|
340 |
-
|
341 |
-
#: ../templates/options-template.php:234
|
342 |
-
msgid "Bottom Right"
|
343 |
-
msgstr "Снизу справа"
|
344 |
-
|
345 |
-
#: ../templates/options-template.php:235
|
346 |
-
msgid "Bottom Left"
|
347 |
-
msgstr "Снизу слева"
|
348 |
-
|
349 |
-
#: ../templates/options-template.php:236
|
350 |
-
msgid "Top Right"
|
351 |
-
msgstr "Вверху справа"
|
352 |
-
|
353 |
-
#: ../templates/options-template.php:237
|
354 |
-
msgid "Top Left"
|
355 |
-
msgstr "Вверху слева"
|
356 |
-
|
357 |
-
#: ../templates/options-template.php:247 ../templates/options-template.php:256
|
358 |
-
msgid "[Negative value allowed.]"
|
359 |
-
msgstr "[Можно использовать отрицательные значения]"
|
360 |
-
|
361 |
-
#: ../templates/options-template.php:261
|
362 |
-
msgid "Filter"
|
363 |
-
msgstr "Фильтр"
|
364 |
-
|
365 |
-
#: ../templates/options-template.php:270
|
366 |
-
msgid "All pages."
|
367 |
-
msgstr "Все страницы."
|
368 |
-
|
369 |
-
#: ../templates/options-template.php:275
|
370 |
-
msgid "Include in following pages"
|
371 |
-
msgstr "Включить на следующих страницах"
|
372 |
-
|
373 |
-
#: ../templates/options-template.php:295
|
374 |
-
msgid "Exclude in following pages"
|
375 |
-
msgstr "Исключить на следующих страницах"
|
376 |
-
|
377 |
-
#: ../templates/options-template.php:333
|
378 |
-
msgid "Custom URL"
|
379 |
-
msgstr "URL своей картинки"
|
380 |
-
|
381 |
-
#~ msgid "Contact Me (syam@wpfront.com)"
|
382 |
-
#~ msgstr "Contact Me (syam@wpfront.com)"
|
383 |
-
|
384 |
-
#~ msgid "Bar Height"
|
385 |
-
#~ msgstr "Bar Height"
|
386 |
-
|
387 |
-
#~ msgid "Message Text"
|
388 |
-
#~ msgstr "Message Text"
|
389 |
-
|
390 |
-
#~ msgid "Display After"
|
391 |
-
#~ msgstr "Display After"
|
392 |
-
|
393 |
-
#~ msgid "Display Close Button"
|
394 |
-
#~ msgstr "Display Close Button"
|
395 |
-
|
396 |
-
#~ msgid "Display Button"
|
397 |
-
#~ msgstr "Display Button"
|
398 |
-
|
399 |
-
#~ msgid "Open URL:"
|
400 |
-
#~ msgstr "Open URL:"
|
401 |
-
|
402 |
-
#~ msgid "Open URL in new tab/window"
|
403 |
-
#~ msgstr "Open URL in new tab/window"
|
404 |
-
|
405 |
-
#~ msgid "Execute JavaScript"
|
406 |
-
#~ msgstr "Execute JavaScript"
|
407 |
-
|
408 |
-
#~ msgid "Close Bar on Button Click"
|
409 |
-
#~ msgstr "Close Bar on Button Click"
|
410 |
-
|
411 |
-
#~ msgid "Display Shadow"
|
412 |
-
#~ msgstr "Display Shadow"
|
413 |
-
|
414 |
-
#~ msgid "Fixed at Position"
|
415 |
-
#~ msgstr "Fixed at Position"
|
416 |
-
|
417 |
-
#~ msgid "Message Text Color"
|
418 |
-
#~ msgstr "Message Text Color"
|
419 |
-
|
420 |
-
#~ msgid "From Color"
|
421 |
-
#~ msgstr "From Color"
|
422 |
-
|
423 |
-
#~ msgid "Button Text Color"
|
424 |
-
#~ msgstr "Button Text Color"
|
425 |
-
|
426 |
-
#~ msgid "Display Reopen Button"
|
427 |
-
#~ msgstr "Display Reopen Button"
|
428 |
-
|
429 |
-
#~ msgid "Reopen Button Color"
|
430 |
-
#~ msgstr "Reopen Button Color"
|
431 |
-
|
432 |
-
#~ msgid "Keep Closed"
|
433 |
-
#~ msgstr "Keep Closed"
|
434 |
-
|
435 |
-
#~ msgid "Position Offset"
|
436 |
-
#~ msgstr "Position Offset"
|
437 |
-
|
438 |
-
#~ msgid "WPFront Notification Bar"
|
439 |
-
#~ msgstr "WPFront Notification Bar"
|
440 |
-
|
441 |
-
#~ msgid "Notification Bar"
|
442 |
-
#~ msgstr "Notification Bar"
|
443 |
-
|
444 |
-
#~ msgid "Top"
|
445 |
-
#~ msgstr "Top"
|
446 |
-
|
447 |
-
#~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
448 |
-
#~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
449 |
-
|
450 |
-
#~ msgid "px"
|
451 |
-
#~ msgstr "px"
|
452 |
-
|
453 |
-
#~ msgid ""
|
454 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
455 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
456 |
-
#~ msgstr ""
|
457 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
458 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
459 |
-
|
460 |
-
#~ msgid "second(s)"
|
461 |
-
#~ msgstr "second(s)"
|
462 |
-
|
463 |
-
#~ msgid "Set 0 second(s) to display immediately."
|
464 |
-
#~ msgstr "Set 0 second(s) to display immediately."
|
465 |
-
|
466 |
-
#~ msgid "Set 0 second(s) for no animation."
|
467 |
-
#~ msgstr "Set 0 second(s) for no animation."
|
468 |
-
|
469 |
-
#~ msgid "[Displays a close button at the top right corner of the bar.]"
|
470 |
-
#~ msgstr "[Displays a close button at the top right corner of the bar.]"
|
471 |
-
|
472 |
-
#~ msgid "Set 0 second(s) to disable auto close."
|
473 |
-
#~ msgstr "Set 0 second(s) to disable auto close."
|
474 |
-
|
475 |
-
#~ msgid "A reopen button will be displayed after the bar is closed."
|
476 |
-
#~ msgstr "A reopen button will be displayed after the bar is closed."
|
477 |
-
|
478 |
-
#~ msgid "Once closed, bar will display closed on other pages."
|
479 |
-
#~ msgstr "Once closed, bar will display closed on other pages."
|
480 |
-
|
481 |
-
#~ msgid "Content"
|
482 |
-
#~ msgstr "Content"
|
483 |
-
|
484 |
-
#~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
485 |
-
#~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
486 |
-
|
487 |
-
#~ msgid "[Displays a button next to the message.]"
|
488 |
-
#~ msgstr "[Displays a button next to the message.]"
|
489 |
-
|
490 |
-
#~ msgid "Only in landing page."
|
491 |
-
#~ msgstr "Only in landing page."
|
492 |
-
|
493 |
-
#~ msgid "[The first page they visit on your website.]"
|
494 |
-
#~ msgstr "[The first page they visit on your website.]"
|
495 |
-
|
496 |
-
#~ msgid "Color"
|
497 |
-
#~ msgstr "Color"
|
498 |
-
|
499 |
-
#~ msgid "[Select two different colors to create a gradient.]"
|
500 |
-
#~ msgstr "[Select two different colors to create a gradient.]"
|
501 |
-
|
502 |
-
#~ msgid "Button Color"
|
503 |
-
#~ msgstr "Button Color"
|
504 |
-
|
505 |
-
#~ msgid "Animate Display"
|
506 |
-
#~ msgstr "Animate Display"
|
507 |
-
|
508 |
-
#~ msgid "Animate Display Delay"
|
509 |
-
#~ msgstr "Animate Display Delay"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpfront-scroll-top-sr_RS.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-sr_RS/readme.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
Contributor: Ogi Djuraskovic <firstsiteguide.com>
|
|
languages/wpfront-scroll-top-sr_RS/wpfront-scroll-top-sr_RS.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-sr_RS/wpfront-scroll-top-sr_RS.po
DELETED
@@ -1,497 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
-
"POT-Creation-Date: 2014-03-16 22:12-0700\n"
|
5 |
-
"PO-Revision-Date: 2014-06-09 08:08+0100\n"
|
6 |
-
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
7 |
-
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.5.7\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../classes/base/class-wpfront-base-menu.php:52
|
20 |
-
msgid "Name"
|
21 |
-
msgstr "Name"
|
22 |
-
|
23 |
-
#: ../classes/base/class-wpfront-base-menu.php:53
|
24 |
-
msgid "Version"
|
25 |
-
msgstr "Verzija"
|
26 |
-
|
27 |
-
#: ../classes/base/class-wpfront-base-menu.php:54
|
28 |
-
msgid "Rating"
|
29 |
-
msgstr "Ocena"
|
30 |
-
|
31 |
-
#: ../classes/base/class-wpfront-base-menu.php:55
|
32 |
-
msgid "Description"
|
33 |
-
msgstr "Opis"
|
34 |
-
|
35 |
-
#: ../classes/base/class-wpfront-base-menu.php:69
|
36 |
-
#, php-format
|
37 |
-
msgid "based on %s rating(s)"
|
38 |
-
msgstr "bazirano na %s ocenama"
|
39 |
-
|
40 |
-
#: ../classes/base/class-wpfront-base-menu.php:105
|
41 |
-
msgid "Unable to communicate with WordPress.org"
|
42 |
-
msgstr "Nemoguće komunicirati sa WordPress.org"
|
43 |
-
|
44 |
-
#: ../classes/base/class-wpfront-base-menu.php:123
|
45 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
46 |
-
msgid "WPFront Plugins"
|
47 |
-
msgstr "WPFront Plugins"
|
48 |
-
|
49 |
-
#: ../classes/base/class-wpfront-base-menu.php:147
|
50 |
-
#, php-format
|
51 |
-
msgid "By %s"
|
52 |
-
msgstr "od strane %s"
|
53 |
-
|
54 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
55 |
-
#, php-format
|
56 |
-
msgid "More information about %s"
|
57 |
-
msgstr "Još informacija o %s"
|
58 |
-
|
59 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
60 |
-
msgid "Details"
|
61 |
-
msgstr "Detalji"
|
62 |
-
|
63 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
64 |
-
#, php-format
|
65 |
-
msgid "Install %s"
|
66 |
-
msgstr "Instalirati %s"
|
67 |
-
|
68 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
69 |
-
msgid "Install Now"
|
70 |
-
msgstr "Instalirati sada"
|
71 |
-
|
72 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
73 |
-
#, php-format
|
74 |
-
msgid "Update to version %s"
|
75 |
-
msgstr "Update na verziju %s"
|
76 |
-
|
77 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
78 |
-
msgid "Update Now"
|
79 |
-
msgstr "Update sada"
|
80 |
-
|
81 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
82 |
-
msgid "This plugin is already installed and is up to date"
|
83 |
-
msgstr "Ovaj plugin bi trebalo do sada da je instaliran i ažuriran "
|
84 |
-
|
85 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
86 |
-
msgid "Installed"
|
87 |
-
msgstr "Instalirano"
|
88 |
-
|
89 |
-
#: ../classes/base/class-wpfront-base-menu.php:175
|
90 |
-
#: ../classes/base/class-wpfront-base.php:105
|
91 |
-
msgid "Settings"
|
92 |
-
msgstr "Postavke"
|
93 |
-
|
94 |
-
#: ../classes/base/class-wpfront-base-menu.php:177
|
95 |
-
msgid "Activate"
|
96 |
-
msgstr "Aktivno"
|
97 |
-
|
98 |
-
#: ../classes/base/class-wpfront-base-menu.php:199
|
99 |
-
msgid "Feedback"
|
100 |
-
msgstr "Feedback"
|
101 |
-
|
102 |
-
#: ../classes/base/class-wpfront-base-menu.php:216
|
103 |
-
msgid "WPFront"
|
104 |
-
msgstr "WPFront"
|
105 |
-
|
106 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
107 |
-
msgid "All Plugins"
|
108 |
-
msgstr "Svi pluginovi"
|
109 |
-
|
110 |
-
#: ../classes/base/class-wpfront-base.php:130
|
111 |
-
msgid "You do not have sufficient permissions to access this page."
|
112 |
-
msgstr "Nemate dovoljno dozvola da biste pristupili stranici.."
|
113 |
-
|
114 |
-
#: ../classes/base/class-wpfront-base.php:150
|
115 |
-
msgid ""
|
116 |
-
"If you have a caching plugin, clear the cache for the new settings to take "
|
117 |
-
"effect."
|
118 |
-
msgstr "Ako imate caching plugin, očistite cache da bi noviplugin uzeo efekat"
|
119 |
-
|
120 |
-
#: ../classes/base/class-wpfront-base.php:168
|
121 |
-
msgid "Settings Description"
|
122 |
-
msgstr "Opis postavki"
|
123 |
-
|
124 |
-
#: ../classes/base/class-wpfront-base.php:170
|
125 |
-
msgid "Plugin FAQ"
|
126 |
-
msgstr "Plugin FAQ"
|
127 |
-
|
128 |
-
#: ../classes/base/class-wpfront-base.php:172
|
129 |
-
msgid "Feature Request"
|
130 |
-
msgstr "Zahtev"
|
131 |
-
|
132 |
-
#: ../classes/base/class-wpfront-base.php:174
|
133 |
-
msgid "Report Bug"
|
134 |
-
msgstr "Prijaviti Bug"
|
135 |
-
|
136 |
-
#: ../classes/base/class-wpfront-base.php:176
|
137 |
-
msgid "Write Review"
|
138 |
-
msgstr "Napisati kritiku"
|
139 |
-
|
140 |
-
#: ../classes/base/class-wpfront-base.php:178
|
141 |
-
msgid "Contact Me (syam@wpfront.com)"
|
142 |
-
msgstr "Kontaktiraj me (syam@wpfront.com)"
|
143 |
-
|
144 |
-
#: ../classes/base/class-wpfront-base.php:180
|
145 |
-
msgid "Buy me a Beer or Coffee"
|
146 |
-
msgstr "Kupi mi pivo ili kafu"
|
147 |
-
|
148 |
-
#: ../classes/base/class-wpfront-base.php:197
|
149 |
-
msgid "Save Changes"
|
150 |
-
msgstr "Sačuvati promene"
|
151 |
-
|
152 |
-
#: ../classes/class-wpfront-scroll-top-options.php:41
|
153 |
-
msgid "Enabled"
|
154 |
-
msgstr "Omogućeno"
|
155 |
-
|
156 |
-
#: ../classes/class-wpfront-scroll-top-options.php:42
|
157 |
-
msgid "Scroll Offset"
|
158 |
-
msgstr " Offset skrolovanja"
|
159 |
-
|
160 |
-
#: ../classes/class-wpfront-scroll-top-options.php:45
|
161 |
-
msgid "Button Opacity"
|
162 |
-
msgstr "Neprozirnost dugmeta"
|
163 |
-
|
164 |
-
#: ../classes/class-wpfront-scroll-top-options.php:46
|
165 |
-
msgid "Button Fade Duration"
|
166 |
-
msgstr "Trajanje nestajanja dugmeta"
|
167 |
-
|
168 |
-
#: ../classes/class-wpfront-scroll-top-options.php:47
|
169 |
-
msgid "Scroll Duration"
|
170 |
-
msgstr "Trajanje skrolovanja"
|
171 |
-
|
172 |
-
#: ../classes/class-wpfront-scroll-top-options.php:48
|
173 |
-
msgid "Auto Hide"
|
174 |
-
msgstr "Automatski sakriti"
|
175 |
-
|
176 |
-
#: ../classes/class-wpfront-scroll-top-options.php:49
|
177 |
-
msgid "Auto Hide After"
|
178 |
-
msgstr "Automatski sakriti posle"
|
179 |
-
|
180 |
-
#: ../classes/class-wpfront-scroll-top-options.php:50
|
181 |
-
msgid "Hide on Small Devices"
|
182 |
-
msgstr "Sakriti male naprave"
|
183 |
-
|
184 |
-
#: ../classes/class-wpfront-scroll-top-options.php:51
|
185 |
-
msgid "Small Device Max Width"
|
186 |
-
msgstr "Maksimalna širina male naprave"
|
187 |
-
|
188 |
-
#: ../classes/class-wpfront-scroll-top-options.php:52
|
189 |
-
msgid "Hide on Small Window"
|
190 |
-
msgstr "Sakriti mali prozor"
|
191 |
-
|
192 |
-
#: ../classes/class-wpfront-scroll-top-options.php:53
|
193 |
-
msgid "Small Window Max Width"
|
194 |
-
msgstr "Maksimalna širina malog prozora"
|
195 |
-
|
196 |
-
#: ../classes/class-wpfront-scroll-top-options.php:54
|
197 |
-
msgid "Button Style"
|
198 |
-
msgstr "Stil dugmeta"
|
199 |
-
|
200 |
-
#: ../classes/class-wpfront-scroll-top-options.php:55
|
201 |
-
msgid "Hide on WP-ADMIN"
|
202 |
-
msgstr "Sakriti na WP-ADMIN"
|
203 |
-
|
204 |
-
#: ../classes/class-wpfront-scroll-top-options.php:56
|
205 |
-
msgid "Hide on iframes"
|
206 |
-
msgstr "Sakriti iframes"
|
207 |
-
|
208 |
-
#: ../classes/class-wpfront-scroll-top-options.php:58
|
209 |
-
#: ../templates/options-template.php:218
|
210 |
-
msgid "Location"
|
211 |
-
msgstr "Lokacija"
|
212 |
-
|
213 |
-
#: ../classes/class-wpfront-scroll-top-options.php:59
|
214 |
-
msgid "Margin X"
|
215 |
-
msgstr "Margina X"
|
216 |
-
|
217 |
-
#: ../classes/class-wpfront-scroll-top-options.php:60
|
218 |
-
msgid "Margin Y"
|
219 |
-
msgstr "Margina Y"
|
220 |
-
|
221 |
-
#: ../classes/class-wpfront-scroll-top-options.php:62
|
222 |
-
#: ../templates/options-template.php:170
|
223 |
-
msgid "Text"
|
224 |
-
msgstr "Tekst"
|
225 |
-
|
226 |
-
#: ../classes/class-wpfront-scroll-top-options.php:63
|
227 |
-
msgid "Text Color"
|
228 |
-
msgstr "Boja teksta"
|
229 |
-
|
230 |
-
#: ../classes/class-wpfront-scroll-top-options.php:64
|
231 |
-
msgid "Background Color"
|
232 |
-
msgstr "Boja pozadine"
|
233 |
-
|
234 |
-
#: ../classes/class-wpfront-scroll-top-options.php:65
|
235 |
-
msgid "Custom CSS"
|
236 |
-
msgstr "Custom CSS"
|
237 |
-
|
238 |
-
#: ../classes/class-wpfront-scroll-top-options.php:67
|
239 |
-
msgid "Display on Pages"
|
240 |
-
msgstr "Prikaz na stranicama"
|
241 |
-
|
242 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
243 |
-
msgid "WPFront Scroll Top"
|
244 |
-
msgstr "WPFront Scroll Top"
|
245 |
-
|
246 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
247 |
-
msgid "Scroll Top"
|
248 |
-
msgstr "Scroll Top"
|
249 |
-
|
250 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
251 |
-
#: ../classes/class-wpfront-scroll-top.php:230
|
252 |
-
msgid "[Page]"
|
253 |
-
msgstr "[Stranica]"
|
254 |
-
|
255 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
256 |
-
msgid "Home"
|
257 |
-
msgstr "Početna stranica"
|
258 |
-
|
259 |
-
#: ../classes/class-wpfront-scroll-top.php:235
|
260 |
-
msgid "[Post]"
|
261 |
-
msgstr "[Post]"
|
262 |
-
|
263 |
-
#: ../templates/options-template.php:32
|
264 |
-
msgid "WPFront Scroll Top Settings"
|
265 |
-
msgstr "WPFront Scroll Top Settings"
|
266 |
-
|
267 |
-
#: ../templates/options-template.php:34
|
268 |
-
msgid "Display"
|
269 |
-
msgstr "Prikaz"
|
270 |
-
|
271 |
-
#: ../templates/options-template.php:50
|
272 |
-
msgid "[Number of pixels to be scrolled before the button appears.]"
|
273 |
-
msgstr ""
|
274 |
-
"[Broj piksela koji treba da se skroliju pre nego što se dugme prikaže.]"
|
275 |
-
|
276 |
-
#: ../templates/options-template.php:55
|
277 |
-
msgid "Button Size"
|
278 |
-
msgstr "Veličina dugmeta"
|
279 |
-
|
280 |
-
#: ../templates/options-template.php:61
|
281 |
-
msgid "[Set 0px to auto fit.]"
|
282 |
-
msgstr "[Podesiti 0px za auto fit.]"
|
283 |
-
|
284 |
-
#: ../templates/options-template.php:79
|
285 |
-
msgid "[Button fade duration in milliseconds.]"
|
286 |
-
msgstr "[Trajanje nestajanja dugmeta u milisekundama.]"
|
287 |
-
|
288 |
-
#: ../templates/options-template.php:88
|
289 |
-
msgid "[Window scroll duration in milliseconds.]"
|
290 |
-
msgstr "[Trajanje skrolovanja prozora u milisekundama.]"
|
291 |
-
|
292 |
-
#: ../templates/options-template.php:105
|
293 |
-
msgid ""
|
294 |
-
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
295 |
-
msgstr ""
|
296 |
-
"[Dugme će biti automatski skriveno nakon trajanja u sekundama, ako je "
|
297 |
-
"moguće.]"
|
298 |
-
|
299 |
-
#: ../templates/options-template.php:114
|
300 |
-
msgid "[Button will be hidden on small devices when the width matches.]"
|
301 |
-
msgstr "[Dugme će biti skriveno na malim napravama kada se širine poklope.]"
|
302 |
-
|
303 |
-
#: ../templates/options-template.php:123
|
304 |
-
msgid "[Button will be hidden on devices with lesser or equal width.]"
|
305 |
-
msgstr "[Dugme će biti skriveno na napravama sa menjom ili jednakom širinom.]"
|
306 |
-
|
307 |
-
#: ../templates/options-template.php:132
|
308 |
-
msgid "[Button will be hidden on broswer window when the width matches.]"
|
309 |
-
msgstr "[Button will be hidden on broswer window when the width matches.]"
|
310 |
-
|
311 |
-
#: ../templates/options-template.php:141
|
312 |
-
msgid "[Button will be hidden on browser window with lesser or equal width.]"
|
313 |
-
msgstr ""
|
314 |
-
"[Dugme će biti skrivenu na prozoru pretraživača sa manjom ili većom širinom.]"
|
315 |
-
|
316 |
-
#: ../templates/options-template.php:150
|
317 |
-
msgid "[Button will be hidden on 'wp-admin'.]"
|
318 |
-
msgstr "[Dugme će biti skriveno na 'wp-admin'.]"
|
319 |
-
|
320 |
-
#: ../templates/options-template.php:159
|
321 |
-
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
322 |
-
msgstr "[Dugme će biti skriveno na iframes, uglavnom na popups.]"
|
323 |
-
|
324 |
-
#: ../templates/options-template.php:168 ../templates/options-template.php:309
|
325 |
-
msgid "Image"
|
326 |
-
msgstr "Slika"
|
327 |
-
|
328 |
-
#: ../templates/options-template.php:176
|
329 |
-
msgid "Text Button"
|
330 |
-
msgstr "Dugme sa tekstom"
|
331 |
-
|
332 |
-
#: ../templates/options-template.php:226
|
333 |
-
msgid "Bottom Right"
|
334 |
-
msgstr "Desno gore"
|
335 |
-
|
336 |
-
#: ../templates/options-template.php:227
|
337 |
-
msgid "Bottom Left"
|
338 |
-
msgstr "Levo dole"
|
339 |
-
|
340 |
-
#: ../templates/options-template.php:228
|
341 |
-
msgid "Top Right"
|
342 |
-
msgstr "Desno gore"
|
343 |
-
|
344 |
-
#: ../templates/options-template.php:229
|
345 |
-
msgid "Top Left"
|
346 |
-
msgstr "Levo gore"
|
347 |
-
|
348 |
-
#: ../templates/options-template.php:239 ../templates/options-template.php:248
|
349 |
-
msgid "[Negative value allowed.]"
|
350 |
-
msgstr "[Negativna vrednost dozvoljena.]"
|
351 |
-
|
352 |
-
#: ../templates/options-template.php:253
|
353 |
-
msgid "Filter"
|
354 |
-
msgstr "Filter"
|
355 |
-
|
356 |
-
#: ../templates/options-template.php:262
|
357 |
-
msgid "All pages."
|
358 |
-
msgstr "Sve stranice"
|
359 |
-
|
360 |
-
#: ../templates/options-template.php:267
|
361 |
-
msgid "Include in following pages"
|
362 |
-
msgstr "Uključiti u sledeće stranice"
|
363 |
-
|
364 |
-
#: ../templates/options-template.php:287
|
365 |
-
msgid "Exclude in following pages"
|
366 |
-
msgstr "Isključiti sa sledećih stranica"
|
367 |
-
|
368 |
-
#: ../templates/options-template.php:325
|
369 |
-
msgid "Custom URL"
|
370 |
-
msgstr "Custom URL"
|
371 |
-
|
372 |
-
#~ msgid "Bar Height"
|
373 |
-
#~ msgstr "Bar Height"
|
374 |
-
|
375 |
-
#~ msgid "Message Text"
|
376 |
-
#~ msgstr "Message Text"
|
377 |
-
|
378 |
-
#~ msgid "Display After"
|
379 |
-
#~ msgstr "Display After"
|
380 |
-
|
381 |
-
#~ msgid "Display Close Button"
|
382 |
-
#~ msgstr "Display Close Button"
|
383 |
-
|
384 |
-
#~ msgid "Display Button"
|
385 |
-
#~ msgstr "Display Button"
|
386 |
-
|
387 |
-
#~ msgid "Open URL:"
|
388 |
-
#~ msgstr "Open URL:"
|
389 |
-
|
390 |
-
#~ msgid "Open URL in new tab/window"
|
391 |
-
#~ msgstr "Open URL in new tab/window"
|
392 |
-
|
393 |
-
#~ msgid "Execute JavaScript"
|
394 |
-
#~ msgstr "Execute JavaScript"
|
395 |
-
|
396 |
-
#~ msgid "Close Bar on Button Click"
|
397 |
-
#~ msgstr "Close Bar on Button Click"
|
398 |
-
|
399 |
-
#~ msgid "Display Shadow"
|
400 |
-
#~ msgstr "Display Shadow"
|
401 |
-
|
402 |
-
#~ msgid "Fixed at Position"
|
403 |
-
#~ msgstr "Fixed at Position"
|
404 |
-
|
405 |
-
#~ msgid "Message Text Color"
|
406 |
-
#~ msgstr "Message Text Color"
|
407 |
-
|
408 |
-
#~ msgid "From Color"
|
409 |
-
#~ msgstr "From Color"
|
410 |
-
|
411 |
-
#~ msgid "Button Text Color"
|
412 |
-
#~ msgstr "Button Text Color"
|
413 |
-
|
414 |
-
#~ msgid "Display Reopen Button"
|
415 |
-
#~ msgstr "Display Reopen Button"
|
416 |
-
|
417 |
-
#~ msgid "Reopen Button Color"
|
418 |
-
#~ msgstr "Reopen Button Color"
|
419 |
-
|
420 |
-
#~ msgid "Keep Closed"
|
421 |
-
#~ msgstr "Keep Closed"
|
422 |
-
|
423 |
-
#~ msgid "Position Offset"
|
424 |
-
#~ msgstr "Position Offset"
|
425 |
-
|
426 |
-
#~ msgid "WPFront Notification Bar"
|
427 |
-
#~ msgstr "WPFront Notification Bar"
|
428 |
-
|
429 |
-
#~ msgid "Notification Bar"
|
430 |
-
#~ msgstr "Notification Bar"
|
431 |
-
|
432 |
-
#~ msgid "Top"
|
433 |
-
#~ msgstr "Top"
|
434 |
-
|
435 |
-
#~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
436 |
-
#~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
437 |
-
|
438 |
-
#~ msgid "px"
|
439 |
-
#~ msgstr "px"
|
440 |
-
|
441 |
-
#~ msgid ""
|
442 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
443 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
444 |
-
#~ msgstr ""
|
445 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
446 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
447 |
-
|
448 |
-
#~ msgid "second(s)"
|
449 |
-
#~ msgstr "second(s)"
|
450 |
-
|
451 |
-
#~ msgid "Set 0 second(s) to display immediately."
|
452 |
-
#~ msgstr "Set 0 second(s) to display immediately."
|
453 |
-
|
454 |
-
#~ msgid "Set 0 second(s) for no animation."
|
455 |
-
#~ msgstr "Set 0 second(s) for no animation."
|
456 |
-
|
457 |
-
#~ msgid "[Displays a close button at the top right corner of the bar.]"
|
458 |
-
#~ msgstr "[Displays a close button at the top right corner of the bar.]"
|
459 |
-
|
460 |
-
#~ msgid "Set 0 second(s) to disable auto close."
|
461 |
-
#~ msgstr "Set 0 second(s) to disable auto close."
|
462 |
-
|
463 |
-
#~ msgid "A reopen button will be displayed after the bar is closed."
|
464 |
-
#~ msgstr "A reopen button will be displayed after the bar is closed."
|
465 |
-
|
466 |
-
#~ msgid "Once closed, bar will display closed on other pages."
|
467 |
-
#~ msgstr "Once closed, bar will display closed on other pages."
|
468 |
-
|
469 |
-
#~ msgid "Content"
|
470 |
-
#~ msgstr "Content"
|
471 |
-
|
472 |
-
#~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
473 |
-
#~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
474 |
-
|
475 |
-
#~ msgid "[Displays a button next to the message.]"
|
476 |
-
#~ msgstr "[Displays a button next to the message.]"
|
477 |
-
|
478 |
-
#~ msgid "Only in landing page."
|
479 |
-
#~ msgstr "Only in landing page."
|
480 |
-
|
481 |
-
#~ msgid "[The first page they visit on your website.]"
|
482 |
-
#~ msgstr "[The first page they visit on your website.]"
|
483 |
-
|
484 |
-
#~ msgid "Color"
|
485 |
-
#~ msgstr "Color"
|
486 |
-
|
487 |
-
#~ msgid "[Select two different colors to create a gradient.]"
|
488 |
-
#~ msgstr "[Select two different colors to create a gradient.]"
|
489 |
-
|
490 |
-
#~ msgid "Button Color"
|
491 |
-
#~ msgstr "Button Color"
|
492 |
-
|
493 |
-
#~ msgid "Animate Display"
|
494 |
-
#~ msgstr "Animate Display"
|
495 |
-
|
496 |
-
#~ msgid "Animate Display Delay"
|
497 |
-
#~ msgstr "Animate Display Delay"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpfront-scroll-top-uk_UK.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-uk_UK/readme.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
Contributor: Ivanka Skakun <coupofy.com>
|
|
languages/wpfront-scroll-top-uk_UK/wpfront-scroll-top-uk_UK.mo
DELETED
Binary file
|
languages/wpfront-scroll-top-uk_UK/wpfront-scroll-top-uk_UK.po
DELETED
@@ -1,509 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WPFrontScrollTop-ru_RU\n"
|
4 |
-
"POT-Creation-Date: 2014-08-11 09:33-0700\n"
|
5 |
-
"PO-Revision-Date: 2015-06-10 07:47+0200\n"
|
6 |
-
"Last-Translator: Flector <rlector@gmail.com>\n"
|
7 |
-
"Language-Team: WordpressPlugins.ru <rlector@gmail.com>\n"
|
8 |
-
"Language: ru\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.1\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
15 |
-
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
-
|
20 |
-
#: ../classes/base/class-wpfront-base-menu.php:52
|
21 |
-
msgid "Name"
|
22 |
-
msgstr "Ім'я"
|
23 |
-
|
24 |
-
#: ../classes/base/class-wpfront-base-menu.php:53
|
25 |
-
msgid "Version"
|
26 |
-
msgstr "Версія"
|
27 |
-
|
28 |
-
#: ../classes/base/class-wpfront-base-menu.php:54
|
29 |
-
msgid "Rating"
|
30 |
-
msgstr "Рейтинг"
|
31 |
-
|
32 |
-
#: ../classes/base/class-wpfront-base-menu.php:55
|
33 |
-
msgid "Description"
|
34 |
-
msgstr "Опис"
|
35 |
-
|
36 |
-
#: ../classes/base/class-wpfront-base-menu.php:69
|
37 |
-
#, php-format
|
38 |
-
msgid "based on %s rating(s)"
|
39 |
-
msgstr "на базі %s голосів"
|
40 |
-
|
41 |
-
#: ../classes/base/class-wpfront-base-menu.php:105
|
42 |
-
msgid "Unable to communicate with WordPress.org"
|
43 |
-
msgstr "Неможливо з'єднатися з WordPress.org"
|
44 |
-
|
45 |
-
#: ../classes/base/class-wpfront-base-menu.php:123
|
46 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
47 |
-
msgid "WPFront Plugins"
|
48 |
-
msgstr "Плагіни від WPFront "
|
49 |
-
|
50 |
-
#: ../classes/base/class-wpfront-base-menu.php:147
|
51 |
-
#, php-format
|
52 |
-
msgid "By %s"
|
53 |
-
msgstr "Автор: %s"
|
54 |
-
|
55 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
56 |
-
#, php-format
|
57 |
-
msgid "More information about %s"
|
58 |
-
msgstr "Більше інформації про плагін %s"
|
59 |
-
|
60 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
61 |
-
msgid "Details"
|
62 |
-
msgstr "Деталі"
|
63 |
-
|
64 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
65 |
-
#, php-format
|
66 |
-
msgid "Install %s"
|
67 |
-
msgstr "Встановити %s"
|
68 |
-
|
69 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
70 |
-
msgid "Install Now"
|
71 |
-
msgstr "Встановити зараз"
|
72 |
-
|
73 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
74 |
-
#, php-format
|
75 |
-
msgid "Update to version %s"
|
76 |
-
msgstr "Оновити до версії %s"
|
77 |
-
|
78 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
79 |
-
msgid "Update Now"
|
80 |
-
msgstr "Оновити зараз"
|
81 |
-
|
82 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
83 |
-
msgid "This plugin is already installed and is up to date"
|
84 |
-
msgstr "Цей плагін вже встановлений і не потребує оновлення"
|
85 |
-
|
86 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
87 |
-
msgid "Installed"
|
88 |
-
msgstr "Встановлений"
|
89 |
-
|
90 |
-
#: ../classes/base/class-wpfront-base-menu.php:175
|
91 |
-
#: ../classes/base/class-wpfront-base.php:105
|
92 |
-
msgid "Settings"
|
93 |
-
msgstr "Налаштування"
|
94 |
-
|
95 |
-
#: ../classes/base/class-wpfront-base-menu.php:177
|
96 |
-
msgid "Activate"
|
97 |
-
msgstr "Активувати"
|
98 |
-
|
99 |
-
#: ../classes/base/class-wpfront-base-menu.php:199
|
100 |
-
msgid "Feedback"
|
101 |
-
msgstr "Зворотній зв'зок"
|
102 |
-
|
103 |
-
#: ../classes/base/class-wpfront-base-menu.php:216
|
104 |
-
msgid "WPFront"
|
105 |
-
msgstr "WPFront"
|
106 |
-
|
107 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
108 |
-
msgid "All Plugins"
|
109 |
-
msgstr "Всі плагіни"
|
110 |
-
|
111 |
-
#: ../classes/base/class-wpfront-base.php:130
|
112 |
-
msgid "You do not have sufficient permissions to access this page."
|
113 |
-
msgstr "У вас немає необхідних прав для доступу до цієї сторінки."
|
114 |
-
|
115 |
-
#: ../classes/base/class-wpfront-base.php:150
|
116 |
-
msgid ""
|
117 |
-
"If you have a caching plugin, clear the cache for the new settings to take "
|
118 |
-
"effect."
|
119 |
-
msgstr ""
|
120 |
-
"Якщо ви використовуєте плагіни кешування, то вам необхідно скинути файли "
|
121 |
-
"кеша."
|
122 |
-
|
123 |
-
#: ../classes/base/class-wpfront-base.php:168
|
124 |
-
msgid "Settings Description"
|
125 |
-
msgstr "Опис налаштувань"
|
126 |
-
|
127 |
-
#: ../classes/base/class-wpfront-base.php:170
|
128 |
-
msgid "Plugin FAQ"
|
129 |
-
msgstr "FAQ плагіна"
|
130 |
-
|
131 |
-
#: ../classes/base/class-wpfront-base.php:172
|
132 |
-
msgid "Feature Request"
|
133 |
-
msgstr "Запит функцій"
|
134 |
-
|
135 |
-
#: ../classes/base/class-wpfront-base.php:174
|
136 |
-
msgid "Report Bug"
|
137 |
-
msgstr "Повідомити про помилку"
|
138 |
-
|
139 |
-
#: ../classes/base/class-wpfront-base.php:176
|
140 |
-
msgid "Write Review"
|
141 |
-
msgstr "Написати відгук"
|
142 |
-
|
143 |
-
#: ../classes/base/class-wpfront-base.php:178
|
144 |
-
msgid "Contact Me"
|
145 |
-
msgstr "Зв'язатися з автором"
|
146 |
-
|
147 |
-
#: ../classes/base/class-wpfront-base.php:180
|
148 |
-
msgid "Buy me a Beer or Coffee"
|
149 |
-
msgstr "Купити автору пиво або кави"
|
150 |
-
|
151 |
-
#: ../classes/base/class-wpfront-base.php:197
|
152 |
-
msgid "Save Changes"
|
153 |
-
msgstr "Зберегти зміни"
|
154 |
-
|
155 |
-
#: ../classes/class-wpfront-scroll-top-options.php:41
|
156 |
-
msgid "Enabled"
|
157 |
-
msgstr "Включити"
|
158 |
-
|
159 |
-
#: ../classes/class-wpfront-scroll-top-options.php:42
|
160 |
-
msgid "Scroll Offset"
|
161 |
-
msgstr "Скролювання"
|
162 |
-
|
163 |
-
#: ../classes/class-wpfront-scroll-top-options.php:45
|
164 |
-
msgid "Button Opacity"
|
165 |
-
msgstr "Прозорість кнопки"
|
166 |
-
|
167 |
-
#: ../classes/class-wpfront-scroll-top-options.php:46
|
168 |
-
msgid "Button Fade Duration"
|
169 |
-
msgstr "Час зникнення кнопки"
|
170 |
-
|
171 |
-
#: ../classes/class-wpfront-scroll-top-options.php:47
|
172 |
-
msgid "Scroll Duration"
|
173 |
-
msgstr "Швидкість скролла"
|
174 |
-
|
175 |
-
#: ../classes/class-wpfront-scroll-top-options.php:48
|
176 |
-
msgid "Auto Hide"
|
177 |
-
msgstr "Автоматично приховувати"
|
178 |
-
|
179 |
-
#: ../classes/class-wpfront-scroll-top-options.php:49
|
180 |
-
msgid "Auto Hide After"
|
181 |
-
msgstr "Автоматично приховувати після"
|
182 |
-
|
183 |
-
#: ../classes/class-wpfront-scroll-top-options.php:50
|
184 |
-
msgid "Hide on Small Devices"
|
185 |
-
msgstr "Приховувати на маленьких пристроях"
|
186 |
-
|
187 |
-
#: ../classes/class-wpfront-scroll-top-options.php:51
|
188 |
-
msgid "Small Device Max Width"
|
189 |
-
msgstr "Макс. ширина маленьких пристроїв"
|
190 |
-
|
191 |
-
#: ../classes/class-wpfront-scroll-top-options.php:52
|
192 |
-
msgid "Hide on Small Window"
|
193 |
-
msgstr "Приховувати при маленькому вікні браузера"
|
194 |
-
|
195 |
-
#: ../classes/class-wpfront-scroll-top-options.php:53
|
196 |
-
msgid "Small Window Max Width"
|
197 |
-
msgstr "Макс. ширина вікна браузера"
|
198 |
-
|
199 |
-
#: ../classes/class-wpfront-scroll-top-options.php:54
|
200 |
-
msgid "Button Style"
|
201 |
-
msgstr "Стиль кнопки"
|
202 |
-
|
203 |
-
#: ../classes/class-wpfront-scroll-top-options.php:55
|
204 |
-
msgid "Image ALT"
|
205 |
-
msgstr "Атрибут Alt у картинки"
|
206 |
-
|
207 |
-
#: ../classes/class-wpfront-scroll-top-options.php:56
|
208 |
-
msgid "Hide on WP-ADMIN"
|
209 |
-
msgstr "Приховувати в адмінці"
|
210 |
-
|
211 |
-
#: ../classes/class-wpfront-scroll-top-options.php:57
|
212 |
-
msgid "Hide on iframes"
|
213 |
-
msgstr "Приховувати у фреймах"
|
214 |
-
|
215 |
-
#: ../classes/class-wpfront-scroll-top-options.php:59
|
216 |
-
#: ../templates/options-template.php:226
|
217 |
-
msgid "Location"
|
218 |
-
msgstr "Розташування"
|
219 |
-
|
220 |
-
#: ../classes/class-wpfront-scroll-top-options.php:60
|
221 |
-
msgid "Margin X"
|
222 |
-
msgstr "Відступ по горизонталі"
|
223 |
-
|
224 |
-
#: ../classes/class-wpfront-scroll-top-options.php:61
|
225 |
-
msgid "Margin Y"
|
226 |
-
msgstr "Відступ по вертикалі"
|
227 |
-
|
228 |
-
#: ../classes/class-wpfront-scroll-top-options.php:63
|
229 |
-
#: ../templates/options-template.php:170
|
230 |
-
msgid "Text"
|
231 |
-
msgstr "Текст"
|
232 |
-
|
233 |
-
#: ../classes/class-wpfront-scroll-top-options.php:64
|
234 |
-
msgid "Text Color"
|
235 |
-
msgstr "Колір тексту"
|
236 |
-
|
237 |
-
#: ../classes/class-wpfront-scroll-top-options.php:65
|
238 |
-
msgid "Background Color"
|
239 |
-
msgstr "Колір фону"
|
240 |
-
|
241 |
-
#: ../classes/class-wpfront-scroll-top-options.php:66
|
242 |
-
msgid "Custom CSS"
|
243 |
-
msgstr "Свої CSS стилі"
|
244 |
-
|
245 |
-
#: ../classes/class-wpfront-scroll-top-options.php:68
|
246 |
-
msgid "Display on Pages"
|
247 |
-
msgstr "Виводити на сторінках"
|
248 |
-
|
249 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
250 |
-
msgid "WPFront Scroll Top"
|
251 |
-
msgstr "WPFront Scroll Top"
|
252 |
-
|
253 |
-
#: ../classes/class-wpfront-scroll-top.php:63
|
254 |
-
msgid "Scroll Top"
|
255 |
-
msgstr "Scroll Top"
|
256 |
-
|
257 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
258 |
-
#: ../classes/class-wpfront-scroll-top.php:230
|
259 |
-
msgid "[Page]"
|
260 |
-
msgstr "[Сторінка]"
|
261 |
-
|
262 |
-
#: ../classes/class-wpfront-scroll-top.php:226
|
263 |
-
msgid "Home"
|
264 |
-
msgstr "Головна"
|
265 |
-
|
266 |
-
#: ../classes/class-wpfront-scroll-top.php:235
|
267 |
-
msgid "[Post]"
|
268 |
-
msgstr "[Запис]"
|
269 |
-
|
270 |
-
#: ../templates/options-template.php:32
|
271 |
-
msgid "WPFront Scroll Top Settings"
|
272 |
-
msgstr "Налаштування плагіна WPFront Scroll Top:"
|
273 |
-
|
274 |
-
#: ../templates/options-template.php:34
|
275 |
-
msgid "Display"
|
276 |
-
msgstr "Відображення"
|
277 |
-
|
278 |
-
#: ../templates/options-template.php:50
|
279 |
-
msgid "[Number of pixels to be scrolled before the button appears.]"
|
280 |
-
msgstr "[число пікселів, на яке треба прокручувати сторінку для появи кнопки]"
|
281 |
-
|
282 |
-
#: ../templates/options-template.php:55
|
283 |
-
msgid "Button Size"
|
284 |
-
msgstr "Розмір кнопки"
|
285 |
-
|
286 |
-
#: ../templates/options-template.php:61
|
287 |
-
msgid "[Set 0px to auto fit.]"
|
288 |
-
msgstr "[встановіть 0px для автоматичного визначення розмірів]"
|
289 |
-
|
290 |
-
#: ../templates/options-template.php:79
|
291 |
-
msgid "[Button fade duration in milliseconds.]"
|
292 |
-
msgstr "[швидкість зникнення кнопки в мілісекундах]"
|
293 |
-
|
294 |
-
#: ../templates/options-template.php:88
|
295 |
-
msgid "[Window scroll duration in milliseconds.]"
|
296 |
-
msgstr "[швидкість скролла вікна в мілісекундах]"
|
297 |
-
|
298 |
-
#: ../templates/options-template.php:105
|
299 |
-
msgid ""
|
300 |
-
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
301 |
-
msgstr ""
|
302 |
-
"[час у секундах, після якого буде прихована кнопка (якщо приховування "
|
303 |
-
"включено)]"
|
304 |
-
|
305 |
-
#: ../templates/options-template.php:114
|
306 |
-
msgid "[Button will be hidden on small devices when the width matches.]"
|
307 |
-
msgstr "[кнопка буде прихована на маленьких пристроях (перевіряється ширина)]"
|
308 |
-
|
309 |
-
#: ../templates/options-template.php:123
|
310 |
-
msgid "[Button will be hidden on devices with lesser or equal width.]"
|
311 |
-
msgstr "[кнопка буде прихована на пристроях із зазначеною або меншою шириною]"
|
312 |
-
|
313 |
-
#: ../templates/options-template.php:132
|
314 |
-
msgid "[Button will be hidden on broswer window when the width matches.]"
|
315 |
-
msgstr ""
|
316 |
-
"[кнопка буде прихована при маленькому вікні браузера (перевіряється ширина)]"
|
317 |
-
|
318 |
-
#: ../templates/options-template.php:141
|
319 |
-
msgid "[Button will be hidden on browser window with lesser or equal width.]"
|
320 |
-
msgstr ""
|
321 |
-
"[кнопка буде прихована, якщо вікно браузера буде із зазначеною або меншою "
|
322 |
-
"шириною]"
|
323 |
-
|
324 |
-
#: ../templates/options-template.php:150
|
325 |
-
msgid "[Button will be hidden on 'wp-admin'.]"
|
326 |
-
msgstr ""
|
327 |
-
"[кнопка буде ховатися на сторінках адмінки (сторінки всередині 'wp-admin')]"
|
328 |
-
|
329 |
-
#: ../templates/options-template.php:159
|
330 |
-
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
331 |
-
msgstr "[кнопка буде прихована у фреймах (зазвичай фрейми це спливаючі вікна)]"
|
332 |
-
|
333 |
-
#: ../templates/options-template.php:168 ../templates/options-template.php:317
|
334 |
-
msgid "Image"
|
335 |
-
msgstr "Картинка"
|
336 |
-
|
337 |
-
#: ../templates/options-template.php:184
|
338 |
-
msgid "Text Button"
|
339 |
-
msgstr "Текстова кнопка"
|
340 |
-
|
341 |
-
#: ../templates/options-template.php:234
|
342 |
-
msgid "Bottom Right"
|
343 |
-
msgstr "Знизу праворуч"
|
344 |
-
|
345 |
-
#: ../templates/options-template.php:235
|
346 |
-
msgid "Bottom Left"
|
347 |
-
msgstr "знизу зліва"
|
348 |
-
|
349 |
-
#: ../templates/options-template.php:236
|
350 |
-
msgid "Top Right"
|
351 |
-
msgstr "вгорі праворуч"
|
352 |
-
|
353 |
-
#: ../templates/options-template.php:237
|
354 |
-
msgid "Top Left"
|
355 |
-
msgstr "вгорі зліва"
|
356 |
-
|
357 |
-
#: ../templates/options-template.php:247 ../templates/options-template.php:256
|
358 |
-
msgid "[Negative value allowed.]"
|
359 |
-
msgstr "[Можна використовувати негативні значення]"
|
360 |
-
|
361 |
-
#: ../templates/options-template.php:261
|
362 |
-
msgid "Filter"
|
363 |
-
msgstr "Фільтр"
|
364 |
-
|
365 |
-
#: ../templates/options-template.php:270
|
366 |
-
msgid "All pages."
|
367 |
-
msgstr "Всі сторінки."
|
368 |
-
|
369 |
-
#: ../templates/options-template.php:275
|
370 |
-
msgid "Include in following pages"
|
371 |
-
msgstr "Включити на наступних сторінках"
|
372 |
-
|
373 |
-
#: ../templates/options-template.php:295
|
374 |
-
msgid "Exclude in following pages"
|
375 |
-
msgstr "Виключити на наступних сторінках"
|
376 |
-
|
377 |
-
#: ../templates/options-template.php:333
|
378 |
-
msgid "Custom URL"
|
379 |
-
msgstr "URL своєї картинки"
|
380 |
-
|
381 |
-
#~ msgid "Contact Me (syam@wpfront.com)"
|
382 |
-
#~ msgstr "Contact Me (syam@wpfront.com)"
|
383 |
-
|
384 |
-
#~ msgid "Bar Height"
|
385 |
-
#~ msgstr "Bar Height"
|
386 |
-
|
387 |
-
#~ msgid "Message Text"
|
388 |
-
#~ msgstr "Message Text"
|
389 |
-
|
390 |
-
#~ msgid "Display After"
|
391 |
-
#~ msgstr "Display After"
|
392 |
-
|
393 |
-
#~ msgid "Display Close Button"
|
394 |
-
#~ msgstr "Display Close Button"
|
395 |
-
|
396 |
-
#~ msgid "Display Button"
|
397 |
-
#~ msgstr "Display Button"
|
398 |
-
|
399 |
-
#~ msgid "Open URL:"
|
400 |
-
#~ msgstr "Open URL:"
|
401 |
-
|
402 |
-
#~ msgid "Open URL in new tab/window"
|
403 |
-
#~ msgstr "Open URL in new tab/window"
|
404 |
-
|
405 |
-
#~ msgid "Execute JavaScript"
|
406 |
-
#~ msgstr "Execute JavaScript"
|
407 |
-
|
408 |
-
#~ msgid "Close Bar on Button Click"
|
409 |
-
#~ msgstr "Close Bar on Button Click"
|
410 |
-
|
411 |
-
#~ msgid "Display Shadow"
|
412 |
-
#~ msgstr "Display Shadow"
|
413 |
-
|
414 |
-
#~ msgid "Fixed at Position"
|
415 |
-
#~ msgstr "Fixed at Position"
|
416 |
-
|
417 |
-
#~ msgid "Message Text Color"
|
418 |
-
#~ msgstr "Message Text Color"
|
419 |
-
|
420 |
-
#~ msgid "From Color"
|
421 |
-
#~ msgstr "From Color"
|
422 |
-
|
423 |
-
#~ msgid "Button Text Color"
|
424 |
-
#~ msgstr "Button Text Color"
|
425 |
-
|
426 |
-
#~ msgid "Display Reopen Button"
|
427 |
-
#~ msgstr "Display Reopen Button"
|
428 |
-
|
429 |
-
#~ msgid "Reopen Button Color"
|
430 |
-
#~ msgstr "Reopen Button Color"
|
431 |
-
|
432 |
-
#~ msgid "Keep Closed"
|
433 |
-
#~ msgstr "Keep Closed"
|
434 |
-
|
435 |
-
#~ msgid "Position Offset"
|
436 |
-
#~ msgstr "Position Offset"
|
437 |
-
|
438 |
-
#~ msgid "WPFront Notification Bar"
|
439 |
-
#~ msgstr "WPFront Notification Bar"
|
440 |
-
|
441 |
-
#~ msgid "Notification Bar"
|
442 |
-
#~ msgstr "Notification Bar"
|
443 |
-
|
444 |
-
#~ msgid "Top"
|
445 |
-
#~ msgstr "Top"
|
446 |
-
|
447 |
-
#~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
448 |
-
#~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
449 |
-
|
450 |
-
#~ msgid "px"
|
451 |
-
#~ msgstr "px"
|
452 |
-
|
453 |
-
#~ msgid ""
|
454 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
455 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
456 |
-
#~ msgstr ""
|
457 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
458 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
459 |
-
|
460 |
-
#~ msgid "second(s)"
|
461 |
-
#~ msgstr "second(s)"
|
462 |
-
|
463 |
-
#~ msgid "Set 0 second(s) to display immediately."
|
464 |
-
#~ msgstr "Set 0 second(s) to display immediately."
|
465 |
-
|
466 |
-
#~ msgid "Set 0 second(s) for no animation."
|
467 |
-
#~ msgstr "Set 0 second(s) for no animation."
|
468 |
-
|
469 |
-
#~ msgid "[Displays a close button at the top right corner of the bar.]"
|
470 |
-
#~ msgstr "[Displays a close button at the top right corner of the bar.]"
|
471 |
-
|
472 |
-
#~ msgid "Set 0 second(s) to disable auto close."
|
473 |
-
#~ msgstr "Set 0 second(s) to disable auto close."
|
474 |
-
|
475 |
-
#~ msgid "A reopen button will be displayed after the bar is closed."
|
476 |
-
#~ msgstr "A reopen button will be displayed after the bar is closed."
|
477 |
-
|
478 |
-
#~ msgid "Once closed, bar will display closed on other pages."
|
479 |
-
#~ msgstr "Once closed, bar will display closed on other pages."
|
480 |
-
|
481 |
-
#~ msgid "Content"
|
482 |
-
#~ msgstr "Content"
|
483 |
-
|
484 |
-
#~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
485 |
-
#~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
486 |
-
|
487 |
-
#~ msgid "[Displays a button next to the message.]"
|
488 |
-
#~ msgstr "[Displays a button next to the message.]"
|
489 |
-
|
490 |
-
#~ msgid "Only in landing page."
|
491 |
-
#~ msgstr "Only in landing page."
|
492 |
-
|
493 |
-
#~ msgid "[The first page they visit on your website.]"
|
494 |
-
#~ msgstr "[The first page they visit on your website.]"
|
495 |
-
|
496 |
-
#~ msgid "Color"
|
497 |
-
#~ msgstr "Color"
|
498 |
-
|
499 |
-
#~ msgid "[Select two different colors to create a gradient.]"
|
500 |
-
#~ msgstr "[Select two different colors to create a gradient.]"
|
501 |
-
|
502 |
-
#~ msgid "Button Color"
|
503 |
-
#~ msgstr "Button Color"
|
504 |
-
|
505 |
-
#~ msgid "Animate Display"
|
506 |
-
#~ msgstr "Animate Display"
|
507 |
-
|
508 |
-
#~ msgid "Animate Display Delay"
|
509 |
-
#~ msgstr "Animate Display Delay"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpfront-scroll-top.mo
CHANGED
Binary file
|
languages/wpfront-scroll-top.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -124,30 +124,14 @@ msgid "Settings Description"
|
|
124 |
msgstr "Settings Description"
|
125 |
|
126 |
#: ../classes/base/class-wpfront-base.php:170
|
127 |
-
msgid "Plugin FAQ"
|
128 |
-
msgstr "Plugin FAQ"
|
129 |
-
|
130 |
-
#: ../classes/base/class-wpfront-base.php:172
|
131 |
-
msgid "Feature Request"
|
132 |
-
msgstr "Feature Request"
|
133 |
-
|
134 |
-
#: ../classes/base/class-wpfront-base.php:174
|
135 |
-
msgid "Report Bug"
|
136 |
-
msgstr "Report Bug"
|
137 |
-
|
138 |
-
#: ../classes/base/class-wpfront-base.php:176
|
139 |
msgid "Write Review"
|
140 |
msgstr "Write Review"
|
141 |
|
142 |
-
#: ../classes/base/class-wpfront-base.php:
|
143 |
-
msgid "Contact Me"
|
144 |
-
msgstr "Contact Me"
|
145 |
-
|
146 |
-
#: ../classes/base/class-wpfront-base.php:180
|
147 |
msgid "Buy me a Beer or Coffee"
|
148 |
msgstr "Buy me a Beer or Coffee"
|
149 |
|
150 |
-
#: ../classes/base/class-wpfront-base.php:
|
151 |
msgid "Save Changes"
|
152 |
msgstr "Save Changes"
|
153 |
|
@@ -156,113 +140,117 @@ msgid "Enabled"
|
|
156 |
msgstr "Enabled"
|
157 |
|
158 |
#: ../classes/class-wpfront-scroll-top-options.php:42
|
|
|
|
|
|
|
|
|
159 |
msgid "Scroll Offset"
|
160 |
msgstr "Scroll Offset"
|
161 |
|
162 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
163 |
msgid "Button Opacity"
|
164 |
msgstr "Button Opacity"
|
165 |
|
166 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
167 |
msgid "Button Fade Duration"
|
168 |
msgstr "Button Fade Duration"
|
169 |
|
170 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
171 |
msgid "Scroll Duration"
|
172 |
msgstr "Scroll Duration"
|
173 |
|
174 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
175 |
msgid "Auto Hide"
|
176 |
msgstr "Auto Hide"
|
177 |
|
178 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
179 |
msgid "Auto Hide After"
|
180 |
msgstr "Auto Hide After"
|
181 |
|
182 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
183 |
msgid "Hide on Small Devices"
|
184 |
msgstr "Hide on Small Devices"
|
185 |
|
186 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
187 |
msgid "Small Device Max Width"
|
188 |
msgstr "Small Device Max Width"
|
189 |
|
190 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
191 |
msgid "Hide on Small Window"
|
192 |
msgstr "Hide on Small Window"
|
193 |
|
194 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
195 |
msgid "Small Window Max Width"
|
196 |
msgstr "Small Window Max Width"
|
197 |
|
198 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
199 |
msgid "Button Style"
|
200 |
msgstr "Button Style"
|
201 |
|
202 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
203 |
msgid "Image ALT"
|
204 |
msgstr "Image ALT"
|
205 |
|
206 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
207 |
msgid "Hide on WP-ADMIN"
|
208 |
msgstr "Hide on WP-ADMIN"
|
209 |
|
210 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
211 |
msgid "Hide on iframes"
|
212 |
msgstr "Hide on iframes"
|
213 |
|
214 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
215 |
-
#: ../templates/options-template.php:
|
216 |
msgid "Location"
|
217 |
msgstr "Location"
|
218 |
|
219 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
220 |
msgid "Margin X"
|
221 |
msgstr "Margin X"
|
222 |
|
223 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
224 |
msgid "Margin Y"
|
225 |
msgstr "Margin Y"
|
226 |
|
227 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
228 |
-
#: ../templates/options-template.php:
|
229 |
msgid "Text"
|
230 |
msgstr "Text"
|
231 |
|
232 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
233 |
msgid "Text Color"
|
234 |
msgstr "Text Color"
|
235 |
|
236 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
237 |
msgid "Background Color"
|
238 |
msgstr "Background Color"
|
239 |
|
240 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
241 |
msgid "Custom CSS"
|
242 |
msgstr "Custom CSS"
|
243 |
|
244 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
245 |
msgid "Display on Pages"
|
246 |
msgstr "Display on Pages"
|
247 |
|
248 |
-
#: ../classes/class-wpfront-scroll-top.php:
|
249 |
msgid "WPFront Scroll Top"
|
250 |
msgstr "WPFront Scroll Top"
|
251 |
|
252 |
-
#: ../classes/class-wpfront-scroll-top.php:
|
253 |
msgid "Scroll Top"
|
254 |
msgstr "Scroll Top"
|
255 |
|
256 |
-
#: ../classes/class-wpfront-scroll-top.php:
|
257 |
-
#: ../classes/class-wpfront-scroll-top.php:
|
258 |
msgid "[Page]"
|
259 |
msgstr "[Page]"
|
260 |
|
261 |
-
#: ../classes/class-wpfront-scroll-top.php:
|
262 |
msgid "Home"
|
263 |
msgstr "Home"
|
264 |
|
265 |
-
#: ../classes/class-wpfront-scroll-top.php:
|
266 |
msgid "[Post]"
|
267 |
msgstr "[Post]"
|
268 |
|
@@ -275,103 +263,123 @@ msgid "Display"
|
|
275 |
msgstr "Display"
|
276 |
|
277 |
#: ../templates/options-template.php:50
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
msgid "[Number of pixels to be scrolled before the button appears.]"
|
279 |
msgstr "[Number of pixels to be scrolled before the button appears.]"
|
280 |
|
281 |
-
#: ../templates/options-template.php:
|
282 |
msgid "Button Size"
|
283 |
msgstr "Button Size"
|
284 |
|
285 |
-
#: ../templates/options-template.php:
|
286 |
msgid "[Set 0px to auto fit.]"
|
287 |
msgstr "[Set 0px to auto fit.]"
|
288 |
|
289 |
-
#: ../templates/options-template.php:
|
290 |
msgid "[Button fade duration in milliseconds.]"
|
291 |
msgstr "[Button fade duration in milliseconds.]"
|
292 |
|
293 |
-
#: ../templates/options-template.php:
|
294 |
msgid "[Window scroll duration in milliseconds.]"
|
295 |
msgstr "[Window scroll duration in milliseconds.]"
|
296 |
|
297 |
-
#: ../templates/options-template.php:
|
298 |
msgid ""
|
299 |
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
300 |
msgstr ""
|
301 |
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
302 |
|
303 |
-
#: ../templates/options-template.php:
|
304 |
msgid "[Button will be hidden on small devices when the width matches.]"
|
305 |
msgstr "[Button will be hidden on small devices when the width matches.]"
|
306 |
|
307 |
-
#: ../templates/options-template.php:
|
308 |
msgid "[Button will be hidden on devices with lesser or equal width.]"
|
309 |
msgstr "[Button will be hidden on devices with lesser or equal width.]"
|
310 |
|
311 |
-
#: ../templates/options-template.php:
|
312 |
msgid "[Button will be hidden on broswer window when the width matches.]"
|
313 |
msgstr "[Button will be hidden on broswer window when the width matches.]"
|
314 |
|
315 |
-
#: ../templates/options-template.php:
|
316 |
msgid "[Button will be hidden on browser window with lesser or equal width.]"
|
317 |
msgstr "[Button will be hidden on browser window with lesser or equal width.]"
|
318 |
|
319 |
-
#: ../templates/options-template.php:
|
320 |
msgid "[Button will be hidden on 'wp-admin'.]"
|
321 |
msgstr "[Button will be hidden on 'wp-admin'.]"
|
322 |
|
323 |
-
#: ../templates/options-template.php:
|
324 |
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
325 |
msgstr "[Button will be hidden on iframes, usually inside popups.]"
|
326 |
|
327 |
-
#: ../templates/options-template.php:
|
|
|
328 |
msgid "Image"
|
329 |
msgstr "Image"
|
330 |
|
331 |
-
#: ../templates/options-template.php:
|
332 |
msgid "Text Button"
|
333 |
msgstr "Text Button"
|
334 |
|
335 |
-
#: ../templates/options-template.php:
|
336 |
msgid "Bottom Right"
|
337 |
msgstr "Bottom Right"
|
338 |
|
339 |
-
#: ../templates/options-template.php:
|
340 |
msgid "Bottom Left"
|
341 |
msgstr "Bottom Left"
|
342 |
|
343 |
-
#: ../templates/options-template.php:
|
344 |
msgid "Top Right"
|
345 |
msgstr "Top Right"
|
346 |
|
347 |
-
#: ../templates/options-template.php:
|
348 |
msgid "Top Left"
|
349 |
msgstr "Top Left"
|
350 |
|
351 |
-
#: ../templates/options-template.php:
|
|
|
352 |
msgid "[Negative value allowed.]"
|
353 |
msgstr "[Negative value allowed.]"
|
354 |
|
355 |
-
#: ../templates/options-template.php:
|
356 |
msgid "Filter"
|
357 |
msgstr "Filter"
|
358 |
|
359 |
-
#: ../templates/options-template.php:
|
360 |
msgid "All pages."
|
361 |
msgstr "All pages."
|
362 |
|
363 |
-
#: ../templates/options-template.php:
|
364 |
msgid "Include in following pages"
|
365 |
msgstr "Include in following pages"
|
366 |
|
367 |
-
#: ../templates/options-template.php:
|
368 |
msgid "Exclude in following pages"
|
369 |
msgstr "Exclude in following pages"
|
370 |
|
371 |
-
#: ../templates/options-template.php:
|
372 |
msgid "Custom URL"
|
373 |
msgstr "Custom URL"
|
374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
#~ msgid "Contact Me (syam@wpfront.com)"
|
376 |
#~ msgstr "Contact Me (syam@wpfront.com)"
|
377 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
+
"POT-Creation-Date: 2016-11-15 11:37+0530\n"
|
5 |
+
"PO-Revision-Date: 2016-11-15 11:37+0530\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
124 |
msgstr "Settings Description"
|
125 |
|
126 |
#: ../classes/base/class-wpfront-base.php:170
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Write Review"
|
128 |
msgstr "Write Review"
|
129 |
|
130 |
+
#: ../classes/base/class-wpfront-base.php:172
|
|
|
|
|
|
|
|
|
131 |
msgid "Buy me a Beer or Coffee"
|
132 |
msgstr "Buy me a Beer or Coffee"
|
133 |
|
134 |
+
#: ../classes/base/class-wpfront-base.php:189
|
135 |
msgid "Save Changes"
|
136 |
msgstr "Save Changes"
|
137 |
|
140 |
msgstr "Enabled"
|
141 |
|
142 |
#: ../classes/class-wpfront-scroll-top-options.php:42
|
143 |
+
msgid "JavaScript Async"
|
144 |
+
msgstr "JavaScript Async"
|
145 |
+
|
146 |
+
#: ../classes/class-wpfront-scroll-top-options.php:43
|
147 |
msgid "Scroll Offset"
|
148 |
msgstr "Scroll Offset"
|
149 |
|
150 |
+
#: ../classes/class-wpfront-scroll-top-options.php:46
|
151 |
msgid "Button Opacity"
|
152 |
msgstr "Button Opacity"
|
153 |
|
154 |
+
#: ../classes/class-wpfront-scroll-top-options.php:47
|
155 |
msgid "Button Fade Duration"
|
156 |
msgstr "Button Fade Duration"
|
157 |
|
158 |
+
#: ../classes/class-wpfront-scroll-top-options.php:48
|
159 |
msgid "Scroll Duration"
|
160 |
msgstr "Scroll Duration"
|
161 |
|
162 |
+
#: ../classes/class-wpfront-scroll-top-options.php:49
|
163 |
msgid "Auto Hide"
|
164 |
msgstr "Auto Hide"
|
165 |
|
166 |
+
#: ../classes/class-wpfront-scroll-top-options.php:50
|
167 |
msgid "Auto Hide After"
|
168 |
msgstr "Auto Hide After"
|
169 |
|
170 |
+
#: ../classes/class-wpfront-scroll-top-options.php:51
|
171 |
msgid "Hide on Small Devices"
|
172 |
msgstr "Hide on Small Devices"
|
173 |
|
174 |
+
#: ../classes/class-wpfront-scroll-top-options.php:52
|
175 |
msgid "Small Device Max Width"
|
176 |
msgstr "Small Device Max Width"
|
177 |
|
178 |
+
#: ../classes/class-wpfront-scroll-top-options.php:53
|
179 |
msgid "Hide on Small Window"
|
180 |
msgstr "Hide on Small Window"
|
181 |
|
182 |
+
#: ../classes/class-wpfront-scroll-top-options.php:54
|
183 |
msgid "Small Window Max Width"
|
184 |
msgstr "Small Window Max Width"
|
185 |
|
186 |
+
#: ../classes/class-wpfront-scroll-top-options.php:55
|
187 |
msgid "Button Style"
|
188 |
msgstr "Button Style"
|
189 |
|
190 |
+
#: ../classes/class-wpfront-scroll-top-options.php:56
|
191 |
msgid "Image ALT"
|
192 |
msgstr "Image ALT"
|
193 |
|
194 |
+
#: ../classes/class-wpfront-scroll-top-options.php:57
|
195 |
msgid "Hide on WP-ADMIN"
|
196 |
msgstr "Hide on WP-ADMIN"
|
197 |
|
198 |
+
#: ../classes/class-wpfront-scroll-top-options.php:58
|
199 |
msgid "Hide on iframes"
|
200 |
msgstr "Hide on iframes"
|
201 |
|
202 |
+
#: ../classes/class-wpfront-scroll-top-options.php:60
|
203 |
+
#: ../templates/options-template.php:235
|
204 |
msgid "Location"
|
205 |
msgstr "Location"
|
206 |
|
207 |
+
#: ../classes/class-wpfront-scroll-top-options.php:61
|
208 |
msgid "Margin X"
|
209 |
msgstr "Margin X"
|
210 |
|
211 |
+
#: ../classes/class-wpfront-scroll-top-options.php:62
|
212 |
msgid "Margin Y"
|
213 |
msgstr "Margin Y"
|
214 |
|
215 |
+
#: ../classes/class-wpfront-scroll-top-options.php:64
|
216 |
+
#: ../templates/options-template.php:179
|
217 |
msgid "Text"
|
218 |
msgstr "Text"
|
219 |
|
220 |
+
#: ../classes/class-wpfront-scroll-top-options.php:65
|
221 |
msgid "Text Color"
|
222 |
msgstr "Text Color"
|
223 |
|
224 |
+
#: ../classes/class-wpfront-scroll-top-options.php:66
|
225 |
msgid "Background Color"
|
226 |
msgstr "Background Color"
|
227 |
|
228 |
+
#: ../classes/class-wpfront-scroll-top-options.php:67
|
229 |
msgid "Custom CSS"
|
230 |
msgstr "Custom CSS"
|
231 |
|
232 |
+
#: ../classes/class-wpfront-scroll-top-options.php:69
|
233 |
msgid "Display on Pages"
|
234 |
msgstr "Display on Pages"
|
235 |
|
236 |
+
#: ../classes/class-wpfront-scroll-top.php:65
|
237 |
msgid "WPFront Scroll Top"
|
238 |
msgstr "WPFront Scroll Top"
|
239 |
|
240 |
+
#: ../classes/class-wpfront-scroll-top.php:65
|
241 |
msgid "Scroll Top"
|
242 |
msgstr "Scroll Top"
|
243 |
|
244 |
+
#: ../classes/class-wpfront-scroll-top.php:267
|
245 |
+
#: ../classes/class-wpfront-scroll-top.php:271
|
246 |
msgid "[Page]"
|
247 |
msgstr "[Page]"
|
248 |
|
249 |
+
#: ../classes/class-wpfront-scroll-top.php:267
|
250 |
msgid "Home"
|
251 |
msgstr "Home"
|
252 |
|
253 |
+
#: ../classes/class-wpfront-scroll-top.php:276
|
254 |
msgid "[Post]"
|
255 |
msgstr "[Post]"
|
256 |
|
263 |
msgstr "Display"
|
264 |
|
265 |
#: ../templates/options-template.php:50
|
266 |
+
msgid ""
|
267 |
+
"[Increases site performance. Keep it enabled, if there are no conflicts.]"
|
268 |
+
msgstr ""
|
269 |
+
"[Increases site performance. Keep it enabled, if there are no conflicts.]"
|
270 |
+
|
271 |
+
#: ../templates/options-template.php:59
|
272 |
msgid "[Number of pixels to be scrolled before the button appears.]"
|
273 |
msgstr "[Number of pixels to be scrolled before the button appears.]"
|
274 |
|
275 |
+
#: ../templates/options-template.php:64
|
276 |
msgid "Button Size"
|
277 |
msgstr "Button Size"
|
278 |
|
279 |
+
#: ../templates/options-template.php:70
|
280 |
msgid "[Set 0px to auto fit.]"
|
281 |
msgstr "[Set 0px to auto fit.]"
|
282 |
|
283 |
+
#: ../templates/options-template.php:88
|
284 |
msgid "[Button fade duration in milliseconds.]"
|
285 |
msgstr "[Button fade duration in milliseconds.]"
|
286 |
|
287 |
+
#: ../templates/options-template.php:97
|
288 |
msgid "[Window scroll duration in milliseconds.]"
|
289 |
msgstr "[Window scroll duration in milliseconds.]"
|
290 |
|
291 |
+
#: ../templates/options-template.php:114
|
292 |
msgid ""
|
293 |
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
294 |
msgstr ""
|
295 |
"[Button will be auto hidden after this duration in seconds, if enabled.]"
|
296 |
|
297 |
+
#: ../templates/options-template.php:123
|
298 |
msgid "[Button will be hidden on small devices when the width matches.]"
|
299 |
msgstr "[Button will be hidden on small devices when the width matches.]"
|
300 |
|
301 |
+
#: ../templates/options-template.php:132
|
302 |
msgid "[Button will be hidden on devices with lesser or equal width.]"
|
303 |
msgstr "[Button will be hidden on devices with lesser or equal width.]"
|
304 |
|
305 |
+
#: ../templates/options-template.php:141
|
306 |
msgid "[Button will be hidden on broswer window when the width matches.]"
|
307 |
msgstr "[Button will be hidden on broswer window when the width matches.]"
|
308 |
|
309 |
+
#: ../templates/options-template.php:150
|
310 |
msgid "[Button will be hidden on browser window with lesser or equal width.]"
|
311 |
msgstr "[Button will be hidden on browser window with lesser or equal width.]"
|
312 |
|
313 |
+
#: ../templates/options-template.php:159
|
314 |
msgid "[Button will be hidden on 'wp-admin'.]"
|
315 |
msgstr "[Button will be hidden on 'wp-admin'.]"
|
316 |
|
317 |
+
#: ../templates/options-template.php:168
|
318 |
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
319 |
msgstr "[Button will be hidden on iframes, usually inside popups.]"
|
320 |
|
321 |
+
#: ../templates/options-template.php:177
|
322 |
+
#: ../templates/options-template.php:326
|
323 |
msgid "Image"
|
324 |
msgstr "Image"
|
325 |
|
326 |
+
#: ../templates/options-template.php:193
|
327 |
msgid "Text Button"
|
328 |
msgstr "Text Button"
|
329 |
|
330 |
+
#: ../templates/options-template.php:243
|
331 |
msgid "Bottom Right"
|
332 |
msgstr "Bottom Right"
|
333 |
|
334 |
+
#: ../templates/options-template.php:244
|
335 |
msgid "Bottom Left"
|
336 |
msgstr "Bottom Left"
|
337 |
|
338 |
+
#: ../templates/options-template.php:245
|
339 |
msgid "Top Right"
|
340 |
msgstr "Top Right"
|
341 |
|
342 |
+
#: ../templates/options-template.php:246
|
343 |
msgid "Top Left"
|
344 |
msgstr "Top Left"
|
345 |
|
346 |
+
#: ../templates/options-template.php:256
|
347 |
+
#: ../templates/options-template.php:265
|
348 |
msgid "[Negative value allowed.]"
|
349 |
msgstr "[Negative value allowed.]"
|
350 |
|
351 |
+
#: ../templates/options-template.php:270
|
352 |
msgid "Filter"
|
353 |
msgstr "Filter"
|
354 |
|
355 |
+
#: ../templates/options-template.php:279
|
356 |
msgid "All pages."
|
357 |
msgstr "All pages."
|
358 |
|
359 |
+
#: ../templates/options-template.php:284
|
360 |
msgid "Include in following pages"
|
361 |
msgstr "Include in following pages"
|
362 |
|
363 |
+
#: ../templates/options-template.php:304
|
364 |
msgid "Exclude in following pages"
|
365 |
msgstr "Exclude in following pages"
|
366 |
|
367 |
+
#: ../templates/options-template.php:342
|
368 |
msgid "Custom URL"
|
369 |
msgstr "Custom URL"
|
370 |
|
371 |
+
#~ msgid "Plugin FAQ"
|
372 |
+
#~ msgstr "Plugin FAQ"
|
373 |
+
|
374 |
+
#~ msgid "Feature Request"
|
375 |
+
#~ msgstr "Feature Request"
|
376 |
+
|
377 |
+
#~ msgid "Report Bug"
|
378 |
+
#~ msgstr "Report Bug"
|
379 |
+
|
380 |
+
#~ msgid "Contact Me"
|
381 |
+
#~ msgstr "Contact Me"
|
382 |
+
|
383 |
#~ msgid "Contact Me (syam@wpfront.com)"
|
384 |
#~ msgstr "Contact Me (syam@wpfront.com)"
|
385 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WPFront Scroll Top ===
|
2 |
Contributors: syammohanm
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
-
Tags:
|
5 |
-
Requires at least:
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -22,6 +22,7 @@ WPFront Scroll Top plugin allows the visitor to easily scroll back to the top of
|
|
22 |
* Hide on iframes.
|
23 |
* Pages/Posts filter.
|
24 |
* Auto hide.
|
|
|
25 |
|
26 |
http://www.youtube.com/watch?v=DJ55kwTOerE
|
27 |
|
@@ -29,13 +30,6 @@ Visit [WPFront Scroll Top Settings](http://wpfront.com/scroll-top-plugin-setting
|
|
29 |
|
30 |
Visit [WPFront Scroll Top FAQ](http://wpfront.com/scroll-top-plugin-faq/) page for FAQ.
|
31 |
|
32 |
-
Localization Contributors:
|
33 |
-
<li>[Ogi Djuraskovic](http://firstsiteguide.com) (Spanish) </li>
|
34 |
-
<li>[Ogi Djuraskovic](http://firstsiteguide.com) (Serbian) </li>
|
35 |
-
<li>[Flector](http://wordpressplugins.ru) (Russian) </li>
|
36 |
-
<li>[Rene Wolf](http://fluchtsportler.de) (German) </li>
|
37 |
-
<li>[Ivanka Skakun](http://www.coupofy.com/) (Ukrainian) </li>
|
38 |
-
|
39 |
== Installation ==
|
40 |
|
41 |
1. Click Plugins/Add New from the WordPress admin panel
|
@@ -50,7 +44,7 @@ Localization Contributors:
|
|
50 |
|
51 |
== Frequently Asked Questions ==
|
52 |
|
53 |
-
|
54 |
|
55 |
== Screenshots ==
|
56 |
|
@@ -60,6 +54,11 @@ No one has asked anything yet.
|
|
60 |
|
61 |
== Changelog ==
|
62 |
|
|
|
|
|
|
|
|
|
|
|
63 |
= 1.4.5 =
|
64 |
* Ukrainian translation added. Thanks to Ivanka Skakun.
|
65 |
|
@@ -107,6 +106,9 @@ No one has asked anything yet.
|
|
107 |
|
108 |
== Upgrade Notice ==
|
109 |
|
|
|
|
|
|
|
110 |
= 1.4.5 =
|
111 |
* Language translation added.
|
112 |
|
1 |
=== WPFront Scroll Top ===
|
2 |
Contributors: syammohanm
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
+
Tags: scroll to top, back to top, scroll top, scroll up, wordpress scroll top
|
5 |
+
Requires at least: 4.1
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 1.5
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
22 |
* Hide on iframes.
|
23 |
* Pages/Posts filter.
|
24 |
* Auto hide.
|
25 |
+
* Async JavaScript.
|
26 |
|
27 |
http://www.youtube.com/watch?v=DJ55kwTOerE
|
28 |
|
30 |
|
31 |
Visit [WPFront Scroll Top FAQ](http://wpfront.com/scroll-top-plugin-faq/) page for FAQ.
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
== Installation ==
|
34 |
|
35 |
1. Click Plugins/Add New from the WordPress admin panel
|
44 |
|
45 |
== Frequently Asked Questions ==
|
46 |
|
47 |
+
Visit [WPFront Scroll Top FAQ](http://wpfront.com/scroll-top-plugin-faq/) page for FAQ.
|
48 |
|
49 |
== Screenshots ==
|
50 |
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.5 =
|
58 |
+
* JavaScript async.
|
59 |
+
* Minified files.
|
60 |
+
* Language files removed.
|
61 |
+
|
62 |
= 1.4.5 =
|
63 |
* Ukrainian translation added. Thanks to Ivanka Skakun.
|
64 |
|
106 |
|
107 |
== Upgrade Notice ==
|
108 |
|
109 |
+
= 1.5 =
|
110 |
+
* Performance improvements.
|
111 |
+
|
112 |
= 1.4.5 =
|
113 |
* Language translation added.
|
114 |
|
templates/options-template.php
CHANGED
@@ -41,6 +41,15 @@
|
|
41 |
<input type="checkbox" name="<?php echo $this->options->enabled_name(); ?>" <?php echo $this->options->enabled() ? 'checked' : ''; ?> />
|
42 |
</td>
|
43 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
<tr>
|
45 |
<th scope="row">
|
46 |
<?php echo $this->options->scroll_offset_label(); ?>
|
41 |
<input type="checkbox" name="<?php echo $this->options->enabled_name(); ?>" <?php echo $this->options->enabled() ? 'checked' : ''; ?> />
|
42 |
</td>
|
43 |
</tr>
|
44 |
+
<tr>
|
45 |
+
<th scope="row">
|
46 |
+
<?php echo $this->options->javascript_async_label(); ?>
|
47 |
+
</th>
|
48 |
+
<td>
|
49 |
+
<input type="checkbox" name="<?php echo $this->options->javascript_async_name(); ?>" <?php echo $this->options->javascript_async() ? 'checked' : ''; ?> />
|
50 |
+
<span class="description"><?php echo $this->__('[Increases site performance. Keep it enabled, if there are no conflicts.]'); ?></span>
|
51 |
+
</td>
|
52 |
+
</tr>
|
53 |
<tr>
|
54 |
<th scope="row">
|
55 |
<?php echo $this->options->scroll_offset_label(); ?>
|
wpfront-scroll-top.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WPFront Scroll Top
|
4 |
* Plugin URI: http://wpfront.com/scroll-top-plugin/
|
5 |
* Description: Allows the visitor to easily scroll back to the top of the page.
|
6 |
-
* Version: 1.
|
7 |
* Author: Syam Mohan
|
8 |
* Author URI: http://wpfront.com
|
9 |
* License: GPL v3
|
3 |
* Plugin Name: WPFront Scroll Top
|
4 |
* Plugin URI: http://wpfront.com/scroll-top-plugin/
|
5 |
* Description: Allows the visitor to easily scroll back to the top of the page.
|
6 |
+
* Version: 1.5
|
7 |
* Author: Syam Mohan
|
8 |
* Author URI: http://wpfront.com
|
9 |
* License: GPL v3
|