Version Description
- Bug fixes
- Russian language added
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront Scroll Top |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.4.1
- classes/base/class-wpfront-base.php +1 -1
- classes/class-wpfront-scroll-top-options.php +1 -0
- classes/class-wpfront-scroll-top.php +34 -11
- languages/wpfront-scroll-top-es_ES.mo +0 -0
- languages/wpfront-scroll-top-es_ES/readme.txt +1 -0
- 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 +504 -0
- languages/wpfront-scroll-top-ru_RU.mo +0 -0
- languages/wpfront-scroll-top-ru_RU/readme.txt +1 -0
- 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 +509 -0
- languages/wpfront-scroll-top-sr_RS.mo +0 -0
- languages/wpfront-scroll-top-sr_RS/readme.txt +1 -0
- 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 +497 -0
- languages/wpfront-scroll-top.mo +0 -0
- languages/wpfront-scroll-top.po +33 -26
- readme.txt +21 -2
- templates/options-template.php +10 -2
- templates/scroll-top-template.php +1 -1
- wpfront-scroll-top.php +1 -1
classes/base/class-wpfront-base.php
CHANGED
@@ -175,7 +175,7 @@ if (!class_exists('WPFront_Base')) {
|
|
175 |
|
|
176 |
<a href="http://wordpress.org/support/view/plugin-reviews/' . $this->plugin_slug . '" target="_blank">' . $this->__('Write Review') . '</a>
|
177 |
|
|
178 |
-
<a href="
|
179 |
|
|
180 |
<a href="http://wpfront.com/donate/" target="_blank">' . $this->__('Buy me a Beer or Coffee') . '</a>
|
181 |
';
|
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 |
';
|
classes/class-wpfront-scroll-top-options.php
CHANGED
@@ -52,6 +52,7 @@ if (!class_exists('WPFront_Scroll_Top_Options')) {
|
|
52 |
$this->addOption('hide_small_window', 'bit', FALSE)->__('Hide on Small Window');
|
53 |
$this->addOption('small_window_width', 'int', 640, array($this, 'validate_zero_positive'))->__('Small Window Max Width');
|
54 |
$this->addOption('button_style', 'string', 'image', array($this, 'validate_button_style'))->__('Button Style');
|
|
|
55 |
$this->addOption('hide_wpadmin', 'bit', FALSE)->__('Hide on WP-ADMIN');
|
56 |
$this->addOption('hide_iframe', 'bit', FALSE)->__('Hide on iframes');
|
57 |
|
52 |
$this->addOption('hide_small_window', 'bit', FALSE)->__('Hide on Small Window');
|
53 |
$this->addOption('small_window_width', 'int', 640, array($this, 'validate_zero_positive'))->__('Small Window Max Width');
|
54 |
$this->addOption('button_style', 'string', 'image', array($this, 'validate_button_style'))->__('Button Style');
|
55 |
+
$this->addOption('image_alt', 'string', '')->__('Image ALT');
|
56 |
$this->addOption('hide_wpadmin', 'bit', FALSE)->__('Hide on WP-ADMIN');
|
57 |
$this->addOption('hide_iframe', 'bit', FALSE)->__('Hide on iframes');
|
58 |
|
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';
|
@@ -58,7 +58,7 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
58 |
$this->iconsURL = $this->pluginURLRoot . 'images/icons/';
|
59 |
|
60 |
add_action('wp_footer', array(&$this, 'write_markup'));
|
61 |
-
add_action('shutdown', array(&$this, '
|
62 |
|
63 |
$this->add_menu($this->__('WPFront Scroll Top'), $this->__('Scroll Top'));
|
64 |
}
|
@@ -114,7 +114,26 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
114 |
$this->options = new WPFront_Scroll_Top_Options(self::OPTION_NAME, self::PLUGIN_SLUG);
|
115 |
}
|
116 |
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
public function write_markup() {
|
119 |
if ($this->markupLoaded) {
|
120 |
return;
|
@@ -159,17 +178,17 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
159 |
|
160 |
if ($this->options->hide_wpadmin() && is_admin())
|
161 |
return FALSE;
|
162 |
-
|
163 |
-
if(!$this->filter_pages())
|
164 |
return FALSE;
|
165 |
|
166 |
return TRUE;
|
167 |
}
|
168 |
-
|
169 |
private function filter_pages() {
|
170 |
-
if(is_admin())
|
171 |
return TRUE;
|
172 |
-
|
173 |
switch ($this->options->display_pages()) {
|
174 |
case 1:
|
175 |
return TRUE;
|
@@ -193,7 +212,7 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
193 |
}
|
194 |
if ($this->options->display_pages() == 2) {
|
195 |
if ($ID !== FALSE && $type !== FALSE) {
|
196 |
-
if (
|
197 |
return FALSE;
|
198 |
else
|
199 |
return TRUE;
|
@@ -202,7 +221,7 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
202 |
}
|
203 |
if ($this->options->display_pages() == 3) {
|
204 |
if ($ID !== FALSE && $type !== FALSE) {
|
205 |
-
if (
|
206 |
return TRUE;
|
207 |
else
|
208 |
return FALSE;
|
@@ -210,10 +229,14 @@ if (!class_exists('WPFront_Scroll_Top')) {
|
|
210 |
return TRUE;
|
211 |
}
|
212 |
}
|
213 |
-
|
214 |
return TRUE;
|
215 |
}
|
216 |
|
|
|
|
|
|
|
|
|
217 |
private function image() {
|
218 |
if ($this->options->image() == 'custom')
|
219 |
return $this->options->custom_url();
|
36 |
class WPFront_Scroll_Top extends WPFront_Base {
|
37 |
|
38 |
//Constants
|
39 |
+
const VERSION = '1.4.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';
|
58 |
$this->iconsURL = $this->pluginURLRoot . 'images/icons/';
|
59 |
|
60 |
add_action('wp_footer', array(&$this, 'write_markup'));
|
61 |
+
add_action('shutdown', array(&$this, 'shutdown_callback'));
|
62 |
|
63 |
$this->add_menu($this->__('WPFront Scroll Top'), $this->__('Scroll Top'));
|
64 |
}
|
114 |
$this->options = new WPFront_Scroll_Top_Options(self::OPTION_NAME, self::PLUGIN_SLUG);
|
115 |
}
|
116 |
|
117 |
+
public function shutdown_callback() {
|
118 |
+
if ($this->markupLoaded) {
|
119 |
+
return;
|
120 |
+
}
|
121 |
+
|
122 |
+
$headers = headers_list();
|
123 |
+
$flag = FALSE;
|
124 |
+
foreach ($headers as $value) {
|
125 |
+
$value = strtolower(str_replace(' ', '', $value));
|
126 |
+
if (strpos($value, 'content-type:text/html') === 0) {
|
127 |
+
$flag = TRUE;
|
128 |
+
break;
|
129 |
+
}
|
130 |
+
}
|
131 |
+
|
132 |
+
if ($flag)
|
133 |
+
$this->write_markup();
|
134 |
+
}
|
135 |
+
|
136 |
+
//writes the html and script for the button
|
137 |
public function write_markup() {
|
138 |
if ($this->markupLoaded) {
|
139 |
return;
|
178 |
|
179 |
if ($this->options->hide_wpadmin() && is_admin())
|
180 |
return FALSE;
|
181 |
+
|
182 |
+
if (!$this->filter_pages())
|
183 |
return FALSE;
|
184 |
|
185 |
return TRUE;
|
186 |
}
|
187 |
+
|
188 |
private function filter_pages() {
|
189 |
+
if (is_admin())
|
190 |
return TRUE;
|
191 |
+
|
192 |
switch ($this->options->display_pages()) {
|
193 |
case 1:
|
194 |
return TRUE;
|
212 |
}
|
213 |
if ($this->options->display_pages() == 2) {
|
214 |
if ($ID !== FALSE && $type !== FALSE) {
|
215 |
+
if ($this->filter_pages_contains($this->options->include_pages(), $type . '.' . $ID) === FALSE)
|
216 |
return FALSE;
|
217 |
else
|
218 |
return TRUE;
|
221 |
}
|
222 |
if ($this->options->display_pages() == 3) {
|
223 |
if ($ID !== FALSE && $type !== FALSE) {
|
224 |
+
if ($this->filter_pages_contains($this->options->exclude_pages(), $type . '.' . $ID) === FALSE)
|
225 |
return TRUE;
|
226 |
else
|
227 |
return FALSE;
|
229 |
return TRUE;
|
230 |
}
|
231 |
}
|
232 |
+
|
233 |
return TRUE;
|
234 |
}
|
235 |
|
236 |
+
public function filter_pages_contains($list, $key) {
|
237 |
+
return strpos(',' . $list . ',', ',' . $key . ',');
|
238 |
+
}
|
239 |
+
|
240 |
private function image() {
|
241 |
if ($this->options->image() == 'custom')
|
242 |
return $this->options->custom_url();
|
languages/wpfront-scroll-top-es_ES.mo
ADDED
Binary file
|
languages/wpfront-scroll-top-es_ES/readme.txt
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
Contributor: Ogi Djuraskovic <firstsiteguide.com>
|
languages/wpfront-scroll-top-es_ES/wpfront-scroll-top-es_ES.mo
ADDED
Binary file
|
languages/wpfront-scroll-top-es_ES/wpfront-scroll-top-es_ES.po
ADDED
@@ -0,0 +1,504 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
ADDED
Binary file
|
languages/wpfront-scroll-top-ru_RU/readme.txt
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
Contributor: Flector <wordpressplugins.ru>
|
languages/wpfront-scroll-top-ru_RU/wpfront-scroll-top-ru_RU.mo
ADDED
Binary file
|
languages/wpfront-scroll-top-ru_RU/wpfront-scroll-top-ru_RU.po
ADDED
@@ -0,0 +1,509 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
ADDED
Binary file
|
languages/wpfront-scroll-top-sr_RS/readme.txt
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
Contributor: Ogi Djuraskovic <firstsiteguide.com>
|
languages/wpfront-scroll-top-sr_RS/wpfront-scroll-top-sr_RS.mo
ADDED
Binary file
|
languages/wpfront-scroll-top-sr_RS/wpfront-scroll-top-sr_RS.po
ADDED
@@ -0,0 +1,497 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.mo
CHANGED
Binary file
|
languages/wpfront-scroll-top.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
"Language: en\n"
|
@@ -140,8 +140,8 @@ msgid "Write Review"
|
|
140 |
msgstr "Write Review"
|
141 |
|
142 |
#: ../classes/base/class-wpfront-base.php:178
|
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"
|
@@ -200,44 +200,48 @@ msgid "Button Style"
|
|
200 |
msgstr "Button Style"
|
201 |
|
202 |
#: ../classes/class-wpfront-scroll-top-options.php:55
|
|
|
|
|
|
|
|
|
203 |
msgid "Hide on WP-ADMIN"
|
204 |
msgstr "Hide on WP-ADMIN"
|
205 |
|
206 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
207 |
msgid "Hide on iframes"
|
208 |
msgstr "Hide on iframes"
|
209 |
|
210 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
211 |
-
#: ../templates/options-template.php:
|
212 |
msgid "Location"
|
213 |
msgstr "Location"
|
214 |
|
215 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
216 |
msgid "Margin X"
|
217 |
msgstr "Margin X"
|
218 |
|
219 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
220 |
msgid "Margin Y"
|
221 |
msgstr "Margin Y"
|
222 |
|
223 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
224 |
#: ../templates/options-template.php:170
|
225 |
msgid "Text"
|
226 |
msgstr "Text"
|
227 |
|
228 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
229 |
msgid "Text Color"
|
230 |
msgstr "Text Color"
|
231 |
|
232 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
233 |
msgid "Background Color"
|
234 |
msgstr "Background Color"
|
235 |
|
236 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
237 |
msgid "Custom CSS"
|
238 |
msgstr "Custom CSS"
|
239 |
|
240 |
-
#: ../classes/class-wpfront-scroll-top-options.php:
|
241 |
msgid "Display on Pages"
|
242 |
msgstr "Display on Pages"
|
243 |
|
@@ -320,54 +324,57 @@ msgstr "[Button will be hidden on 'wp-admin'.]"
|
|
320 |
msgid "[Button will be hidden on iframes, usually inside popups.]"
|
321 |
msgstr "[Button will be hidden on iframes, usually inside popups.]"
|
322 |
|
323 |
-
#: ../templates/options-template.php:168 ../templates/options-template.php:
|
324 |
msgid "Image"
|
325 |
msgstr "Image"
|
326 |
|
327 |
-
#: ../templates/options-template.php:
|
328 |
msgid "Text Button"
|
329 |
msgstr "Text Button"
|
330 |
|
331 |
-
#: ../templates/options-template.php:
|
332 |
msgid "Bottom Right"
|
333 |
msgstr "Bottom Right"
|
334 |
|
335 |
-
#: ../templates/options-template.php:
|
336 |
msgid "Bottom Left"
|
337 |
msgstr "Bottom Left"
|
338 |
|
339 |
-
#: ../templates/options-template.php:
|
340 |
msgid "Top Right"
|
341 |
msgstr "Top Right"
|
342 |
|
343 |
-
#: ../templates/options-template.php:
|
344 |
msgid "Top Left"
|
345 |
msgstr "Top Left"
|
346 |
|
347 |
-
#: ../templates/options-template.php:
|
348 |
msgid "[Negative value allowed.]"
|
349 |
msgstr "[Negative value allowed.]"
|
350 |
|
351 |
-
#: ../templates/options-template.php:
|
352 |
msgid "Filter"
|
353 |
msgstr "Filter"
|
354 |
|
355 |
-
#: ../templates/options-template.php:
|
356 |
msgid "All pages."
|
357 |
msgstr "All pages."
|
358 |
|
359 |
-
#: ../templates/options-template.php:
|
360 |
msgid "Include in following pages"
|
361 |
msgstr "Include in following pages"
|
362 |
|
363 |
-
#: ../templates/options-template.php:
|
364 |
msgid "Exclude in following pages"
|
365 |
msgstr "Exclude in following pages"
|
366 |
|
367 |
-
#: ../templates/options-template.php:
|
368 |
msgid "Custom URL"
|
369 |
msgstr "Custom URL"
|
370 |
|
|
|
|
|
|
|
371 |
#~ msgid "Bar Height"
|
372 |
#~ msgstr "Bar Height"
|
373 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
+
"POT-Creation-Date: 2014-08-11 09:33-0700\n"
|
5 |
+
"PO-Revision-Date: 2014-08-11 09:33-0700\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
"Language: en\n"
|
140 |
msgstr "Write Review"
|
141 |
|
142 |
#: ../classes/base/class-wpfront-base.php:178
|
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"
|
200 |
msgstr "Button Style"
|
201 |
|
202 |
#: ../classes/class-wpfront-scroll-top-options.php:55
|
203 |
+
msgid "Image ALT"
|
204 |
+
msgstr "Image ALT"
|
205 |
+
|
206 |
+
#: ../classes/class-wpfront-scroll-top-options.php:56
|
207 |
msgid "Hide on WP-ADMIN"
|
208 |
msgstr "Hide on WP-ADMIN"
|
209 |
|
210 |
+
#: ../classes/class-wpfront-scroll-top-options.php:57
|
211 |
msgid "Hide on iframes"
|
212 |
msgstr "Hide on iframes"
|
213 |
|
214 |
+
#: ../classes/class-wpfront-scroll-top-options.php:59
|
215 |
+
#: ../templates/options-template.php:226
|
216 |
msgid "Location"
|
217 |
msgstr "Location"
|
218 |
|
219 |
+
#: ../classes/class-wpfront-scroll-top-options.php:60
|
220 |
msgid "Margin X"
|
221 |
msgstr "Margin X"
|
222 |
|
223 |
+
#: ../classes/class-wpfront-scroll-top-options.php:61
|
224 |
msgid "Margin Y"
|
225 |
msgstr "Margin Y"
|
226 |
|
227 |
+
#: ../classes/class-wpfront-scroll-top-options.php:63
|
228 |
#: ../templates/options-template.php:170
|
229 |
msgid "Text"
|
230 |
msgstr "Text"
|
231 |
|
232 |
+
#: ../classes/class-wpfront-scroll-top-options.php:64
|
233 |
msgid "Text Color"
|
234 |
msgstr "Text Color"
|
235 |
|
236 |
+
#: ../classes/class-wpfront-scroll-top-options.php:65
|
237 |
msgid "Background Color"
|
238 |
msgstr "Background Color"
|
239 |
|
240 |
+
#: ../classes/class-wpfront-scroll-top-options.php:66
|
241 |
msgid "Custom CSS"
|
242 |
msgstr "Custom CSS"
|
243 |
|
244 |
+
#: ../classes/class-wpfront-scroll-top-options.php:68
|
245 |
msgid "Display on Pages"
|
246 |
msgstr "Display on Pages"
|
247 |
|
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:168 ../templates/options-template.php:317
|
328 |
msgid "Image"
|
329 |
msgstr "Image"
|
330 |
|
331 |
+
#: ../templates/options-template.php:184
|
332 |
msgid "Text Button"
|
333 |
msgstr "Text Button"
|
334 |
|
335 |
+
#: ../templates/options-template.php:234
|
336 |
msgid "Bottom Right"
|
337 |
msgstr "Bottom Right"
|
338 |
|
339 |
+
#: ../templates/options-template.php:235
|
340 |
msgid "Bottom Left"
|
341 |
msgstr "Bottom Left"
|
342 |
|
343 |
+
#: ../templates/options-template.php:236
|
344 |
msgid "Top Right"
|
345 |
msgstr "Top Right"
|
346 |
|
347 |
+
#: ../templates/options-template.php:237
|
348 |
msgid "Top Left"
|
349 |
msgstr "Top Left"
|
350 |
|
351 |
+
#: ../templates/options-template.php:247 ../templates/options-template.php:256
|
352 |
msgid "[Negative value allowed.]"
|
353 |
msgstr "[Negative value allowed.]"
|
354 |
|
355 |
+
#: ../templates/options-template.php:261
|
356 |
msgid "Filter"
|
357 |
msgstr "Filter"
|
358 |
|
359 |
+
#: ../templates/options-template.php:270
|
360 |
msgid "All pages."
|
361 |
msgstr "All pages."
|
362 |
|
363 |
+
#: ../templates/options-template.php:275
|
364 |
msgid "Include in following pages"
|
365 |
msgstr "Include in following pages"
|
366 |
|
367 |
+
#: ../templates/options-template.php:295
|
368 |
msgid "Exclude in following pages"
|
369 |
msgstr "Exclude in following pages"
|
370 |
|
371 |
+
#: ../templates/options-template.php:333
|
372 |
msgid "Custom URL"
|
373 |
msgstr "Custom URL"
|
374 |
|
375 |
+
#~ msgid "Contact Me (syam@wpfront.com)"
|
376 |
+
#~ msgstr "Contact Me (syam@wpfront.com)"
|
377 |
+
|
378 |
#~ msgid "Bar Height"
|
379 |
#~ msgstr "Bar Height"
|
380 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: syammohanm
|
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
Tags: back, back to top, navigation, navigate, page, scroll, scroll to top, scroll top, scroll up, top, up
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.9
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -29,6 +29,11 @@ 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 |
== Installation ==
|
33 |
|
34 |
1. Click Plugins/Add New from the WordPress admin panel
|
@@ -53,6 +58,14 @@ No one has asked anything yet.
|
|
53 |
|
54 |
== Changelog ==
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
= 1.3 =
|
57 |
* Auto hide
|
58 |
* Hide on wp-admin
|
@@ -79,6 +92,12 @@ No one has asked anything yet.
|
|
79 |
|
80 |
== Upgrade Notice ==
|
81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
= 1.3 =
|
83 |
* Now you can auto hide it
|
84 |
* Hide on wp-admin/iframes
|
3 |
Donate link: http://wpfront.com/donate/
|
4 |
Tags: back, back to top, navigation, navigate, page, scroll, scroll to top, scroll top, scroll up, top, up
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.9.2
|
7 |
+
Stable tag: 1.4.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
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 |
+
|
37 |
== Installation ==
|
38 |
|
39 |
1. Click Plugins/Add New from the WordPress admin panel
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 1.4.1 =
|
62 |
+
* Bug fixes
|
63 |
+
* Russian language added
|
64 |
+
|
65 |
+
= 1.4 =
|
66 |
+
* Image ALT attribute
|
67 |
+
* Language translations
|
68 |
+
|
69 |
= 1.3 =
|
70 |
* Auto hide
|
71 |
* Hide on wp-admin
|
92 |
|
93 |
== Upgrade Notice ==
|
94 |
|
95 |
+
= 1.4.1 =
|
96 |
+
* A couple of bug fixes
|
97 |
+
|
98 |
+
= 1.4 =
|
99 |
+
* Now you can set alt attribute for image
|
100 |
+
|
101 |
= 1.3 =
|
102 |
* Now you can auto hide it
|
103 |
* Hide on wp-admin/iframes
|
templates/options-template.php
CHANGED
@@ -171,6 +171,14 @@
|
|
171 |
</div>
|
172 |
</td>
|
173 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
</table>
|
175 |
|
176 |
<h3><?php echo $this->__('Text Button'); ?></h3>
|
@@ -274,7 +282,7 @@
|
|
274 |
?>
|
275 |
<div class="page-div">
|
276 |
<label>
|
277 |
-
<input type="checkbox" value="<?php echo $key; ?>" <?php echo
|
278 |
<?php echo $value; ?>
|
279 |
</label>
|
280 |
</div>
|
@@ -294,7 +302,7 @@
|
|
294 |
?>
|
295 |
<div class="page-div">
|
296 |
<label>
|
297 |
-
<input type="checkbox" value="<?php echo $key; ?>" <?php echo
|
298 |
<?php echo $value; ?>
|
299 |
</label>
|
300 |
</div>
|
171 |
</div>
|
172 |
</td>
|
173 |
</tr>
|
174 |
+
<tr>
|
175 |
+
<th scope="row">
|
176 |
+
<?php echo $this->options->image_alt_label(); ?>
|
177 |
+
</th>
|
178 |
+
<td>
|
179 |
+
<input class="altText" name="<?php echo $this->options->image_alt_name(); ?>" value="<?php echo $this->options->image_alt(); ?>" />
|
180 |
+
</td>
|
181 |
+
</tr>
|
182 |
</table>
|
183 |
|
184 |
<h3><?php echo $this->__('Text Button'); ?></h3>
|
282 |
?>
|
283 |
<div class="page-div">
|
284 |
<label>
|
285 |
+
<input type="checkbox" value="<?php echo $key; ?>" <?php echo $this->filter_pages_contains($this->options->include_pages(), $key) === FALSE ? '' : 'checked'; ?> />
|
286 |
<?php echo $value; ?>
|
287 |
</label>
|
288 |
</div>
|
302 |
?>
|
303 |
<div class="page-div">
|
304 |
<label>
|
305 |
+
<input type="checkbox" value="<?php echo $key; ?>" <?php echo $this->filter_pages_contains($this->options->exclude_pages(), $key) === FALSE ? '' : 'checked'; ?> />
|
306 |
<?php echo $value; ?>
|
307 |
</label>
|
308 |
</div>
|
templates/scroll-top-template.php
CHANGED
@@ -91,7 +91,7 @@ if ($this->options->button_style() == 'text') {
|
|
91 |
<?php
|
92 |
} else {
|
93 |
?>
|
94 |
-
<div id="wpfront-scroll-top-container"><img src="<?php echo $this->image(); ?>" /></div>
|
95 |
<?php
|
96 |
}
|
97 |
?>
|
91 |
<?php
|
92 |
} else {
|
93 |
?>
|
94 |
+
<div id="wpfront-scroll-top-container"><img src="<?php echo $this->image(); ?>" alt="<?php echo $this->options->image_alt(); ?>" /></div>
|
95 |
<?php
|
96 |
}
|
97 |
?>
|
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.4.1
|
7 |
* Author: Syam Mohan
|
8 |
* Author URI: http://wpfront.com
|
9 |
* License: GPL v3
|