Version Description
- Added danish translation
Download this release
Release Info
Developer | xradar |
Plugin | Simple Social Media Share Buttons – Social Sharing for Everyone |
Version | 1.5.5 |
Comparing to | |
See all releases |
Code changes from version 1.5.4 to 1.5.5
- readme.txt +11 -6
- simple-social-buttons.php +2 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: xradar
|
|
3 |
Donate link: http://blog.rabinek.pl/
|
4 |
Tags: facebook, google, twitter, plus one, like it, like, share
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 3.3.
|
7 |
-
Stable tag: 1.5.
|
8 |
|
9 |
Insert and customize social buttons: Facebook Like it, Google plus +1 and Twitter share. Share your content with friends.
|
10 |
|
@@ -30,12 +30,13 @@ Let your visitors share your content with friends and let them **promote your bl
|
|
30 |
|
31 |
Simple Social Buttons is currently in the following languages:
|
32 |
|
|
|
33 |
- English
|
34 |
- French
|
35 |
-
- Polish
|
36 |
- German
|
37 |
-
- Spanish
|
38 |
- Lithuanian
|
|
|
|
|
39 |
|
40 |
Feel free if you want to create a translation of this plugin. Contact me via e-mail or Twitter [@rabinek](https://twitter.com/rabinek "Paweł Rabinek on Twitter"), and I'll add your's translation to Simple Social Buttons.
|
41 |
|
@@ -90,7 +91,8 @@ Yes, you can use `<?php get_ssb(); ?>` in your template file (see installation s
|
|
90 |
- [Usability Idealist](http://usability-idealist.de/ "Fabian Wolf - Usability Idealist") for converting code to object-oriented, adding buttons order and many fixes
|
91 |
- [@Dennis Schreiber](http://twitter.com/flammbar "Dennis Schreiber on Twitter") for german translation
|
92 |
- [@Marcos González](http://twitter.com/qmarcos "Marcos on Twitter") for spanish translation
|
93 |
-
- [Vincent G](http://www.host1free.com "Web Hosting") for lithuanian translation
|
|
|
94 |
|
95 |
== Screenshots ==
|
96 |
|
@@ -139,4 +141,7 @@ Yes, you can use `<?php get_ssb(); ?>` in your template file (see installation s
|
|
139 |
* Bug fix from 1.5.1
|
140 |
|
141 |
= 1.5.4 =
|
142 |
-
* Facebook "Like it" fix (added id="fb-root" instead of class="fb-like")
|
|
|
|
|
|
3 |
Donate link: http://blog.rabinek.pl/
|
4 |
Tags: facebook, google, twitter, plus one, like it, like, share
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 3.3.2
|
7 |
+
Stable tag: 1.5.5
|
8 |
|
9 |
Insert and customize social buttons: Facebook Like it, Google plus +1 and Twitter share. Share your content with friends.
|
10 |
|
30 |
|
31 |
Simple Social Buttons is currently in the following languages:
|
32 |
|
33 |
+
- Danish
|
34 |
- English
|
35 |
- French
|
|
|
36 |
- German
|
|
|
37 |
- Lithuanian
|
38 |
+
- Polish
|
39 |
+
- Spanish
|
40 |
|
41 |
Feel free if you want to create a translation of this plugin. Contact me via e-mail or Twitter [@rabinek](https://twitter.com/rabinek "Paweł Rabinek on Twitter"), and I'll add your's translation to Simple Social Buttons.
|
42 |
|
91 |
- [Usability Idealist](http://usability-idealist.de/ "Fabian Wolf - Usability Idealist") for converting code to object-oriented, adding buttons order and many fixes
|
92 |
- [@Dennis Schreiber](http://twitter.com/flammbar "Dennis Schreiber on Twitter") for german translation
|
93 |
- [@Marcos González](http://twitter.com/qmarcos "Marcos on Twitter") for spanish translation
|
94 |
+
- [Vincent G](http://www.host1free.com/ "Web Hosting") for lithuanian translation
|
95 |
+
- [Mads Phikamphon](http://www.genvejen.dk/ "Mads blog") for danish translation
|
96 |
|
97 |
== Screenshots ==
|
98 |
|
141 |
* Bug fix from 1.5.1
|
142 |
|
143 |
= 1.5.4 =
|
144 |
+
* Facebook "Like it" fix (added id="fb-root" instead of class="fb-like")
|
145 |
+
|
146 |
+
= 1.5.5 =
|
147 |
+
* Added danish translation
|
simple-social-buttons.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://blog.rabinek.pl/simple-social-buttons-wordpress/
|
5 |
Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1" and Twitter share.
|
6 |
Author: Paweł Rabinek
|
7 |
-
Version: 1.5.
|
8 |
Author URI: http://blog.rabinek.pl/
|
9 |
*/
|
10 |
|
@@ -35,7 +35,7 @@
|
|
35 |
|
36 |
class SimpleSocialButtonsPR {
|
37 |
var $pluginName = 'Simple Social Buttons';
|
38 |
-
var $pluginVersion = '1.5.
|
39 |
var $pluginPrefix = 'ssb_pr_';
|
40 |
var $hideCustomMetaKey = '_ssb_hide';
|
41 |
|
4 |
Plugin URI: http://blog.rabinek.pl/simple-social-buttons-wordpress/
|
5 |
Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1" and Twitter share.
|
6 |
Author: Paweł Rabinek
|
7 |
+
Version: 1.5.5
|
8 |
Author URI: http://blog.rabinek.pl/
|
9 |
*/
|
10 |
|
35 |
|
36 |
class SimpleSocialButtonsPR {
|
37 |
var $pluginName = 'Simple Social Buttons';
|
38 |
+
var $pluginVersion = '1.5.5';
|
39 |
var $pluginPrefix = 'ssb_pr_';
|
40 |
var $hideCustomMetaKey = '_ssb_hide';
|
41 |
|