Version Description
- .
Download this release
Release Info
Developer | na1vez |
Plugin | Uptolike Social Share Buttons |
Version | 1.5.8 |
Comparing to | |
See all releases |
Code changes from version 1.5.7 to 1.5.8
- readme.txt +5 -2
- uptolike_share_widget.php +2 -2
- widget_options.php +4 -1
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: Uptolike Team
|
3 |
Tags: +1, UpToLike, AddThis, social buttons, bookmark, bookmarking, like, share, share button, sharing, social bookmarking, social bookmarks, кнопки соцсетей, социальные кнопки
|
4 |
Requires at least: 3.0.1
|
5 |
-
Tested up to: 4.7.
|
6 |
-
Stable tag: 1.5.
|
7 |
|
8 |
Uptolike Social Share Buttons - social bookmarking widget with sharing statistics.
|
9 |
|
@@ -107,6 +107,9 @@ Answers to Frequently Asked Questions you can find at http://uptolike.ru/faq
|
|
107 |
3. Traffic and sharing statistics
|
108 |
|
109 |
== Changelog ==
|
|
|
|
|
|
|
110 |
= 1.5.7 =
|
111 |
* Исправленна генерация ссылок при расположении виджета Боковой панелью.
|
112 |
|
2 |
Contributors: Uptolike Team
|
3 |
Tags: +1, UpToLike, AddThis, social buttons, bookmark, bookmarking, like, share, share button, sharing, social bookmarking, social bookmarks, кнопки соцсетей, социальные кнопки
|
4 |
Requires at least: 3.0.1
|
5 |
+
Tested up to: 4.7.3
|
6 |
+
Stable tag: 1.5.8
|
7 |
|
8 |
Uptolike Social Share Buttons - social bookmarking widget with sharing statistics.
|
9 |
|
107 |
3. Traffic and sharing statistics
|
108 |
|
109 |
== Changelog ==
|
110 |
+
= 1.5.8 =
|
111 |
+
* Добавлен перевод на Чешский язык.
|
112 |
+
|
113 |
= 1.5.7 =
|
114 |
* Исправленна генерация ссылок при расположении виджета Боковой панелью.
|
115 |
|
uptolike_share_widget.php
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
* Plugin Name: UpToLike Social Share Buttons
|
4 |
* Plugin URI: https://uptolike.com/
|
5 |
* Description: Uptolike Social Share Buttons - social bookmarking widget with sharing statistics.
|
6 |
-
* Version: 1.5.
|
7 |
* Requires at least: 4.1
|
8 |
-
* Tested up to: 4.7.
|
9 |
* Author: Uptolike Team
|
10 |
* Author URI: https://uptolike.com/
|
11 |
*
|
3 |
* Plugin Name: UpToLike Social Share Buttons
|
4 |
* Plugin URI: https://uptolike.com/
|
5 |
* Description: Uptolike Social Share Buttons - social bookmarking widget with sharing statistics.
|
6 |
+
* Version: 1.5.8
|
7 |
* Requires at least: 4.1
|
8 |
+
* Tested up to: 4.7.3
|
9 |
* Author: Uptolike Team
|
10 |
* Author URI: https://uptolike.com/
|
11 |
*
|
widget_options.php
CHANGED
@@ -466,7 +466,7 @@ class UptolikeSettingsPage {
|
|
466 |
}
|
467 |
|
468 |
public function uptolike_language_callback() {
|
469 |
-
$ru = $en = $ua = $de = $es = $it = $pl = $lt = '';
|
470 |
if (isset($this->options['utl_language'])) {
|
471 |
if ($this->options['utl_language'] == 'ru') {
|
472 |
$ru = "selected='selected'";
|
@@ -484,6 +484,8 @@ class UptolikeSettingsPage {
|
|
484 |
$pl = "selected='selected'";
|
485 |
} elseif ('lt' == $this->options['utl_language']) {
|
486 |
$lt = "selected='selected'";
|
|
|
|
|
487 |
} else {
|
488 |
$ru = "selected='selected'";
|
489 |
}
|
@@ -501,6 +503,7 @@ class UptolikeSettingsPage {
|
|
501 |
<option {$it} value='it'>Итальянский</option>
|
502 |
<option {$pl} value='pl'>Латвийский</option>
|
503 |
<option {$lt} value='lt'>Польский</option>
|
|
|
504 |
</select>";
|
505 |
}
|
506 |
}
|
466 |
}
|
467 |
|
468 |
public function uptolike_language_callback() {
|
469 |
+
$ru = $en = $ua = $de = $es = $it = $pl = $lt = $cz = '';
|
470 |
if (isset($this->options['utl_language'])) {
|
471 |
if ($this->options['utl_language'] == 'ru') {
|
472 |
$ru = "selected='selected'";
|
484 |
$pl = "selected='selected'";
|
485 |
} elseif ('lt' == $this->options['utl_language']) {
|
486 |
$lt = "selected='selected'";
|
487 |
+
} elseif ('cz' == $this->options['utl_language']) {
|
488 |
+
$cz = "selected='selected'";
|
489 |
} else {
|
490 |
$ru = "selected='selected'";
|
491 |
}
|
503 |
<option {$it} value='it'>Итальянский</option>
|
504 |
<option {$pl} value='pl'>Латвийский</option>
|
505 |
<option {$lt} value='lt'>Польский</option>
|
506 |
+
<option {$cz} value='cz'>Чешский</option>
|
507 |
</select>";
|
508 |
}
|
509 |
}
|