Social Media Follow Buttons Bar - Version 4.4

Version Description

  • Added option for the Flickr social network.
  • Code formatting improved.
  • Extra JS code for Bootstrap tooltips removed from the "admin.js" file.
  • Added ID to every field on the settings page.
Download this release

Release Info

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

Code changes from version 4.3.1 to 4.4

inc/img/social-media-icons/flickr.png ADDED
Binary file
inc/js/admin.js CHANGED
@@ -23,9 +23,6 @@ jQuery(document).ready(function($) {
23
  // Enable Bootstrap Checkboxes
24
  $(':checkbox').checkboxpicker();
25
 
26
- // Enable Bootstrap Tooltips
27
- $('[data-toggle="tooltip"]').tooltip();
28
-
29
  // Dynamic content
30
  $( ".include-tab-author" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-author" );
31
  $( ".include-tab-support" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-support" );
23
  // Enable Bootstrap Checkboxes
24
  $(':checkbox').checkboxpicker();
25
 
 
 
 
26
  // Dynamic content
27
  $( ".include-tab-author" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-author" );
28
  $( ".include-tab-support" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-support" );
inc/php/enqueue.php CHANGED
@@ -22,21 +22,21 @@ function smbtoolbar_load_scripts_base() {
22
 
23
  // Read options from BD, sanitiz data and declare variables
24
  $options = get_option( 'smbtoolbar_settings' );
25
-
26
  // Size of icons
27
  $icon_size = esc_textarea( $options['icon-size'] );
28
- if (empty($icon_size)) {
29
  $icon_size = "64";
30
  }
31
-
32
  // Space between icons
33
  $margin_right = esc_textarea( $options['margin-right'] );
34
- if (empty($margin_right)) {
35
  $margin_right = "10";
36
  }
37
-
38
  // Alignment of toolbar
39
- if (!empty($options['alignment'])) {
40
  $alignment = $options['alignment'];
41
  } else {
42
  $alignment = 'center';
@@ -64,7 +64,7 @@ function smbtoolbar_load_scripts_base() {
64
  *
65
  * @since 4.2
66
  */
67
- function smbtoolbar_load_scripts_admin($hook) {
68
 
69
  // Return if the page is not a settings page of this plugin
70
  if ( 'settings_page_social-media-buttons-toolbar' != $hook ) {
22
 
23
  // Read options from BD, sanitiz data and declare variables
24
  $options = get_option( 'smbtoolbar_settings' );
25
+
26
  // Size of icons
27
  $icon_size = esc_textarea( $options['icon-size'] );
28
+ if ( empty( $icon_size ) ) {
29
  $icon_size = "64";
30
  }
31
+
32
  // Space between icons
33
  $margin_right = esc_textarea( $options['margin-right'] );
34
+ if ( empty( $margin_right ) ) {
35
  $margin_right = "10";
36
  }
37
+
38
  // Alignment of toolbar
39
+ if ( !empty( $options['alignment'] ) ) {
40
  $alignment = $options['alignment'];
41
  } else {
42
  $alignment = 'center';
64
  *
65
  * @since 4.2
66
  */
67
+ function smbtoolbar_load_scripts_admin( $hook ) {
68
 
69
  // Return if the page is not a settings page of this plugin
70
  if ( 'settings_page_social-media-buttons-toolbar' != $hook ) {
inc/php/functional.php CHANGED
@@ -12,23 +12,23 @@ defined('ABSPATH') or die("Restricted access!");
12
  *
13
  * @since 1.4
14
  */
15
- function smbtoolbar_media($name, $label, $placeholder, $help=null, $link=null) {
16
 
17
  // Declare variables
18
  $options = get_option( 'smbtoolbar_settings' );
19
 
20
- if ( !empty($options["media"][$name]["content"]) ) :
21
  $value = esc_textarea( $options["media"][$name]["content"] );
22
- else :
23
  $value = "";
24
- endif;
25
 
26
  // Generate the table
27
- if ( !empty($link) ) :
28
  $link_out = "<a href='$link' target='_blank'>$label</a>";
29
- else :
30
  $link_out = "$label";
31
- endif;
32
 
33
  $label = "<input type='hidden' name='smbtoolbar_settings[media][$name][label]' value='$label'>";
34
  $slug = "<input type='hidden' name='smbtoolbar_settings[media][$name][slug]' value='$name'>";
@@ -45,16 +45,16 @@ function smbtoolbar_media($name, $label, $placeholder, $help=null, $link=null) {
45
  $field_out
46
  </td>
47
  </tr>";
48
- if ( !empty($help) ) :
49
  $help_out = "<tr>
50
  <td></td>
51
  <td class='help-text'>
52
  $help
53
  </td>
54
  </tr>";
55
- else :
56
  $help_out = "";
57
- endif;
58
 
59
  // Print the generated table
60
  echo $out . $help_out;
@@ -63,30 +63,30 @@ function smbtoolbar_media($name, $label, $placeholder, $help=null, $link=null) {
63
  /**
64
  * Render checkboxes and fields for saving settings data to BD
65
  *
66
- * @since 1.0
67
  */
68
- function smbtoolbar_setting($name, $label, $help=null, $field=null, $placeholder=null, $size=null) {
69
 
70
  // Declare variables
71
  $options = get_option( 'smbtoolbar_settings' );
72
 
73
- if ( !empty($options[$name]) ) :
74
  $value = esc_textarea( $options[$name] );
75
- else :
76
  $value = "";
77
- endif;
78
 
79
  // Generate the table
80
- if ( !empty($options[$name]) ) :
81
  $checked = "checked='checked'";
82
- else :
83
  $checked = "";
84
- endif;
85
 
86
  if ( $field == "check" ) {
87
  $input = "<input type='checkbox' name='smbtoolbar_settings[$name]' id='smbtoolbar_settings[$name]' $checked >";
88
  } elseif ( $field == "field" ) {
89
- $input = "<input type='text' name='smbtoolbar_settings[$name]' size='$size' value='$value' placeholder='$placeholder'>";
90
  }
91
 
92
  // Put table to the variables $out and $help_out
@@ -98,25 +98,25 @@ function smbtoolbar_setting($name, $label, $help=null, $field=null, $placeholder
98
  $input
99
  </td>
100
  </tr>";
101
- if ( !empty($help) ) :
102
  $help_out = "<tr>
103
  <td></td>
104
  <td class='help-text'>
105
  $help
106
  </td>
107
  </tr>";
108
- else :
109
  $help_out = "";
110
- endif;
111
 
112
  // Print the generated table
113
  echo $out . $help_out;
114
  }
115
 
116
  /**
117
- * Generate the buttons
118
  *
119
- * @since 4.2
120
  */
121
  function smbtoolbar_tollbar() {
122
 
@@ -125,14 +125,14 @@ function smbtoolbar_tollbar() {
125
  $media = $options['media'];
126
 
127
  // Open link in new tab
128
- if (!empty($options['new_tab'])) {
129
  $new_tab = 'target="blank"';
130
  } else {
131
  $new_tab = '';
132
  }
133
 
134
  // Enable Tolltips
135
- if (!empty($options['tooltips'])) {
136
  $tooltips = 'data-toggle="tooltip"';
137
  } else {
138
  $tooltips = '';
@@ -140,27 +140,35 @@ function smbtoolbar_tollbar() {
140
 
141
  // Add a caption above of buttons
142
  $caption = esc_textarea( $options['caption'] );
143
- if (empty($caption)) {
144
  $caption = "";
145
  }
146
 
147
- // Generate the Buttons
148
  $metatags_arr[] = '<ul class="smbt-social-icons">';
149
- if ( !empty($media) ) {
150
- foreach ($media as $name) {
151
- foreach ($name as $key => $value) {
152
- if ($key == "slug") {
153
  $slag = $value;
154
  }
155
- if ($key == "label") {
156
  $label = $value;
157
  }
158
- if ($key == "content") {
159
- if (!empty($value)) {
160
  $icon = SMEDIABT_URL . "inc/img/social-media-icons/$slag.png";
161
  $metatags_arr[] = '<li>
162
- <a href="' . $value . '" ' . $tooltips . ' title="' . $label . '" ' . $new_tab . '>
163
- <img src="' . $icon . '" alt="' . $label . '" />
 
 
 
 
 
 
 
 
164
  </a>
165
  </li>';
166
  }
@@ -171,7 +179,7 @@ function smbtoolbar_tollbar() {
171
  $metatags_arr[] = '</ul>';
172
 
173
  // Add script for buttons
174
- if (!empty($options['tooltips'])) {
175
  $js = "<script type='text/javascript'>
176
  jQuery(document).ready(function($) {
177
 
@@ -220,13 +228,13 @@ function smbtoolbar_addContent( $content ) {
220
  $options = get_option( 'smbtoolbar_settings' );
221
 
222
  if ( is_single() ) {
223
- if ( !empty($options['show_posts']) && $options['show_posts'] == "on" ) {
224
  $content = $content . smbtoolbar_shortcode();
225
  }
226
  }
227
 
228
  if ( is_page() ) {
229
- if ( !empty($options['show_pages']) && $options['show_pages'] == "on" ) {
230
  $content = $content . smbtoolbar_shortcode();
231
  }
232
  }
12
  *
13
  * @since 1.4
14
  */
15
+ function smbtoolbar_media( $name, $label, $placeholder, $help=null, $link=null ) {
16
 
17
  // Declare variables
18
  $options = get_option( 'smbtoolbar_settings' );
19
 
20
+ if ( !empty( $options["media"][$name]["content"] ) ) {
21
  $value = esc_textarea( $options["media"][$name]["content"] );
22
+ } else {
23
  $value = "";
24
+ }
25
 
26
  // Generate the table
27
+ if ( !empty( $link ) ) {
28
  $link_out = "<a href='$link' target='_blank'>$label</a>";
29
+ } else {
30
  $link_out = "$label";
31
+ }
32
 
33
  $label = "<input type='hidden' name='smbtoolbar_settings[media][$name][label]' value='$label'>";
34
  $slug = "<input type='hidden' name='smbtoolbar_settings[media][$name][slug]' value='$name'>";
45
  $field_out
46
  </td>
47
  </tr>";
48
+ if ( !empty( $help ) ) {
49
  $help_out = "<tr>
50
  <td></td>
51
  <td class='help-text'>
52
  $help
53
  </td>
54
  </tr>";
55
+ } else {
56
  $help_out = "";
57
+ }
58
 
59
  // Print the generated table
60
  echo $out . $help_out;
63
  /**
64
  * Render checkboxes and fields for saving settings data to BD
65
  *
66
+ * @since 4.4
67
  */
68
+ function smbtoolbar_setting( $name, $label, $help=null, $field=null, $placeholder=null, $size=null ) {
69
 
70
  // Declare variables
71
  $options = get_option( 'smbtoolbar_settings' );
72
 
73
+ if ( !empty( $options[$name] ) ) {
74
  $value = esc_textarea( $options[$name] );
75
+ } else {
76
  $value = "";
77
+ }
78
 
79
  // Generate the table
80
+ if ( !empty( $options[$name] ) ) {
81
  $checked = "checked='checked'";
82
+ } else {
83
  $checked = "";
84
+ }
85
 
86
  if ( $field == "check" ) {
87
  $input = "<input type='checkbox' name='smbtoolbar_settings[$name]' id='smbtoolbar_settings[$name]' $checked >";
88
  } elseif ( $field == "field" ) {
89
+ $input = "<input type='text' name='smbtoolbar_settings[$name]' id='smbtoolbar_settings[$name]' size='$size' value='$value' placeholder='$placeholder'>";
90
  }
91
 
92
  // Put table to the variables $out and $help_out
98
  $input
99
  </td>
100
  </tr>";
101
+ if ( !empty( $help ) ) {
102
  $help_out = "<tr>
103
  <td></td>
104
  <td class='help-text'>
105
  $help
106
  </td>
107
  </tr>";
108
+ } else {
109
  $help_out = "";
110
+ }
111
 
112
  // Print the generated table
113
  echo $out . $help_out;
114
  }
115
 
116
  /**
117
+ * Generate the buttons and make shortcode
118
  *
119
+ * @since 4.4
120
  */
121
  function smbtoolbar_tollbar() {
122
 
125
  $media = $options['media'];
126
 
127
  // Open link in new tab
128
+ if ( !empty( $options['new_tab'] ) ) {
129
  $new_tab = 'target="blank"';
130
  } else {
131
  $new_tab = '';
132
  }
133
 
134
  // Enable Tolltips
135
+ if ( !empty( $options['tooltips'] ) ) {
136
  $tooltips = 'data-toggle="tooltip"';
137
  } else {
138
  $tooltips = '';
140
 
141
  // Add a caption above of buttons
142
  $caption = esc_textarea( $options['caption'] );
143
+ if ( empty( $caption ) ) {
144
  $caption = "";
145
  }
146
 
147
+ // Generate buttons
148
  $metatags_arr[] = '<ul class="smbt-social-icons">';
149
+ if ( !empty( $media ) ) {
150
+ foreach ( $media as $name ) {
151
+ foreach ( $name as $key => $value ) {
152
+ if ( $key == "slug" ) {
153
  $slag = $value;
154
  }
155
+ if ( $key == "label" ) {
156
  $label = $value;
157
  }
158
+ if ( $key == "content" ) {
159
+ if ( !empty( $value ) ) {
160
  $icon = SMEDIABT_URL . "inc/img/social-media-icons/$slag.png";
161
  $metatags_arr[] = '<li>
162
+ <a
163
+ href="' . $value . '"
164
+ ' . $tooltips . '
165
+ title="' . $label . '"
166
+ ' . $new_tab . '
167
+ >
168
+ <img
169
+ src="' . $icon . '"
170
+ alt="' . $label . '"
171
+ />
172
  </a>
173
  </li>';
174
  }
179
  $metatags_arr[] = '</ul>';
180
 
181
  // Add script for buttons
182
+ if ( !empty( $options['tooltips'] ) ) {
183
  $js = "<script type='text/javascript'>
184
  jQuery(document).ready(function($) {
185
 
228
  $options = get_option( 'smbtoolbar_settings' );
229
 
230
  if ( is_single() ) {
231
+ if ( !empty( $options['show_posts'] ) && $options['show_posts'] == "on" ) {
232
  $content = $content . smbtoolbar_shortcode();
233
  }
234
  }
235
 
236
  if ( is_page() ) {
237
+ if ( !empty( $options['show_pages'] ) && $options['show_pages'] == "on" ) {
238
  $content = $content . smbtoolbar_shortcode();
239
  }
240
  }
inc/php/messages.php CHANGED
@@ -16,7 +16,7 @@ function smbtoolbar_hello_message() {
16
 
17
  $options = get_option( 'smbtoolbar_settings' );
18
 
19
- if ( !empty($options) ) {
20
  return;
21
  }
22
 
16
 
17
  $options = get_option( 'smbtoolbar_settings' );
18
 
19
+ if ( !empty( $options ) ) {
20
  return;
21
  }
22
 
inc/php/settings.php CHANGED
@@ -10,7 +10,7 @@ defined('ABSPATH') or die("Restricted access!");
10
  /**
11
  * Render Settings Tab
12
  *
13
- * @since 4.3
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
@@ -20,7 +20,7 @@ defined('ABSPATH') or die("Restricted access!");
20
  <div id="about" class="postbox">
21
  <h3 class="title"><?php _e( 'About', SMEDIABT_TEXT ); ?></h3>
22
  <div class="inside">
23
- <p><?php _e( 'This plugin allows you to easily add the social media buttons toolbar to any place of your website.', SMEDIABT_TEXT ); ?></p>
24
  </div>
25
  </div>
26
 
@@ -53,268 +53,314 @@ defined('ABSPATH') or die("Restricted access!");
53
  <form name="smbtoolbar-form" action="options.php" method="post" enctype="multipart/form-data">
54
  <?php settings_fields( 'smbtoolbar_settings_group' ); ?>
55
 
56
- <?php
57
- // Get options from the BD
58
- $options = get_option( 'smbtoolbar_settings' );
59
- ?>
60
-
61
  <div class="postbox" id="Buttons">
62
  <h3 class="title"><?php _e( 'Buttons', SMEDIABT_TEXT ); ?></h3>
63
  <div class="inside">
64
  <p class="note"><?php _e( 'Just fill in the required fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don\'t want to use any of the following buttons, you can not fill them and then they do not appear.', SMEDIABT_TEXT ); ?></p>
 
65
  <table class="form-table">
 
66
  <?php smbtoolbar_media( 'facebook',
67
  'Facebook',
68
  'https://www.facebook.com/YourUsernameHere',
69
  __( 'Enter the link to your Facebook profile page', SMEDIABT_TEXT ),
70
  '//www.facebook.com'
71
- ); ?>
 
72
  <?php smbtoolbar_media( 'twitter',
73
  'Twitter',
74
  'https://twitter.com/YourUsernameHere',
75
  __( 'Enter the link to your Twitter profile page', SMEDIABT_TEXT ),
76
  '//twitter.com'
77
- ); ?>
 
78
  <?php smbtoolbar_media( 'instagram',
79
  'Instagram',
80
  'http://instagram.com/YourUsernameHere',
81
  __( 'Enter the link to your Instagram profile page', SMEDIABT_TEXT ),
82
  '//instagram.com'
83
- ); ?>
 
84
  <?php smbtoolbar_media( 'google-plus',
85
  'Google+',
86
  'https://plus.google.com/u/0/+YourUsernameHere',
87
  __( 'Enter the link to your Google+ profile page', SMEDIABT_TEXT ),
88
  '//plus.google.com'
89
- ); ?>
 
90
  <?php smbtoolbar_media( 'youtube',
91
  'YouTube',
92
  'https://www.youtube.com/channel/YourChannelIdentifierHere',
93
  __( 'Enter the link to your YouTube profile page', SMEDIABT_TEXT ),
94
  '//www.youtube.com'
95
- ); ?>
 
96
  <?php smbtoolbar_media( 'youtube-gaming',
97
  'YouTube Gaming',
98
  'https://gaming.youtube.com/channel/YourChannelIdentifierHere',
99
  __( 'Enter the link to your YouTube Gaming profile page', SMEDIABT_TEXT ),
100
  '//gaming.youtube.com'
101
- ); ?>
 
102
  <?php smbtoolbar_media( 'vimeo',
103
  'Vimeo',
104
  'https://vimeo.com/YourUsernameHere',
105
  __( 'Enter the link to your Vimeo profile page', SMEDIABT_TEXT ),
106
  '//vimeo.com'
107
- ); ?>
 
108
  <?php smbtoolbar_media( 'blogger',
109
  'Blogger',
110
  'http://YourBlogNameHere.blogspot.com',
111
  __( 'Enter the link to your Blogger profile page', SMEDIABT_TEXT ),
112
  '//www.blogger.com'
113
- ); ?>
 
114
  <?php smbtoolbar_media( 'livejournal',
115
  'LiveJournal',
116
  'http://YourUsernameHere.livejournal.com',
117
  __( 'Enter the link to your LiveJournal profile page', SMEDIABT_TEXT ),
118
  '//www.livejournal.com'
119
- ); ?>
 
120
  <?php smbtoolbar_media( 'reddit',
121
  'Reddit',
122
  'https://www.reddit.com/user/YourUsernameHere',
123
  __( 'Enter the link to your Reddit profile page', SMEDIABT_TEXT ),
124
  '//www.reddit.com'
125
- ); ?>
 
126
  <?php smbtoolbar_media( 'linkedin',
127
  'LinkedIn',
128
  'https://linkedin.com/in/YourUsernameHere',
129
  __( 'Enter the link to your LinkedIn profile page', SMEDIABT_TEXT ),
130
  '//linkedin.com'
131
- ); ?>
 
132
  <?php smbtoolbar_media( 'diaspora',
133
- 'diaspora',
134
  'https://diasporafoundation.org/YourUsernameHere',
135
- __( 'Enter the link to your diaspora profile page', SMEDIABT_TEXT ),
136
  '//diasporafoundation.org'
137
- ); ?>
 
138
  <?php smbtoolbar_media( 'xing',
139
  'XING',
140
  'https://www.xing.com/YourUsernameHere',
141
  __( 'Enter the link to your XING profile page', SMEDIABT_TEXT ),
142
  '//www.xing.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( 'patreon',
169
  'Patreon',
170
  'https://www.patreon.com/YourUsernameHere',
171
  __( 'Enter the link to your Patreon profile page', SMEDIABT_TEXT ),
172
  '//www.patreon.com'
173
- ); ?>
 
174
  <?php smbtoolbar_media( 'imdb',
175
  'IMDb',
176
  'http://www.imdb.com/name/YourUsernameHere',
177
  __( 'Enter the link to your IMDb profile page', SMEDIABT_TEXT ),
178
  '//www.imdb.com'
179
- ); ?>
 
180
  <?php smbtoolbar_media( 'soundcloud',
181
  'SoundCloud',
182
  'https://soundcloud.com/YourUsernameHere',
183
  __( 'Enter the link to your SoundCloud profile page', SMEDIABT_TEXT ),
184
  '//soundcloud.com'
185
- ); ?>
 
186
  <?php smbtoolbar_media( 'spotify',
187
  'Spotify',
188
  'http://open.spotify.com/user/YourUsernameHere',
189
  __( 'Enter the link to your Spotify profile page', SMEDIABT_TEXT ),
190
  '//www.spotify.com'
191
- ); ?>
 
192
  <?php smbtoolbar_media( 'bandcamp',
193
  'Bandcamp',
194
  'https://bandcamp.com/YourUsernameHere',
195
  __( 'Enter the link to your Bandcamp profile page', SMEDIABT_TEXT ),
196
  '//bandcamp.com'
197
- ); ?>
 
198
  <?php smbtoolbar_media( 'dloky',
199
  'Dloky',
200
  'https://dloky.com/YourUsernameHere',
201
  __( 'Enter the link to your Dloky profile page', SMEDIABT_TEXT ),
202
  '//dloky.com'
203
- ); ?>
 
204
  <?php smbtoolbar_media( 'amazon',
205
  'Amazon',
206
  'https://www.amazon.com/YourUsernameHere',
207
  __( 'Enter the link to your Amazon profile page', SMEDIABT_TEXT ),
208
  '//www.amazon.com'
209
- ); ?>
 
210
  <?php smbtoolbar_media( 'bookbub',
211
  'BookBub',
212
  'https://www.bookbub.com/YourUsernameHere',
213
  __( 'Enter the link to your BookBub profile page', SMEDIABT_TEXT ),
214
  '//www.bookbub.com'
215
- ); ?>
 
216
  <?php smbtoolbar_media( 'goodreads',
217
  'Goodreads',
218
  'https://www.goodreads.com/YourUsernameHere',
219
  __( 'Enter the link to your Goodreads profile page', SMEDIABT_TEXT ),
220
  '//www.goodreads.com'
221
- ); ?>
 
222
  <?php smbtoolbar_media( 'meetvibe',
223
  'MeetVibe',
224
  'https://meetvibe.com/YourUsernameHere',
225
  __( 'Enter the link to your MeetVibe profile page', SMEDIABT_TEXT ),
226
  '//meetvibe.com'
227
- ); ?>
 
228
  <?php smbtoolbar_media( 'meetup',
229
  'Meetup',
230
  'https://www.meetup.com/YourUsernameHere',
231
  __( 'Enter the link to your Meetup profile page', SMEDIABT_TEXT ),
232
  '//www.meetup.com'
233
- ); ?>
 
234
  <?php smbtoolbar_media( 'steam',
235
  'Steam',
236
  'http://store.steampowered.com/YourUsernameHere',
237
  __( 'Enter the link to your Steam profile page', SMEDIABT_TEXT ),
238
  '//store.steampowered.com'
239
- ); ?>
 
240
  <?php smbtoolbar_media( 'beam',
241
  'Beam',
242
  'http://beam.pro/YourUsernameHere',
243
  __( 'Enter the link to your Beam profile page', SMEDIABT_TEXT ),
244
  '//beam.pro'
245
- ); ?>
 
246
  <?php smbtoolbar_media( 'discord',
247
  'Discord',
248
  'https://discordapp.com/YourUsernameHere',
249
  __( 'Enter the link to your Discord profile page', SMEDIABT_TEXT ),
250
  '//discordapp.com'
251
- ); ?>
 
252
  <?php smbtoolbar_media( 'yelp',
253
  'Yelp',
254
  'https://www.yelp.com/YourUsernameHere',
255
  __( 'Enter the link to your Yelp profile page', SMEDIABT_TEXT ),
256
  '//www.yelp.com'
257
- ); ?>
 
258
  <?php smbtoolbar_media( 'vkontakte',
259
  'VKontakte',
260
  'https://vk.com/id_YourIdentifierHere',
261
  __( 'Enter the link to your VKontakte profile page', SMEDIABT_TEXT ),
262
  '//vk.com'
263
- ); ?>
 
264
  <?php smbtoolbar_media( 'odnoklassniki',
265
  'Odnoklassniki',
266
  'https://ok.ru/profile/YourIdentifierHere',
267
  __( 'Enter the link to your Odnoklassniki profile page', SMEDIABT_TEXT ),
268
  '//ok.ru'
269
- ); ?>
 
270
  <?php smbtoolbar_media( 'telegram',
271
  'Telegram',
272
  'https://telegram.me/YourUsernameHere',
273
  __( 'Enter the link to your Telegram profile page', SMEDIABT_TEXT ),
274
  '//telegram.org'
275
- ); ?>
 
276
  <?php smbtoolbar_media( 'github',
277
  'GitHub',
278
  'https://github.com/YourUsernameHere',
279
  __( 'Enter the link to your GitHub profile page', SMEDIABT_TEXT ),
280
  '//github.com'
281
- ); ?>
 
282
  <?php smbtoolbar_media( 'wordpress',
283
  'WordPress',
284
  'https://profiles.wordpress.org/YourUsernameHere',
285
  __( 'Enter the link to your WordPress profile page', SMEDIABT_TEXT ),
286
  '//wordpress.org'
287
- ); ?>
 
288
  <?php smbtoolbar_media( 'codepen',
289
  'CodePen',
290
  'http://codepen.io/YourUsernameHere',
291
  __( 'Enter the link to your CodePen profile page', SMEDIABT_TEXT ),
292
  '//codepen.io'
293
- ); ?>
 
294
  <?php smbtoolbar_media( 'skype',
295
  'Skype',
296
  'skype:YourUsernameHere?call',
297
  __( '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 ),
298
  '//www.skype.com'
299
- ); ?>
 
300
  <?php smbtoolbar_media( 'website',
301
  'Personal website',
302
  'http://www.arthurgareginyan.com',
303
  __( 'Enter the link to your personal website', SMEDIABT_TEXT ),
304
  ''
305
- ); ?>
 
306
  <?php smbtoolbar_media( 'email',
307
  'Email',
308
  'mailto:YourUsernameHere@gmail.com',
309
  __( 'Enter your email address with prefix <b>mailto:</b>', SMEDIABT_TEXT ),
310
  ''
311
- ); ?>
 
312
  <?php smbtoolbar_media( 'rss-feed',
313
  'RSS Feed',
314
  'http://YourDomainNameHere.com/feed',
315
  __( 'Enter the link to your RSS Feed', SMEDIABT_TEXT ),
316
  ''
317
- ); ?>
 
318
  </table>
319
  <p class="note"><b><?php _e( 'Note!', SMEDIABT_TEXT ); ?></b> <?php _e( 'If you did not find the button you need, then tell me and I will gladly add it for you.', SMEDIABT_TEXT ); ?></p>
320
  <?php submit_button( __( 'Save Changes', SMEDIABT_TEXT ), 'primary', 'submit', true ); ?>
@@ -327,43 +373,52 @@ defined('ABSPATH') or die("Restricted access!");
327
  <p class="note"><?php _e( 'There you can configure this plugin.', SMEDIABT_TEXT ); ?></p>
328
 
329
  <table class="form-table">
330
- <?php smbtoolbar_setting('show_posts',
331
  __( 'Show on Posts', SMEDIABT_TEXT ),
332
  __( 'Display toolbar below content on Posts.', SMEDIABT_TEXT ),
333
  'check'
334
- ); ?>
335
- <?php smbtoolbar_setting('show_pages',
 
336
  __( 'Show on Pages', SMEDIABT_TEXT ),
337
  __( 'Display toolbar below content on Pages.', SMEDIABT_TEXT ),
338
  'check'
339
- ); ?>
340
- <?php smbtoolbar_setting('new_tab',
 
341
  __( 'Open in new tab', SMEDIABT_TEXT ),
342
  __( 'Open link in a new tab/window.', SMEDIABT_TEXT ),
343
  'check'
344
- ); ?>
345
- <?php smbtoolbar_setting('tooltips',
 
346
  __( 'Tooltips', SMEDIABT_TEXT ),
347
  __( 'Enable/disable a tooltips with name of the social media above every button.', SMEDIABT_TEXT ),
348
  'check'
349
- ); ?>
350
- <?php smbtoolbar_setting('icon-size',
 
351
  __( 'Icon size', SMEDIABT_TEXT ),
352
- __( 'Enter the size of icons (in px) in your social media buttons toolbar.', SMEDIABT_TEXT ),
353
  'field',
354
  '64',
355
  '2'
356
- ); ?>
357
- <?php smbtoolbar_setting('margin-right',
 
358
  __( 'Margin', SMEDIABT_TEXT ),
359
- __( 'Enter the size of space (in px) between icons in your social media buttons toolbar.', SMEDIABT_TEXT ),
360
  'field',
361
  '10',
362
  '2'
363
- ); ?>
 
364
 
365
  <?php
 
 
366
  $options = get_option( 'smbtoolbar_settings' );
 
367
  if ( !empty( $options['alignment'] ) ) :
368
  $alignment = $options['alignment'];
369
  else :
@@ -394,11 +449,12 @@ defined('ABSPATH') or die("Restricted access!");
394
 
395
  <?php smbtoolbar_setting('caption',
396
  __( 'Caption', SMEDIABT_TEXT ),
397
- __( 'Enter the caption to your social media buttons toolbar. It will be displays before the toolbar.', SMEDIABT_TEXT ),
398
  'field',
399
  'Follow me in social media:',
400
  '50'
401
  ); ?>
 
402
  </table>
403
  <?php submit_button( __( 'Save Changes', SMEDIABT_TEXT ), 'primary', 'submit', true ); ?>
404
  </div>
10
  /**
11
  * Render Settings Tab
12
  *
13
+ * @since 4.4
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
20
  <div id="about" class="postbox">
21
  <h3 class="title"><?php _e( 'About', SMEDIABT_TEXT ); ?></h3>
22
  <div class="inside">
23
+ <p><?php _e( 'This plugin allows you to easily add the social media follow buttons bar to any place of your website.', SMEDIABT_TEXT ); ?></p>
24
  </div>
25
  </div>
26
 
53
  <form name="smbtoolbar-form" action="options.php" method="post" enctype="multipart/form-data">
54
  <?php settings_fields( 'smbtoolbar_settings_group' ); ?>
55
 
 
 
 
 
 
56
  <div class="postbox" id="Buttons">
57
  <h3 class="title"><?php _e( 'Buttons', SMEDIABT_TEXT ); ?></h3>
58
  <div class="inside">
59
  <p class="note"><?php _e( 'Just fill in the required fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don\'t want to use any of the following buttons, you can not fill them and then they do not appear.', SMEDIABT_TEXT ); ?></p>
60
+
61
  <table class="form-table">
62
+
63
  <?php smbtoolbar_media( 'facebook',
64
  'Facebook',
65
  'https://www.facebook.com/YourUsernameHere',
66
  __( 'Enter the link to your Facebook profile page', SMEDIABT_TEXT ),
67
  '//www.facebook.com'
68
+ );
69
+ ?>
70
  <?php smbtoolbar_media( 'twitter',
71
  'Twitter',
72
  'https://twitter.com/YourUsernameHere',
73
  __( 'Enter the link to your Twitter profile page', SMEDIABT_TEXT ),
74
  '//twitter.com'
75
+ );
76
+ ?>
77
  <?php smbtoolbar_media( 'instagram',
78
  'Instagram',
79
  'http://instagram.com/YourUsernameHere',
80
  __( 'Enter the link to your Instagram profile page', SMEDIABT_TEXT ),
81
  '//instagram.com'
82
+ );
83
+ ?>
84
  <?php smbtoolbar_media( 'google-plus',
85
  'Google+',
86
  'https://plus.google.com/u/0/+YourUsernameHere',
87
  __( 'Enter the link to your Google+ profile page', SMEDIABT_TEXT ),
88
  '//plus.google.com'
89
+ );
90
+ ?>
91
  <?php smbtoolbar_media( 'youtube',
92
  'YouTube',
93
  'https://www.youtube.com/channel/YourChannelIdentifierHere',
94
  __( 'Enter the link to your YouTube profile page', SMEDIABT_TEXT ),
95
  '//www.youtube.com'
96
+ );
97
+ ?>
98
  <?php smbtoolbar_media( 'youtube-gaming',
99
  'YouTube Gaming',
100
  'https://gaming.youtube.com/channel/YourChannelIdentifierHere',
101
  __( 'Enter the link to your YouTube Gaming profile page', SMEDIABT_TEXT ),
102
  '//gaming.youtube.com'
103
+ );
104
+ ?>
105
  <?php smbtoolbar_media( 'vimeo',
106
  'Vimeo',
107
  'https://vimeo.com/YourUsernameHere',
108
  __( 'Enter the link to your Vimeo profile page', SMEDIABT_TEXT ),
109
  '//vimeo.com'
110
+ );
111
+ ?>
112
  <?php smbtoolbar_media( 'blogger',
113
  'Blogger',
114
  'http://YourBlogNameHere.blogspot.com',
115
  __( 'Enter the link to your Blogger profile page', SMEDIABT_TEXT ),
116
  '//www.blogger.com'
117
+ );
118
+ ?>
119
  <?php smbtoolbar_media( 'livejournal',
120
  'LiveJournal',
121
  'http://YourUsernameHere.livejournal.com',
122
  __( 'Enter the link to your LiveJournal profile page', SMEDIABT_TEXT ),
123
  '//www.livejournal.com'
124
+ );
125
+ ?>
126
  <?php smbtoolbar_media( 'reddit',
127
  'Reddit',
128
  'https://www.reddit.com/user/YourUsernameHere',
129
  __( 'Enter the link to your Reddit profile page', SMEDIABT_TEXT ),
130
  '//www.reddit.com'
131
+ );
132
+ ?>
133
  <?php smbtoolbar_media( 'linkedin',
134
  'LinkedIn',
135
  'https://linkedin.com/in/YourUsernameHere',
136
  __( 'Enter the link to your LinkedIn profile page', SMEDIABT_TEXT ),
137
  '//linkedin.com'
138
+ );
139
+ ?>
140
  <?php smbtoolbar_media( 'diaspora',
141
+ 'Diaspora',
142
  'https://diasporafoundation.org/YourUsernameHere',
143
+ __( 'Enter the link to your Diaspora profile page', SMEDIABT_TEXT ),
144
  '//diasporafoundation.org'
145
+ );
146
+ ?>
147
  <?php smbtoolbar_media( 'xing',
148
  'XING',
149
  'https://www.xing.com/YourUsernameHere',
150
  __( 'Enter the link to your XING profile page', SMEDIABT_TEXT ),
151
  '//www.xing.com'
152
+ );
153
+ ?>
154
  <?php smbtoolbar_media( 'pinterest',
155
  'Pinterest',
156
  'https://www.pinterest.com/YourUsernameHere',
157
  __( 'Enter the link to your Pinterest profile page', SMEDIABT_TEXT ),
158
  '//www.pinterest.com'
159
+ );
160
+ ?>
161
+ <?php smbtoolbar_media( 'flickr',
162
+ 'Flickr',
163
+ 'https://www.flickr.com/YourUsernameHere',
164
+ __( 'Enter the link to your Flickr profile page', SMEDIABT_TEXT ),
165
+ '//www.flickr.com'
166
+ );
167
+ ?>
168
  <?php smbtoolbar_media( 'tumblr',
169
  'Tumblr',
170
  'https://www.tumblr.com/blog/YourBlogNameHere',
171
  __( 'Enter the link to your Tumblr profile page', SMEDIABT_TEXT ),
172
  '//www.tumblr.com'
173
+ );
174
+ ?>
175
  <?php smbtoolbar_media( 'snapchat',
176
  'Snapchat',
177
  'https://www.snapchat.com/add/YourUsernameHere',
178
  __( 'Enter the link to your Snapchat profile page', SMEDIABT_TEXT ),
179
  '//www.snapchat.com'
180
+ );
181
+ ?>
182
  <?php smbtoolbar_media( 'twitch',
183
  'Twitch',
184
  'https://www.twitch.tv/YourUsernameHere',
185
  __( 'Enter the link to your Twitch profile page', SMEDIABT_TEXT ),
186
  '//www.twitch.tv'
187
+ );
188
+ ?>
189
  <?php smbtoolbar_media( 'patreon',
190
  'Patreon',
191
  'https://www.patreon.com/YourUsernameHere',
192
  __( 'Enter the link to your Patreon profile page', SMEDIABT_TEXT ),
193
  '//www.patreon.com'
194
+ );
195
+ ?>
196
  <?php smbtoolbar_media( 'imdb',
197
  'IMDb',
198
  'http://www.imdb.com/name/YourUsernameHere',
199
  __( 'Enter the link to your IMDb profile page', SMEDIABT_TEXT ),
200
  '//www.imdb.com'
201
+ );
202
+ ?>
203
  <?php smbtoolbar_media( 'soundcloud',
204
  'SoundCloud',
205
  'https://soundcloud.com/YourUsernameHere',
206
  __( 'Enter the link to your SoundCloud profile page', SMEDIABT_TEXT ),
207
  '//soundcloud.com'
208
+ );
209
+ ?>
210
  <?php smbtoolbar_media( 'spotify',
211
  'Spotify',
212
  'http://open.spotify.com/user/YourUsernameHere',
213
  __( 'Enter the link to your Spotify profile page', SMEDIABT_TEXT ),
214
  '//www.spotify.com'
215
+ );
216
+ ?>
217
  <?php smbtoolbar_media( 'bandcamp',
218
  'Bandcamp',
219
  'https://bandcamp.com/YourUsernameHere',
220
  __( 'Enter the link to your Bandcamp profile page', SMEDIABT_TEXT ),
221
  '//bandcamp.com'
222
+ );
223
+ ?>
224
  <?php smbtoolbar_media( 'dloky',
225
  'Dloky',
226
  'https://dloky.com/YourUsernameHere',
227
  __( 'Enter the link to your Dloky profile page', SMEDIABT_TEXT ),
228
  '//dloky.com'
229
+ );
230
+ ?>
231
  <?php smbtoolbar_media( 'amazon',
232
  'Amazon',
233
  'https://www.amazon.com/YourUsernameHere',
234
  __( 'Enter the link to your Amazon profile page', SMEDIABT_TEXT ),
235
  '//www.amazon.com'
236
+ );
237
+ ?>
238
  <?php smbtoolbar_media( 'bookbub',
239
  'BookBub',
240
  'https://www.bookbub.com/YourUsernameHere',
241
  __( 'Enter the link to your BookBub profile page', SMEDIABT_TEXT ),
242
  '//www.bookbub.com'
243
+ );
244
+ ?>
245
  <?php smbtoolbar_media( 'goodreads',
246
  'Goodreads',
247
  'https://www.goodreads.com/YourUsernameHere',
248
  __( 'Enter the link to your Goodreads profile page', SMEDIABT_TEXT ),
249
  '//www.goodreads.com'
250
+ );
251
+ ?>
252
  <?php smbtoolbar_media( 'meetvibe',
253
  'MeetVibe',
254
  'https://meetvibe.com/YourUsernameHere',
255
  __( 'Enter the link to your MeetVibe profile page', SMEDIABT_TEXT ),
256
  '//meetvibe.com'
257
+ );
258
+ ?>
259
  <?php smbtoolbar_media( 'meetup',
260
  'Meetup',
261
  'https://www.meetup.com/YourUsernameHere',
262
  __( 'Enter the link to your Meetup profile page', SMEDIABT_TEXT ),
263
  '//www.meetup.com'
264
+ );
265
+ ?>
266
  <?php smbtoolbar_media( 'steam',
267
  'Steam',
268
  'http://store.steampowered.com/YourUsernameHere',
269
  __( 'Enter the link to your Steam profile page', SMEDIABT_TEXT ),
270
  '//store.steampowered.com'
271
+ );
272
+ ?>
273
  <?php smbtoolbar_media( 'beam',
274
  'Beam',
275
  'http://beam.pro/YourUsernameHere',
276
  __( 'Enter the link to your Beam profile page', SMEDIABT_TEXT ),
277
  '//beam.pro'
278
+ );
279
+ ?>
280
  <?php smbtoolbar_media( 'discord',
281
  'Discord',
282
  'https://discordapp.com/YourUsernameHere',
283
  __( 'Enter the link to your Discord profile page', SMEDIABT_TEXT ),
284
  '//discordapp.com'
285
+ );
286
+ ?>
287
  <?php smbtoolbar_media( 'yelp',
288
  'Yelp',
289
  'https://www.yelp.com/YourUsernameHere',
290
  __( 'Enter the link to your Yelp profile page', SMEDIABT_TEXT ),
291
  '//www.yelp.com'
292
+ );
293
+ ?>
294
  <?php smbtoolbar_media( 'vkontakte',
295
  'VKontakte',
296
  'https://vk.com/id_YourIdentifierHere',
297
  __( 'Enter the link to your VKontakte profile page', SMEDIABT_TEXT ),
298
  '//vk.com'
299
+ );
300
+ ?>
301
  <?php smbtoolbar_media( 'odnoklassniki',
302
  'Odnoklassniki',
303
  'https://ok.ru/profile/YourIdentifierHere',
304
  __( 'Enter the link to your Odnoklassniki profile page', SMEDIABT_TEXT ),
305
  '//ok.ru'
306
+ );
307
+ ?>
308
  <?php smbtoolbar_media( 'telegram',
309
  'Telegram',
310
  'https://telegram.me/YourUsernameHere',
311
  __( 'Enter the link to your Telegram profile page', SMEDIABT_TEXT ),
312
  '//telegram.org'
313
+ );
314
+ ?>
315
  <?php smbtoolbar_media( 'github',
316
  'GitHub',
317
  'https://github.com/YourUsernameHere',
318
  __( 'Enter the link to your GitHub profile page', SMEDIABT_TEXT ),
319
  '//github.com'
320
+ );
321
+ ?>
322
  <?php smbtoolbar_media( 'wordpress',
323
  'WordPress',
324
  'https://profiles.wordpress.org/YourUsernameHere',
325
  __( 'Enter the link to your WordPress profile page', SMEDIABT_TEXT ),
326
  '//wordpress.org'
327
+ );
328
+ ?>
329
  <?php smbtoolbar_media( 'codepen',
330
  'CodePen',
331
  'http://codepen.io/YourUsernameHere',
332
  __( 'Enter the link to your CodePen profile page', SMEDIABT_TEXT ),
333
  '//codepen.io'
334
+ );
335
+ ?>
336
  <?php smbtoolbar_media( 'skype',
337
  'Skype',
338
  'skype:YourUsernameHere?call',
339
  __( '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 ),
340
  '//www.skype.com'
341
+ );
342
+ ?>
343
  <?php smbtoolbar_media( 'website',
344
  'Personal website',
345
  'http://www.arthurgareginyan.com',
346
  __( 'Enter the link to your personal website', SMEDIABT_TEXT ),
347
  ''
348
+ );
349
+ ?>
350
  <?php smbtoolbar_media( 'email',
351
  'Email',
352
  'mailto:YourUsernameHere@gmail.com',
353
  __( 'Enter your email address with prefix <b>mailto:</b>', SMEDIABT_TEXT ),
354
  ''
355
+ );
356
+ ?>
357
  <?php smbtoolbar_media( 'rss-feed',
358
  'RSS Feed',
359
  'http://YourDomainNameHere.com/feed',
360
  __( 'Enter the link to your RSS Feed', SMEDIABT_TEXT ),
361
  ''
362
+ );
363
+ ?>
364
  </table>
365
  <p class="note"><b><?php _e( 'Note!', SMEDIABT_TEXT ); ?></b> <?php _e( 'If you did not find the button you need, then tell me and I will gladly add it for you.', SMEDIABT_TEXT ); ?></p>
366
  <?php submit_button( __( 'Save Changes', SMEDIABT_TEXT ), 'primary', 'submit', true ); ?>
373
  <p class="note"><?php _e( 'There you can configure this plugin.', SMEDIABT_TEXT ); ?></p>
374
 
375
  <table class="form-table">
376
+ <?php smbtoolbar_setting( 'show_posts',
377
  __( 'Show on Posts', SMEDIABT_TEXT ),
378
  __( 'Display toolbar below content on Posts.', SMEDIABT_TEXT ),
379
  'check'
380
+ );
381
+ ?>
382
+ <?php smbtoolbar_setting( 'show_pages',
383
  __( 'Show on Pages', SMEDIABT_TEXT ),
384
  __( 'Display toolbar below content on Pages.', SMEDIABT_TEXT ),
385
  'check'
386
+ );
387
+ ?>
388
+ <?php smbtoolbar_setting( 'new_tab',
389
  __( 'Open in new tab', SMEDIABT_TEXT ),
390
  __( 'Open link in a new tab/window.', SMEDIABT_TEXT ),
391
  'check'
392
+ );
393
+ ?>
394
+ <?php smbtoolbar_setting( 'tooltips',
395
  __( 'Tooltips', SMEDIABT_TEXT ),
396
  __( 'Enable/disable a tooltips with name of the social media above every button.', SMEDIABT_TEXT ),
397
  'check'
398
+ );
399
+ ?>
400
+ <?php smbtoolbar_setting( 'icon-size',
401
  __( 'Icon size', SMEDIABT_TEXT ),
402
+ __( 'Enter the size of icons (in px) in your social media follow buttons bar.', SMEDIABT_TEXT ),
403
  'field',
404
  '64',
405
  '2'
406
+ );
407
+ ?>
408
+ <?php smbtoolbar_setting( 'margin-right',
409
  __( 'Margin', SMEDIABT_TEXT ),
410
+ __( 'Enter the size of space (in px) between icons in your social media follow buttons bar.', SMEDIABT_TEXT ),
411
  'field',
412
  '10',
413
  '2'
414
+ );
415
+ ?>
416
 
417
  <?php
418
+
419
+ // Get options from the BD
420
  $options = get_option( 'smbtoolbar_settings' );
421
+
422
  if ( !empty( $options['alignment'] ) ) :
423
  $alignment = $options['alignment'];
424
  else :
449
 
450
  <?php smbtoolbar_setting('caption',
451
  __( 'Caption', SMEDIABT_TEXT ),
452
+ __( 'Enter the caption to your social media follow buttons bar. It will be displays before the toolbar.', SMEDIABT_TEXT ),
453
  'field',
454
  'Follow me in social media:',
455
  '50'
456
  ); ?>
457
+
458
  </table>
459
  <?php submit_button( __( 'Save Changes', SMEDIABT_TEXT ), 'primary', 'submit', true ); ?>
460
  </div>
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: 2017-05-10 15:18+0300\n"
7
- "PO-Revision-Date: 2017-05-10 15:18+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -74,7 +74,7 @@ msgid "Author"
74
  msgstr "Autor"
75
 
76
  #: inc/php/page.php:44 inc/php/page.php:176 inc/php/settings.php:28
77
- #: inc/php/settings.php:416
78
  msgid "Support"
79
  msgstr "Soporte"
80
 
@@ -142,7 +142,7 @@ msgstr ""
142
  msgid "It's that simple!"
143
  msgstr ""
144
 
145
- #: inc/php/page.php:78 inc/php/settings.php:319
146
  msgid "Note!"
147
  msgstr ""
148
 
@@ -279,13 +279,13 @@ msgstr "Acerca de"
279
 
280
  #: inc/php/settings.php:23
281
  msgid ""
282
- "This plugin allows you to easily add the social media buttons toolbar to any place "
283
- "of your website."
284
  msgstr ""
285
  "Este plugin te permite añadir fácilmente una barra de botones de social media en "
286
  "cualquier parte de tu sitio web."
287
 
288
- #: inc/php/settings.php:30 inc/php/settings.php:418
289
  msgid ""
290
  "I'm an independent developer, without a regular income, so every little "
291
  "contribution helps cover my costs and lets me spend more time building things for "
@@ -295,11 +295,11 @@ msgstr ""
295
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
296
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
297
 
298
- #: inc/php/settings.php:31 inc/php/settings.php:419
299
  msgid "Donate with PayPal"
300
  msgstr ""
301
 
302
- #: inc/php/settings.php:32 inc/php/settings.php:420
303
  msgid "Thanks for your support!"
304
  msgstr "¡Gracias por su colaboración!"
305
 
@@ -311,11 +311,11 @@ msgstr "Ayuda"
311
  msgid "Got something to say? Need help?"
312
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
313
 
314
- #: inc/php/settings.php:62
315
  msgid "Buttons"
316
  msgstr "Botones"
317
 
318
- #: inc/php/settings.php:64
319
  msgid ""
320
  "Just fill in the required fields to make a buttons. The social networking buttons "
321
  "will lead directly to your profile pages. If you don't want to use any of the "
@@ -325,15 +325,15 @@ msgstr ""
325
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
326
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
327
 
328
- #: inc/php/settings.php:69
329
  msgid "Enter the link to your Facebook profile page"
330
  msgstr "Ingresa el enlace a tu página de perfil de Facebook"
331
 
332
- #: inc/php/settings.php:75
333
  msgid "Enter the link to your Twitter profile page"
334
  msgstr "Ingresa el enlace a tu página de perfil de Twitter"
335
 
336
- #: inc/php/settings.php:81
337
  msgid "Enter the link to your Instagram profile page"
338
  msgstr "Ingresa el enlace a tu página de perfil de Instagram"
339
 
@@ -341,143 +341,147 @@ msgstr "Ingresa el enlace a tu página de perfil de Instagram"
341
  msgid "Enter the link to your Google+ profile page"
342
  msgstr "Ingresa el enlace a tu página de perfil de Google+"
343
 
344
- #: inc/php/settings.php:93
345
  msgid "Enter the link to your YouTube profile page"
346
  msgstr "Ingresa el enlace a tu página de perfil de Youtube"
347
 
348
- #: inc/php/settings.php:99
349
  msgid "Enter the link to your YouTube Gaming profile page"
350
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
351
 
352
- #: inc/php/settings.php:105
353
  msgid "Enter the link to your Vimeo profile page"
354
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
355
 
356
- #: inc/php/settings.php:111
357
  msgid "Enter the link to your Blogger profile page"
358
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
359
 
360
- #: inc/php/settings.php:117
361
  msgid "Enter the link to your LiveJournal profile page"
362
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
363
 
364
- #: inc/php/settings.php:123
365
  msgid "Enter the link to your Reddit profile page"
366
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
367
 
368
- #: inc/php/settings.php:129
369
  msgid "Enter the link to your LinkedIn profile page"
370
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
371
 
372
- #: inc/php/settings.php:135
373
- msgid "Enter the link to your diaspora profile page"
374
- msgstr "Ingresa el enlace a tu página de perfil de diaspora"
375
 
376
- #: inc/php/settings.php:141
377
  msgid "Enter the link to your XING profile page"
378
  msgstr "Ingresa el enlace a tu página de perfil de XING"
379
 
380
- #: inc/php/settings.php:147
381
  msgid "Enter the link to your Pinterest profile page"
382
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
383
 
384
- #: inc/php/settings.php:153
 
 
 
 
385
  msgid "Enter the link to your Tumblr profile page"
386
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
387
 
388
- #: inc/php/settings.php:159
389
  msgid "Enter the link to your Snapchat profile page"
390
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
391
 
392
- #: inc/php/settings.php:165
393
  msgid "Enter the link to your Twitch profile page"
394
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
395
 
396
- #: inc/php/settings.php:171
397
  msgid "Enter the link to your Patreon profile page"
398
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
399
 
400
- #: inc/php/settings.php:177
401
  msgid "Enter the link to your IMDb profile page"
402
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
403
 
404
- #: inc/php/settings.php:183
405
  msgid "Enter the link to your SoundCloud profile page"
406
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
407
 
408
- #: inc/php/settings.php:189
409
  msgid "Enter the link to your Spotify profile page"
410
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
411
 
412
- #: inc/php/settings.php:195
413
  msgid "Enter the link to your Bandcamp profile page"
414
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
415
 
416
- #: inc/php/settings.php:201
417
  msgid "Enter the link to your Dloky profile page"
418
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
419
 
420
- #: inc/php/settings.php:207
421
  msgid "Enter the link to your Amazon profile page"
422
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
423
 
424
- #: inc/php/settings.php:213
425
  msgid "Enter the link to your BookBub profile page"
426
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
427
 
428
- #: inc/php/settings.php:219
429
  msgid "Enter the link to your Goodreads profile page"
430
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
431
 
432
- #: inc/php/settings.php:225
433
  msgid "Enter the link to your MeetVibe profile page"
434
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
435
 
436
- #: inc/php/settings.php:231
437
  msgid "Enter the link to your Meetup profile page"
438
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
439
 
440
- #: inc/php/settings.php:237
441
  msgid "Enter the link to your Steam profile page"
442
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
443
 
444
- #: inc/php/settings.php:243
445
  msgid "Enter the link to your Beam profile page"
446
  msgstr "Ingresa el enlace a tu página de perfil de Beam"
447
 
448
- #: inc/php/settings.php:249
449
  msgid "Enter the link to your Discord profile page"
450
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
451
 
452
- #: inc/php/settings.php:255
453
  msgid "Enter the link to your Yelp profile page"
454
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
455
 
456
- #: inc/php/settings.php:261
457
  msgid "Enter the link to your VKontakte profile page"
458
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
459
 
460
- #: inc/php/settings.php:267
461
  msgid "Enter the link to your Odnoklassniki profile page"
462
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
463
 
464
- #: inc/php/settings.php:273
465
  msgid "Enter the link to your Telegram profile page"
466
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
467
 
468
- #: inc/php/settings.php:279
469
  msgid "Enter the link to your GitHub profile page"
470
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
471
 
472
- #: inc/php/settings.php:285
473
  msgid "Enter the link to your WordPress profile page"
474
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
475
 
476
- #: inc/php/settings.php:291
477
  msgid "Enter the link to your CodePen profile page"
478
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
479
 
480
- #: inc/php/settings.php:297
481
  msgid ""
482
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
483
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -485,120 +489,121 @@ msgstr ""
485
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
486
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
487
 
488
- #: inc/php/settings.php:303
489
  msgid "Enter the link to your personal website"
490
  msgstr "Ingresa el enlace a tu sitio web personal"
491
 
492
- #: inc/php/settings.php:309
493
  msgid "Enter your email address with prefix <b>mailto:</b>"
494
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
495
 
496
- #: inc/php/settings.php:315
497
  msgid "Enter the link to your RSS Feed"
498
  msgstr "Ingresa el enlace a tu Feed de RSS"
499
 
500
- #: inc/php/settings.php:319
501
  msgid ""
502
  "If you did not find the button you need, then tell me and I will gladly add it for "
503
  "you."
504
  msgstr ""
505
 
506
- #: inc/php/settings.php:320 inc/php/settings.php:403
507
  msgid "Save Changes"
508
  msgstr "Guardar las modificaciones"
509
 
510
- #: inc/php/settings.php:325
511
  msgid "Display options"
512
  msgstr "Opciones de presentación"
513
 
514
- #: inc/php/settings.php:327
515
  msgid "There you can configure this plugin."
516
  msgstr ""
517
 
518
- #: inc/php/settings.php:331
519
  msgid "Show on Posts"
520
  msgstr "Mostrar en Entradas"
521
 
522
- #: inc/php/settings.php:332
523
  msgid "Display toolbar below content on Posts."
524
  msgstr "Mostrar la barra abajo del contenido en Entradas"
525
 
526
- #: inc/php/settings.php:336
527
  msgid "Show on Pages"
528
  msgstr "Mostrar en Páginas"
529
 
530
- #: inc/php/settings.php:337
531
  msgid "Display toolbar below content on Pages."
532
  msgstr "Mostrar la barra abajo del contenido en Páginas"
533
 
534
- #: inc/php/settings.php:341
535
  msgid "Open in new tab"
536
  msgstr "Abrir en una nueva pestaña"
537
 
538
- #: inc/php/settings.php:342
539
  msgid "Open link in a new tab/window."
540
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
541
 
542
- #: inc/php/settings.php:346
543
  msgid "Tooltips"
544
  msgstr ""
545
 
546
- #: inc/php/settings.php:347
547
  msgid "Enable/disable a tooltips with name of the social media above every button."
548
  msgstr ""
549
 
550
- #: inc/php/settings.php:351
551
  msgid "Icon size"
552
  msgstr "Tamaño de ícono"
553
 
554
- #: inc/php/settings.php:352
555
- msgid "Enter the size of icons (in px) in your social media buttons toolbar."
556
  msgstr ""
557
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
558
 
559
- #: inc/php/settings.php:358
560
  msgid "Margin"
561
  msgstr "Margen"
562
 
563
- #: inc/php/settings.php:359
564
  msgid ""
565
- "Enter the size of space (in px) between icons in your social media buttons toolbar."
 
566
  msgstr ""
567
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
568
 
569
- #: inc/php/settings.php:375
570
  msgid "Alignment"
571
  msgstr "Alineación"
572
 
573
- #: inc/php/settings.php:381
574
  msgid "Left"
575
  msgstr "Izquierda"
576
 
577
- #: inc/php/settings.php:385
578
  msgid "Center"
579
  msgstr "Centro"
580
 
581
- #: inc/php/settings.php:389
582
  msgid "Right"
583
  msgstr "Derecha"
584
 
585
- #: inc/php/settings.php:396
586
  msgid "Caption"
587
  msgstr "Leyenda"
588
 
589
- #: inc/php/settings.php:397
590
  msgid ""
591
- "Enter the caption to your social media buttons toolbar. It will be displays before "
592
- "the toolbar."
593
  msgstr ""
594
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
595
  "la barra de botones."
596
 
597
- #: inc/php/settings.php:408
598
  msgid "Preview"
599
  msgstr "Vista previa"
600
 
601
- #: inc/php/settings.php:410
602
  msgid "Click the \"Save Changes\" button to update this preview."
603
  msgstr ""
604
 
@@ -623,6 +628,9 @@ msgstr "Arthur Gareginyan"
623
  msgid "http://www.arthurgareginyan.com"
624
  msgstr "http://www.arthurgareginyan.com"
625
 
 
 
 
626
  #~ msgid ""
627
  #~ "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
628
  #~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
@@ -671,9 +679,9 @@ msgstr "http://www.arthurgareginyan.com"
671
  #~ "Gareginyan</a>"
672
 
673
  #~ msgid ""
674
- #~ "You have several methods for display the social media buttons toolbar (further "
675
- #~ "just \"toolbar\") on your website. But first, fill in the required fields, then "
676
- #~ "click \"Save Changes\"."
677
  #~ msgstr ""
678
  #~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
679
  #~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-05-17 17:51+0300\n"
7
+ "PO-Revision-Date: 2017-05-17 17:51+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
74
  msgstr "Autor"
75
 
76
  #: inc/php/page.php:44 inc/php/page.php:176 inc/php/settings.php:28
77
+ #: inc/php/settings.php:472
78
  msgid "Support"
79
  msgstr "Soporte"
80
 
142
  msgid "It's that simple!"
143
  msgstr ""
144
 
145
+ #: inc/php/page.php:78 inc/php/settings.php:365
146
  msgid "Note!"
147
  msgstr ""
148
 
279
 
280
  #: inc/php/settings.php:23
281
  msgid ""
282
+ "This plugin allows you to easily add the social media follow buttons bar to any "
283
+ "place of your website."
284
  msgstr ""
285
  "Este plugin te permite añadir fácilmente una barra de botones de social media en "
286
  "cualquier parte de tu sitio web."
287
 
288
+ #: inc/php/settings.php:30 inc/php/settings.php:474
289
  msgid ""
290
  "I'm an independent developer, without a regular income, so every little "
291
  "contribution helps cover my costs and lets me spend more time building things for "
295
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
296
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
297
 
298
+ #: inc/php/settings.php:31 inc/php/settings.php:475
299
  msgid "Donate with PayPal"
300
  msgstr ""
301
 
302
+ #: inc/php/settings.php:32 inc/php/settings.php:476
303
  msgid "Thanks for your support!"
304
  msgstr "¡Gracias por su colaboración!"
305
 
311
  msgid "Got something to say? Need help?"
312
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
313
 
314
+ #: inc/php/settings.php:57
315
  msgid "Buttons"
316
  msgstr "Botones"
317
 
318
+ #: inc/php/settings.php:59
319
  msgid ""
320
  "Just fill in the required fields to make a buttons. The social networking buttons "
321
  "will lead directly to your profile pages. If you don't want to use any of the "
325
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
326
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
327
 
328
+ #: inc/php/settings.php:66
329
  msgid "Enter the link to your Facebook profile page"
330
  msgstr "Ingresa el enlace a tu página de perfil de Facebook"
331
 
332
+ #: inc/php/settings.php:73
333
  msgid "Enter the link to your Twitter profile page"
334
  msgstr "Ingresa el enlace a tu página de perfil de Twitter"
335
 
336
+ #: inc/php/settings.php:80
337
  msgid "Enter the link to your Instagram profile page"
338
  msgstr "Ingresa el enlace a tu página de perfil de Instagram"
339
 
341
  msgid "Enter the link to your Google+ profile page"
342
  msgstr "Ingresa el enlace a tu página de perfil de Google+"
343
 
344
+ #: inc/php/settings.php:94
345
  msgid "Enter the link to your YouTube profile page"
346
  msgstr "Ingresa el enlace a tu página de perfil de Youtube"
347
 
348
+ #: inc/php/settings.php:101
349
  msgid "Enter the link to your YouTube Gaming profile page"
350
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
351
 
352
+ #: inc/php/settings.php:108
353
  msgid "Enter the link to your Vimeo profile page"
354
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
355
 
356
+ #: inc/php/settings.php:115
357
  msgid "Enter the link to your Blogger profile page"
358
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
359
 
360
+ #: inc/php/settings.php:122
361
  msgid "Enter the link to your LiveJournal profile page"
362
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
363
 
364
+ #: inc/php/settings.php:129
365
  msgid "Enter the link to your Reddit profile page"
366
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
367
 
368
+ #: inc/php/settings.php:136
369
  msgid "Enter the link to your LinkedIn profile page"
370
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
371
 
372
+ #: inc/php/settings.php:143
373
+ msgid "Enter the link to your Diaspora profile page"
374
+ msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
375
 
376
+ #: inc/php/settings.php:150
377
  msgid "Enter the link to your XING profile page"
378
  msgstr "Ingresa el enlace a tu página de perfil de XING"
379
 
380
+ #: inc/php/settings.php:157
381
  msgid "Enter the link to your Pinterest profile page"
382
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
383
 
384
+ #: inc/php/settings.php:164
385
+ msgid "Enter the link to your Flickr profile page"
386
+ msgstr "Ingresa el enlace a tu página de perfil de Flickr"
387
+
388
+ #: inc/php/settings.php:171
389
  msgid "Enter the link to your Tumblr profile page"
390
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
391
 
392
+ #: inc/php/settings.php:178
393
  msgid "Enter the link to your Snapchat profile page"
394
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
395
 
396
+ #: inc/php/settings.php:185
397
  msgid "Enter the link to your Twitch profile page"
398
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
399
 
400
+ #: inc/php/settings.php:192
401
  msgid "Enter the link to your Patreon profile page"
402
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
403
 
404
+ #: inc/php/settings.php:199
405
  msgid "Enter the link to your IMDb profile page"
406
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
407
 
408
+ #: inc/php/settings.php:206
409
  msgid "Enter the link to your SoundCloud profile page"
410
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
411
 
412
+ #: inc/php/settings.php:213
413
  msgid "Enter the link to your Spotify profile page"
414
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
415
 
416
+ #: inc/php/settings.php:220
417
  msgid "Enter the link to your Bandcamp profile page"
418
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
419
 
420
+ #: inc/php/settings.php:227
421
  msgid "Enter the link to your Dloky profile page"
422
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
423
 
424
+ #: inc/php/settings.php:234
425
  msgid "Enter the link to your Amazon profile page"
426
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
427
 
428
+ #: inc/php/settings.php:241
429
  msgid "Enter the link to your BookBub profile page"
430
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
431
 
432
+ #: inc/php/settings.php:248
433
  msgid "Enter the link to your Goodreads profile page"
434
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
435
 
436
+ #: inc/php/settings.php:255
437
  msgid "Enter the link to your MeetVibe profile page"
438
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
439
 
440
+ #: inc/php/settings.php:262
441
  msgid "Enter the link to your Meetup profile page"
442
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
443
 
444
+ #: inc/php/settings.php:269
445
  msgid "Enter the link to your Steam profile page"
446
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
447
 
448
+ #: inc/php/settings.php:276
449
  msgid "Enter the link to your Beam profile page"
450
  msgstr "Ingresa el enlace a tu página de perfil de Beam"
451
 
452
+ #: inc/php/settings.php:283
453
  msgid "Enter the link to your Discord profile page"
454
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
455
 
456
+ #: inc/php/settings.php:290
457
  msgid "Enter the link to your Yelp profile page"
458
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
459
 
460
+ #: inc/php/settings.php:297
461
  msgid "Enter the link to your VKontakte profile page"
462
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
463
 
464
+ #: inc/php/settings.php:304
465
  msgid "Enter the link to your Odnoklassniki profile page"
466
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
467
 
468
+ #: inc/php/settings.php:311
469
  msgid "Enter the link to your Telegram profile page"
470
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
471
 
472
+ #: inc/php/settings.php:318
473
  msgid "Enter the link to your GitHub profile page"
474
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
475
 
476
+ #: inc/php/settings.php:325
477
  msgid "Enter the link to your WordPress profile page"
478
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
479
 
480
+ #: inc/php/settings.php:332
481
  msgid "Enter the link to your CodePen profile page"
482
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
483
 
484
+ #: inc/php/settings.php:339
485
  msgid ""
486
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
487
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
489
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
490
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
491
 
492
+ #: inc/php/settings.php:346
493
  msgid "Enter the link to your personal website"
494
  msgstr "Ingresa el enlace a tu sitio web personal"
495
 
496
+ #: inc/php/settings.php:353
497
  msgid "Enter your email address with prefix <b>mailto:</b>"
498
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
499
 
500
+ #: inc/php/settings.php:360
501
  msgid "Enter the link to your RSS Feed"
502
  msgstr "Ingresa el enlace a tu Feed de RSS"
503
 
504
+ #: inc/php/settings.php:365
505
  msgid ""
506
  "If you did not find the button you need, then tell me and I will gladly add it for "
507
  "you."
508
  msgstr ""
509
 
510
+ #: inc/php/settings.php:366 inc/php/settings.php:459
511
  msgid "Save Changes"
512
  msgstr "Guardar las modificaciones"
513
 
514
+ #: inc/php/settings.php:371
515
  msgid "Display options"
516
  msgstr "Opciones de presentación"
517
 
518
+ #: inc/php/settings.php:373
519
  msgid "There you can configure this plugin."
520
  msgstr ""
521
 
522
+ #: inc/php/settings.php:377
523
  msgid "Show on Posts"
524
  msgstr "Mostrar en Entradas"
525
 
526
+ #: inc/php/settings.php:378
527
  msgid "Display toolbar below content on Posts."
528
  msgstr "Mostrar la barra abajo del contenido en Entradas"
529
 
530
+ #: inc/php/settings.php:383
531
  msgid "Show on Pages"
532
  msgstr "Mostrar en Páginas"
533
 
534
+ #: inc/php/settings.php:384
535
  msgid "Display toolbar below content on Pages."
536
  msgstr "Mostrar la barra abajo del contenido en Páginas"
537
 
538
+ #: inc/php/settings.php:389
539
  msgid "Open in new tab"
540
  msgstr "Abrir en una nueva pestaña"
541
 
542
+ #: inc/php/settings.php:390
543
  msgid "Open link in a new tab/window."
544
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
545
 
546
+ #: inc/php/settings.php:395
547
  msgid "Tooltips"
548
  msgstr ""
549
 
550
+ #: inc/php/settings.php:396
551
  msgid "Enable/disable a tooltips with name of the social media above every button."
552
  msgstr ""
553
 
554
+ #: inc/php/settings.php:401
555
  msgid "Icon size"
556
  msgstr "Tamaño de ícono"
557
 
558
+ #: inc/php/settings.php:402
559
+ msgid "Enter the size of icons (in px) in your social media follow buttons bar."
560
  msgstr ""
561
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
562
 
563
+ #: inc/php/settings.php:409
564
  msgid "Margin"
565
  msgstr "Margen"
566
 
567
+ #: inc/php/settings.php:410
568
  msgid ""
569
+ "Enter the size of space (in px) between icons in your social media follow buttons "
570
+ "bar."
571
  msgstr ""
572
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
573
 
574
+ #: inc/php/settings.php:430
575
  msgid "Alignment"
576
  msgstr "Alineación"
577
 
578
+ #: inc/php/settings.php:436
579
  msgid "Left"
580
  msgstr "Izquierda"
581
 
582
+ #: inc/php/settings.php:440
583
  msgid "Center"
584
  msgstr "Centro"
585
 
586
+ #: inc/php/settings.php:444
587
  msgid "Right"
588
  msgstr "Derecha"
589
 
590
+ #: inc/php/settings.php:451
591
  msgid "Caption"
592
  msgstr "Leyenda"
593
 
594
+ #: inc/php/settings.php:452
595
  msgid ""
596
+ "Enter the caption to your social media follow buttons bar. It will be displays "
597
+ "before the toolbar."
598
  msgstr ""
599
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
600
  "la barra de botones."
601
 
602
+ #: inc/php/settings.php:464
603
  msgid "Preview"
604
  msgstr "Vista previa"
605
 
606
+ #: inc/php/settings.php:466
607
  msgid "Click the \"Save Changes\" button to update this preview."
608
  msgstr ""
609
 
628
  msgid "http://www.arthurgareginyan.com"
629
  msgstr "http://www.arthurgareginyan.com"
630
 
631
+ #~ msgid "Enter the link to your diaspora profile page"
632
+ #~ msgstr "Ingresa el enlace a tu página de perfil de diaspora"
633
+
634
  #~ msgid ""
635
  #~ "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
636
  #~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
679
  #~ "Gareginyan</a>"
680
 
681
  #~ msgid ""
682
+ #~ "You have several methods for display the social media follow buttons bar "
683
+ #~ "(further just \"toolbar\") on your website. But first, fill in the required "
684
+ #~ "fields, then click \"Save Changes\"."
685
  #~ msgstr ""
686
  #~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
687
  #~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
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: 2017-05-10 15:17+0300\n"
5
- "PO-Revision-Date: 2017-05-10 15:18+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -73,7 +73,7 @@ msgid "Author"
73
  msgstr "Автор"
74
 
75
  #: inc/php/page.php:44 inc/php/page.php:176 inc/php/settings.php:28
76
- #: inc/php/settings.php:416
77
  msgid "Support"
78
  msgstr "Поддержка"
79
 
@@ -138,7 +138,7 @@ msgstr ""
138
  msgid "It's that simple!"
139
  msgstr "Вот так просто!"
140
 
141
- #: inc/php/page.php:78 inc/php/settings.php:319
142
  msgid "Note!"
143
  msgstr "Примечание!"
144
 
@@ -287,13 +287,13 @@ msgstr "О плагине"
287
 
288
  #: inc/php/settings.php:23
289
  msgid ""
290
- "This plugin allows you to easily add the social media buttons toolbar to any "
291
- "place of your website."
292
  msgstr ""
293
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
294
  "место на вашем веб-сайте."
295
 
296
- #: inc/php/settings.php:30 inc/php/settings.php:418
297
  msgid ""
298
  "I'm an independent developer, without a regular income, so every little "
299
  "contribution helps cover my costs and lets me spend more time building "
@@ -303,11 +303,11 @@ msgstr ""
303
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
304
  "создание программ для людей как вы."
305
 
306
- #: inc/php/settings.php:31 inc/php/settings.php:419
307
  msgid "Donate with PayPal"
308
  msgstr ""
309
 
310
- #: inc/php/settings.php:32 inc/php/settings.php:420
311
  msgid "Thanks for your support!"
312
  msgstr "Спасибо за вашу поддержку!"
313
 
@@ -319,11 +319,11 @@ msgstr "Помощь"
319
  msgid "Got something to say? Need help?"
320
  msgstr "Есть что сказать? Нужна помощь?"
321
 
322
- #: inc/php/settings.php:62
323
  msgid "Buttons"
324
  msgstr "Кнопки"
325
 
326
- #: inc/php/settings.php:64
327
  msgid ""
328
  "Just fill in the required fields to make a buttons. The social networking "
329
  "buttons will lead directly to your profile pages. If you don't want to use "
@@ -335,15 +335,15 @@ msgstr ""
335
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
336
  "и тогда они не появятся."
337
 
338
- #: inc/php/settings.php:69
339
  msgid "Enter the link to your Facebook profile page"
340
  msgstr "Введите ссылку на вашу страницу профиля Facebook"
341
 
342
- #: inc/php/settings.php:75
343
  msgid "Enter the link to your Twitter profile page"
344
  msgstr "Введите ссылку на вашу страницу профиля Twitter"
345
 
346
- #: inc/php/settings.php:81
347
  msgid "Enter the link to your Instagram profile page"
348
  msgstr "Введите ссылку на вашу страницу профиля Instagram"
349
 
@@ -351,143 +351,147 @@ msgstr "Введите ссылку на вашу страницу профил
351
  msgid "Enter the link to your Google+ profile page"
352
  msgstr "Введите ссылку на вашу страницу профиля Google+"
353
 
354
- #: inc/php/settings.php:93
355
  msgid "Enter the link to your YouTube profile page"
356
  msgstr "Введите ссылку на вашу страницу профиля YouTube"
357
 
358
- #: inc/php/settings.php:99
359
  msgid "Enter the link to your YouTube Gaming profile page"
360
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
361
 
362
- #: inc/php/settings.php:105
363
  msgid "Enter the link to your Vimeo profile page"
364
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
365
 
366
- #: inc/php/settings.php:111
367
  msgid "Enter the link to your Blogger profile page"
368
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
369
 
370
- #: inc/php/settings.php:117
371
  msgid "Enter the link to your LiveJournal profile page"
372
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
373
 
374
- #: inc/php/settings.php:123
375
  msgid "Enter the link to your Reddit profile page"
376
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
377
 
378
- #: inc/php/settings.php:129
379
  msgid "Enter the link to your LinkedIn profile page"
380
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
381
 
382
- #: inc/php/settings.php:135
383
- msgid "Enter the link to your diaspora profile page"
384
- msgstr "Введите ссылку на вашу страницу профиля diaspora"
385
 
386
- #: inc/php/settings.php:141
387
  msgid "Enter the link to your XING profile page"
388
  msgstr "Введите ссылку на вашу страницу профиля XING"
389
 
390
- #: inc/php/settings.php:147
391
  msgid "Enter the link to your Pinterest profile page"
392
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
393
 
394
- #: inc/php/settings.php:153
 
 
 
 
395
  msgid "Enter the link to your Tumblr profile page"
396
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
397
 
398
- #: inc/php/settings.php:159
399
  msgid "Enter the link to your Snapchat profile page"
400
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
401
 
402
- #: inc/php/settings.php:165
403
  msgid "Enter the link to your Twitch profile page"
404
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
405
 
406
- #: inc/php/settings.php:171
407
  msgid "Enter the link to your Patreon profile page"
408
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
409
 
410
- #: inc/php/settings.php:177
411
  msgid "Enter the link to your IMDb profile page"
412
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
413
 
414
- #: inc/php/settings.php:183
415
  msgid "Enter the link to your SoundCloud profile page"
416
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
417
 
418
- #: inc/php/settings.php:189
419
  msgid "Enter the link to your Spotify profile page"
420
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
421
 
422
- #: inc/php/settings.php:195
423
  msgid "Enter the link to your Bandcamp profile page"
424
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
425
 
426
- #: inc/php/settings.php:201
427
  msgid "Enter the link to your Dloky profile page"
428
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
429
 
430
- #: inc/php/settings.php:207
431
  msgid "Enter the link to your Amazon profile page"
432
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
433
 
434
- #: inc/php/settings.php:213
435
  msgid "Enter the link to your BookBub profile page"
436
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
437
 
438
- #: inc/php/settings.php:219
439
  msgid "Enter the link to your Goodreads profile page"
440
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
441
 
442
- #: inc/php/settings.php:225
443
  msgid "Enter the link to your MeetVibe profile page"
444
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
445
 
446
- #: inc/php/settings.php:231
447
  msgid "Enter the link to your Meetup profile page"
448
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
449
 
450
- #: inc/php/settings.php:237
451
  msgid "Enter the link to your Steam profile page"
452
  msgstr "Введите ссылку на вашу страницу профиля Steam"
453
 
454
- #: inc/php/settings.php:243
455
  msgid "Enter the link to your Beam profile page"
456
  msgstr "Введите ссылку на вашу страницу профиля Beam"
457
 
458
- #: inc/php/settings.php:249
459
  msgid "Enter the link to your Discord profile page"
460
  msgstr "Введите ссылку на вашу страницу профиля Discord"
461
 
462
- #: inc/php/settings.php:255
463
  msgid "Enter the link to your Yelp profile page"
464
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
465
 
466
- #: inc/php/settings.php:261
467
  msgid "Enter the link to your VKontakte profile page"
468
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
469
 
470
- #: inc/php/settings.php:267
471
  msgid "Enter the link to your Odnoklassniki profile page"
472
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
473
 
474
- #: inc/php/settings.php:273
475
  msgid "Enter the link to your Telegram profile page"
476
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
477
 
478
- #: inc/php/settings.php:279
479
  msgid "Enter the link to your GitHub profile page"
480
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
481
 
482
- #: inc/php/settings.php:285
483
  msgid "Enter the link to your WordPress profile page"
484
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
485
 
486
- #: inc/php/settings.php:291
487
  msgid "Enter the link to your CodePen profile page"
488
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
489
 
490
- #: inc/php/settings.php:297
491
  msgid ""
492
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
493
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -496,125 +500,124 @@ msgstr ""
496
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
497
  "профиля"
498
 
499
- #: inc/php/settings.php:303
500
  msgid "Enter the link to your personal website"
501
  msgstr "Введите ссылку на ваш персональный сайт"
502
 
503
- #: inc/php/settings.php:309
504
  msgid "Enter your email address with prefix <b>mailto:</b>"
505
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
506
 
507
- #: inc/php/settings.php:315
508
  msgid "Enter the link to your RSS Feed"
509
  msgstr "Введите ссылку на ваш RSS поток"
510
 
511
- #: inc/php/settings.php:319
512
  msgid ""
513
  "If you did not find the button you need, then tell me and I will gladly add "
514
  "it for you."
515
  msgstr ""
516
 
517
- #: inc/php/settings.php:320 inc/php/settings.php:403
518
  msgid "Save Changes"
519
  msgstr "Сохранить изменения"
520
 
521
- #: inc/php/settings.php:325
522
  msgid "Display options"
523
  msgstr "Настройки отображения"
524
 
525
- #: inc/php/settings.php:327
526
  msgid "There you can configure this plugin."
527
  msgstr "Здесь вы можете настроить этот плагин."
528
 
529
- #: inc/php/settings.php:331
530
  msgid "Show on Posts"
531
  msgstr "Показать в записях"
532
 
533
- #: inc/php/settings.php:332
534
  msgid "Display toolbar below content on Posts."
535
  msgstr "Показывать кнопки под содержанием в записях"
536
 
537
- #: inc/php/settings.php:336
538
  msgid "Show on Pages"
539
  msgstr "Показывать на страницах"
540
 
541
- #: inc/php/settings.php:337
542
  msgid "Display toolbar below content on Pages."
543
  msgstr "Показывать кнопки под содержанием на страницах"
544
 
545
- #: inc/php/settings.php:341
546
  msgid "Open in new tab"
547
  msgstr "Открыть в новой вкладке"
548
 
549
- #: inc/php/settings.php:342
550
  msgid "Open link in a new tab/window."
551
  msgstr "Открыть ссылку в новом окне/вкладке"
552
 
553
- #: inc/php/settings.php:346
554
  msgid "Tooltips"
555
  msgstr "Подсказки"
556
 
557
- #: inc/php/settings.php:347
558
  msgid ""
559
  "Enable/disable a tooltips with name of the social media above every button."
560
  msgstr ""
561
  "Включить/отключить всплывающие подсказки с названием социальных медиа над "
562
  "каждой кнопкой."
563
 
564
- #: inc/php/settings.php:351
565
  msgid "Icon size"
566
  msgstr "Размер иконки"
567
 
568
- #: inc/php/settings.php:352
569
- msgid "Enter the size of icons (in px) in your social media buttons toolbar."
 
570
  msgstr ""
571
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
572
 
573
- #: inc/php/settings.php:358
574
  msgid "Margin"
575
  msgstr "Отступ"
576
 
577
- #: inc/php/settings.php:359
578
  msgid ""
579
- "Enter the size of space (in px) between icons in your social media buttons "
580
- "toolbar."
581
  msgstr ""
582
- "Введите размер пространства (в пикселях) между иконками для вашей панели "
583
- "социальных медиа кнопок."
584
 
585
- #: inc/php/settings.php:375
586
  msgid "Alignment"
587
  msgstr "Выравнивание"
588
 
589
- #: inc/php/settings.php:381
590
  msgid "Left"
591
  msgstr "Слева"
592
 
593
- #: inc/php/settings.php:385
594
  msgid "Center"
595
  msgstr "По центру"
596
 
597
- #: inc/php/settings.php:389
598
  msgid "Right"
599
  msgstr "Справа"
600
 
601
- #: inc/php/settings.php:396
602
  msgid "Caption"
603
  msgstr "Заголовок"
604
 
605
- #: inc/php/settings.php:397
606
  msgid ""
607
- "Enter the caption to your social media buttons toolbar. It will be displays "
608
- "before the toolbar."
609
  msgstr ""
610
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
611
  "над панелью."
612
 
613
- #: inc/php/settings.php:408
614
  msgid "Preview"
615
  msgstr "Предварительный просмотр"
616
 
617
- #: inc/php/settings.php:410
618
  msgid "Click the \"Save Changes\" button to update this preview."
619
  msgstr ""
620
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
@@ -637,6 +640,16 @@ msgstr "Артур Гарегинян"
637
  msgid "http://www.arthurgareginyan.com"
638
  msgstr "http://www.arthurgareginyan.com"
639
 
 
 
 
 
 
 
 
 
 
 
640
  #~ msgid ""
641
  #~ "You have several methods for display the social media follow buttons bar "
642
  #~ "(further just \"bar\") on your website. But first, fill in the required "
@@ -666,7 +679,7 @@ msgstr "http://www.arthurgareginyan.com"
666
  #~ "Гарегинян</a>"
667
 
668
  #~ msgid ""
669
- #~ "You have several methods for display the social media buttons toolbar "
670
  #~ "(further just \"toolbar\") on your website. But first, fill in the "
671
  #~ "required fields, then click \"Save Changes\"."
672
  #~ msgstr ""
@@ -747,7 +760,7 @@ msgstr "http://www.arthurgareginyan.com"
747
  #~ "изменения”, чтобы обновить этот просмотр."
748
 
749
  #~ msgid ""
750
- #~ "You have several methods for display the social media buttons toolbar "
751
  #~ "(further just \"toolbar\") on your website. But first, enter a links for "
752
  #~ "each buttons, then click \"Save Changes\"."
753
  #~ msgstr ""
@@ -797,8 +810,8 @@ msgstr "http://www.arthurgareginyan.com"
797
  #~ msgstr "Артур “Берсеркр” Гарегинян"
798
 
799
  #~ msgid ""
800
- #~ "This plugin allows you to easily add the social media buttons toolbar to "
801
- #~ "any place of your web-site."
802
  #~ msgstr ""
803
  #~ "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
804
  #~ "место на вашем веб-сайте."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
+ "POT-Creation-Date: 2017-05-17 17:50+0300\n"
5
+ "PO-Revision-Date: 2017-05-17 17:51+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
73
  msgstr "Автор"
74
 
75
  #: inc/php/page.php:44 inc/php/page.php:176 inc/php/settings.php:28
76
+ #: inc/php/settings.php:472
77
  msgid "Support"
78
  msgstr "Поддержка"
79
 
138
  msgid "It's that simple!"
139
  msgstr "Вот так просто!"
140
 
141
+ #: inc/php/page.php:78 inc/php/settings.php:365
142
  msgid "Note!"
143
  msgstr "Примечание!"
144
 
287
 
288
  #: inc/php/settings.php:23
289
  msgid ""
290
+ "This plugin allows you to easily add the social media follow buttons bar to "
291
+ "any place of your website."
292
  msgstr ""
293
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
294
  "место на вашем веб-сайте."
295
 
296
+ #: inc/php/settings.php:30 inc/php/settings.php:474
297
  msgid ""
298
  "I'm an independent developer, without a regular income, so every little "
299
  "contribution helps cover my costs and lets me spend more time building "
303
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
304
  "создание программ для людей как вы."
305
 
306
+ #: inc/php/settings.php:31 inc/php/settings.php:475
307
  msgid "Donate with PayPal"
308
  msgstr ""
309
 
310
+ #: inc/php/settings.php:32 inc/php/settings.php:476
311
  msgid "Thanks for your support!"
312
  msgstr "Спасибо за вашу поддержку!"
313
 
319
  msgid "Got something to say? Need help?"
320
  msgstr "Есть что сказать? Нужна помощь?"
321
 
322
+ #: inc/php/settings.php:57
323
  msgid "Buttons"
324
  msgstr "Кнопки"
325
 
326
+ #: inc/php/settings.php:59
327
  msgid ""
328
  "Just fill in the required fields to make a buttons. The social networking "
329
  "buttons will lead directly to your profile pages. If you don't want to use "
335
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
336
  "и тогда они не появятся."
337
 
338
+ #: inc/php/settings.php:66
339
  msgid "Enter the link to your Facebook profile page"
340
  msgstr "Введите ссылку на вашу страницу профиля Facebook"
341
 
342
+ #: inc/php/settings.php:73
343
  msgid "Enter the link to your Twitter profile page"
344
  msgstr "Введите ссылку на вашу страницу профиля Twitter"
345
 
346
+ #: inc/php/settings.php:80
347
  msgid "Enter the link to your Instagram profile page"
348
  msgstr "Введите ссылку на вашу страницу профиля Instagram"
349
 
351
  msgid "Enter the link to your Google+ profile page"
352
  msgstr "Введите ссылку на вашу страницу профиля Google+"
353
 
354
+ #: inc/php/settings.php:94
355
  msgid "Enter the link to your YouTube profile page"
356
  msgstr "Введите ссылку на вашу страницу профиля YouTube"
357
 
358
+ #: inc/php/settings.php:101
359
  msgid "Enter the link to your YouTube Gaming profile page"
360
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
361
 
362
+ #: inc/php/settings.php:108
363
  msgid "Enter the link to your Vimeo profile page"
364
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
365
 
366
+ #: inc/php/settings.php:115
367
  msgid "Enter the link to your Blogger profile page"
368
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
369
 
370
+ #: inc/php/settings.php:122
371
  msgid "Enter the link to your LiveJournal profile page"
372
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
373
 
374
+ #: inc/php/settings.php:129
375
  msgid "Enter the link to your Reddit profile page"
376
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
377
 
378
+ #: inc/php/settings.php:136
379
  msgid "Enter the link to your LinkedIn profile page"
380
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
381
 
382
+ #: inc/php/settings.php:143
383
+ msgid "Enter the link to your Diaspora profile page"
384
+ msgstr "Введите ссылку на вашу страницу профиля Diaspora"
385
 
386
+ #: inc/php/settings.php:150
387
  msgid "Enter the link to your XING profile page"
388
  msgstr "Введите ссылку на вашу страницу профиля XING"
389
 
390
+ #: inc/php/settings.php:157
391
  msgid "Enter the link to your Pinterest profile page"
392
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
393
 
394
+ #: inc/php/settings.php:164
395
+ msgid "Enter the link to your Flickr profile page"
396
+ msgstr "Введите ссылку на вашу страницу профиля Flickr"
397
+
398
+ #: inc/php/settings.php:171
399
  msgid "Enter the link to your Tumblr profile page"
400
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
401
 
402
+ #: inc/php/settings.php:178
403
  msgid "Enter the link to your Snapchat profile page"
404
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
405
 
406
+ #: inc/php/settings.php:185
407
  msgid "Enter the link to your Twitch profile page"
408
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
409
 
410
+ #: inc/php/settings.php:192
411
  msgid "Enter the link to your Patreon profile page"
412
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
413
 
414
+ #: inc/php/settings.php:199
415
  msgid "Enter the link to your IMDb profile page"
416
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
417
 
418
+ #: inc/php/settings.php:206
419
  msgid "Enter the link to your SoundCloud profile page"
420
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
421
 
422
+ #: inc/php/settings.php:213
423
  msgid "Enter the link to your Spotify profile page"
424
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
425
 
426
+ #: inc/php/settings.php:220
427
  msgid "Enter the link to your Bandcamp profile page"
428
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
429
 
430
+ #: inc/php/settings.php:227
431
  msgid "Enter the link to your Dloky profile page"
432
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
433
 
434
+ #: inc/php/settings.php:234
435
  msgid "Enter the link to your Amazon profile page"
436
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
437
 
438
+ #: inc/php/settings.php:241
439
  msgid "Enter the link to your BookBub profile page"
440
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
441
 
442
+ #: inc/php/settings.php:248
443
  msgid "Enter the link to your Goodreads profile page"
444
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
445
 
446
+ #: inc/php/settings.php:255
447
  msgid "Enter the link to your MeetVibe profile page"
448
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
449
 
450
+ #: inc/php/settings.php:262
451
  msgid "Enter the link to your Meetup profile page"
452
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
453
 
454
+ #: inc/php/settings.php:269
455
  msgid "Enter the link to your Steam profile page"
456
  msgstr "Введите ссылку на вашу страницу профиля Steam"
457
 
458
+ #: inc/php/settings.php:276
459
  msgid "Enter the link to your Beam profile page"
460
  msgstr "Введите ссылку на вашу страницу профиля Beam"
461
 
462
+ #: inc/php/settings.php:283
463
  msgid "Enter the link to your Discord profile page"
464
  msgstr "Введите ссылку на вашу страницу профиля Discord"
465
 
466
+ #: inc/php/settings.php:290
467
  msgid "Enter the link to your Yelp profile page"
468
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
469
 
470
+ #: inc/php/settings.php:297
471
  msgid "Enter the link to your VKontakte profile page"
472
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
473
 
474
+ #: inc/php/settings.php:304
475
  msgid "Enter the link to your Odnoklassniki profile page"
476
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
477
 
478
+ #: inc/php/settings.php:311
479
  msgid "Enter the link to your Telegram profile page"
480
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
481
 
482
+ #: inc/php/settings.php:318
483
  msgid "Enter the link to your GitHub profile page"
484
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
485
 
486
+ #: inc/php/settings.php:325
487
  msgid "Enter the link to your WordPress profile page"
488
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
489
 
490
+ #: inc/php/settings.php:332
491
  msgid "Enter the link to your CodePen profile page"
492
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
493
 
494
+ #: inc/php/settings.php:339
495
  msgid ""
496
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
497
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
500
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
501
  "профиля"
502
 
503
+ #: inc/php/settings.php:346
504
  msgid "Enter the link to your personal website"
505
  msgstr "Введите ссылку на ваш персональный сайт"
506
 
507
+ #: inc/php/settings.php:353
508
  msgid "Enter your email address with prefix <b>mailto:</b>"
509
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
510
 
511
+ #: inc/php/settings.php:360
512
  msgid "Enter the link to your RSS Feed"
513
  msgstr "Введите ссылку на ваш RSS поток"
514
 
515
+ #: inc/php/settings.php:365
516
  msgid ""
517
  "If you did not find the button you need, then tell me and I will gladly add "
518
  "it for you."
519
  msgstr ""
520
 
521
+ #: inc/php/settings.php:366 inc/php/settings.php:459
522
  msgid "Save Changes"
523
  msgstr "Сохранить изменения"
524
 
525
+ #: inc/php/settings.php:371
526
  msgid "Display options"
527
  msgstr "Настройки отображения"
528
 
529
+ #: inc/php/settings.php:373
530
  msgid "There you can configure this plugin."
531
  msgstr "Здесь вы можете настроить этот плагин."
532
 
533
+ #: inc/php/settings.php:377
534
  msgid "Show on Posts"
535
  msgstr "Показать в записях"
536
 
537
+ #: inc/php/settings.php:378
538
  msgid "Display toolbar below content on Posts."
539
  msgstr "Показывать кнопки под содержанием в записях"
540
 
541
+ #: inc/php/settings.php:383
542
  msgid "Show on Pages"
543
  msgstr "Показывать на страницах"
544
 
545
+ #: inc/php/settings.php:384
546
  msgid "Display toolbar below content on Pages."
547
  msgstr "Показывать кнопки под содержанием на страницах"
548
 
549
+ #: inc/php/settings.php:389
550
  msgid "Open in new tab"
551
  msgstr "Открыть в новой вкладке"
552
 
553
+ #: inc/php/settings.php:390
554
  msgid "Open link in a new tab/window."
555
  msgstr "Открыть ссылку в новом окне/вкладке"
556
 
557
+ #: inc/php/settings.php:395
558
  msgid "Tooltips"
559
  msgstr "Подсказки"
560
 
561
+ #: inc/php/settings.php:396
562
  msgid ""
563
  "Enable/disable a tooltips with name of the social media above every button."
564
  msgstr ""
565
  "Включить/отключить всплывающие подсказки с названием социальных медиа над "
566
  "каждой кнопкой."
567
 
568
+ #: inc/php/settings.php:401
569
  msgid "Icon size"
570
  msgstr "Размер иконки"
571
 
572
+ #: inc/php/settings.php:402
573
+ msgid ""
574
+ "Enter the size of icons (in px) in your social media follow buttons bar."
575
  msgstr ""
576
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
577
 
578
+ #: inc/php/settings.php:409
579
  msgid "Margin"
580
  msgstr "Отступ"
581
 
582
+ #: inc/php/settings.php:410
583
  msgid ""
584
+ "Enter the size of space (in px) between icons in your social media follow "
585
+ "buttons bar."
586
  msgstr ""
 
 
587
 
588
+ #: inc/php/settings.php:430
589
  msgid "Alignment"
590
  msgstr "Выравнивание"
591
 
592
+ #: inc/php/settings.php:436
593
  msgid "Left"
594
  msgstr "Слева"
595
 
596
+ #: inc/php/settings.php:440
597
  msgid "Center"
598
  msgstr "По центру"
599
 
600
+ #: inc/php/settings.php:444
601
  msgid "Right"
602
  msgstr "Справа"
603
 
604
+ #: inc/php/settings.php:451
605
  msgid "Caption"
606
  msgstr "Заголовок"
607
 
608
+ #: inc/php/settings.php:452
609
  msgid ""
610
+ "Enter the caption to your social media follow buttons bar. It will be "
611
+ "displays before the toolbar."
612
  msgstr ""
613
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
614
  "над панелью."
615
 
616
+ #: inc/php/settings.php:464
617
  msgid "Preview"
618
  msgstr "Предварительный просмотр"
619
 
620
+ #: inc/php/settings.php:466
621
  msgid "Click the \"Save Changes\" button to update this preview."
622
  msgstr ""
623
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
640
  msgid "http://www.arthurgareginyan.com"
641
  msgstr "http://www.arthurgareginyan.com"
642
 
643
+ #~ msgid "Enter the link to your diaspora profile page"
644
+ #~ msgstr "Введите ссылку на вашу страницу профиля diaspora"
645
+
646
+ #~ msgid ""
647
+ #~ "Enter the size of space (in px) between icons in your social media "
648
+ #~ "buttons toolbar."
649
+ #~ msgstr ""
650
+ #~ "Введите размер пространства (в пикселях) между иконками для вашей панели "
651
+ #~ "социальных медиа кнопок."
652
+
653
  #~ msgid ""
654
  #~ "You have several methods for display the social media follow buttons bar "
655
  #~ "(further just \"bar\") on your website. But first, fill in the required "
679
  #~ "Гарегинян</a>"
680
 
681
  #~ msgid ""
682
+ #~ "You have several methods for display the social media follow buttons bar "
683
  #~ "(further just \"toolbar\") on your website. But first, fill in the "
684
  #~ "required fields, then click \"Save Changes\"."
685
  #~ msgstr ""
760
  #~ "изменения”, чтобы обновить этот просмотр."
761
 
762
  #~ msgid ""
763
+ #~ "You have several methods for display the social media follow buttons bar "
764
  #~ "(further just \"toolbar\") on your website. But first, enter a links for "
765
  #~ "each buttons, then click \"Save Changes\"."
766
  #~ msgstr ""
810
  #~ msgstr "Артур “Берсеркр” Гарегинян"
811
 
812
  #~ msgid ""
813
+ #~ "This plugin allows you to easily add the social media follow buttons bar "
814
+ #~ "to any place of your web-site."
815
  #~ msgstr ""
816
  #~ "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
817
  #~ "место на вашем веб-сайте."
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: 2017-05-10 15:17+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -14,9 +14,8 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;"
18
- "esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;"
19
- "__ngettext_noop:1,2\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
@@ -71,7 +70,7 @@ msgstr ""
71
  msgid "Author"
72
  msgstr ""
73
 
74
- #: inc/php/page.php:44 inc/php/page.php:176 inc/php/settings.php:28 inc/php/settings.php:416
75
  msgid "Support"
76
  msgstr ""
77
 
@@ -81,8 +80,8 @@ msgstr ""
81
 
82
  #: inc/php/page.php:63
83
  msgid ""
84
- "To display the social media follow buttons bar on the front end of your website, simply follow "
85
- "these steps:"
86
  msgstr ""
87
 
88
  #: inc/php/page.php:65
@@ -90,8 +89,7 @@ msgid "Go to the \"Settings\" tab."
90
  msgstr ""
91
 
92
  #: inc/php/page.php:66
93
- msgid ""
94
- "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
95
  msgstr ""
96
 
97
  #: inc/php/page.php:67
@@ -120,8 +118,8 @@ msgstr ""
120
 
121
  #: inc/php/page.php:73
122
  msgid ""
123
- "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed "
124
- "place (where you want to display the buttons) in your theme files:"
125
  msgstr ""
126
 
127
  #: inc/php/page.php:76
@@ -132,7 +130,7 @@ msgstr ""
132
  msgid "It's that simple!"
133
  msgstr ""
134
 
135
- #: inc/php/page.php:78 inc/php/settings.php:319
136
  msgid "Note!"
137
  msgstr ""
138
 
@@ -161,9 +159,9 @@ msgstr ""
161
  msgid ""
162
  "Yes. But If your language is not available then you can make one. This plugin is ready for "
163
  "translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. "
164
- "Many of plugin users would be delighted if you shared your translation with the community. Just "
165
- "send the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the "
166
- "translation within the next plugin update."
167
  msgstr ""
168
 
169
  #: inc/php/page.php:119
@@ -190,13 +188,12 @@ msgstr ""
190
 
191
  #: inc/php/page.php:126
192
  msgid ""
193
- "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
194
- "use plugin settings page."
195
  msgstr ""
196
 
197
  #: inc/php/page.php:128
198
- msgid ""
199
- "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
200
  msgstr ""
201
 
202
  #: inc/php/page.php:129
@@ -211,9 +208,9 @@ msgstr ""
211
 
212
  #: inc/php/page.php:132
213
  msgid ""
214
- "As with every plugin, it's possible that things don't work. The most common reason for this is a "
215
- "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
216
- "etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your "
217
  "browser's cache may solve the problem."
218
  msgstr ""
219
 
@@ -241,8 +238,8 @@ msgstr ""
241
  #: inc/php/page.php:145
242
  #, php-format
243
  msgid ""
244
- "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
245
- "Thank you!"
246
  msgstr ""
247
 
248
  #: inc/php/page.php:151
@@ -262,20 +259,20 @@ msgstr ""
262
 
263
  #: inc/php/settings.php:23
264
  msgid ""
265
- "This plugin allows you to easily add the social media buttons toolbar to any place of your website."
266
  msgstr ""
267
 
268
- #: inc/php/settings.php:30 inc/php/settings.php:418
269
  msgid ""
270
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
271
  "costs and lets me spend more time building things for people like you to enjoy."
272
  msgstr ""
273
 
274
- #: inc/php/settings.php:31 inc/php/settings.php:419
275
  msgid "Donate with PayPal"
276
  msgstr ""
277
 
278
- #: inc/php/settings.php:32 inc/php/settings.php:420
279
  msgid "Thanks for your support!"
280
  msgstr ""
281
 
@@ -287,26 +284,26 @@ msgstr ""
287
  msgid "Got something to say? Need help?"
288
  msgstr ""
289
 
290
- #: inc/php/settings.php:62
291
  msgid "Buttons"
292
  msgstr ""
293
 
294
- #: inc/php/settings.php:64
295
  msgid ""
296
- "Just fill in the required fields to make a buttons. The social networking buttons will lead "
297
- "directly to your profile pages. If you don't want to use any of the following buttons, you can not "
298
- "fill them and then they do not appear."
299
  msgstr ""
300
 
301
- #: inc/php/settings.php:69
302
  msgid "Enter the link to your Facebook profile page"
303
  msgstr ""
304
 
305
- #: inc/php/settings.php:75
306
  msgid "Enter the link to your Twitter profile page"
307
  msgstr ""
308
 
309
- #: inc/php/settings.php:81
310
  msgid "Enter the link to your Instagram profile page"
311
  msgstr ""
312
 
@@ -314,254 +311,258 @@ msgstr ""
314
  msgid "Enter the link to your Google+ profile page"
315
  msgstr ""
316
 
317
- #: inc/php/settings.php:93
318
  msgid "Enter the link to your YouTube profile page"
319
  msgstr ""
320
 
321
- #: inc/php/settings.php:99
322
  msgid "Enter the link to your YouTube Gaming profile page"
323
  msgstr ""
324
 
325
- #: inc/php/settings.php:105
326
  msgid "Enter the link to your Vimeo profile page"
327
  msgstr ""
328
 
329
- #: inc/php/settings.php:111
330
  msgid "Enter the link to your Blogger profile page"
331
  msgstr ""
332
 
333
- #: inc/php/settings.php:117
334
  msgid "Enter the link to your LiveJournal profile page"
335
  msgstr ""
336
 
337
- #: inc/php/settings.php:123
338
  msgid "Enter the link to your Reddit profile page"
339
  msgstr ""
340
 
341
- #: inc/php/settings.php:129
342
  msgid "Enter the link to your LinkedIn profile page"
343
  msgstr ""
344
 
345
- #: inc/php/settings.php:135
346
- msgid "Enter the link to your diaspora profile page"
347
  msgstr ""
348
 
349
- #: inc/php/settings.php:141
350
  msgid "Enter the link to your XING profile page"
351
  msgstr ""
352
 
353
- #: inc/php/settings.php:147
354
  msgid "Enter the link to your Pinterest profile page"
355
  msgstr ""
356
 
357
- #: inc/php/settings.php:153
 
 
 
 
358
  msgid "Enter the link to your Tumblr profile page"
359
  msgstr ""
360
 
361
- #: inc/php/settings.php:159
362
  msgid "Enter the link to your Snapchat profile page"
363
  msgstr ""
364
 
365
- #: inc/php/settings.php:165
366
  msgid "Enter the link to your Twitch profile page"
367
  msgstr ""
368
 
369
- #: inc/php/settings.php:171
370
  msgid "Enter the link to your Patreon profile page"
371
  msgstr ""
372
 
373
- #: inc/php/settings.php:177
374
  msgid "Enter the link to your IMDb profile page"
375
  msgstr ""
376
 
377
- #: inc/php/settings.php:183
378
  msgid "Enter the link to your SoundCloud profile page"
379
  msgstr ""
380
 
381
- #: inc/php/settings.php:189
382
  msgid "Enter the link to your Spotify profile page"
383
  msgstr ""
384
 
385
- #: inc/php/settings.php:195
386
  msgid "Enter the link to your Bandcamp profile page"
387
  msgstr ""
388
 
389
- #: inc/php/settings.php:201
390
  msgid "Enter the link to your Dloky profile page"
391
  msgstr ""
392
 
393
- #: inc/php/settings.php:207
394
  msgid "Enter the link to your Amazon profile page"
395
  msgstr ""
396
 
397
- #: inc/php/settings.php:213
398
  msgid "Enter the link to your BookBub profile page"
399
  msgstr ""
400
 
401
- #: inc/php/settings.php:219
402
  msgid "Enter the link to your Goodreads profile page"
403
  msgstr ""
404
 
405
- #: inc/php/settings.php:225
406
  msgid "Enter the link to your MeetVibe profile page"
407
  msgstr ""
408
 
409
- #: inc/php/settings.php:231
410
  msgid "Enter the link to your Meetup profile page"
411
  msgstr ""
412
 
413
- #: inc/php/settings.php:237
414
  msgid "Enter the link to your Steam profile page"
415
  msgstr ""
416
 
417
- #: inc/php/settings.php:243
418
  msgid "Enter the link to your Beam profile page"
419
  msgstr ""
420
 
421
- #: inc/php/settings.php:249
422
  msgid "Enter the link to your Discord profile page"
423
  msgstr ""
424
 
425
- #: inc/php/settings.php:255
426
  msgid "Enter the link to your Yelp profile page"
427
  msgstr ""
428
 
429
- #: inc/php/settings.php:261
430
  msgid "Enter the link to your VKontakte profile page"
431
  msgstr ""
432
 
433
- #: inc/php/settings.php:267
434
  msgid "Enter the link to your Odnoklassniki profile page"
435
  msgstr ""
436
 
437
- #: inc/php/settings.php:273
438
  msgid "Enter the link to your Telegram profile page"
439
  msgstr ""
440
 
441
- #: inc/php/settings.php:279
442
  msgid "Enter the link to your GitHub profile page"
443
  msgstr ""
444
 
445
- #: inc/php/settings.php:285
446
  msgid "Enter the link to your WordPress profile page"
447
  msgstr ""
448
 
449
- #: inc/php/settings.php:291
450
  msgid "Enter the link to your CodePen profile page"
451
  msgstr ""
452
 
453
- #: inc/php/settings.php:297
454
  msgid ""
455
- "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?"
456
- "chat</b>, or <b>?userinfo</b> for view profile"
457
  msgstr ""
458
 
459
- #: inc/php/settings.php:303
460
  msgid "Enter the link to your personal website"
461
  msgstr ""
462
 
463
- #: inc/php/settings.php:309
464
  msgid "Enter your email address with prefix <b>mailto:</b>"
465
  msgstr ""
466
 
467
- #: inc/php/settings.php:315
468
  msgid "Enter the link to your RSS Feed"
469
  msgstr ""
470
 
471
- #: inc/php/settings.php:319
472
  msgid "If you did not find the button you need, then tell me and I will gladly add it for you."
473
  msgstr ""
474
 
475
- #: inc/php/settings.php:320 inc/php/settings.php:403
476
  msgid "Save Changes"
477
  msgstr ""
478
 
479
- #: inc/php/settings.php:325
480
  msgid "Display options"
481
  msgstr ""
482
 
483
- #: inc/php/settings.php:327
484
  msgid "There you can configure this plugin."
485
  msgstr ""
486
 
487
- #: inc/php/settings.php:331
488
  msgid "Show on Posts"
489
  msgstr ""
490
 
491
- #: inc/php/settings.php:332
492
  msgid "Display toolbar below content on Posts."
493
  msgstr ""
494
 
495
- #: inc/php/settings.php:336
496
  msgid "Show on Pages"
497
  msgstr ""
498
 
499
- #: inc/php/settings.php:337
500
  msgid "Display toolbar below content on Pages."
501
  msgstr ""
502
 
503
- #: inc/php/settings.php:341
504
  msgid "Open in new tab"
505
  msgstr ""
506
 
507
- #: inc/php/settings.php:342
508
  msgid "Open link in a new tab/window."
509
  msgstr ""
510
 
511
- #: inc/php/settings.php:346
512
  msgid "Tooltips"
513
  msgstr ""
514
 
515
- #: inc/php/settings.php:347
516
  msgid "Enable/disable a tooltips with name of the social media above every button."
517
  msgstr ""
518
 
519
- #: inc/php/settings.php:351
520
  msgid "Icon size"
521
  msgstr ""
522
 
523
- #: inc/php/settings.php:352
524
- msgid "Enter the size of icons (in px) in your social media buttons toolbar."
525
  msgstr ""
526
 
527
- #: inc/php/settings.php:358
528
  msgid "Margin"
529
  msgstr ""
530
 
531
- #: inc/php/settings.php:359
532
- msgid "Enter the size of space (in px) between icons in your social media buttons toolbar."
533
  msgstr ""
534
 
535
- #: inc/php/settings.php:375
536
  msgid "Alignment"
537
  msgstr ""
538
 
539
- #: inc/php/settings.php:381
540
  msgid "Left"
541
  msgstr ""
542
 
543
- #: inc/php/settings.php:385
544
  msgid "Center"
545
  msgstr ""
546
 
547
- #: inc/php/settings.php:389
548
  msgid "Right"
549
  msgstr ""
550
 
551
- #: inc/php/settings.php:396
552
  msgid "Caption"
553
  msgstr ""
554
 
555
- #: inc/php/settings.php:397
556
  msgid ""
557
- "Enter the caption to your social media buttons toolbar. It will be displays before the toolbar."
558
  msgstr ""
559
 
560
- #: inc/php/settings.php:408
561
  msgid "Preview"
562
  msgstr ""
563
 
564
- #: inc/php/settings.php:410
565
  msgid "Click the \"Save Changes\" button to update this preview."
566
  msgstr ""
567
 
@@ -571,8 +572,8 @@ msgstr ""
571
 
572
  #. Description of the plugin/theme
573
  msgid ""
574
- "Easily add the smart bar with social media follow buttons (not share, only link to your profiles) "
575
- "to any place of your WordPress website."
576
  msgstr ""
577
 
578
  #. Author of the plugin/theme
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
+ "POT-Creation-Date: 2017-05-17 17:50+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;"
18
+ "esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
70
  msgid "Author"
71
  msgstr ""
72
 
73
+ #: inc/php/page.php:44 inc/php/page.php:176 inc/php/settings.php:28 inc/php/settings.php:472
74
  msgid "Support"
75
  msgstr ""
76
 
80
 
81
  #: inc/php/page.php:63
82
  msgid ""
83
+ "To display the social media follow buttons bar on the front end of your website, simply follow these "
84
+ "steps:"
85
  msgstr ""
86
 
87
  #: inc/php/page.php:65
89
  msgstr ""
90
 
91
  #: inc/php/page.php:66
92
+ msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
 
93
  msgstr ""
94
 
95
  #: inc/php/page.php:67
118
 
119
  #: inc/php/page.php:73
120
  msgid ""
121
+ "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
122
+ "(where you want to display the buttons) in your theme files:"
123
  msgstr ""
124
 
125
  #: inc/php/page.php:76
130
  msgid "It's that simple!"
131
  msgstr ""
132
 
133
+ #: inc/php/page.php:78 inc/php/settings.php:365
134
  msgid "Note!"
135
  msgstr ""
136
 
159
  msgid ""
160
  "Yes. But If your language is not available then you can make one. This plugin is ready for "
161
  "translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. "
162
+ "Many of plugin users would be delighted if you shared your translation with the community. Just send "
163
+ "the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the translation "
164
+ "within the next plugin update."
165
  msgstr ""
166
 
167
  #: inc/php/page.php:119
188
 
189
  #: inc/php/page.php:126
190
  msgid ""
191
+ "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
192
+ "plugin settings page."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:128
196
+ msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
 
197
  msgstr ""
198
 
199
  #: inc/php/page.php:129
208
 
209
  #: inc/php/page.php:132
210
  msgid ""
211
+ "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
212
+ "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) "
213
+ "to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your "
214
  "browser's cache may solve the problem."
215
  msgstr ""
216
 
238
  #: inc/php/page.php:145
239
  #, php-format
240
  msgid ""
241
+ "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank "
242
+ "you!"
243
  msgstr ""
244
 
245
  #: inc/php/page.php:151
259
 
260
  #: inc/php/settings.php:23
261
  msgid ""
262
+ "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
263
  msgstr ""
264
 
265
+ #: inc/php/settings.php:30 inc/php/settings.php:474
266
  msgid ""
267
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
268
  "costs and lets me spend more time building things for people like you to enjoy."
269
  msgstr ""
270
 
271
+ #: inc/php/settings.php:31 inc/php/settings.php:475
272
  msgid "Donate with PayPal"
273
  msgstr ""
274
 
275
+ #: inc/php/settings.php:32 inc/php/settings.php:476
276
  msgid "Thanks for your support!"
277
  msgstr ""
278
 
284
  msgid "Got something to say? Need help?"
285
  msgstr ""
286
 
287
+ #: inc/php/settings.php:57
288
  msgid "Buttons"
289
  msgstr ""
290
 
291
+ #: inc/php/settings.php:59
292
  msgid ""
293
+ "Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
294
+ "to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
295
+ "and then they do not appear."
296
  msgstr ""
297
 
298
+ #: inc/php/settings.php:66
299
  msgid "Enter the link to your Facebook profile page"
300
  msgstr ""
301
 
302
+ #: inc/php/settings.php:73
303
  msgid "Enter the link to your Twitter profile page"
304
  msgstr ""
305
 
306
+ #: inc/php/settings.php:80
307
  msgid "Enter the link to your Instagram profile page"
308
  msgstr ""
309
 
311
  msgid "Enter the link to your Google+ profile page"
312
  msgstr ""
313
 
314
+ #: inc/php/settings.php:94
315
  msgid "Enter the link to your YouTube profile page"
316
  msgstr ""
317
 
318
+ #: inc/php/settings.php:101
319
  msgid "Enter the link to your YouTube Gaming profile page"
320
  msgstr ""
321
 
322
+ #: inc/php/settings.php:108
323
  msgid "Enter the link to your Vimeo profile page"
324
  msgstr ""
325
 
326
+ #: inc/php/settings.php:115
327
  msgid "Enter the link to your Blogger profile page"
328
  msgstr ""
329
 
330
+ #: inc/php/settings.php:122
331
  msgid "Enter the link to your LiveJournal profile page"
332
  msgstr ""
333
 
334
+ #: inc/php/settings.php:129
335
  msgid "Enter the link to your Reddit profile page"
336
  msgstr ""
337
 
338
+ #: inc/php/settings.php:136
339
  msgid "Enter the link to your LinkedIn profile page"
340
  msgstr ""
341
 
342
+ #: inc/php/settings.php:143
343
+ msgid "Enter the link to your Diaspora profile page"
344
  msgstr ""
345
 
346
+ #: inc/php/settings.php:150
347
  msgid "Enter the link to your XING profile page"
348
  msgstr ""
349
 
350
+ #: inc/php/settings.php:157
351
  msgid "Enter the link to your Pinterest profile page"
352
  msgstr ""
353
 
354
+ #: inc/php/settings.php:164
355
+ msgid "Enter the link to your Flickr profile page"
356
+ msgstr ""
357
+
358
+ #: inc/php/settings.php:171
359
  msgid "Enter the link to your Tumblr profile page"
360
  msgstr ""
361
 
362
+ #: inc/php/settings.php:178
363
  msgid "Enter the link to your Snapchat profile page"
364
  msgstr ""
365
 
366
+ #: inc/php/settings.php:185
367
  msgid "Enter the link to your Twitch profile page"
368
  msgstr ""
369
 
370
+ #: inc/php/settings.php:192
371
  msgid "Enter the link to your Patreon profile page"
372
  msgstr ""
373
 
374
+ #: inc/php/settings.php:199
375
  msgid "Enter the link to your IMDb profile page"
376
  msgstr ""
377
 
378
+ #: inc/php/settings.php:206
379
  msgid "Enter the link to your SoundCloud profile page"
380
  msgstr ""
381
 
382
+ #: inc/php/settings.php:213
383
  msgid "Enter the link to your Spotify profile page"
384
  msgstr ""
385
 
386
+ #: inc/php/settings.php:220
387
  msgid "Enter the link to your Bandcamp profile page"
388
  msgstr ""
389
 
390
+ #: inc/php/settings.php:227
391
  msgid "Enter the link to your Dloky profile page"
392
  msgstr ""
393
 
394
+ #: inc/php/settings.php:234
395
  msgid "Enter the link to your Amazon profile page"
396
  msgstr ""
397
 
398
+ #: inc/php/settings.php:241
399
  msgid "Enter the link to your BookBub profile page"
400
  msgstr ""
401
 
402
+ #: inc/php/settings.php:248
403
  msgid "Enter the link to your Goodreads profile page"
404
  msgstr ""
405
 
406
+ #: inc/php/settings.php:255
407
  msgid "Enter the link to your MeetVibe profile page"
408
  msgstr ""
409
 
410
+ #: inc/php/settings.php:262
411
  msgid "Enter the link to your Meetup profile page"
412
  msgstr ""
413
 
414
+ #: inc/php/settings.php:269
415
  msgid "Enter the link to your Steam profile page"
416
  msgstr ""
417
 
418
+ #: inc/php/settings.php:276
419
  msgid "Enter the link to your Beam profile page"
420
  msgstr ""
421
 
422
+ #: inc/php/settings.php:283
423
  msgid "Enter the link to your Discord profile page"
424
  msgstr ""
425
 
426
+ #: inc/php/settings.php:290
427
  msgid "Enter the link to your Yelp profile page"
428
  msgstr ""
429
 
430
+ #: inc/php/settings.php:297
431
  msgid "Enter the link to your VKontakte profile page"
432
  msgstr ""
433
 
434
+ #: inc/php/settings.php:304
435
  msgid "Enter the link to your Odnoklassniki profile page"
436
  msgstr ""
437
 
438
+ #: inc/php/settings.php:311
439
  msgid "Enter the link to your Telegram profile page"
440
  msgstr ""
441
 
442
+ #: inc/php/settings.php:318
443
  msgid "Enter the link to your GitHub profile page"
444
  msgstr ""
445
 
446
+ #: inc/php/settings.php:325
447
  msgid "Enter the link to your WordPress profile page"
448
  msgstr ""
449
 
450
+ #: inc/php/settings.php:332
451
  msgid "Enter the link to your CodePen profile page"
452
  msgstr ""
453
 
454
+ #: inc/php/settings.php:339
455
  msgid ""
456
+ "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
457
+ "b>, or <b>?userinfo</b> for view profile"
458
  msgstr ""
459
 
460
+ #: inc/php/settings.php:346
461
  msgid "Enter the link to your personal website"
462
  msgstr ""
463
 
464
+ #: inc/php/settings.php:353
465
  msgid "Enter your email address with prefix <b>mailto:</b>"
466
  msgstr ""
467
 
468
+ #: inc/php/settings.php:360
469
  msgid "Enter the link to your RSS Feed"
470
  msgstr ""
471
 
472
+ #: inc/php/settings.php:365
473
  msgid "If you did not find the button you need, then tell me and I will gladly add it for you."
474
  msgstr ""
475
 
476
+ #: inc/php/settings.php:366 inc/php/settings.php:459
477
  msgid "Save Changes"
478
  msgstr ""
479
 
480
+ #: inc/php/settings.php:371
481
  msgid "Display options"
482
  msgstr ""
483
 
484
+ #: inc/php/settings.php:373
485
  msgid "There you can configure this plugin."
486
  msgstr ""
487
 
488
+ #: inc/php/settings.php:377
489
  msgid "Show on Posts"
490
  msgstr ""
491
 
492
+ #: inc/php/settings.php:378
493
  msgid "Display toolbar below content on Posts."
494
  msgstr ""
495
 
496
+ #: inc/php/settings.php:383
497
  msgid "Show on Pages"
498
  msgstr ""
499
 
500
+ #: inc/php/settings.php:384
501
  msgid "Display toolbar below content on Pages."
502
  msgstr ""
503
 
504
+ #: inc/php/settings.php:389
505
  msgid "Open in new tab"
506
  msgstr ""
507
 
508
+ #: inc/php/settings.php:390
509
  msgid "Open link in a new tab/window."
510
  msgstr ""
511
 
512
+ #: inc/php/settings.php:395
513
  msgid "Tooltips"
514
  msgstr ""
515
 
516
+ #: inc/php/settings.php:396
517
  msgid "Enable/disable a tooltips with name of the social media above every button."
518
  msgstr ""
519
 
520
+ #: inc/php/settings.php:401
521
  msgid "Icon size"
522
  msgstr ""
523
 
524
+ #: inc/php/settings.php:402
525
+ msgid "Enter the size of icons (in px) in your social media follow buttons bar."
526
  msgstr ""
527
 
528
+ #: inc/php/settings.php:409
529
  msgid "Margin"
530
  msgstr ""
531
 
532
+ #: inc/php/settings.php:410
533
+ msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
534
  msgstr ""
535
 
536
+ #: inc/php/settings.php:430
537
  msgid "Alignment"
538
  msgstr ""
539
 
540
+ #: inc/php/settings.php:436
541
  msgid "Left"
542
  msgstr ""
543
 
544
+ #: inc/php/settings.php:440
545
  msgid "Center"
546
  msgstr ""
547
 
548
+ #: inc/php/settings.php:444
549
  msgid "Right"
550
  msgstr ""
551
 
552
+ #: inc/php/settings.php:451
553
  msgid "Caption"
554
  msgstr ""
555
 
556
+ #: inc/php/settings.php:452
557
  msgid ""
558
+ "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
559
  msgstr ""
560
 
561
+ #: inc/php/settings.php:464
562
  msgid "Preview"
563
  msgstr ""
564
 
565
+ #: inc/php/settings.php:466
566
  msgid "Click the \"Save Changes\" button to update this preview."
567
  msgstr ""
568
 
572
 
573
  #. Description of the plugin/theme
574
  msgid ""
575
+ "Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to "
576
+ "any place of your WordPress website."
577
  msgstr ""
578
 
579
  #. Author of the plugin/theme
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Social Media Follow Buttons Bar ===
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, diaspora, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, discord, yelp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, rss feed, rss, feed, tooltips, bootstrap tooltip,
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: 4.3.1
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -41,7 +41,8 @@ It give you finer control over buttons. You can configure they on plugins settin
41
 
42
  **Supported social media and links:**
43
 
44
- * Facebook
 
45
  * Twitter
46
  * Instagram
47
  * Google+
@@ -50,7 +51,7 @@ It give you finer control over buttons. You can configure they on plugins settin
50
  * Vimeo
51
  * Blogger
52
  * LinkedIn
53
- * diaspora
54
  * XING
55
  * LiveJournal
56
  * Reddit
@@ -187,7 +188,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
187
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
188
  * The Entrepreneur image that used on banner is from [Pixabay](https://pixabay.com/en/entrepreneur-start-start-up-career-696976/) and licensed under the [Creative Commons CC0](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
189
  * Icons [youtube.png, meetvibe.png, beam.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.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/).
190
- * Icons [facebook.png, google-plus.png, vimeo.png, blogger.png, linkedin.png, livejournal.png, pinterest.png, tumblr.png, soundcloud.png, spotify.png, yelp.png, vkontakte.png, odnoklassniki.png, telegram.png, github.png, skype.png, website.png, email.png, rss-feed.png](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/).
191
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
192
  * [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
193
 
@@ -199,11 +200,17 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
199
 
200
  == Changelog ==
201
 
 
 
 
 
 
 
202
  = 4.3.1 =
203
  * Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
204
 
205
  = 4.3 =
206
- * Added option for the diaspora social network.
207
 
208
  = 4.2 =
209
  * The design of the plugin settings page is completely redone.
1
  === Social Media Follow Buttons Bar ===
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, flickr, twitter, instagram, google plus, youtube, vimeo, blogger, livejournal, linkedIn, diaspora, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, discord, yelp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, rss feed, rss, feed, tooltips, bootstrap tooltip,
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: 4.4
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
41
 
42
  **Supported social media and links:**
43
 
44
+ * Facebook
45
+ * Flickr
46
  * Twitter
47
  * Instagram
48
  * Google+
51
  * Vimeo
52
  * Blogger
53
  * LinkedIn
54
+ * Diaspora
55
  * XING
56
  * LiveJournal
57
  * Reddit
188
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
189
  * The Entrepreneur image that used on banner is from [Pixabay](https://pixabay.com/en/entrepreneur-start-start-up-career-696976/) and licensed under the [Creative Commons CC0](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
190
  * Icons [youtube.png, meetvibe.png, beam.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.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/).
191
+ * Icons [facebook.png, flickr.png, google-plus.png, vimeo.png, blogger.png, linkedin.png, livejournal.png, pinterest.png, tumblr.png, soundcloud.png, spotify.png, yelp.png, vkontakte.png, odnoklassniki.png, telegram.png, github.png, skype.png, website.png, email.png, rss-feed.png](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/).
192
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
193
  * [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
194
 
200
 
201
  == Changelog ==
202
 
203
+ = 4.4 =
204
+ * Added option for the Flickr social network.
205
+ * Code formatting improved.
206
+ * Extra JS code for Bootstrap tooltips removed from the "admin.js" file.
207
+ * Added ID to every field on the settings page.
208
+
209
  = 4.3.1 =
210
  * Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
211
 
212
  = 4.3 =
213
+ * Added option for the Diaspora social network.
214
 
215
  = 4.2 =
216
  * The design of the plugin settings page is completely redone.
social-media-buttons-toolbar.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily add the smart bar with social media follow 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: 4.3.1
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
@@ -62,7 +62,7 @@ defined('SMEDIABT_BASE') or define('SMEDIABT_BASE', plugin_basename(__FILE__));
62
  defined('SMEDIABT_URL') or define('SMEDIABT_URL', plugin_dir_url(__FILE__));
63
  defined('SMEDIABT_PATH') or define('SMEDIABT_PATH', plugin_dir_path(__FILE__));
64
  defined('SMEDIABT_TEXT') or define('SMEDIABT_TEXT', 'social-media-buttons-toolbar');
65
- defined('SMEDIABT_VERSION') or define('SMEDIABT_VERSION', '4.3.1');
66
 
67
  /**
68
  * Load the plugin modules
5
  * Description: Easily add the smart bar with social media follow 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: 4.4
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
62
  defined('SMEDIABT_URL') or define('SMEDIABT_URL', plugin_dir_url(__FILE__));
63
  defined('SMEDIABT_PATH') or define('SMEDIABT_PATH', plugin_dir_path(__FILE__));
64
  defined('SMEDIABT_TEXT') or define('SMEDIABT_TEXT', 'social-media-buttons-toolbar');
65
+ defined('SMEDIABT_VERSION') or define('SMEDIABT_VERSION', '4.4');
66
 
67
  /**
68
  * Load the plugin modules