Social Media Follow Buttons Bar - Version 3.12

Version Description

  • Added option for Goodreads button.
  • Social media icons more optimized. Weight is reduced by 50%.
  • Links on the settings page cleared from http and https.
  • Added additional donate link on the Plugins page.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 Social Media Follow Buttons Bar
Version 3.12
Comparing to
See all releases

Code changes from version 3.11 to 3.12

Files changed (41) hide show
  1. inc/img/banner.png +0 -0
  2. inc/img/social-media-icons/blogger.png +0 -0
  3. inc/img/social-media-icons/codepen.png +0 -0
  4. inc/img/social-media-icons/discord.png +0 -0
  5. inc/img/social-media-icons/dloky.png +0 -0
  6. inc/img/social-media-icons/email.png +0 -0
  7. inc/img/social-media-icons/facebook.png +0 -0
  8. inc/img/social-media-icons/github.png +0 -0
  9. inc/img/social-media-icons/goodreads.png +0 -0
  10. inc/img/social-media-icons/google-plus.png +0 -0
  11. inc/img/social-media-icons/imdb.png +0 -0
  12. inc/img/social-media-icons/instagram.png +0 -0
  13. inc/img/social-media-icons/linkedin.png +0 -0
  14. inc/img/social-media-icons/livejournal.png +0 -0
  15. inc/img/social-media-icons/meetvibe.png +0 -0
  16. inc/img/social-media-icons/odnoklassniki.png +0 -0
  17. inc/img/social-media-icons/pinterest.png +0 -0
  18. inc/img/social-media-icons/reddit.png +0 -0
  19. inc/img/social-media-icons/rss-feed.png +0 -0
  20. inc/img/social-media-icons/skype.png +0 -0
  21. inc/img/social-media-icons/snapchat.png +0 -0
  22. inc/img/social-media-icons/soundcloud.png +0 -0
  23. inc/img/social-media-icons/spotify.png +0 -0
  24. inc/img/social-media-icons/steam.png +0 -0
  25. inc/img/social-media-icons/telegram.png +0 -0
  26. inc/img/social-media-icons/tumblr.png +0 -0
  27. inc/img/social-media-icons/twitch.png +0 -0
  28. inc/img/social-media-icons/twitter.png +0 -0
  29. inc/img/social-media-icons/vimeo.png +0 -0
  30. inc/img/social-media-icons/vkontakte.png +0 -0
  31. inc/img/social-media-icons/website.png +0 -0
  32. inc/img/social-media-icons/wordpress.png +0 -0
  33. inc/img/social-media-icons/youtube.png +0 -0
  34. inc/php/settings_page.php +30 -24
  35. languages/social-media-buttons-toolbar-es_ES.mo +0 -0
  36. languages/social-media-buttons-toolbar-es_ES.po +47 -43
  37. languages/social-media-buttons-toolbar-ru_RU.mo +0 -0
  38. languages/social-media-buttons-toolbar-ru_RU.po +47 -43
  39. languages/social-media-buttons-toolbar.pot +46 -42
  40. readme.txt +9 -3
  41. social-media-buttons-toolbar.php +24 -4
inc/img/banner.png CHANGED
Binary file
inc/img/social-media-icons/blogger.png CHANGED
Binary file
inc/img/social-media-icons/codepen.png CHANGED
Binary file
inc/img/social-media-icons/discord.png CHANGED
Binary file
inc/img/social-media-icons/dloky.png CHANGED
Binary file
inc/img/social-media-icons/email.png CHANGED
Binary file
inc/img/social-media-icons/facebook.png CHANGED
Binary file
inc/img/social-media-icons/github.png CHANGED
Binary file
inc/img/social-media-icons/goodreads.png ADDED
Binary file
inc/img/social-media-icons/google-plus.png CHANGED
Binary file
inc/img/social-media-icons/imdb.png CHANGED
Binary file
inc/img/social-media-icons/instagram.png CHANGED
Binary file
inc/img/social-media-icons/linkedin.png CHANGED
Binary file
inc/img/social-media-icons/livejournal.png CHANGED
Binary file
inc/img/social-media-icons/meetvibe.png CHANGED
Binary file
inc/img/social-media-icons/odnoklassniki.png CHANGED
Binary file
inc/img/social-media-icons/pinterest.png CHANGED
Binary file
inc/img/social-media-icons/reddit.png CHANGED
Binary file
inc/img/social-media-icons/rss-feed.png CHANGED
Binary file
inc/img/social-media-icons/skype.png CHANGED
Binary file
inc/img/social-media-icons/snapchat.png CHANGED
Binary file
inc/img/social-media-icons/soundcloud.png CHANGED
Binary file
inc/img/social-media-icons/spotify.png CHANGED
Binary file
inc/img/social-media-icons/steam.png CHANGED
Binary file
inc/img/social-media-icons/telegram.png CHANGED
Binary file
inc/img/social-media-icons/tumblr.png CHANGED
Binary file
inc/img/social-media-icons/twitch.png CHANGED
Binary file
inc/img/social-media-icons/twitter.png CHANGED
Binary file
inc/img/social-media-icons/vimeo.png CHANGED
Binary file
inc/img/social-media-icons/vkontakte.png CHANGED
Binary file
inc/img/social-media-icons/website.png CHANGED
Binary file
inc/img/social-media-icons/wordpress.png CHANGED
Binary file
inc/img/social-media-icons/youtube.png CHANGED
Binary file
inc/php/settings_page.php CHANGED
@@ -10,7 +10,7 @@ defined('ABSPATH') or die("Restricted access!");
10
  /**
11
  * Render Settings Page
12
  *
13
- * @since 3.11
14
  */
15
  function smbtoolbar_render_submenu_page() {
16
 
@@ -85,13 +85,13 @@ function smbtoolbar_render_submenu_page() {
85
  'Facebook',
86
  'https://www.facebook.com/YourUsernameHere',
87
  __( 'Enter the link to your Facebook profile page', SMEDIABT_TEXT ),
88
- 'hhttps://www.facebook.com'
89
  ); ?>
90
  <?php smbtoolbar_media( 'twitter',
91
  'Twitter',
92
  'https://twitter.com/YourUsernameHere',
93
  __( 'Enter the link to your Twitter profile page', SMEDIABT_TEXT ),
94
- 'https://twitter.com'
95
  ); ?>
96
  <?php smbtoolbar_media( 'instagram',
97
  'Instagram',
@@ -103,25 +103,25 @@ function smbtoolbar_render_submenu_page() {
103
  'Google+',
104
  'https://plus.google.com/u/0/+YourUsernameHere',
105
  __( 'Enter the link to your Google+ profile page', SMEDIABT_TEXT ),
106
- 'https://plus.google.com'
107
  ); ?>
108
  <?php smbtoolbar_media( 'youtube',
109
  'YouTube',
110
  'https://www.youtube.com/channel/YourChannelIdentifierHere',
111
  __( 'Enter the link to your YouTube profile page', SMEDIABT_TEXT ),
112
- 'https://www.youtube.com'
113
  ); ?>
114
  <?php smbtoolbar_media( 'vimeo',
115
  'Vimeo',
116
  'https://vimeo.com/YourUsernameHere',
117
  __( 'Enter the link to your Vimeo profile page', SMEDIABT_TEXT ),
118
- 'https://vimeo.com'
119
  ); ?>
120
  <?php smbtoolbar_media( 'blogger',
121
  'Blogger',
122
  'http://YourBlogNameHere.blogspot.com',
123
  __( 'Enter the link to your Blogger profile page', SMEDIABT_TEXT ),
124
- 'https://www.blogger.com'
125
  ); ?>
126
  <?php smbtoolbar_media( 'livejournal',
127
  'LiveJournal',
@@ -133,37 +133,37 @@ function smbtoolbar_render_submenu_page() {
133
  'Reddit',
134
  'https://www.reddit.com/user/YourUsernameHere',
135
  __( 'Enter the link to your Reddit profile page', SMEDIABT_TEXT ),
136
- 'https://www.reddit.com'
137
  ); ?>
138
  <?php smbtoolbar_media( 'linkedin',
139
  'LinkedIn',
140
  'https://linkedin.com/in/YourUsernameHere',
141
  __( 'Enter the link to your LinkedIn profile page', SMEDIABT_TEXT ),
142
- 'https://linkedin.com'
143
  ); ?>
144
  <?php smbtoolbar_media( 'pinterest',
145
  'Pinterest',
146
  'https://www.pinterest.com/YourUsernameHere',
147
  __( 'Enter the link to your Pinterest profile page', SMEDIABT_TEXT ),
148
- 'https://www.pinterest.com'
149
  ); ?>
150
  <?php smbtoolbar_media( 'tumblr',
151
  'Tumblr',
152
  'https://www.tumblr.com/blog/YourBlogNameHere',
153
  __( 'Enter the link to your Tumblr profile page', SMEDIABT_TEXT ),
154
- 'https://www.tumblr.com'
155
  ); ?>
156
  <?php smbtoolbar_media( 'snapchat',
157
  'Snapchat',
158
  'https://www.snapchat.com/add/YourUsernameHere',
159
  __( 'Enter the link to your Snapchat profile page', SMEDIABT_TEXT ),
160
- 'https://www.snapchat.com'
161
  ); ?>
162
  <?php smbtoolbar_media( 'twitch',
163
  'Twitch',
164
  'https://www.twitch.tv/YourUsernameHere',
165
  __( 'Enter the link to your Twitch profile page', SMEDIABT_TEXT ),
166
- 'https://www.twitch.tv'
167
  ); ?>
168
  <?php smbtoolbar_media( 'imdb',
169
  'IMDb',
@@ -175,25 +175,31 @@ function smbtoolbar_render_submenu_page() {
175
  'SoundCloud',
176
  'https://soundcloud.com/YourUsernameHere',
177
  __( 'Enter the link to your SoundCloud profile page', SMEDIABT_TEXT ),
178
- 'https://soundcloud.com'
179
  ); ?>
180
  <?php smbtoolbar_media( 'spotify',
181
  'Spotify',
182
  'http://open.spotify.com/user/YourUsernameHere',
183
  __( 'Enter the link to your Spotify profile page', SMEDIABT_TEXT ),
184
- 'https://www.spotify.com'
185
  ); ?>
186
  <?php smbtoolbar_media( 'dloky',
187
  'Dloky',
188
  'https://dloky.com/YourUsernameHere',
189
  __( 'Enter the link to your Dloky profile page', SMEDIABT_TEXT ),
190
- 'https://dloky.com'
 
 
 
 
 
 
191
  ); ?>
192
  <?php smbtoolbar_media( 'meetvibe',
193
  'MeetVibe',
194
  'https://meetvibe.com/YourUsernameHere',
195
  __( 'Enter the link to your MeetVibe profile page', SMEDIABT_TEXT ),
196
- 'https://meetvibe.com'
197
  ); ?>
198
  <?php smbtoolbar_media( 'steam',
199
  'Steam',
@@ -205,37 +211,37 @@ function smbtoolbar_render_submenu_page() {
205
  'Discord',
206
  'https://discordapp.com/YourUsernameHere',
207
  __( 'Enter the link to your Discord profile page', SMEDIABT_TEXT ),
208
- 'https://discordapp.com'
209
  ); ?>
210
  <?php smbtoolbar_media( 'vkontakte',
211
  'VKontakte',
212
  'https://vk.com/id_YourIdentifierHere',
213
  __( 'Enter the link to your VKontakte profile page', SMEDIABT_TEXT ),
214
- 'https://vk.com'
215
  ); ?>
216
  <?php smbtoolbar_media( 'odnoklassniki',
217
  'Odnoklassniki',
218
  'https://ok.ru/profile/YourIdentifierHere',
219
  __( 'Enter the link to your Odnoklassniki profile page', SMEDIABT_TEXT ),
220
- 'https://ok.ru'
221
  ); ?>
222
  <?php smbtoolbar_media( 'telegram',
223
  'Telegram',
224
  'https://telegram.me/YourUsernameHere',
225
  __( 'Enter the link to your Telegram profile page', SMEDIABT_TEXT ),
226
- 'https://telegram.org'
227
  ); ?>
228
  <?php smbtoolbar_media( 'github',
229
  'GitHub',
230
  'https://github.com/YourUsernameHere',
231
  __( 'Enter the link to your GitHub profile page', SMEDIABT_TEXT ),
232
- 'https://github.com'
233
  ); ?>
234
  <?php smbtoolbar_media( 'wordpress',
235
  'WordPress',
236
  'https://profiles.wordpress.org/YourUsernameHere',
237
  __( 'Enter the link to your WordPress profile page', SMEDIABT_TEXT ),
238
- 'https://wordpress.org'
239
  ); ?>
240
  <?php smbtoolbar_media( 'codepen',
241
  'CodePen',
@@ -247,7 +253,7 @@ function smbtoolbar_render_submenu_page() {
247
  'Skype',
248
  'skype:YourUsernameHere?call',
249
  __( 'Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile', SMEDIABT_TEXT ),
250
- 'https://www.skype.com'
251
  ); ?>
252
  <?php smbtoolbar_media( 'website',
253
  'Personal website',
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 3.12
14
  */
15
  function smbtoolbar_render_submenu_page() {
16
 
85
  'Facebook',
86
  'https://www.facebook.com/YourUsernameHere',
87
  __( 'Enter the link to your Facebook profile page', SMEDIABT_TEXT ),
88
+ '//www.facebook.com'
89
  ); ?>
90
  <?php smbtoolbar_media( 'twitter',
91
  'Twitter',
92
  'https://twitter.com/YourUsernameHere',
93
  __( 'Enter the link to your Twitter profile page', SMEDIABT_TEXT ),
94
+ '//twitter.com'
95
  ); ?>
96
  <?php smbtoolbar_media( 'instagram',
97
  'Instagram',
103
  'Google+',
104
  'https://plus.google.com/u/0/+YourUsernameHere',
105
  __( 'Enter the link to your Google+ profile page', SMEDIABT_TEXT ),
106
+ '//plus.google.com'
107
  ); ?>
108
  <?php smbtoolbar_media( 'youtube',
109
  'YouTube',
110
  'https://www.youtube.com/channel/YourChannelIdentifierHere',
111
  __( 'Enter the link to your YouTube profile page', SMEDIABT_TEXT ),
112
+ '//www.youtube.com'
113
  ); ?>
114
  <?php smbtoolbar_media( 'vimeo',
115
  'Vimeo',
116
  'https://vimeo.com/YourUsernameHere',
117
  __( 'Enter the link to your Vimeo profile page', SMEDIABT_TEXT ),
118
+ '//vimeo.com'
119
  ); ?>
120
  <?php smbtoolbar_media( 'blogger',
121
  'Blogger',
122
  'http://YourBlogNameHere.blogspot.com',
123
  __( 'Enter the link to your Blogger profile page', SMEDIABT_TEXT ),
124
+ '//www.blogger.com'
125
  ); ?>
126
  <?php smbtoolbar_media( 'livejournal',
127
  'LiveJournal',
133
  'Reddit',
134
  'https://www.reddit.com/user/YourUsernameHere',
135
  __( 'Enter the link to your Reddit profile page', SMEDIABT_TEXT ),
136
+ '//www.reddit.com'
137
  ); ?>
138
  <?php smbtoolbar_media( 'linkedin',
139
  'LinkedIn',
140
  'https://linkedin.com/in/YourUsernameHere',
141
  __( 'Enter the link to your LinkedIn profile page', SMEDIABT_TEXT ),
142
+ '//linkedin.com'
143
  ); ?>
144
  <?php smbtoolbar_media( 'pinterest',
145
  'Pinterest',
146
  'https://www.pinterest.com/YourUsernameHere',
147
  __( 'Enter the link to your Pinterest profile page', SMEDIABT_TEXT ),
148
+ '//www.pinterest.com'
149
  ); ?>
150
  <?php smbtoolbar_media( 'tumblr',
151
  'Tumblr',
152
  'https://www.tumblr.com/blog/YourBlogNameHere',
153
  __( 'Enter the link to your Tumblr profile page', SMEDIABT_TEXT ),
154
+ '//www.tumblr.com'
155
  ); ?>
156
  <?php smbtoolbar_media( 'snapchat',
157
  'Snapchat',
158
  'https://www.snapchat.com/add/YourUsernameHere',
159
  __( 'Enter the link to your Snapchat profile page', SMEDIABT_TEXT ),
160
+ '//www.snapchat.com'
161
  ); ?>
162
  <?php smbtoolbar_media( 'twitch',
163
  'Twitch',
164
  'https://www.twitch.tv/YourUsernameHere',
165
  __( 'Enter the link to your Twitch profile page', SMEDIABT_TEXT ),
166
+ '//www.twitch.tv'
167
  ); ?>
168
  <?php smbtoolbar_media( 'imdb',
169
  'IMDb',
175
  'SoundCloud',
176
  'https://soundcloud.com/YourUsernameHere',
177
  __( 'Enter the link to your SoundCloud profile page', SMEDIABT_TEXT ),
178
+ '//soundcloud.com'
179
  ); ?>
180
  <?php smbtoolbar_media( 'spotify',
181
  'Spotify',
182
  'http://open.spotify.com/user/YourUsernameHere',
183
  __( 'Enter the link to your Spotify profile page', SMEDIABT_TEXT ),
184
+ '//www.spotify.com'
185
  ); ?>
186
  <?php smbtoolbar_media( 'dloky',
187
  'Dloky',
188
  'https://dloky.com/YourUsernameHere',
189
  __( 'Enter the link to your Dloky profile page', SMEDIABT_TEXT ),
190
+ '//dloky.com'
191
+ ); ?>
192
+ <?php smbtoolbar_media( 'goodreads',
193
+ 'Goodreads',
194
+ 'https://www.goodreads.com/YourUsernameHere',
195
+ __( 'Enter the link to your Goodreads profile page', SMEDIABT_TEXT ),
196
+ '//www.goodreads.com'
197
  ); ?>
198
  <?php smbtoolbar_media( 'meetvibe',
199
  'MeetVibe',
200
  'https://meetvibe.com/YourUsernameHere',
201
  __( 'Enter the link to your MeetVibe profile page', SMEDIABT_TEXT ),
202
+ '//meetvibe.com'
203
  ); ?>
204
  <?php smbtoolbar_media( 'steam',
205
  'Steam',
211
  'Discord',
212
  'https://discordapp.com/YourUsernameHere',
213
  __( 'Enter the link to your Discord profile page', SMEDIABT_TEXT ),
214
+ '//discordapp.com'
215
  ); ?>
216
  <?php smbtoolbar_media( 'vkontakte',
217
  'VKontakte',
218
  'https://vk.com/id_YourIdentifierHere',
219
  __( 'Enter the link to your VKontakte profile page', SMEDIABT_TEXT ),
220
+ '//vk.com'
221
  ); ?>
222
  <?php smbtoolbar_media( 'odnoklassniki',
223
  'Odnoklassniki',
224
  'https://ok.ru/profile/YourIdentifierHere',
225
  __( 'Enter the link to your Odnoklassniki profile page', SMEDIABT_TEXT ),
226
+ '//ok.ru'
227
  ); ?>
228
  <?php smbtoolbar_media( 'telegram',
229
  'Telegram',
230
  'https://telegram.me/YourUsernameHere',
231
  __( 'Enter the link to your Telegram profile page', SMEDIABT_TEXT ),
232
+ '//telegram.org'
233
  ); ?>
234
  <?php smbtoolbar_media( 'github',
235
  'GitHub',
236
  'https://github.com/YourUsernameHere',
237
  __( 'Enter the link to your GitHub profile page', SMEDIABT_TEXT ),
238
+ '//github.com'
239
  ); ?>
240
  <?php smbtoolbar_media( 'wordpress',
241
  'WordPress',
242
  'https://profiles.wordpress.org/YourUsernameHere',
243
  __( 'Enter the link to your WordPress profile page', SMEDIABT_TEXT ),
244
+ '//wordpress.org'
245
  ); ?>
246
  <?php smbtoolbar_media( 'codepen',
247
  'CodePen',
253
  'Skype',
254
  'skype:YourUsernameHere?call',
255
  __( 'Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile', SMEDIABT_TEXT ),
256
+ '//www.skype.com'
257
  ); ?>
258
  <?php smbtoolbar_media( 'website',
259
  'Personal website',
languages/social-media-buttons-toolbar-es_ES.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
- "POT-Creation-Date: 2016-12-27 20:18+0300\n"
7
- "PO-Revision-Date: 2016-12-27 20:18+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Generator: Poedit 1.8.4\n"
16
 
17
  #. Plugin Name of the plugin/theme
18
- #: inc/php/settings_page.php:24 social-media-buttons-toolbar.php:85
19
  msgid "Social Media Buttons Toolbar"
20
  msgstr "Barra de Botones de Social Media"
21
 
@@ -47,7 +47,7 @@ msgstr "Ayuda"
47
  msgid "Got something to say? Need help?"
48
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
49
 
50
- #: inc/php/settings_page.php:53
51
  msgid "Donate"
52
  msgstr "Hacer una donación"
53
 
@@ -152,42 +152,46 @@ msgid "Enter the link to your Dloky profile page"
152
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
153
 
154
  #: inc/php/settings_page.php:195
 
 
 
 
155
  msgid "Enter the link to your MeetVibe profile page"
156
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
157
 
158
- #: inc/php/settings_page.php:201
159
  msgid "Enter the link to your Steam profile page"
160
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
161
 
162
- #: inc/php/settings_page.php:207
163
  msgid "Enter the link to your Discord profile page"
164
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
165
 
166
- #: inc/php/settings_page.php:213
167
  msgid "Enter the link to your VKontakte profile page"
168
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
169
 
170
- #: inc/php/settings_page.php:219
171
  msgid "Enter the link to your Odnoklassniki profile page"
172
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
173
 
174
- #: inc/php/settings_page.php:225
175
  msgid "Enter the link to your Telegram profile page"
176
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
177
 
178
- #: inc/php/settings_page.php:231
179
  msgid "Enter the link to your GitHub profile page"
180
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
181
 
182
- #: inc/php/settings_page.php:237
183
  msgid "Enter the link to your WordPress profile page"
184
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
185
 
186
- #: inc/php/settings_page.php:243
187
  msgid "Enter the link to your CodePen profile page"
188
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
189
 
190
- #: inc/php/settings_page.php:249
191
  msgid ""
192
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
193
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -195,86 +199,86 @@ msgstr ""
195
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
196
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
197
 
198
- #: inc/php/settings_page.php:255
199
  msgid "Enter the link to your personal website"
200
  msgstr "Ingresa el enlace a tu sitio web personal"
201
 
202
- #: inc/php/settings_page.php:261
203
  msgid "Enter your email address with prefix <b>mailto:</b>"
204
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
205
 
206
- #: inc/php/settings_page.php:267
207
  msgid "Enter the link to your RSS Feed"
208
  msgstr "Ingresa el enlace a tu Feed de RSS"
209
 
210
- #: inc/php/settings_page.php:271 inc/php/settings_page.php:348
211
  msgid "Save Changes"
212
  msgstr "Guardar las modificaciones"
213
 
214
- #: inc/php/settings_page.php:276
215
  msgid "Display options"
216
  msgstr "Opciones de presentación"
217
 
218
- #: inc/php/settings_page.php:281
219
  msgid "Show on Posts"
220
  msgstr "Mostrar en Entradas"
221
 
222
- #: inc/php/settings_page.php:282
223
  msgid "Display toolbar below content on Posts"
224
  msgstr "Mostrar la barra abajo del contenido en Entradas"
225
 
226
- #: inc/php/settings_page.php:286
227
  msgid "Show on Pages"
228
  msgstr "Mostrar en Páginas"
229
 
230
- #: inc/php/settings_page.php:287
231
  msgid "Display toolbar below content on Pages"
232
  msgstr "Mostrar la barra abajo del contenido en Páginas"
233
 
234
- #: inc/php/settings_page.php:291
235
  msgid "Open link in new tab/window"
236
  msgstr "Abrir enlace en una nueva pestaña/ventana"
237
 
238
- #: inc/php/settings_page.php:296
239
  msgid "Icon size"
240
  msgstr "Tamaño de ícono"
241
 
242
- #: inc/php/settings_page.php:297
243
  msgid "Enter the size of icons (in px) in your social media buttons toolbar."
244
  msgstr ""
245
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
246
 
247
- #: inc/php/settings_page.php:303
248
  msgid "Margin right"
249
  msgstr "Margen derecho"
250
 
251
- #: inc/php/settings_page.php:304
252
  msgid ""
253
  "Enter the size of space (in px) between icons in your social media buttons toolbar."
254
  msgstr ""
255
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
256
 
257
- #: inc/php/settings_page.php:320
258
  msgid "Alignment"
259
  msgstr "Alineación"
260
 
261
- #: inc/php/settings_page.php:326
262
  msgid "Left"
263
  msgstr "Izquierda"
264
 
265
- #: inc/php/settings_page.php:330
266
  msgid "Center"
267
  msgstr "Centro"
268
 
269
- #: inc/php/settings_page.php:334
270
  msgid "Right"
271
  msgstr "Derecha"
272
 
273
- #: inc/php/settings_page.php:341
274
  msgid "Caption"
275
  msgstr "Leyenda"
276
 
277
- #: inc/php/settings_page.php:342
278
  msgid ""
279
  "Enter the caption to your social media buttons toolbar. It will be displays before "
280
  "the toolbar."
@@ -282,19 +286,19 @@ msgstr ""
282
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
283
  "la barra de botones."
284
 
285
- #: inc/php/settings_page.php:353
286
  msgid "Preview"
287
  msgstr "Vista previa"
288
 
289
- #: inc/php/settings_page.php:355
290
  msgid "Click \"Save Changes\" to update this preview."
291
  msgstr "Haz clic en \"Guardar los cambios\" para actualizar esta previsualización."
292
 
293
- #: inc/php/settings_page.php:361
294
  msgid "Using"
295
  msgstr "Utilizando"
296
 
297
- #: inc/php/settings_page.php:363
298
  msgid ""
299
  "You have several methods for display the social media buttons toolbar (further "
300
  "just \"toolbar\") on your website. But first, fill in the required fields, then "
@@ -304,7 +308,7 @@ msgstr ""
304
  "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
305
  "llena los campos requeridos, y luego haz clic en \"Guardar cambios\"."
306
 
307
- #: inc/php/settings_page.php:364
308
  msgid ""
309
  "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, just "
310
  "check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
@@ -315,7 +319,7 @@ msgstr ""
315
  "en la sección \"Opciones de pantalla\", luego haz clic en \"Guardar los cambios\". "
316
  "¡Así de simple!"
317
 
318
- #: inc/php/settings_page.php:365
319
  msgid ""
320
  "<b>B)</b> For add the toolbar inside a post from WP Post/Page Editor use the "
321
  "following shortcode:"
@@ -323,7 +327,7 @@ msgstr ""
323
  "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
324
  "Páginas de Wordpress usa el siguiente shortcode:"
325
 
326
- #: inc/php/settings_page.php:367
327
  msgid ""
328
  "<b>C)</b> For add the toolbar to the widget area (in sidebar, footer etc.) use the "
329
  "\"Text\" widget and add inside it the following shortcode:"
@@ -331,7 +335,7 @@ msgstr ""
331
  "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
332
  "u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
333
 
334
- #: inc/php/settings_page.php:369
335
  msgid ""
336
  "<b>D)</b> For add the toolbar directly to a theme files, just add one of the "
337
  "following code (both variants do the same) to needed place (where you want to "
@@ -341,7 +345,7 @@ msgstr ""
341
  "uno de los siguientes códigos (cualquiera de los dos hace lo mismo) en el lugar "
342
  "deseado (donde quieres que aparezca la barra) en los archivos de tu tema:"
343
 
344
- #: inc/php/settings_page.php:372
345
  msgid ""
346
  "It's that simple! If you want more options then tell me and I will be happy to add "
347
  "it."
@@ -351,7 +355,7 @@ msgstr ""
351
  msgid "Settings"
352
  msgstr "Configuraciones"
353
 
354
- #: social-media-buttons-toolbar.php:85
355
  msgid "Social Buttons"
356
  msgstr "Botones Sociales"
357
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-01-23 02:20+0300\n"
7
+ "PO-Revision-Date: 2017-01-23 02:20+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
15
  "X-Generator: Poedit 1.8.4\n"
16
 
17
  #. Plugin Name of the plugin/theme
18
+ #: inc/php/settings_page.php:24 social-media-buttons-toolbar.php:105
19
  msgid "Social Media Buttons Toolbar"
20
  msgstr "Barra de Botones de Social Media"
21
 
47
  msgid "Got something to say? Need help?"
48
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
49
 
50
+ #: inc/php/settings_page.php:53 social-media-buttons-toolbar.php:89
51
  msgid "Donate"
52
  msgstr "Hacer una donación"
53
 
152
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
153
 
154
  #: inc/php/settings_page.php:195
155
+ msgid "Enter the link to your Goodreads profile page"
156
+ msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
157
+
158
+ #: inc/php/settings_page.php:201
159
  msgid "Enter the link to your MeetVibe profile page"
160
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
161
 
162
+ #: inc/php/settings_page.php:207
163
  msgid "Enter the link to your Steam profile page"
164
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
165
 
166
+ #: inc/php/settings_page.php:213
167
  msgid "Enter the link to your Discord profile page"
168
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
169
 
170
+ #: inc/php/settings_page.php:219
171
  msgid "Enter the link to your VKontakte profile page"
172
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
173
 
174
+ #: inc/php/settings_page.php:225
175
  msgid "Enter the link to your Odnoklassniki profile page"
176
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
177
 
178
+ #: inc/php/settings_page.php:231
179
  msgid "Enter the link to your Telegram profile page"
180
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
181
 
182
+ #: inc/php/settings_page.php:237
183
  msgid "Enter the link to your GitHub profile page"
184
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
185
 
186
+ #: inc/php/settings_page.php:243
187
  msgid "Enter the link to your WordPress profile page"
188
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
189
 
190
+ #: inc/php/settings_page.php:249
191
  msgid "Enter the link to your CodePen profile page"
192
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
193
 
194
+ #: inc/php/settings_page.php:255
195
  msgid ""
196
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
197
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
199
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
200
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
201
 
202
+ #: inc/php/settings_page.php:261
203
  msgid "Enter the link to your personal website"
204
  msgstr "Ingresa el enlace a tu sitio web personal"
205
 
206
+ #: inc/php/settings_page.php:267
207
  msgid "Enter your email address with prefix <b>mailto:</b>"
208
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
209
 
210
+ #: inc/php/settings_page.php:273
211
  msgid "Enter the link to your RSS Feed"
212
  msgstr "Ingresa el enlace a tu Feed de RSS"
213
 
214
+ #: inc/php/settings_page.php:277 inc/php/settings_page.php:354
215
  msgid "Save Changes"
216
  msgstr "Guardar las modificaciones"
217
 
218
+ #: inc/php/settings_page.php:282
219
  msgid "Display options"
220
  msgstr "Opciones de presentación"
221
 
222
+ #: inc/php/settings_page.php:287
223
  msgid "Show on Posts"
224
  msgstr "Mostrar en Entradas"
225
 
226
+ #: inc/php/settings_page.php:288
227
  msgid "Display toolbar below content on Posts"
228
  msgstr "Mostrar la barra abajo del contenido en Entradas"
229
 
230
+ #: inc/php/settings_page.php:292
231
  msgid "Show on Pages"
232
  msgstr "Mostrar en Páginas"
233
 
234
+ #: inc/php/settings_page.php:293
235
  msgid "Display toolbar below content on Pages"
236
  msgstr "Mostrar la barra abajo del contenido en Páginas"
237
 
238
+ #: inc/php/settings_page.php:297
239
  msgid "Open link in new tab/window"
240
  msgstr "Abrir enlace en una nueva pestaña/ventana"
241
 
242
+ #: inc/php/settings_page.php:302
243
  msgid "Icon size"
244
  msgstr "Tamaño de ícono"
245
 
246
+ #: inc/php/settings_page.php:303
247
  msgid "Enter the size of icons (in px) in your social media buttons toolbar."
248
  msgstr ""
249
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
250
 
251
+ #: inc/php/settings_page.php:309
252
  msgid "Margin right"
253
  msgstr "Margen derecho"
254
 
255
+ #: inc/php/settings_page.php:310
256
  msgid ""
257
  "Enter the size of space (in px) between icons in your social media buttons toolbar."
258
  msgstr ""
259
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
260
 
261
+ #: inc/php/settings_page.php:326
262
  msgid "Alignment"
263
  msgstr "Alineación"
264
 
265
+ #: inc/php/settings_page.php:332
266
  msgid "Left"
267
  msgstr "Izquierda"
268
 
269
+ #: inc/php/settings_page.php:336
270
  msgid "Center"
271
  msgstr "Centro"
272
 
273
+ #: inc/php/settings_page.php:340
274
  msgid "Right"
275
  msgstr "Derecha"
276
 
277
+ #: inc/php/settings_page.php:347
278
  msgid "Caption"
279
  msgstr "Leyenda"
280
 
281
+ #: inc/php/settings_page.php:348
282
  msgid ""
283
  "Enter the caption to your social media buttons toolbar. It will be displays before "
284
  "the toolbar."
286
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
287
  "la barra de botones."
288
 
289
+ #: inc/php/settings_page.php:359
290
  msgid "Preview"
291
  msgstr "Vista previa"
292
 
293
+ #: inc/php/settings_page.php:361
294
  msgid "Click \"Save Changes\" to update this preview."
295
  msgstr "Haz clic en \"Guardar los cambios\" para actualizar esta previsualización."
296
 
297
+ #: inc/php/settings_page.php:367
298
  msgid "Using"
299
  msgstr "Utilizando"
300
 
301
+ #: inc/php/settings_page.php:369
302
  msgid ""
303
  "You have several methods for display the social media buttons toolbar (further "
304
  "just \"toolbar\") on your website. But first, fill in the required fields, then "
308
  "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
309
  "llena los campos requeridos, y luego haz clic en \"Guardar cambios\"."
310
 
311
+ #: inc/php/settings_page.php:370
312
  msgid ""
313
  "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, just "
314
  "check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
319
  "en la sección \"Opciones de pantalla\", luego haz clic en \"Guardar los cambios\". "
320
  "¡Así de simple!"
321
 
322
+ #: inc/php/settings_page.php:371
323
  msgid ""
324
  "<b>B)</b> For add the toolbar inside a post from WP Post/Page Editor use the "
325
  "following shortcode:"
327
  "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
328
  "Páginas de Wordpress usa el siguiente shortcode:"
329
 
330
+ #: inc/php/settings_page.php:373
331
  msgid ""
332
  "<b>C)</b> For add the toolbar to the widget area (in sidebar, footer etc.) use the "
333
  "\"Text\" widget and add inside it the following shortcode:"
335
  "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
336
  "u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
337
 
338
+ #: inc/php/settings_page.php:375
339
  msgid ""
340
  "<b>D)</b> For add the toolbar directly to a theme files, just add one of the "
341
  "following code (both variants do the same) to needed place (where you want to "
345
  "uno de los siguientes códigos (cualquiera de los dos hace lo mismo) en el lugar "
346
  "deseado (donde quieres que aparezca la barra) en los archivos de tu tema:"
347
 
348
+ #: inc/php/settings_page.php:378
349
  msgid ""
350
  "It's that simple! If you want more options then tell me and I will be happy to add "
351
  "it."
355
  msgid "Settings"
356
  msgstr "Configuraciones"
357
 
358
+ #: social-media-buttons-toolbar.php:105
359
  msgid "Social Buttons"
360
  msgstr "Botones Sociales"
361
 
languages/social-media-buttons-toolbar-ru_RU.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
- "POT-Creation-Date: 2016-12-27 20:17+0300\n"
5
- "PO-Revision-Date: 2016-12-27 20:17+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -22,7 +22,7 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #. Plugin Name of the plugin/theme
25
- #: inc/php/settings_page.php:24 social-media-buttons-toolbar.php:85
26
  msgid "Social Media Buttons Toolbar"
27
  msgstr ""
28
 
@@ -54,7 +54,7 @@ msgstr "Помощь"
54
  msgid "Got something to say? Need help?"
55
  msgstr "Есть что сказать? Нужна помощь?"
56
 
57
- #: inc/php/settings_page.php:53
58
  msgid "Donate"
59
  msgstr "Поддержать разработку"
60
 
@@ -161,42 +161,46 @@ msgid "Enter the link to your Dloky profile page"
161
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
162
 
163
  #: inc/php/settings_page.php:195
 
 
 
 
164
  msgid "Enter the link to your MeetVibe profile page"
165
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
166
 
167
- #: inc/php/settings_page.php:201
168
  msgid "Enter the link to your Steam profile page"
169
  msgstr "Введите ссылку на вашу страницу профиля Steam"
170
 
171
- #: inc/php/settings_page.php:207
172
  msgid "Enter the link to your Discord profile page"
173
  msgstr "Введите ссылку на вашу страницу профиля Discord"
174
 
175
- #: inc/php/settings_page.php:213
176
  msgid "Enter the link to your VKontakte profile page"
177
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
178
 
179
- #: inc/php/settings_page.php:219
180
  msgid "Enter the link to your Odnoklassniki profile page"
181
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
182
 
183
- #: inc/php/settings_page.php:225
184
  msgid "Enter the link to your Telegram profile page"
185
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
186
 
187
- #: inc/php/settings_page.php:231
188
  msgid "Enter the link to your GitHub profile page"
189
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
190
 
191
- #: inc/php/settings_page.php:237
192
  msgid "Enter the link to your WordPress profile page"
193
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
194
 
195
- #: inc/php/settings_page.php:243
196
  msgid "Enter the link to your CodePen profile page"
197
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
198
 
199
- #: inc/php/settings_page.php:249
200
  msgid ""
201
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
202
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -205,60 +209,60 @@ msgstr ""
205
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
206
  "профиля"
207
 
208
- #: inc/php/settings_page.php:255
209
  msgid "Enter the link to your personal website"
210
  msgstr "Введите ссылку на ваш персональный сайт"
211
 
212
- #: inc/php/settings_page.php:261
213
  msgid "Enter your email address with prefix <b>mailto:</b>"
214
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
215
 
216
- #: inc/php/settings_page.php:267
217
  msgid "Enter the link to your RSS Feed"
218
  msgstr "Введите ссылку на ваш RSS поток"
219
 
220
- #: inc/php/settings_page.php:271 inc/php/settings_page.php:348
221
  msgid "Save Changes"
222
  msgstr "Сохранить изменения"
223
 
224
- #: inc/php/settings_page.php:276
225
  msgid "Display options"
226
  msgstr "Настройки отображения"
227
 
228
- #: inc/php/settings_page.php:281
229
  msgid "Show on Posts"
230
  msgstr "Показать в записях"
231
 
232
- #: inc/php/settings_page.php:282
233
  msgid "Display toolbar below content on Posts"
234
  msgstr "Показывать кнопки под содержанием в записях"
235
 
236
- #: inc/php/settings_page.php:286
237
  msgid "Show on Pages"
238
  msgstr "Показывать на страницах"
239
 
240
- #: inc/php/settings_page.php:287
241
  msgid "Display toolbar below content on Pages"
242
  msgstr "Показывать кнопки под содержанием на страницах"
243
 
244
- #: inc/php/settings_page.php:291
245
  msgid "Open link in new tab/window"
246
  msgstr "Открыть ссылку в новом окне/вкладке"
247
 
248
- #: inc/php/settings_page.php:296
249
  msgid "Icon size"
250
  msgstr "Размер иконки"
251
 
252
- #: inc/php/settings_page.php:297
253
  msgid "Enter the size of icons (in px) in your social media buttons toolbar."
254
  msgstr ""
255
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
256
 
257
- #: inc/php/settings_page.php:303
258
  msgid "Margin right"
259
  msgstr "Отступ справа"
260
 
261
- #: inc/php/settings_page.php:304
262
  msgid ""
263
  "Enter the size of space (in px) between icons in your social media buttons "
264
  "toolbar."
@@ -266,27 +270,27 @@ msgstr ""
266
  "Введите размер пространства (в пикселях) между иконками для вашей панели "
267
  "социальных медиа кнопок."
268
 
269
- #: inc/php/settings_page.php:320
270
  msgid "Alignment"
271
  msgstr "Выравнивание"
272
 
273
- #: inc/php/settings_page.php:326
274
  msgid "Left"
275
  msgstr "Слева"
276
 
277
- #: inc/php/settings_page.php:330
278
  msgid "Center"
279
  msgstr "По центру"
280
 
281
- #: inc/php/settings_page.php:334
282
  msgid "Right"
283
  msgstr "Справа"
284
 
285
- #: inc/php/settings_page.php:341
286
  msgid "Caption"
287
  msgstr "Заголовок"
288
 
289
- #: inc/php/settings_page.php:342
290
  msgid ""
291
  "Enter the caption to your social media buttons toolbar. It will be displays "
292
  "before the toolbar."
@@ -294,20 +298,20 @@ msgstr ""
294
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
295
  "над панелью."
296
 
297
- #: inc/php/settings_page.php:353
298
  msgid "Preview"
299
  msgstr "Предварительный просмотр"
300
 
301
- #: inc/php/settings_page.php:355
302
  msgid "Click \"Save Changes\" to update this preview."
303
  msgstr ""
304
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
305
 
306
- #: inc/php/settings_page.php:361
307
  msgid "Using"
308
  msgstr "Как пользоваться"
309
 
310
- #: inc/php/settings_page.php:363
311
  msgid ""
312
  "You have several methods for display the social media buttons toolbar "
313
  "(further just \"toolbar\") on your website. But first, fill in the required "
@@ -317,33 +321,33 @@ msgstr ""
317
  "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала заполните "
318
  "поля для каждой нужной кнопки, а затем нажмите “Сохранить изменения”."
319
 
320
- #: inc/php/settings_page.php:364
321
  msgid ""
322
  "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, "
323
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
324
  "section \"Display options\", then click \"Save Changes\". It's that simple!"
325
  msgstr ""
326
 
327
- #: inc/php/settings_page.php:365
328
  msgid ""
329
  "<b>B)</b> For add the toolbar inside a post from WP Post/Page Editor use the "
330
  "following shortcode:"
331
  msgstr ""
332
 
333
- #: inc/php/settings_page.php:367
334
  msgid ""
335
  "<b>C)</b> For add the toolbar to the widget area (in sidebar, footer etc.) "
336
  "use the \"Text\" widget and add inside it the following shortcode:"
337
  msgstr ""
338
 
339
- #: inc/php/settings_page.php:369
340
  msgid ""
341
  "<b>D)</b> For add the toolbar directly to a theme files, just add one of the "
342
  "following code (both variants do the same) to needed place (where you want "
343
  "to display the toolbar) in your theme files:"
344
  msgstr ""
345
 
346
- #: inc/php/settings_page.php:372
347
  msgid ""
348
  "It's that simple! If you want more options then tell me and I will be happy "
349
  "to add it."
@@ -355,7 +359,7 @@ msgstr ""
355
  msgid "Settings"
356
  msgstr "Настройки"
357
 
358
- #: social-media-buttons-toolbar.php:85
359
  msgid "Social Buttons"
360
  msgstr "Социальные кнопки"
361
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
+ "POT-Creation-Date: 2017-01-23 02:20+0300\n"
5
+ "PO-Revision-Date: 2017-01-23 02:20+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #. Plugin Name of the plugin/theme
25
+ #: inc/php/settings_page.php:24 social-media-buttons-toolbar.php:105
26
  msgid "Social Media Buttons Toolbar"
27
  msgstr ""
28
 
54
  msgid "Got something to say? Need help?"
55
  msgstr "Есть что сказать? Нужна помощь?"
56
 
57
+ #: inc/php/settings_page.php:53 social-media-buttons-toolbar.php:89
58
  msgid "Donate"
59
  msgstr "Поддержать разработку"
60
 
161
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
162
 
163
  #: inc/php/settings_page.php:195
164
+ msgid "Enter the link to your Goodreads profile page"
165
+ msgstr "Введите ссылку на вашу страницу профиля Goodreads"
166
+
167
+ #: inc/php/settings_page.php:201
168
  msgid "Enter the link to your MeetVibe profile page"
169
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
170
 
171
+ #: inc/php/settings_page.php:207
172
  msgid "Enter the link to your Steam profile page"
173
  msgstr "Введите ссылку на вашу страницу профиля Steam"
174
 
175
+ #: inc/php/settings_page.php:213
176
  msgid "Enter the link to your Discord profile page"
177
  msgstr "Введите ссылку на вашу страницу профиля Discord"
178
 
179
+ #: inc/php/settings_page.php:219
180
  msgid "Enter the link to your VKontakte profile page"
181
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
182
 
183
+ #: inc/php/settings_page.php:225
184
  msgid "Enter the link to your Odnoklassniki profile page"
185
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
186
 
187
+ #: inc/php/settings_page.php:231
188
  msgid "Enter the link to your Telegram profile page"
189
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
190
 
191
+ #: inc/php/settings_page.php:237
192
  msgid "Enter the link to your GitHub profile page"
193
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
194
 
195
+ #: inc/php/settings_page.php:243
196
  msgid "Enter the link to your WordPress profile page"
197
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
198
 
199
+ #: inc/php/settings_page.php:249
200
  msgid "Enter the link to your CodePen profile page"
201
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
202
 
203
+ #: inc/php/settings_page.php:255
204
  msgid ""
205
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
206
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
209
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
210
  "профиля"
211
 
212
+ #: inc/php/settings_page.php:261
213
  msgid "Enter the link to your personal website"
214
  msgstr "Введите ссылку на ваш персональный сайт"
215
 
216
+ #: inc/php/settings_page.php:267
217
  msgid "Enter your email address with prefix <b>mailto:</b>"
218
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
219
 
220
+ #: inc/php/settings_page.php:273
221
  msgid "Enter the link to your RSS Feed"
222
  msgstr "Введите ссылку на ваш RSS поток"
223
 
224
+ #: inc/php/settings_page.php:277 inc/php/settings_page.php:354
225
  msgid "Save Changes"
226
  msgstr "Сохранить изменения"
227
 
228
+ #: inc/php/settings_page.php:282
229
  msgid "Display options"
230
  msgstr "Настройки отображения"
231
 
232
+ #: inc/php/settings_page.php:287
233
  msgid "Show on Posts"
234
  msgstr "Показать в записях"
235
 
236
+ #: inc/php/settings_page.php:288
237
  msgid "Display toolbar below content on Posts"
238
  msgstr "Показывать кнопки под содержанием в записях"
239
 
240
+ #: inc/php/settings_page.php:292
241
  msgid "Show on Pages"
242
  msgstr "Показывать на страницах"
243
 
244
+ #: inc/php/settings_page.php:293
245
  msgid "Display toolbar below content on Pages"
246
  msgstr "Показывать кнопки под содержанием на страницах"
247
 
248
+ #: inc/php/settings_page.php:297
249
  msgid "Open link in new tab/window"
250
  msgstr "Открыть ссылку в новом окне/вкладке"
251
 
252
+ #: inc/php/settings_page.php:302
253
  msgid "Icon size"
254
  msgstr "Размер иконки"
255
 
256
+ #: inc/php/settings_page.php:303
257
  msgid "Enter the size of icons (in px) in your social media buttons toolbar."
258
  msgstr ""
259
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
260
 
261
+ #: inc/php/settings_page.php:309
262
  msgid "Margin right"
263
  msgstr "Отступ справа"
264
 
265
+ #: inc/php/settings_page.php:310
266
  msgid ""
267
  "Enter the size of space (in px) between icons in your social media buttons "
268
  "toolbar."
270
  "Введите размер пространства (в пикселях) между иконками для вашей панели "
271
  "социальных медиа кнопок."
272
 
273
+ #: inc/php/settings_page.php:326
274
  msgid "Alignment"
275
  msgstr "Выравнивание"
276
 
277
+ #: inc/php/settings_page.php:332
278
  msgid "Left"
279
  msgstr "Слева"
280
 
281
+ #: inc/php/settings_page.php:336
282
  msgid "Center"
283
  msgstr "По центру"
284
 
285
+ #: inc/php/settings_page.php:340
286
  msgid "Right"
287
  msgstr "Справа"
288
 
289
+ #: inc/php/settings_page.php:347
290
  msgid "Caption"
291
  msgstr "Заголовок"
292
 
293
+ #: inc/php/settings_page.php:348
294
  msgid ""
295
  "Enter the caption to your social media buttons toolbar. It will be displays "
296
  "before the toolbar."
298
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
299
  "над панелью."
300
 
301
+ #: inc/php/settings_page.php:359
302
  msgid "Preview"
303
  msgstr "Предварительный просмотр"
304
 
305
+ #: inc/php/settings_page.php:361
306
  msgid "Click \"Save Changes\" to update this preview."
307
  msgstr ""
308
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
309
 
310
+ #: inc/php/settings_page.php:367
311
  msgid "Using"
312
  msgstr "Как пользоваться"
313
 
314
+ #: inc/php/settings_page.php:369
315
  msgid ""
316
  "You have several methods for display the social media buttons toolbar "
317
  "(further just \"toolbar\") on your website. But first, fill in the required "
321
  "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала заполните "
322
  "поля для каждой нужной кнопки, а затем нажмите “Сохранить изменения”."
323
 
324
+ #: inc/php/settings_page.php:370
325
  msgid ""
326
  "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, "
327
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
328
  "section \"Display options\", then click \"Save Changes\". It's that simple!"
329
  msgstr ""
330
 
331
+ #: inc/php/settings_page.php:371
332
  msgid ""
333
  "<b>B)</b> For add the toolbar inside a post from WP Post/Page Editor use the "
334
  "following shortcode:"
335
  msgstr ""
336
 
337
+ #: inc/php/settings_page.php:373
338
  msgid ""
339
  "<b>C)</b> For add the toolbar to the widget area (in sidebar, footer etc.) "
340
  "use the \"Text\" widget and add inside it the following shortcode:"
341
  msgstr ""
342
 
343
+ #: inc/php/settings_page.php:375
344
  msgid ""
345
  "<b>D)</b> For add the toolbar directly to a theme files, just add one of the "
346
  "following code (both variants do the same) to needed place (where you want "
347
  "to display the toolbar) in your theme files:"
348
  msgstr ""
349
 
350
+ #: inc/php/settings_page.php:378
351
  msgid ""
352
  "It's that simple! If you want more options then tell me and I will be happy "
353
  "to add it."
359
  msgid "Settings"
360
  msgstr "Настройки"
361
 
362
+ #: social-media-buttons-toolbar.php:105
363
  msgid "Social Buttons"
364
  msgstr "Социальные кнопки"
365
 
languages/social-media-buttons-toolbar.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
- "POT-Creation-Date: 2016-12-27 20:17+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #. Plugin Name of the plugin/theme
24
- #: inc/php/settings_page.php:24 social-media-buttons-toolbar.php:85
25
  msgid "Social Media Buttons Toolbar"
26
  msgstr ""
27
 
@@ -49,7 +49,7 @@ msgstr ""
49
  msgid "Got something to say? Need help?"
50
  msgstr ""
51
 
52
- #: inc/php/settings_page.php:53
53
  msgid "Donate"
54
  msgstr ""
55
 
@@ -149,177 +149,181 @@ msgid "Enter the link to your Dloky profile page"
149
  msgstr ""
150
 
151
  #: inc/php/settings_page.php:195
152
- msgid "Enter the link to your MeetVibe profile page"
153
  msgstr ""
154
 
155
  #: inc/php/settings_page.php:201
156
- msgid "Enter the link to your Steam profile page"
157
  msgstr ""
158
 
159
  #: inc/php/settings_page.php:207
160
- msgid "Enter the link to your Discord profile page"
161
  msgstr ""
162
 
163
  #: inc/php/settings_page.php:213
164
- msgid "Enter the link to your VKontakte profile page"
165
  msgstr ""
166
 
167
  #: inc/php/settings_page.php:219
168
- msgid "Enter the link to your Odnoklassniki profile page"
169
  msgstr ""
170
 
171
  #: inc/php/settings_page.php:225
172
- msgid "Enter the link to your Telegram profile page"
173
  msgstr ""
174
 
175
  #: inc/php/settings_page.php:231
176
- msgid "Enter the link to your GitHub profile page"
177
  msgstr ""
178
 
179
  #: inc/php/settings_page.php:237
180
- msgid "Enter the link to your WordPress profile page"
181
  msgstr ""
182
 
183
  #: inc/php/settings_page.php:243
184
- msgid "Enter the link to your CodePen profile page"
185
  msgstr ""
186
 
187
  #: inc/php/settings_page.php:249
 
 
 
 
188
  msgid ""
189
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
190
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
191
  msgstr ""
192
 
193
- #: inc/php/settings_page.php:255
194
  msgid "Enter the link to your personal website"
195
  msgstr ""
196
 
197
- #: inc/php/settings_page.php:261
198
  msgid "Enter your email address with prefix <b>mailto:</b>"
199
  msgstr ""
200
 
201
- #: inc/php/settings_page.php:267
202
  msgid "Enter the link to your RSS Feed"
203
  msgstr ""
204
 
205
- #: inc/php/settings_page.php:271 inc/php/settings_page.php:348
206
  msgid "Save Changes"
207
  msgstr ""
208
 
209
- #: inc/php/settings_page.php:276
210
  msgid "Display options"
211
  msgstr ""
212
 
213
- #: inc/php/settings_page.php:281
214
  msgid "Show on Posts"
215
  msgstr ""
216
 
217
- #: inc/php/settings_page.php:282
218
  msgid "Display toolbar below content on Posts"
219
  msgstr ""
220
 
221
- #: inc/php/settings_page.php:286
222
  msgid "Show on Pages"
223
  msgstr ""
224
 
225
- #: inc/php/settings_page.php:287
226
  msgid "Display toolbar below content on Pages"
227
  msgstr ""
228
 
229
- #: inc/php/settings_page.php:291
230
  msgid "Open link in new tab/window"
231
  msgstr ""
232
 
233
- #: inc/php/settings_page.php:296
234
  msgid "Icon size"
235
  msgstr ""
236
 
237
- #: inc/php/settings_page.php:297
238
  msgid "Enter the size of icons (in px) in your social media buttons toolbar."
239
  msgstr ""
240
 
241
- #: inc/php/settings_page.php:303
242
  msgid "Margin right"
243
  msgstr ""
244
 
245
- #: inc/php/settings_page.php:304
246
  msgid ""
247
  "Enter the size of space (in px) between icons in your social media buttons "
248
  "toolbar."
249
  msgstr ""
250
 
251
- #: inc/php/settings_page.php:320
252
  msgid "Alignment"
253
  msgstr ""
254
 
255
- #: inc/php/settings_page.php:326
256
  msgid "Left"
257
  msgstr ""
258
 
259
- #: inc/php/settings_page.php:330
260
  msgid "Center"
261
  msgstr ""
262
 
263
- #: inc/php/settings_page.php:334
264
  msgid "Right"
265
  msgstr ""
266
 
267
- #: inc/php/settings_page.php:341
268
  msgid "Caption"
269
  msgstr ""
270
 
271
- #: inc/php/settings_page.php:342
272
  msgid ""
273
  "Enter the caption to your social media buttons toolbar. It will be displays "
274
  "before the toolbar."
275
  msgstr ""
276
 
277
- #: inc/php/settings_page.php:353
278
  msgid "Preview"
279
  msgstr ""
280
 
281
- #: inc/php/settings_page.php:355
282
  msgid "Click \"Save Changes\" to update this preview."
283
  msgstr ""
284
 
285
- #: inc/php/settings_page.php:361
286
  msgid "Using"
287
  msgstr ""
288
 
289
- #: inc/php/settings_page.php:363
290
  msgid ""
291
  "You have several methods for display the social media buttons toolbar "
292
  "(further just \"toolbar\") on your website. But first, fill in the required "
293
  "fields, then click \"Save Changes\"."
294
  msgstr ""
295
 
296
- #: inc/php/settings_page.php:364
297
  msgid ""
298
  "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, "
299
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
300
  "section \"Display options\", then click \"Save Changes\". It's that simple!"
301
  msgstr ""
302
 
303
- #: inc/php/settings_page.php:365
304
  msgid ""
305
  "<b>B)</b> For add the toolbar inside a post from WP Post/Page Editor use the "
306
  "following shortcode:"
307
  msgstr ""
308
 
309
- #: inc/php/settings_page.php:367
310
  msgid ""
311
  "<b>C)</b> For add the toolbar to the widget area (in sidebar, footer etc.) "
312
  "use the \"Text\" widget and add inside it the following shortcode:"
313
  msgstr ""
314
 
315
- #: inc/php/settings_page.php:369
316
  msgid ""
317
  "<b>D)</b> For add the toolbar directly to a theme files, just add one of the "
318
  "following code (both variants do the same) to needed place (where you want "
319
  "to display the toolbar) in your theme files:"
320
  msgstr ""
321
 
322
- #: inc/php/settings_page.php:372
323
  msgid ""
324
  "It's that simple! If you want more options then tell me and I will be happy "
325
  "to add it."
@@ -329,7 +333,7 @@ msgstr ""
329
  msgid "Settings"
330
  msgstr ""
331
 
332
- #: social-media-buttons-toolbar.php:85
333
  msgid "Social Buttons"
334
  msgstr ""
335
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
+ "POT-Creation-Date: 2017-01-23 02:20+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #. Plugin Name of the plugin/theme
24
+ #: inc/php/settings_page.php:24 social-media-buttons-toolbar.php:105
25
  msgid "Social Media Buttons Toolbar"
26
  msgstr ""
27
 
49
  msgid "Got something to say? Need help?"
50
  msgstr ""
51
 
52
+ #: inc/php/settings_page.php:53 social-media-buttons-toolbar.php:89
53
  msgid "Donate"
54
  msgstr ""
55
 
149
  msgstr ""
150
 
151
  #: inc/php/settings_page.php:195
152
+ msgid "Enter the link to your Goodreads profile page"
153
  msgstr ""
154
 
155
  #: inc/php/settings_page.php:201
156
+ msgid "Enter the link to your MeetVibe profile page"
157
  msgstr ""
158
 
159
  #: inc/php/settings_page.php:207
160
+ msgid "Enter the link to your Steam profile page"
161
  msgstr ""
162
 
163
  #: inc/php/settings_page.php:213
164
+ msgid "Enter the link to your Discord profile page"
165
  msgstr ""
166
 
167
  #: inc/php/settings_page.php:219
168
+ msgid "Enter the link to your VKontakte profile page"
169
  msgstr ""
170
 
171
  #: inc/php/settings_page.php:225
172
+ msgid "Enter the link to your Odnoklassniki profile page"
173
  msgstr ""
174
 
175
  #: inc/php/settings_page.php:231
176
+ msgid "Enter the link to your Telegram profile page"
177
  msgstr ""
178
 
179
  #: inc/php/settings_page.php:237
180
+ msgid "Enter the link to your GitHub profile page"
181
  msgstr ""
182
 
183
  #: inc/php/settings_page.php:243
184
+ msgid "Enter the link to your WordPress profile page"
185
  msgstr ""
186
 
187
  #: inc/php/settings_page.php:249
188
+ msgid "Enter the link to your CodePen profile page"
189
+ msgstr ""
190
+
191
+ #: inc/php/settings_page.php:255
192
  msgid ""
193
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
194
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
195
  msgstr ""
196
 
197
+ #: inc/php/settings_page.php:261
198
  msgid "Enter the link to your personal website"
199
  msgstr ""
200
 
201
+ #: inc/php/settings_page.php:267
202
  msgid "Enter your email address with prefix <b>mailto:</b>"
203
  msgstr ""
204
 
205
+ #: inc/php/settings_page.php:273
206
  msgid "Enter the link to your RSS Feed"
207
  msgstr ""
208
 
209
+ #: inc/php/settings_page.php:277 inc/php/settings_page.php:354
210
  msgid "Save Changes"
211
  msgstr ""
212
 
213
+ #: inc/php/settings_page.php:282
214
  msgid "Display options"
215
  msgstr ""
216
 
217
+ #: inc/php/settings_page.php:287
218
  msgid "Show on Posts"
219
  msgstr ""
220
 
221
+ #: inc/php/settings_page.php:288
222
  msgid "Display toolbar below content on Posts"
223
  msgstr ""
224
 
225
+ #: inc/php/settings_page.php:292
226
  msgid "Show on Pages"
227
  msgstr ""
228
 
229
+ #: inc/php/settings_page.php:293
230
  msgid "Display toolbar below content on Pages"
231
  msgstr ""
232
 
233
+ #: inc/php/settings_page.php:297
234
  msgid "Open link in new tab/window"
235
  msgstr ""
236
 
237
+ #: inc/php/settings_page.php:302
238
  msgid "Icon size"
239
  msgstr ""
240
 
241
+ #: inc/php/settings_page.php:303
242
  msgid "Enter the size of icons (in px) in your social media buttons toolbar."
243
  msgstr ""
244
 
245
+ #: inc/php/settings_page.php:309
246
  msgid "Margin right"
247
  msgstr ""
248
 
249
+ #: inc/php/settings_page.php:310
250
  msgid ""
251
  "Enter the size of space (in px) between icons in your social media buttons "
252
  "toolbar."
253
  msgstr ""
254
 
255
+ #: inc/php/settings_page.php:326
256
  msgid "Alignment"
257
  msgstr ""
258
 
259
+ #: inc/php/settings_page.php:332
260
  msgid "Left"
261
  msgstr ""
262
 
263
+ #: inc/php/settings_page.php:336
264
  msgid "Center"
265
  msgstr ""
266
 
267
+ #: inc/php/settings_page.php:340
268
  msgid "Right"
269
  msgstr ""
270
 
271
+ #: inc/php/settings_page.php:347
272
  msgid "Caption"
273
  msgstr ""
274
 
275
+ #: inc/php/settings_page.php:348
276
  msgid ""
277
  "Enter the caption to your social media buttons toolbar. It will be displays "
278
  "before the toolbar."
279
  msgstr ""
280
 
281
+ #: inc/php/settings_page.php:359
282
  msgid "Preview"
283
  msgstr ""
284
 
285
+ #: inc/php/settings_page.php:361
286
  msgid "Click \"Save Changes\" to update this preview."
287
  msgstr ""
288
 
289
+ #: inc/php/settings_page.php:367
290
  msgid "Using"
291
  msgstr ""
292
 
293
+ #: inc/php/settings_page.php:369
294
  msgid ""
295
  "You have several methods for display the social media buttons toolbar "
296
  "(further just \"toolbar\") on your website. But first, fill in the required "
297
  "fields, then click \"Save Changes\"."
298
  msgstr ""
299
 
300
+ #: inc/php/settings_page.php:370
301
  msgid ""
302
  "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, "
303
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
304
  "section \"Display options\", then click \"Save Changes\". It's that simple!"
305
  msgstr ""
306
 
307
+ #: inc/php/settings_page.php:371
308
  msgid ""
309
  "<b>B)</b> For add the toolbar inside a post from WP Post/Page Editor use the "
310
  "following shortcode:"
311
  msgstr ""
312
 
313
+ #: inc/php/settings_page.php:373
314
  msgid ""
315
  "<b>C)</b> For add the toolbar to the widget area (in sidebar, footer etc.) "
316
  "use the \"Text\" widget and add inside it the following shortcode:"
317
  msgstr ""
318
 
319
+ #: inc/php/settings_page.php:375
320
  msgid ""
321
  "<b>D)</b> For add the toolbar directly to a theme files, just add one of the "
322
  "following code (both variants do the same) to needed place (where you want "
323
  "to display the toolbar) in your theme files:"
324
  msgstr ""
325
 
326
+ #: inc/php/settings_page.php:378
327
  msgid ""
328
  "It's that simple! If you want more options then tell me and I will be happy "
329
  "to add it."
333
  msgid "Settings"
334
  msgstr ""
335
 
336
+ #: social-media-buttons-toolbar.php:105
337
  msgid "Social Buttons"
338
  msgstr ""
339
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Social Media Buttons Toolbar ===
2
  Contributors: Arthur Gareginyan
3
- Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, twitter, instagram, google plus, youtube, vimeo, blogger, livejournal, linkedIn, pinterest, tumblr, snapchat, twitch, imdb, soundcloud, spotify, dloky, meetvibe, steam, discord, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, rss feed, rss, feed,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.7
7
- Stable tag: 3.11
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -50,6 +50,7 @@ It give you finer control over buttons. You can configure they on plugins settin
50
  * SoundCloud
51
  * Spotify
52
  * Dloky
 
53
  * MeetVibe
54
  * Steam
55
  * Discord
@@ -176,7 +177,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
176
 
177
  Icon set [Social Buttons 2](https://www.iconfinder.com/iconsets/social-buttons-2?ref=ArthurGareginyan) by Ivlichev Victor Petrovich and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
178
 
179
- Icons [meetvibe.png](https://www.iconfinder.com/iconsets/meetvibe?ref=ArthurGareginyan), [imdb.png, dloky.png, snapchat.png, steam.png, discord.png and twitch.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](http://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
180
 
181
  [Bootstrap](http://getbootstrap.com) released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
182
 
@@ -188,6 +189,11 @@ Icons [meetvibe.png](https://www.iconfinder.com/iconsets/meetvibe?ref=ArthurGare
188
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/social-media-buttons-toolbar)
189
 
190
  == Changelog ==
 
 
 
 
 
191
  = 3.11 =
192
  * Added option for Steam button.
193
  * Added option for Discord button.
1
  === Social Media Buttons Toolbar ===
2
  Contributors: Arthur Gareginyan
3
+ Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, twitter, instagram, google plus, youtube, vimeo, blogger, livejournal, linkedIn, pinterest, tumblr, snapchat, twitch, imdb, soundcloud, spotify, dloky, Goodreads, meetvibe, steam, discord, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, rss feed, rss, feed,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.7
7
+ Stable tag: 3.12
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
50
  * SoundCloud
51
  * Spotify
52
  * Dloky
53
+ * Goodreads
54
  * MeetVibe
55
  * Steam
56
  * Discord
177
 
178
  Icon set [Social Buttons 2](https://www.iconfinder.com/iconsets/social-buttons-2?ref=ArthurGareginyan) by Ivlichev Victor Petrovich and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
179
 
180
+ Icons [meetvibe.png](https://www.iconfinder.com/iconsets/meetvibe?ref=ArthurGareginyan), [imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png and goodreads.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](http://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
181
 
182
  [Bootstrap](http://getbootstrap.com) released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
183
 
189
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/social-media-buttons-toolbar)
190
 
191
  == Changelog ==
192
+ = 3.12 =
193
+ * Added option for Goodreads button.
194
+ * Social media icons more optimized. Weight is reduced by 50%.
195
+ * Links on the settings page cleared from http and https.
196
+ * Added additional donate link on the Plugins page.
197
  = 3.11 =
198
  * Added option for Steam button.
199
  * Added option for Discord button.
social-media-buttons-toolbar.php CHANGED
@@ -5,12 +5,12 @@
5
  * Description: Easily add the smart toolbar with social media buttons (not share, only link to your profiles) to any place of your WordPress website.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
- * Version: 3.11
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
12
  *
13
- * Copyright 2015-2016 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
14
  *
15
  * This file is part of "Social Media Buttons Toolbar".
16
  *
@@ -40,14 +40,14 @@ defined('ABSPATH') or die("Restricted access!");
40
  /**
41
  * Define global constants
42
  *
43
- * @since 3.11
44
  */
45
  defined('SMEDIABT_DIR') or define('SMEDIABT_DIR', dirname(plugin_basename(__FILE__)));
46
  defined('SMEDIABT_BASE') or define('SMEDIABT_BASE', plugin_basename(__FILE__));
47
  defined('SMEDIABT_URL') or define('SMEDIABT_URL', plugin_dir_url(__FILE__));
48
  defined('SMEDIABT_PATH') or define('SMEDIABT_PATH', plugin_dir_path(__FILE__));
49
  defined('SMEDIABT_TEXT') or define('SMEDIABT_TEXT', 'social-media-buttons-toolbar');
50
- defined('SMEDIABT_VERSION') or define('SMEDIABT_VERSION', '3.11');
51
 
52
  /**
53
  * Register text domain
@@ -76,6 +76,26 @@ function smbtoolbar_settings_link( $links ) {
76
  }
77
  add_filter( 'plugin_action_links_'.SMEDIABT_BASE, 'smbtoolbar_settings_link' );
78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  /**
80
  * Register "Social Media Buttons Toolbar" submenu in "Settings" Admin Menu
81
  *
5
  * Description: Easily add the smart toolbar with social media buttons (not share, only link to your profiles) to any place of your WordPress website.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
+ * Version: 3.12
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2015-2017 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
14
  *
15
  * This file is part of "Social Media Buttons Toolbar".
16
  *
40
  /**
41
  * Define global constants
42
  *
43
+ * @since 3.12
44
  */
45
  defined('SMEDIABT_DIR') or define('SMEDIABT_DIR', dirname(plugin_basename(__FILE__)));
46
  defined('SMEDIABT_BASE') or define('SMEDIABT_BASE', plugin_basename(__FILE__));
47
  defined('SMEDIABT_URL') or define('SMEDIABT_URL', plugin_dir_url(__FILE__));
48
  defined('SMEDIABT_PATH') or define('SMEDIABT_PATH', plugin_dir_path(__FILE__));
49
  defined('SMEDIABT_TEXT') or define('SMEDIABT_TEXT', 'social-media-buttons-toolbar');
50
+ defined('SMEDIABT_VERSION') or define('SMEDIABT_VERSION', '3.12');
51
 
52
  /**
53
  * Register text domain
76
  }
77
  add_filter( 'plugin_action_links_'.SMEDIABT_BASE, 'smbtoolbar_settings_link' );
78
 
79
+ /**
80
+ * Print additional links to plugin meta row
81
+ *
82
+ * @since 3.6
83
+ */
84
+ function smbtoolbar_plugin_row_meta( $links, $file ) {
85
+
86
+ if ( strpos( $file, 'social-media-buttons-toolbar.php' ) !== false ) {
87
+
88
+ $new_links = array(
89
+ 'donate' => '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', SMEDIABT_TEXT ) . '</a>'
90
+ );
91
+
92
+ $links = array_merge( $links, $new_links );
93
+ }
94
+
95
+ return $links;
96
+ }
97
+ add_filter( 'plugin_row_meta', 'smbtoolbar_plugin_row_meta', 10, 2 );
98
+
99
  /**
100
  * Register "Social Media Buttons Toolbar" submenu in "Settings" Admin Menu
101
  *