WPFront Scroll Top - Version 1.4.2

Version Description

  • Bug fixes.
  • German language added.
Download this release

Release Info

Developer syammohanm
Plugin Icon 128x128 WPFront Scroll Top
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4 to 1.4.2

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.4';
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, 'write_markup'));
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
- //writes the html and script for the bar
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 (strpos($this->options->include_pages(), $type . '.' . $ID) === FALSE)
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 (strpos($this->options->exclude_pages(), $type . '.' . $ID) === FALSE)
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.2';
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-de_DE.mo ADDED
Binary file
languages/wpfront-scroll-top-de_DE/readme.txt ADDED
@@ -0,0 +1 @@
 
1
+ Contributor: Rene Wolf <fluchtsportler.de>
languages/wpfront-scroll-top-de_DE/wpfront-scroll-top-de_DE.mo ADDED
Binary file
languages/wpfront-scroll-top-de_DE/wpfront-scroll-top-de_DE.po ADDED
@@ -0,0 +1,382 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-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"
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: 4.0
7
- Stable tag: 1.4
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -32,6 +32,8 @@ Visit [WPFront Scroll Top FAQ](http://wpfront.com/scroll-top-plugin-faq/) page f
32
  Localization Contributors:
33
  <li>[Ogi Djuraskovic](http://firstsiteguide.com) (Spanish) </li>
34
  <li>[Ogi Djuraskovic](http://firstsiteguide.com) (Serbian) </li>
 
 
35
 
36
  == Installation ==
37
 
@@ -57,6 +59,14 @@ No one has asked anything yet.
57
 
58
  == Changelog ==
59
 
 
 
 
 
 
 
 
 
60
  = 1.4 =
61
  * Image ALT attribute
62
  * Language translations
@@ -87,6 +97,12 @@ No one has asked anything yet.
87
 
88
  == Upgrade Notice ==
89
 
 
 
 
 
 
 
90
  = 1.4 =
91
  * Now you can set alt attribute for image
92
 
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: 4.2
7
+ Stable tag: 1.4.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
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
 
38
  == Installation ==
39
 
59
 
60
  == Changelog ==
61
 
62
+ = 1.4.2 =
63
+ * Bug fixes.
64
+ * German language added.
65
+
66
+ = 1.4.1 =
67
+ * Bug fixes
68
+ * Russian language added
69
+
70
  = 1.4 =
71
  * Image ALT attribute
72
  * Language translations
97
 
98
  == Upgrade Notice ==
99
 
100
+ = 1.4.2 =
101
+ * Bug fixes.
102
+
103
+ = 1.4.1 =
104
+ * A couple of bug fixes
105
+
106
  = 1.4 =
107
  * Now you can set alt attribute for image
108
 
templates/options-template.php CHANGED
@@ -282,7 +282,7 @@
282
  ?>
283
  <div class="page-div">
284
  <label>
285
- <input type="checkbox" value="<?php echo $key; ?>" <?php echo strpos($this->options->include_pages(), $key) === FALSE ? '' : 'checked'; ?> />
286
  <?php echo $value; ?>
287
  </label>
288
  </div>
@@ -302,7 +302,7 @@
302
  ?>
303
  <div class="page-div">
304
  <label>
305
- <input type="checkbox" value="<?php echo $key; ?>" <?php echo strpos($this->options->exclude_pages(), $key) === FALSE ? '' : 'checked'; ?> />
306
  <?php echo $value; ?>
307
  </label>
308
  </div>
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>
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.4
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.2
7
  * Author: Syam Mohan
8
  * Author URI: http://wpfront.com
9
  * License: GPL v3