Social Media Follow Buttons Bar - Version 4.36

Version Description

  • The plugin became much faster due to the decrease in the number of requests to the database.
  • A new option is added to the plugin settings page, allowing the user to select the desired buttons.
  • Added a new control function '_control_checkbox()'. Added CSS code (in the file 'admin.css') for this control. Added JS code (in the file 'admin.js') for this control.
  • Added a new callback function '_get_media_pairs_media()' for getting a list of media buttons.
  • Added a new callback function '_get_media_pairs_additional()' for getting a list of additional media buttons.
  • The function '_control_link()' is updated.
  • The function '_tollbar()' is updated.
  • Added a new upgrade function 'upgrade_436()'.
  • The old upgrade function '_upgrade_4_10()' is removed due to uselessness.
  • Some texts are corrected.
Download this release

Release Info

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

Code changes from version 4.35 to 4.36

inc/css/admin.css CHANGED
@@ -533,5 +533,61 @@ td.help-text {
533
  margin: 0;
534
  }
535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
536
  /* SPECIFIC TO THIS PLUGIN
537
  -------------------------------------------------------------- */
533
  margin: 0;
534
  }
535
 
536
+ /* Control: Checkbox
537
+ -------------------------------------------------------------- */
538
+ .control-checkbox {
539
+ float: left;
540
+ margin: 15px 15px 0 0;
541
+ }
542
+ .control-checkbox label {
543
+ margin: 0;
544
+ width: 180px;
545
+ height: 38px;
546
+ border-radius: 3px;
547
+ border: 1px solid #d1d3d4;
548
+ overflow: hidden;
549
+ }
550
+ .control-checkbox input[type="checkbox"]:empty {
551
+ display: none;
552
+ }
553
+ .control-checkbox input[type="checkbox"]:empty ~ label {
554
+ position: relative;
555
+ line-height: 2.5em;
556
+ text-indent: 3.5em;
557
+ cursor: pointer;
558
+ -webkit-user-select: none;
559
+ -moz-user-select: none;
560
+ -ms-user-select: none;
561
+ user-select: none;
562
+ }
563
+ .control-checkbox input[type="checkbox"]:empty ~ label::before {
564
+ position: absolute;
565
+ display: block;
566
+ top: 0;
567
+ bottom: 0;
568
+ left: 0;
569
+ content: '';
570
+ width: 2.5em;
571
+ background: #d1d3d4;
572
+ border-radius: 3px 0 0 3px;
573
+ }
574
+ .control-checkbox input[type="checkbox"]:checked ~ label {
575
+ color: #373737;
576
+ }
577
+ .control-checkbox input[type="checkbox"]:hover:not(:checked) ~ label::before {
578
+ content: '\2714';
579
+ text-indent: 0.9em;
580
+ color: #989898;
581
+ }
582
+ .control-checkbox input[type="checkbox"]:checked ~ label::before {
583
+ content: '\2714';
584
+ text-indent: 0.9em;
585
+ color: #9ce2ae;
586
+ background-color: #4dcb6d;
587
+ }
588
+ .control-checkbox input[type="checkbox"]:focus ~ label::before {
589
+ box-shadow: 0 0 0 3px #999;
590
+ }
591
+
592
  /* SPECIFIC TO THIS PLUGIN
593
  -------------------------------------------------------------- */
inc/js/admin.js CHANGED
@@ -51,6 +51,12 @@ jQuery(document).ready(function($) {
51
  input.change();
52
  });
53
 
 
 
 
 
 
 
54
  // Live preview
55
  $('.new_tab').on('change', function() {
56
  var val = $(this).val();
51
  input.change();
52
  });
53
 
54
+ // Show/hide fields
55
+ $('#buttons .control-checkbox input').change(function() {
56
+ var this_class = $(this).parent('.control-checkbox').attr('id') + '-url';
57
+ $('#button-links .' + this_class).toggle();
58
+ });
59
+
60
  // Live preview
61
  $('.new_tab').on('change', function() {
62
  var val = $(this).val();
inc/php/controls.php CHANGED
@@ -138,46 +138,40 @@ function spacexchimp_p005_control_number( $name, $label, $help=null, $default=nu
138
  }
139
 
140
  /**
141
- * Generator of the media options for saving plugin settings to database
142
  */
143
  function spacexchimp_p005_control_link( $name, $label, $placeholder, $help, $link=null ) {
144
 
145
  // Read options from database and declare variables
146
  $options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
147
- $value = !empty( $options["media"][$name]["content"] ) ? esc_textarea( $options["media"][$name]["content"] ) : '';
 
148
 
149
  // Generate a part of table
150
  $link_out = !empty( $link ) ? "<a href='$link' target='_blank'>$label</a>" : "$label";
151
- $out = "<tr>
152
  <th scope='row'>
153
  $link_out
154
  </th>
155
  <td>
156
- <input
157
- type='hidden'
158
- name='" . SPACEXCHIMP_P005_SETTINGS . "_settings[media][$name][label]'
159
- value='$label'
160
- >
161
- <input
162
- type='hidden'
163
- name='" . SPACEXCHIMP_P005_SETTINGS . "_settings[media][$name][slug]'
164
- value='$name'
165
- >
166
  <input
167
  type='text'
168
- name='" . SPACEXCHIMP_P005_SETTINGS . "_settings[media][$name][content]'
169
  size='50'
170
  value='$value'
171
  placeholder='$placeholder'
172
  >
173
  </td>
 
 
 
 
 
 
174
  </tr>";
175
 
176
  // Print the generated part of table
177
  echo $out;
178
-
179
- // Print a help text
180
- spacexchimp_p005_control_help( $help );
181
  }
182
 
183
  /**
@@ -227,3 +221,47 @@ function spacexchimp_p005_control_choice( $name, $items, $label, $help, $default
227
  // Print a help text
228
  spacexchimp_p005_control_help( $help );
229
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  }
139
 
140
  /**
141
+ * Generator of the media-link options for saving plugin settings to database
142
  */
143
  function spacexchimp_p005_control_link( $name, $label, $placeholder, $help, $link=null ) {
144
 
145
  // Read options from database and declare variables
146
  $options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
147
+ $value = !empty( $options['buttons-link'][$name] ) ? esc_textarea( $options['buttons-link'][$name] ) : '';
148
+ $display = !empty( $options['buttons-selected'][$name] ) ? '' : 'none';
149
 
150
  // Generate a part of table
151
  $link_out = !empty( $link ) ? "<a href='$link' target='_blank'>$label</a>" : "$label";
152
+ $out = "<tr class='media-$name-url' style='display: $display;'>
153
  <th scope='row'>
154
  $link_out
155
  </th>
156
  <td>
 
 
 
 
 
 
 
 
 
 
157
  <input
158
  type='text'
159
+ name='" . SPACEXCHIMP_P005_SETTINGS . "_settings[buttons-link][$name]'
160
  size='50'
161
  value='$value'
162
  placeholder='$placeholder'
163
  >
164
  </td>
165
+ </tr>
166
+ <tr class='media-$name-url' style='display: $display;'>
167
+ <td></td>
168
+ <td class='help-text'>
169
+ $help
170
+ </td>
171
  </tr>";
172
 
173
  // Print the generated part of table
174
  echo $out;
 
 
 
175
  }
176
 
177
  /**
221
  // Print a help text
222
  spacexchimp_p005_control_help( $help );
223
  }
224
+
225
+ /**
226
+ * Generator of the checkboxes for saving plugin settings to database
227
+ */
228
+ function spacexchimp_p005_control_checkbox( $name, $items, $label, $help ) {
229
+
230
+ // Read options from database and declare variables
231
+ $options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
232
+ $list_item = '';
233
+
234
+ // Loop of elements LI
235
+ foreach ( $items as $item_key => $item_value ) {
236
+ $checked = !empty( $options[$name][$item_key] ) ? 'checked' : '';
237
+ $list_item .= "<li id='media-$item_key' class='control-checkbox'>
238
+ <input
239
+ type='checkbox'
240
+ id='" . SPACEXCHIMP_P005_SETTINGS . "_settings[$name][$item_key]'
241
+ name='" . SPACEXCHIMP_P005_SETTINGS . "_settings[$name][$item_key]'
242
+ $checked
243
+ >
244
+ <label for='" . SPACEXCHIMP_P005_SETTINGS . "_settings[$name][$item_key]'>
245
+ $item_value
246
+ </label>
247
+ </li>";
248
+ }
249
+
250
+ // Generate a part of table
251
+ $out = "<tr>
252
+ <th scope='row'>
253
+ $label
254
+ </th>
255
+ <td>
256
+ <ul class='control-list'>
257
+ $list_item
258
+ </ul>
259
+ </td>
260
+ </tr>";
261
+
262
+ // Print the generated part of table
263
+ echo $out;
264
+
265
+ // Print a help text
266
+ spacexchimp_p005_control_help( $help );
267
+ }
inc/php/functional.php CHANGED
@@ -12,7 +12,10 @@ function spacexchimp_p005_tollbar() {
12
 
13
  // Read options from database and declare variables
14
  $options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
15
- $media = !empty( $options['media'] ) ? $options['media'] : array();
 
 
 
16
 
17
  // Generate open window code
18
  $new_tab = !empty( $options['new_tab'] ) ? 'target="blank"' : '';
@@ -26,27 +29,25 @@ function spacexchimp_p005_tollbar() {
26
  // Generate buttons
27
  $toolbar_arr[] = $caption;
28
  $toolbar_arr[] = '<ul class="sxc-follow-buttons">';
29
- if ( !empty( $media ) ) {
30
- foreach ( $media as $name ) {
31
- $slug = !empty( $name['slug'] ) ? $name['slug'] : '';
32
- $label = !empty( $name['label'] ) ? $name['label'] : '';
33
- $content = !empty( $name['content'] ) ? $name['content'] : '';
34
- if ( !empty( $content ) ) {
35
- $icon = SPACEXCHIMP_P005_URL . "inc/img/social-media-icons/$slug.png";
36
- $toolbar_arr[] = '<li>
37
- <a
38
- href="' . $content . '"
39
- ' . $tooltips . '
40
- title="' . $label . '"
41
- ' . $new_tab . '
42
- >
43
- <img
44
- src="' . $icon . '"
45
- alt="' . $label . '"
46
- />
47
- </a>
48
- </li>';
49
- }
50
  }
51
  }
52
  $toolbar_arr[] = '</ul>';
@@ -69,9 +70,7 @@ function spacexchimp_p005_tollbar() {
69
  array_push( $toolbar_arr, $js );
70
  }
71
 
72
- // Return the content of array
73
  return $toolbar_arr;
74
-
75
  }
76
 
77
  /**
@@ -105,7 +104,6 @@ function spacexchimp_p005_addContent( $content ) {
105
  }
106
  }
107
 
108
- // Returns the content.
109
  return $content;
110
  }
111
  add_action( 'the_content', 'spacexchimp_p005_addContent' );
@@ -123,7 +121,58 @@ function spacexchimp_p005_get_items_all() {
123
  // Merge two arrays
124
  $array = array_merge( $array_1, $array_2 );
125
 
126
- // Return the content of array
127
  return $array;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  }
12
 
13
  // Read options from database and declare variables
14
  $options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
15
+ $selected = !empty( $options['buttons-selected'] ) ? $options['buttons-selected'] : array();
16
+
17
+ // Get the array with all buttons
18
+ $items_all = spacexchimp_p005_get_items_all();
19
 
20
  // Generate open window code
21
  $new_tab = !empty( $options['new_tab'] ) ? 'target="blank"' : '';
29
  // Generate buttons
30
  $toolbar_arr[] = $caption;
31
  $toolbar_arr[] = '<ul class="sxc-follow-buttons">';
32
+ foreach ( $items_all as $item ) {
33
+ $slug = !empty( $item['slug'] ) ? $item['slug'] : '';
34
+ $label = !empty( $item['label'] ) ? $item['label'] : '';
35
+ $content = !empty( $item['content'] ) ? $item['content'] : '';
36
+ if ( !empty( $selected[$slug] ) ) {
37
+ $icon = SPACEXCHIMP_P005_URL . "inc/img/social-media-icons/$slug.png";
38
+ $toolbar_arr[] = '<li>
39
+ <a
40
+ href="' . $content . '"
41
+ ' . $tooltips . '
42
+ title="' . $label . '"
43
+ ' . $new_tab . '
44
+ >
45
+ <img
46
+ src="' . $icon . '"
47
+ alt="' . $label . '"
48
+ />
49
+ </a>
50
+ </li>';
 
 
51
  }
52
  }
53
  $toolbar_arr[] = '</ul>';
70
  array_push( $toolbar_arr, $js );
71
  }
72
 
 
73
  return $toolbar_arr;
 
74
  }
75
 
76
  /**
104
  }
105
  }
106
 
 
107
  return $content;
108
  }
109
  add_action( 'the_content', 'spacexchimp_p005_addContent' );
121
  // Merge two arrays
122
  $array = array_merge( $array_1, $array_2 );
123
 
 
124
  return $array;
125
+ }
126
+
127
+ /**
128
+ * Callback for getting a list of media buttons
129
+ * @return array of pairs "nmae" => "Name"
130
+ */
131
+ function spacexchimp_p005_get_media_pairs_media() {
132
+
133
+ // Read all media options and declare variable
134
+ $items = spacexchimp_p005_get_items_media();
135
+
136
+ // Create an array with buttons name pairs 'name' => 'Name'
137
+ $array = array();
138
+ foreach ( $items as $item ) {
139
+ foreach ( $item as $item_key => $item_value ) {
140
+ if ( $item_key == 'slug' ) $slug = $item_value;
141
+ if ( $item_key == 'label' ) $label = $item_value;
142
+ }
143
+ $array[$slug] = $label;
144
+ }
145
+
146
+ // Rename some items
147
+ $array['youtube-gaming'] = ' YouTube G';
148
+
149
+ // Sort the media array in ascending order, according to the key name
150
+ if ( !empty($array) ) ksort($array);
151
+
152
+ return $array;
153
+ }
154
+
155
+ /**
156
+ * Callback for getting a list of additional media buttons
157
+ * @return array of pairs "nmae" => "Name"
158
+ */
159
+ function spacexchimp_p005_get_media_pairs_additional() {
160
 
161
+ // Read all media options and declare variable
162
+ $items = spacexchimp_p005_get_items_additional();
163
+
164
+ // Create an array with buttons name pairs 'name' => 'Name'
165
+ $array = array();
166
+ foreach ( $items as $item ) {
167
+ foreach ( $item as $item_key => $item_value ) {
168
+ if ( $item_key == 'slug' ) $slug = $item_value;
169
+ if ( $item_key == 'label' ) $label = $item_value;
170
+ }
171
+ $array[$slug] = $label;
172
+ }
173
+
174
+ // Rename some items
175
+ $array['website'] = 'Website';
176
+
177
+ return $array;
178
  }
inc/php/settings.php CHANGED
@@ -24,7 +24,31 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
24
  <div class="postbox" id="buttons">
25
  <h3 class="title"><?php _e( 'Buttons', $text ); ?></h3>
26
  <div class="inside">
27
- <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.', $text ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  <table class="form-table">
29
  <?php
30
  $items_all = spacexchimp_p005_get_items_all();
@@ -51,7 +75,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
51
  <div class="postbox" id="displayo-ptions">
52
  <h3 class="title"><?php _e( 'Display options', $text ); ?></h3>
53
  <div class="inside">
54
- <p class="note"><?php _e( 'There you can configure this plugin.', $text ); ?></p>
55
  <table class="form-table">
56
  <?php
57
  spacexchimp_p005_control_switch( 'show_posts',
24
  <div class="postbox" id="buttons">
25
  <h3 class="title"><?php _e( 'Buttons', $text ); ?></h3>
26
  <div class="inside">
27
+ <p class="note"><?php _e( 'Here you can select the buttons that you want to have in your social media follow buttons bar.', $text ); ?></p>
28
+ <table class="form-table">
29
+ <?php
30
+ $buttons_media = spacexchimp_p005_get_media_pairs_media();
31
+ spacexchimp_p005_control_checkbox( 'buttons-selected',
32
+ $buttons_media,
33
+ __( 'Social media buttons', $text ),
34
+ __( 'Mark the desired buttons to add it to your social media follow buttons bar.', $text )
35
+ );
36
+
37
+ $buttons_additional = spacexchimp_p005_get_media_pairs_additional();
38
+ spacexchimp_p005_control_checkbox( 'buttons-selected',
39
+ $buttons_additional,
40
+ __( 'Additional buttons', $text ),
41
+ __( 'Mark the desired buttons to add it to your social media follow buttons bar.', $text )
42
+ );
43
+ ?>
44
+ </table>
45
+ </div>
46
+ </div>
47
+
48
+ <div class="postbox" id="button-links">
49
+ <h3 class="title"><?php _e( 'Button links', $text ); ?></h3>
50
+ <div class="inside">
51
+ <p class="note"><?php _e( 'Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above.', $text ); ?></p>
52
  <table class="form-table">
53
  <?php
54
  $items_all = spacexchimp_p005_get_items_all();
75
  <div class="postbox" id="displayo-ptions">
76
  <h3 class="title"><?php _e( 'Display options', $text ); ?></h3>
77
  <div class="inside">
78
+ <p class="note"><?php _e( 'Here you can configure the display options.', $text ); ?></p>
79
  <table class="form-table">
80
  <?php
81
  spacexchimp_p005_control_switch( 'show_posts',
inc/php/upgrade.php CHANGED
@@ -5,37 +5,6 @@
5
  */
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
8
- /**
9
- * Upgrade plugin data in the database to version 4.10
10
- */
11
- function spacexchimp_p005_upgrade_4_10() {
12
-
13
- // Read plugin settings from the database
14
- $settings = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
15
- $array = !empty( $settings['media'] ) ? $settings['media'] : array();
16
- $old_key = 'beam';
17
- $new_key = 'mixer';
18
-
19
- // Exit if the upgrade is not needed or alreade done
20
- if ( ! array_key_exists( $old_key, $array ) ) {
21
- return;
22
- }
23
-
24
- // Replace the key name from "beam" to "mixer"
25
- $keys = array_keys( $array );
26
- $keys[ array_search( $old_key, $keys ) ] = $new_key;
27
- $settings['media'] = array_combine( $keys, $array );
28
-
29
- // Replace the value of the key "label" and "slug"
30
- $settings['media']['mixer']['label'] = 'Mixer';
31
- $settings['media']['mixer']['slug'] = 'mixer';
32
-
33
- // Update plugin setting in the database
34
- update_option( SPACEXCHIMP_P005_SETTINGS . '_settings', $settings );
35
-
36
- }
37
- spacexchimp_p005_upgrade_4_10();
38
-
39
  /**
40
  * Upgrade plugin data in the database to version 4.19
41
  */
@@ -85,3 +54,63 @@ function spacexchimp_p005_upgrade_4_19() {
85
 
86
  }
87
  spacexchimp_p005_upgrade_4_19();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  */
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  /**
9
  * Upgrade plugin data in the database to version 4.19
10
  */
54
 
55
  }
56
  spacexchimp_p005_upgrade_4_19();
57
+
58
+ /**
59
+ * Upgrade plugin data in the database to version 4.36
60
+ */
61
+ function spacexchimp_p005_upgrade_4_36() {
62
+
63
+ // Upgrade number
64
+ $upgrade_number_new = '0002';
65
+ $prefix = 'spacexchimp_p005';
66
+
67
+ ///////////////////////////////////////////////////////////////////
68
+ // SEEVICE INFO //
69
+ ///////////////////////////////////////////////////////////////////
70
+
71
+ // Read plugin service info from the database
72
+ $service_info = get_option( $prefix . '_service_info' );
73
+ $service_info = is_array( $service_info ) ? $service_info : array();
74
+ $upgrade_number_current = !empty( $service_info['upgrade'] ) ? $service_info['upgrade'] : '0000';
75
+
76
+ // Exit if the upgrade is not needed or alreade done
77
+ if ( $upgrade_number_current >= $upgrade_number_new ) return;
78
+
79
+ // Setting array with new data
80
+ $service_info['upgrade'] = $upgrade_number_new;
81
+
82
+ // Update service info in the database
83
+ update_option( $prefix . '_service_info', $service_info );
84
+
85
+ ///////////////////////////////////////////////////////////////////
86
+ // SETTINGS //
87
+ ///////////////////////////////////////////////////////////////////
88
+
89
+ // Read plugin settings from the database
90
+ $settings = get_option( $prefix . '_settings' );
91
+ $settings = is_array( $settings ) ? $settings : array();
92
+
93
+ // Exit if the upgrade is not needed or alreade done
94
+ if ( empty( $settings ) ) return;
95
+ if ( !array_key_exists( 'media', $settings ) ) return;
96
+
97
+ // Setting array with new data
98
+ $links = array();
99
+ $selected = array();
100
+ $media = $settings['media'];
101
+ $media = is_array( $media ) ? $media : array();
102
+ foreach ( $media as $key => $value ) {
103
+ if ( !empty( $value['content'] ) ) {
104
+ $links[$key] = $value['content'];
105
+ $selected[$key] = 'on';
106
+ }
107
+ }
108
+ $settings['buttons-link'] = $links;
109
+ $settings['buttons-selected'] = $selected;
110
+ unset( $settings['media'] );
111
+
112
+ // Update plugin setting in the database
113
+ update_option( $prefix . '_settings', $settings );
114
+
115
+ }
116
+ spacexchimp_p005_upgrade_4_36();
languages/social-media-buttons-toolbar-de_DE.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-de_DE.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
- "POT-Creation-Date: 2018-05-03 19:30+0300\n"
7
- "PO-Revision-Date: 2018-05-03 19:30+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -91,7 +91,7 @@ msgstr "Verwendung"
91
  msgid "F.A.Q."
92
  msgstr "F.A.Q."
93
 
94
- #: inc/php/page.php:46 inc/php/settings.php:114 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Support"
97
 
@@ -289,7 +289,7 @@ msgstr ""
289
  msgid "Support Me"
290
  msgstr "Unterstützen Sie mich"
291
 
292
- #: inc/php/page.php:204 inc/php/settings.php:121 inc/php/sidebar.php:37
293
  msgid "Donate with PayPal"
294
  msgstr "Spende mit PayPal"
295
 
@@ -314,7 +314,7 @@ msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kau
314
  msgid "Thank you for your support!"
315
  msgstr "Danke für Ihre Unterstützung!"
316
 
317
- #: inc/php/settings.php:21 inc/php/settings.php:103
318
  msgid "Save changes"
319
  msgstr "Änderungen speichern"
320
 
@@ -323,106 +323,136 @@ msgid "Buttons"
323
  msgstr "Buttons"
324
 
325
  #: inc/php/settings.php:27
326
- msgid "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."
327
- msgstr "Füllen die benötigten Felder aus, um einen Button zu erzeugen. Die Buttons des sozialen Netzwerkes leiten Sie direkt auf die Profilseite. Wenn Sie die Felder leer lassen, erscheinen diese sozialen Netzwerke auch nicht als Button."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
 
329
- #: inc/php/settings.php:52
330
  msgid "Display options"
331
  msgstr "Anzeigeoptionen"
332
 
333
- #: inc/php/settings.php:54
334
- msgid "There you can configure this plugin."
 
 
335
  msgstr "Hier können Sie das Plugin konfigurieren."
336
 
337
- #: inc/php/settings.php:58
338
  msgid "Show on Posts"
339
  msgstr "In Posts anzeigen"
340
 
341
- #: inc/php/settings.php:59
342
  msgid "Automatically display toolbar below content on Posts."
343
  msgstr "Die Toolbar automatisch unterhalb des Inhalts von Posts anzeigen."
344
 
345
- #: inc/php/settings.php:62
346
  msgid "Show on Pages"
347
  msgstr "Auf Seiten anzeigen"
348
 
349
- #: inc/php/settings.php:63
350
  msgid "Automatically display toolbar below content on Pages."
351
  msgstr "Die Toolbar automatisch unterhalb des Inhalts von Seiten anzeigen."
352
 
353
- #: inc/php/settings.php:66
354
  msgid "Open in new tab"
355
  msgstr "Öffne in neuem Tab"
356
 
357
- #: inc/php/settings.php:67
358
  msgid "Open link in a new tab/window."
359
  msgstr "Link in einem neuen Tab/Fenster öffnen."
360
 
361
- #: inc/php/settings.php:70
362
  msgid "Tooltips"
363
  msgstr "Tooltip"
364
 
365
- #: inc/php/settings.php:71
366
  msgid "Enable a tooltips with name of the social media above every button."
367
  msgstr "Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem Button."
368
 
369
- #: inc/php/settings.php:74
370
  msgid "Icon size"
371
  msgstr "Icon Grösse"
372
 
373
- #: inc/php/settings.php:75
374
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
375
  msgstr "Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
376
 
377
- #: inc/php/settings.php:79
378
  msgid "Margin"
379
  msgstr "Rand"
380
 
381
- #: inc/php/settings.php:80
382
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
383
  msgstr "Geben Sie die Grösse des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
384
 
385
- #: inc/php/settings.php:85
386
  msgid "Left"
387
  msgstr "Links"
388
 
389
- #: inc/php/settings.php:86
390
  msgid "Center"
391
  msgstr "Mittig"
392
 
393
- #: inc/php/settings.php:87
394
  msgid "Right"
395
  msgstr "Rechts"
396
 
397
- #: inc/php/settings.php:89
398
  msgid "Alignment"
399
  msgstr "Ausrichtung"
400
 
401
- #: inc/php/settings.php:90
402
  msgid "You can choose the alignment of the buttons bar."
403
  msgstr "Wählen Sie die Ausrichtung der buttons bar."
404
 
405
- #: inc/php/settings.php:94
406
  msgid "Caption"
407
  msgstr "Überschrift"
408
 
409
- #: inc/php/settings.php:95
410
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
411
  msgstr "Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. Diese wird vor der Toolbar angezeigt."
412
 
413
- #: inc/php/settings.php:106
414
  msgid "Live Preview"
415
  msgstr "Live Vorschau"
416
 
417
- #: inc/php/settings.php:108
418
  msgid "Click the \"Save changes\" button to update this preview."
419
  msgstr "Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
420
 
421
- #: inc/php/settings.php:116 inc/php/sidebar.php:32
422
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
423
  msgstr "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
424
 
425
- #: inc/php/settings.php:123 inc/php/sidebar.php:39
426
  msgid "Thanks for your support!"
427
  msgstr "Danke für Ihre Unterstützung!"
428
 
@@ -461,3 +491,6 @@ msgstr "Space X-Chimp"
461
  #. Author URI of the plugin/theme
462
  msgid "https://www.spacexchimp.com"
463
  msgstr "https://www.spacexchimp.com"
 
 
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-06-03 08:30+0300\n"
7
+ "PO-Revision-Date: 2018-06-03 08:30+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
91
  msgid "F.A.Q."
92
  msgstr "F.A.Q."
93
 
94
+ #: inc/php/page.php:46 inc/php/settings.php:138 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Support"
97
 
289
  msgid "Support Me"
290
  msgstr "Unterstützen Sie mich"
291
 
292
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:37
293
  msgid "Donate with PayPal"
294
  msgstr "Spende mit PayPal"
295
 
314
  msgid "Thank you for your support!"
315
  msgstr "Danke für Ihre Unterstützung!"
316
 
317
+ #: inc/php/settings.php:21 inc/php/settings.php:127
318
  msgid "Save changes"
319
  msgstr "Änderungen speichern"
320
 
323
  msgstr "Buttons"
324
 
325
  #: inc/php/settings.php:27
326
+ #, fuzzy
327
+ #| msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
328
+ msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
329
+ msgstr "Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
330
+
331
+ #: inc/php/settings.php:33
332
+ #, fuzzy
333
+ #| msgid "Social Media Follow Buttons"
334
+ msgid "Social media buttons"
335
+ msgstr "Social Media Follow Buttons"
336
+
337
+ #: inc/php/settings.php:34 inc/php/settings.php:41
338
+ #, fuzzy
339
+ #| msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
340
+ msgid "Mark the desired buttons to add it to your social media follow buttons bar."
341
+ msgstr "Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
342
+
343
+ #: inc/php/settings.php:40
344
+ msgid "Additional buttons"
345
+ msgstr ""
346
+
347
+ #: inc/php/settings.php:49
348
+ #, fuzzy
349
+ #| msgid "Buttons"
350
+ msgid "Button links"
351
+ msgstr "Buttons"
352
+
353
+ #: inc/php/settings.php:51
354
+ msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
355
+ msgstr ""
356
 
357
+ #: inc/php/settings.php:76
358
  msgid "Display options"
359
  msgstr "Anzeigeoptionen"
360
 
361
+ #: inc/php/settings.php:78
362
+ #, fuzzy
363
+ #| msgid "Here you can configure this plugin."
364
+ msgid "Here you can configure the display options."
365
  msgstr "Hier können Sie das Plugin konfigurieren."
366
 
367
+ #: inc/php/settings.php:82
368
  msgid "Show on Posts"
369
  msgstr "In Posts anzeigen"
370
 
371
+ #: inc/php/settings.php:83
372
  msgid "Automatically display toolbar below content on Posts."
373
  msgstr "Die Toolbar automatisch unterhalb des Inhalts von Posts anzeigen."
374
 
375
+ #: inc/php/settings.php:86
376
  msgid "Show on Pages"
377
  msgstr "Auf Seiten anzeigen"
378
 
379
+ #: inc/php/settings.php:87
380
  msgid "Automatically display toolbar below content on Pages."
381
  msgstr "Die Toolbar automatisch unterhalb des Inhalts von Seiten anzeigen."
382
 
383
+ #: inc/php/settings.php:90
384
  msgid "Open in new tab"
385
  msgstr "Öffne in neuem Tab"
386
 
387
+ #: inc/php/settings.php:91
388
  msgid "Open link in a new tab/window."
389
  msgstr "Link in einem neuen Tab/Fenster öffnen."
390
 
391
+ #: inc/php/settings.php:94
392
  msgid "Tooltips"
393
  msgstr "Tooltip"
394
 
395
+ #: inc/php/settings.php:95
396
  msgid "Enable a tooltips with name of the social media above every button."
397
  msgstr "Aktivieren Sie einen Tooltip mit dem Namen des sozialen Netzwerks über jedem Button."
398
 
399
+ #: inc/php/settings.php:98
400
  msgid "Icon size"
401
  msgstr "Icon Grösse"
402
 
403
+ #: inc/php/settings.php:99
404
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
405
  msgstr "Geben Sie die Grösse der Icons (in Pixeln) der \"social media follow buttons bar\" ein."
406
 
407
+ #: inc/php/settings.php:103
408
  msgid "Margin"
409
  msgstr "Rand"
410
 
411
+ #: inc/php/settings.php:104
412
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
413
  msgstr "Geben Sie die Grösse des Zwischenraums (in Pixeln) zwischen den Icons der \"social media follow buttons bar\" ein."
414
 
415
+ #: inc/php/settings.php:109
416
  msgid "Left"
417
  msgstr "Links"
418
 
419
+ #: inc/php/settings.php:110
420
  msgid "Center"
421
  msgstr "Mittig"
422
 
423
+ #: inc/php/settings.php:111
424
  msgid "Right"
425
  msgstr "Rechts"
426
 
427
+ #: inc/php/settings.php:113
428
  msgid "Alignment"
429
  msgstr "Ausrichtung"
430
 
431
+ #: inc/php/settings.php:114
432
  msgid "You can choose the alignment of the buttons bar."
433
  msgstr "Wählen Sie die Ausrichtung der buttons bar."
434
 
435
+ #: inc/php/settings.php:118
436
  msgid "Caption"
437
  msgstr "Überschrift"
438
 
439
+ #: inc/php/settings.php:119
440
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
441
  msgstr "Fügen Sie die Überschrift zu Ihrer \"social media follow buttons bar\" hinzu. Diese wird vor der Toolbar angezeigt."
442
 
443
+ #: inc/php/settings.php:130
444
  msgid "Live Preview"
445
  msgstr "Live Vorschau"
446
 
447
+ #: inc/php/settings.php:132
448
  msgid "Click the \"Save changes\" button to update this preview."
449
  msgstr "Klicken Sie den Button \"Änderungen speichern\" um die Vorschau zu aktualisieren."
450
 
451
+ #: inc/php/settings.php:140 inc/php/sidebar.php:32
452
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
453
  msgstr "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
454
 
455
+ #: inc/php/settings.php:147 inc/php/sidebar.php:39
456
  msgid "Thanks for your support!"
457
  msgstr "Danke für Ihre Unterstützung!"
458
 
491
  #. Author URI of the plugin/theme
492
  msgid "https://www.spacexchimp.com"
493
  msgstr "https://www.spacexchimp.com"
494
+
495
+ #~ msgid "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."
496
+ #~ msgstr "Füllen die benötigten Felder aus, um einen Button zu erzeugen. Die Buttons des sozialen Netzwerkes leiten Sie direkt auf die Profilseite. Wenn Sie die Felder leer lassen, erscheinen diese sozialen Netzwerke auch nicht als Button."
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: Social Media Follow Buttons Bar\n"
6
- "POT-Creation-Date: 2018-05-03 19:30+0300\n"
7
- "PO-Revision-Date: 2018-05-03 19:30+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -91,7 +91,7 @@ msgstr "Uso"
91
  msgid "F.A.Q."
92
  msgstr "Preguntas ?"
93
 
94
- #: inc/php/page.php:46 inc/php/settings.php:114 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Soporte"
97
 
@@ -289,7 +289,7 @@ msgstr "Puede hacer tu pregunta en %s esta página %s. Pero ten en cuenta que es
289
  msgid "Support Me"
290
  msgstr "Apoyarme!"
291
 
292
- #: inc/php/page.php:204 inc/php/settings.php:121 inc/php/sidebar.php:37
293
  msgid "Donate with PayPal"
294
  msgstr "Donar con PayPal"
295
 
@@ -314,7 +314,7 @@ msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
314
  msgid "Thank you for your support!"
315
  msgstr "¡Gracias por tu apoyo!"
316
 
317
- #: inc/php/settings.php:21 inc/php/settings.php:103
318
  msgid "Save changes"
319
  msgstr "Guardar las modificaciones"
320
 
@@ -323,106 +323,136 @@ msgid "Buttons"
323
  msgstr "Botones"
324
 
325
  #: inc/php/settings.php:27
326
- msgid "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."
327
- msgstr "Sólo llena los campos requeridos para hacer los botones. Los botones de cada red social conducirán directamente a tu página de perfil en esa red. Si no quieres usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
 
329
- #: inc/php/settings.php:52
330
  msgid "Display options"
331
  msgstr "Opciones de presentación"
332
 
333
- #: inc/php/settings.php:54
334
- msgid "There you can configure this plugin."
 
 
335
  msgstr "Aquí puedes configurar este complemento."
336
 
337
- #: inc/php/settings.php:58
338
  msgid "Show on Posts"
339
  msgstr "Mostrar en Entradas"
340
 
341
- #: inc/php/settings.php:59
342
  msgid "Automatically display toolbar below content on Posts."
343
  msgstr ""
344
 
345
- #: inc/php/settings.php:62
346
  msgid "Show on Pages"
347
  msgstr "Mostrar en Páginas"
348
 
349
- #: inc/php/settings.php:63
350
  msgid "Automatically display toolbar below content on Pages."
351
  msgstr ""
352
 
353
- #: inc/php/settings.php:66
354
  msgid "Open in new tab"
355
  msgstr "Abrir en una nueva pestaña"
356
 
357
- #: inc/php/settings.php:67
358
  msgid "Open link in a new tab/window."
359
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
360
 
361
- #: inc/php/settings.php:70
362
  msgid "Tooltips"
363
  msgstr ""
364
 
365
- #: inc/php/settings.php:71
366
  msgid "Enable a tooltips with name of the social media above every button."
367
  msgstr ""
368
 
369
- #: inc/php/settings.php:74
370
  msgid "Icon size"
371
  msgstr "Tamaño de ícono"
372
 
373
- #: inc/php/settings.php:75
374
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
375
  msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
376
 
377
- #: inc/php/settings.php:79
378
  msgid "Margin"
379
  msgstr "Margen"
380
 
381
- #: inc/php/settings.php:80
382
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
383
  msgstr "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media."
384
 
385
- #: inc/php/settings.php:85
386
  msgid "Left"
387
  msgstr "Izquierda"
388
 
389
- #: inc/php/settings.php:86
390
  msgid "Center"
391
  msgstr "Centro"
392
 
393
- #: inc/php/settings.php:87
394
  msgid "Right"
395
  msgstr "Derecha"
396
 
397
- #: inc/php/settings.php:89
398
  msgid "Alignment"
399
  msgstr "Alineación"
400
 
401
- #: inc/php/settings.php:90
402
  msgid "You can choose the alignment of the buttons bar."
403
  msgstr ""
404
 
405
- #: inc/php/settings.php:94
406
  msgid "Caption"
407
  msgstr "Leyenda"
408
 
409
- #: inc/php/settings.php:95
410
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
411
  msgstr "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de la barra de botones."
412
 
413
- #: inc/php/settings.php:106
414
  msgid "Live Preview"
415
  msgstr "Vista Previa"
416
 
417
- #: inc/php/settings.php:108
418
  msgid "Click the \"Save changes\" button to update this preview."
419
  msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
420
 
421
- #: inc/php/settings.php:116 inc/php/sidebar.php:32
422
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
423
  msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
424
 
425
- #: inc/php/settings.php:123 inc/php/sidebar.php:39
426
  msgid "Thanks for your support!"
427
  msgstr "¡Gracias por tu apoyo!"
428
 
@@ -461,3 +491,6 @@ msgstr "Space X-Chimp"
461
  #. Author URI of the plugin/theme
462
  msgid "https://www.spacexchimp.com"
463
  msgstr "https://www.spacexchimp.com"
 
 
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-06-03 08:30+0300\n"
7
+ "PO-Revision-Date: 2018-06-03 08:30+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
91
  msgid "F.A.Q."
92
  msgstr "Preguntas ?"
93
 
94
+ #: inc/php/page.php:46 inc/php/settings.php:138 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Soporte"
97
 
289
  msgid "Support Me"
290
  msgstr "Apoyarme!"
291
 
292
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:37
293
  msgid "Donate with PayPal"
294
  msgstr "Donar con PayPal"
295
 
314
  msgid "Thank you for your support!"
315
  msgstr "¡Gracias por tu apoyo!"
316
 
317
+ #: inc/php/settings.php:21 inc/php/settings.php:127
318
  msgid "Save changes"
319
  msgstr "Guardar las modificaciones"
320
 
323
  msgstr "Botones"
324
 
325
  #: inc/php/settings.php:27
326
+ #, fuzzy
327
+ #| msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
328
+ msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
329
+ msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
330
+
331
+ #: inc/php/settings.php:33
332
+ #, fuzzy
333
+ #| msgid "Social Media Follow Buttons"
334
+ msgid "Social media buttons"
335
+ msgstr "Social Media Follow Buttons"
336
+
337
+ #: inc/php/settings.php:34 inc/php/settings.php:41
338
+ #, fuzzy
339
+ #| msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
340
+ msgid "Mark the desired buttons to add it to your social media follow buttons bar."
341
+ msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
342
+
343
+ #: inc/php/settings.php:40
344
+ msgid "Additional buttons"
345
+ msgstr ""
346
+
347
+ #: inc/php/settings.php:49
348
+ #, fuzzy
349
+ #| msgid "Buttons"
350
+ msgid "Button links"
351
+ msgstr "Botones"
352
+
353
+ #: inc/php/settings.php:51
354
+ msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
355
+ msgstr ""
356
 
357
+ #: inc/php/settings.php:76
358
  msgid "Display options"
359
  msgstr "Opciones de presentación"
360
 
361
+ #: inc/php/settings.php:78
362
+ #, fuzzy
363
+ #| msgid "Here you can configure this plugin."
364
+ msgid "Here you can configure the display options."
365
  msgstr "Aquí puedes configurar este complemento."
366
 
367
+ #: inc/php/settings.php:82
368
  msgid "Show on Posts"
369
  msgstr "Mostrar en Entradas"
370
 
371
+ #: inc/php/settings.php:83
372
  msgid "Automatically display toolbar below content on Posts."
373
  msgstr ""
374
 
375
+ #: inc/php/settings.php:86
376
  msgid "Show on Pages"
377
  msgstr "Mostrar en Páginas"
378
 
379
+ #: inc/php/settings.php:87
380
  msgid "Automatically display toolbar below content on Pages."
381
  msgstr ""
382
 
383
+ #: inc/php/settings.php:90
384
  msgid "Open in new tab"
385
  msgstr "Abrir en una nueva pestaña"
386
 
387
+ #: inc/php/settings.php:91
388
  msgid "Open link in a new tab/window."
389
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
390
 
391
+ #: inc/php/settings.php:94
392
  msgid "Tooltips"
393
  msgstr ""
394
 
395
+ #: inc/php/settings.php:95
396
  msgid "Enable a tooltips with name of the social media above every button."
397
  msgstr ""
398
 
399
+ #: inc/php/settings.php:98
400
  msgid "Icon size"
401
  msgstr "Tamaño de ícono"
402
 
403
+ #: inc/php/settings.php:99
404
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
405
  msgstr "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
406
 
407
+ #: inc/php/settings.php:103
408
  msgid "Margin"
409
  msgstr "Margen"
410
 
411
+ #: inc/php/settings.php:104
412
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
413
  msgstr "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media."
414
 
415
+ #: inc/php/settings.php:109
416
  msgid "Left"
417
  msgstr "Izquierda"
418
 
419
+ #: inc/php/settings.php:110
420
  msgid "Center"
421
  msgstr "Centro"
422
 
423
+ #: inc/php/settings.php:111
424
  msgid "Right"
425
  msgstr "Derecha"
426
 
427
+ #: inc/php/settings.php:113
428
  msgid "Alignment"
429
  msgstr "Alineación"
430
 
431
+ #: inc/php/settings.php:114
432
  msgid "You can choose the alignment of the buttons bar."
433
  msgstr ""
434
 
435
+ #: inc/php/settings.php:118
436
  msgid "Caption"
437
  msgstr "Leyenda"
438
 
439
+ #: inc/php/settings.php:119
440
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
441
  msgstr "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de la barra de botones."
442
 
443
+ #: inc/php/settings.php:130
444
  msgid "Live Preview"
445
  msgstr "Vista Previa"
446
 
447
+ #: inc/php/settings.php:132
448
  msgid "Click the \"Save changes\" button to update this preview."
449
  msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
450
 
451
+ #: inc/php/settings.php:140 inc/php/sidebar.php:32
452
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
453
  msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
454
 
455
+ #: inc/php/settings.php:147 inc/php/sidebar.php:39
456
  msgid "Thanks for your support!"
457
  msgstr "¡Gracias por tu apoyo!"
458
 
491
  #. Author URI of the plugin/theme
492
  msgid "https://www.spacexchimp.com"
493
  msgstr "https://www.spacexchimp.com"
494
+
495
+ #~ msgid "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."
496
+ #~ msgstr "Sólo llena los campos requeridos para hacer los botones. Los botones de cada red social conducirán directamente a tu página de perfil en esa red. Si no quieres usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
languages/social-media-buttons-toolbar-ru_RU.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-ru_RU.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
- "POT-Creation-Date: 2018-05-03 19:31+0300\n"
7
- "PO-Revision-Date: 2018-05-03 19:31+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -91,7 +91,7 @@ msgstr "Применение"
91
  msgid "F.A.Q."
92
  msgstr "F.A.Q."
93
 
94
- #: inc/php/page.php:46 inc/php/settings.php:114 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Поддержка"
97
 
@@ -289,7 +289,7 @@ msgstr "Вы можете задать ваш вопрос на %s этой ст
289
  msgid "Support Me"
290
  msgstr "Поддержать меня"
291
 
292
- #: inc/php/page.php:204 inc/php/settings.php:121 inc/php/sidebar.php:37
293
  msgid "Donate with PayPal"
294
  msgstr "Пожертвовать через PayPal"
295
 
@@ -314,7 +314,7 @@ msgstr "Если вы цените мою работу, то вы можете
314
  msgid "Thank you for your support!"
315
  msgstr "Спасибо за вашу поддержку!"
316
 
317
- #: inc/php/settings.php:21 inc/php/settings.php:103
318
  msgid "Save changes"
319
  msgstr "Сохранить изменения"
320
 
@@ -323,106 +323,136 @@ msgid "Buttons"
323
  msgstr "Кнопки"
324
 
325
  #: inc/php/settings.php:27
326
- msgid "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."
327
- msgstr "Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных медиа будут вести непосредственно к вашим страницам профиля. Если вы не хотите использовать любой из следующих кнопок, то вы можете не заполнить их и тогда они не появятся."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
 
329
- #: inc/php/settings.php:52
330
  msgid "Display options"
331
  msgstr "Настройки отображения"
332
 
333
- #: inc/php/settings.php:54
334
- msgid "There you can configure this plugin."
 
 
335
  msgstr "Здесь вы можете настроить этот плагин."
336
 
337
- #: inc/php/settings.php:58
338
  msgid "Show on Posts"
339
  msgstr "Показывать в записях"
340
 
341
- #: inc/php/settings.php:59
342
  msgid "Automatically display toolbar below content on Posts."
343
  msgstr "Автоматически отображать панель инструментов под содержимым сообщений."
344
 
345
- #: inc/php/settings.php:62
346
  msgid "Show on Pages"
347
  msgstr "Показывать на страницах"
348
 
349
- #: inc/php/settings.php:63
350
  msgid "Automatically display toolbar below content on Pages."
351
  msgstr "Автоматически отображать панель инструментов ниже содержимого на страницах."
352
 
353
- #: inc/php/settings.php:66
354
  msgid "Open in new tab"
355
  msgstr "Открыть в новой вкладке"
356
 
357
- #: inc/php/settings.php:67
358
  msgid "Open link in a new tab/window."
359
  msgstr "Открыть ссылку в новом окне/вкладке."
360
 
361
- #: inc/php/settings.php:70
362
  msgid "Tooltips"
363
  msgstr "Подсказки"
364
 
365
- #: inc/php/settings.php:71
366
  msgid "Enable a tooltips with name of the social media above every button."
367
  msgstr "Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
368
 
369
- #: inc/php/settings.php:74
370
  msgid "Icon size"
371
  msgstr "Размер иконки"
372
 
373
- #: inc/php/settings.php:75
374
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
375
  msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
376
 
377
- #: inc/php/settings.php:79
378
  msgid "Margin"
379
  msgstr "Отступ"
380
 
381
- #: inc/php/settings.php:80
382
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
383
  msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
384
 
385
- #: inc/php/settings.php:85
386
  msgid "Left"
387
  msgstr "Слева"
388
 
389
- #: inc/php/settings.php:86
390
  msgid "Center"
391
  msgstr "По центру"
392
 
393
- #: inc/php/settings.php:87
394
  msgid "Right"
395
  msgstr "Справа"
396
 
397
- #: inc/php/settings.php:89
398
  msgid "Alignment"
399
  msgstr "Выравнивание"
400
 
401
- #: inc/php/settings.php:90
402
  msgid "You can choose the alignment of the buttons bar."
403
  msgstr "Вы можете выбрать выравнивание кнопок социальных медиа."
404
 
405
- #: inc/php/settings.php:94
406
  msgid "Caption"
407
  msgstr "Заголовок"
408
 
409
- #: inc/php/settings.php:95
410
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
411
  msgstr "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает над панелью."
412
 
413
- #: inc/php/settings.php:106
414
  msgid "Live Preview"
415
  msgstr "Просмотр в реальном времени"
416
 
417
- #: inc/php/settings.php:108
418
  msgid "Click the \"Save changes\" button to update this preview."
419
  msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
420
 
421
- #: inc/php/settings.php:116 inc/php/sidebar.php:32
422
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
423
  msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
424
 
425
- #: inc/php/settings.php:123 inc/php/sidebar.php:39
426
  msgid "Thanks for your support!"
427
  msgstr "Спасибо за вашу поддержку!"
428
 
@@ -461,3 +491,6 @@ msgstr "Space X-Chimp"
461
  #. Author URI of the plugin/theme
462
  msgid "https://www.spacexchimp.com"
463
  msgstr "https://www.spacexchimp.com"
 
 
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-06-03 08:30+0300\n"
7
+ "PO-Revision-Date: 2018-06-03 08:30+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
91
  msgid "F.A.Q."
92
  msgstr "F.A.Q."
93
 
94
+ #: inc/php/page.php:46 inc/php/settings.php:138 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Поддержка"
97
 
289
  msgid "Support Me"
290
  msgstr "Поддержать меня"
291
 
292
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:37
293
  msgid "Donate with PayPal"
294
  msgstr "Пожертвовать через PayPal"
295
 
314
  msgid "Thank you for your support!"
315
  msgstr "Спасибо за вашу поддержку!"
316
 
317
+ #: inc/php/settings.php:21 inc/php/settings.php:127
318
  msgid "Save changes"
319
  msgstr "Сохранить изменения"
320
 
323
  msgstr "Кнопки"
324
 
325
  #: inc/php/settings.php:27
326
+ #, fuzzy
327
+ #| msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
328
+ msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
329
+ msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
330
+
331
+ #: inc/php/settings.php:33
332
+ #, fuzzy
333
+ #| msgid "Social Media Follow Buttons"
334
+ msgid "Social media buttons"
335
+ msgstr "Социальные Медиа Кнопки Следования"
336
+
337
+ #: inc/php/settings.php:34 inc/php/settings.php:41
338
+ #, fuzzy
339
+ #| msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
340
+ msgid "Mark the desired buttons to add it to your social media follow buttons bar."
341
+ msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
342
+
343
+ #: inc/php/settings.php:40
344
+ msgid "Additional buttons"
345
+ msgstr ""
346
+
347
+ #: inc/php/settings.php:49
348
+ #, fuzzy
349
+ #| msgid "Buttons"
350
+ msgid "Button links"
351
+ msgstr "Кнопки"
352
+
353
+ #: inc/php/settings.php:51
354
+ msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
355
+ msgstr ""
356
 
357
+ #: inc/php/settings.php:76
358
  msgid "Display options"
359
  msgstr "Настройки отображения"
360
 
361
+ #: inc/php/settings.php:78
362
+ #, fuzzy
363
+ #| msgid "Here you can configure this plugin."
364
+ msgid "Here you can configure the display options."
365
  msgstr "Здесь вы можете настроить этот плагин."
366
 
367
+ #: inc/php/settings.php:82
368
  msgid "Show on Posts"
369
  msgstr "Показывать в записях"
370
 
371
+ #: inc/php/settings.php:83
372
  msgid "Automatically display toolbar below content on Posts."
373
  msgstr "Автоматически отображать панель инструментов под содержимым сообщений."
374
 
375
+ #: inc/php/settings.php:86
376
  msgid "Show on Pages"
377
  msgstr "Показывать на страницах"
378
 
379
+ #: inc/php/settings.php:87
380
  msgid "Automatically display toolbar below content on Pages."
381
  msgstr "Автоматически отображать панель инструментов ниже содержимого на страницах."
382
 
383
+ #: inc/php/settings.php:90
384
  msgid "Open in new tab"
385
  msgstr "Открыть в новой вкладке"
386
 
387
+ #: inc/php/settings.php:91
388
  msgid "Open link in a new tab/window."
389
  msgstr "Открыть ссылку в новом окне/вкладке."
390
 
391
+ #: inc/php/settings.php:94
392
  msgid "Tooltips"
393
  msgstr "Подсказки"
394
 
395
+ #: inc/php/settings.php:95
396
  msgid "Enable a tooltips with name of the social media above every button."
397
  msgstr "Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
398
 
399
+ #: inc/php/settings.php:98
400
  msgid "Icon size"
401
  msgstr "Размер иконки"
402
 
403
+ #: inc/php/settings.php:99
404
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
405
  msgstr "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
406
 
407
+ #: inc/php/settings.php:103
408
  msgid "Margin"
409
  msgstr "Отступ"
410
 
411
+ #: inc/php/settings.php:104
412
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
413
  msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
414
 
415
+ #: inc/php/settings.php:109
416
  msgid "Left"
417
  msgstr "Слева"
418
 
419
+ #: inc/php/settings.php:110
420
  msgid "Center"
421
  msgstr "По центру"
422
 
423
+ #: inc/php/settings.php:111
424
  msgid "Right"
425
  msgstr "Справа"
426
 
427
+ #: inc/php/settings.php:113
428
  msgid "Alignment"
429
  msgstr "Выравнивание"
430
 
431
+ #: inc/php/settings.php:114
432
  msgid "You can choose the alignment of the buttons bar."
433
  msgstr "Вы можете выбрать выравнивание кнопок социальных медиа."
434
 
435
+ #: inc/php/settings.php:118
436
  msgid "Caption"
437
  msgstr "Заголовок"
438
 
439
+ #: inc/php/settings.php:119
440
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
441
  msgstr "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает над панелью."
442
 
443
+ #: inc/php/settings.php:130
444
  msgid "Live Preview"
445
  msgstr "Просмотр в реальном времени"
446
 
447
+ #: inc/php/settings.php:132
448
  msgid "Click the \"Save changes\" button to update this preview."
449
  msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
450
 
451
+ #: inc/php/settings.php:140 inc/php/sidebar.php:32
452
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
453
  msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
454
 
455
+ #: inc/php/settings.php:147 inc/php/sidebar.php:39
456
  msgid "Thanks for your support!"
457
  msgstr "Спасибо за вашу поддержку!"
458
 
491
  #. Author URI of the plugin/theme
492
  msgid "https://www.spacexchimp.com"
493
  msgstr "https://www.spacexchimp.com"
494
+
495
+ #~ msgid "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."
496
+ #~ msgstr "Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных медиа будут вести непосредственно к вашим страницам профиля. Если вы не хотите использовать любой из следующих кнопок, то вы можете не заполнить их и тогда они не появятся."
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 Follow Buttons Bar\n"
6
- "POT-Creation-Date: 2018-05-03 19:31+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -89,7 +89,7 @@ msgstr ""
89
  msgid "F.A.Q."
90
  msgstr ""
91
 
92
- #: inc/php/page.php:46 inc/php/settings.php:114 inc/php/sidebar.php:30
93
  msgid "Support"
94
  msgstr ""
95
 
@@ -287,7 +287,7 @@ msgstr ""
287
  msgid "Support Me"
288
  msgstr ""
289
 
290
- #: inc/php/page.php:204 inc/php/settings.php:121 inc/php/sidebar.php:37
291
  msgid "Donate with PayPal"
292
  msgstr ""
293
 
@@ -312,7 +312,7 @@ msgstr ""
312
  msgid "Thank you for your support!"
313
  msgstr ""
314
 
315
- #: inc/php/settings.php:21 inc/php/settings.php:103
316
  msgid "Save changes"
317
  msgstr ""
318
 
@@ -321,106 +321,126 @@ msgid "Buttons"
321
  msgstr ""
322
 
323
  #: inc/php/settings.php:27
324
- msgid "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."
325
  msgstr ""
326
 
327
- #: inc/php/settings.php:52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  msgid "Display options"
329
  msgstr ""
330
 
331
- #: inc/php/settings.php:54
332
- msgid "There you can configure this plugin."
333
  msgstr ""
334
 
335
- #: inc/php/settings.php:58
336
  msgid "Show on Posts"
337
  msgstr ""
338
 
339
- #: inc/php/settings.php:59
340
  msgid "Automatically display toolbar below content on Posts."
341
  msgstr ""
342
 
343
- #: inc/php/settings.php:62
344
  msgid "Show on Pages"
345
  msgstr ""
346
 
347
- #: inc/php/settings.php:63
348
  msgid "Automatically display toolbar below content on Pages."
349
  msgstr ""
350
 
351
- #: inc/php/settings.php:66
352
  msgid "Open in new tab"
353
  msgstr ""
354
 
355
- #: inc/php/settings.php:67
356
  msgid "Open link in a new tab/window."
357
  msgstr ""
358
 
359
- #: inc/php/settings.php:70
360
  msgid "Tooltips"
361
  msgstr ""
362
 
363
- #: inc/php/settings.php:71
364
  msgid "Enable a tooltips with name of the social media above every button."
365
  msgstr ""
366
 
367
- #: inc/php/settings.php:74
368
  msgid "Icon size"
369
  msgstr ""
370
 
371
- #: inc/php/settings.php:75
372
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
373
  msgstr ""
374
 
375
- #: inc/php/settings.php:79
376
  msgid "Margin"
377
  msgstr ""
378
 
379
- #: inc/php/settings.php:80
380
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
381
  msgstr ""
382
 
383
- #: inc/php/settings.php:85
384
  msgid "Left"
385
  msgstr ""
386
 
387
- #: inc/php/settings.php:86
388
  msgid "Center"
389
  msgstr ""
390
 
391
- #: inc/php/settings.php:87
392
  msgid "Right"
393
  msgstr ""
394
 
395
- #: inc/php/settings.php:89
396
  msgid "Alignment"
397
  msgstr ""
398
 
399
- #: inc/php/settings.php:90
400
  msgid "You can choose the alignment of the buttons bar."
401
  msgstr ""
402
 
403
- #: inc/php/settings.php:94
404
  msgid "Caption"
405
  msgstr ""
406
 
407
- #: inc/php/settings.php:95
408
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
409
  msgstr ""
410
 
411
- #: inc/php/settings.php:106
412
  msgid "Live Preview"
413
  msgstr ""
414
 
415
- #: inc/php/settings.php:108
416
  msgid "Click the \"Save changes\" button to update this preview."
417
  msgstr ""
418
 
419
- #: inc/php/settings.php:116 inc/php/sidebar.php:32
420
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
421
  msgstr ""
422
 
423
- #: inc/php/settings.php:123 inc/php/sidebar.php:39
424
  msgid "Thanks for your support!"
425
  msgstr ""
426
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-06-03 08:30+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
89
  msgid "F.A.Q."
90
  msgstr ""
91
 
92
+ #: inc/php/page.php:46 inc/php/settings.php:138 inc/php/sidebar.php:30
93
  msgid "Support"
94
  msgstr ""
95
 
287
  msgid "Support Me"
288
  msgstr ""
289
 
290
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:37
291
  msgid "Donate with PayPal"
292
  msgstr ""
293
 
312
  msgid "Thank you for your support!"
313
  msgstr ""
314
 
315
+ #: inc/php/settings.php:21 inc/php/settings.php:127
316
  msgid "Save changes"
317
  msgstr ""
318
 
321
  msgstr ""
322
 
323
  #: inc/php/settings.php:27
324
+ msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
325
  msgstr ""
326
 
327
+ #: inc/php/settings.php:33
328
+ msgid "Social media buttons"
329
+ msgstr ""
330
+
331
+ #: inc/php/settings.php:34 inc/php/settings.php:41
332
+ msgid "Mark the desired buttons to add it to your social media follow buttons bar."
333
+ msgstr ""
334
+
335
+ #: inc/php/settings.php:40
336
+ msgid "Additional buttons"
337
+ msgstr ""
338
+
339
+ #: inc/php/settings.php:49
340
+ msgid "Button links"
341
+ msgstr ""
342
+
343
+ #: inc/php/settings.php:51
344
+ msgid "Fill in the fields below to add links that will lead directly to your profile pages in social media that you selected in section above."
345
+ msgstr ""
346
+
347
+ #: inc/php/settings.php:76
348
  msgid "Display options"
349
  msgstr ""
350
 
351
+ #: inc/php/settings.php:78
352
+ msgid "Here you can configure the display options."
353
  msgstr ""
354
 
355
+ #: inc/php/settings.php:82
356
  msgid "Show on Posts"
357
  msgstr ""
358
 
359
+ #: inc/php/settings.php:83
360
  msgid "Automatically display toolbar below content on Posts."
361
  msgstr ""
362
 
363
+ #: inc/php/settings.php:86
364
  msgid "Show on Pages"
365
  msgstr ""
366
 
367
+ #: inc/php/settings.php:87
368
  msgid "Automatically display toolbar below content on Pages."
369
  msgstr ""
370
 
371
+ #: inc/php/settings.php:90
372
  msgid "Open in new tab"
373
  msgstr ""
374
 
375
+ #: inc/php/settings.php:91
376
  msgid "Open link in a new tab/window."
377
  msgstr ""
378
 
379
+ #: inc/php/settings.php:94
380
  msgid "Tooltips"
381
  msgstr ""
382
 
383
+ #: inc/php/settings.php:95
384
  msgid "Enable a tooltips with name of the social media above every button."
385
  msgstr ""
386
 
387
+ #: inc/php/settings.php:98
388
  msgid "Icon size"
389
  msgstr ""
390
 
391
+ #: inc/php/settings.php:99
392
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
393
  msgstr ""
394
 
395
+ #: inc/php/settings.php:103
396
  msgid "Margin"
397
  msgstr ""
398
 
399
+ #: inc/php/settings.php:104
400
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
401
  msgstr ""
402
 
403
+ #: inc/php/settings.php:109
404
  msgid "Left"
405
  msgstr ""
406
 
407
+ #: inc/php/settings.php:110
408
  msgid "Center"
409
  msgstr ""
410
 
411
+ #: inc/php/settings.php:111
412
  msgid "Right"
413
  msgstr ""
414
 
415
+ #: inc/php/settings.php:113
416
  msgid "Alignment"
417
  msgstr ""
418
 
419
+ #: inc/php/settings.php:114
420
  msgid "You can choose the alignment of the buttons bar."
421
  msgstr ""
422
 
423
+ #: inc/php/settings.php:118
424
  msgid "Caption"
425
  msgstr ""
426
 
427
+ #: inc/php/settings.php:119
428
  msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
429
  msgstr ""
430
 
431
+ #: inc/php/settings.php:130
432
  msgid "Live Preview"
433
  msgstr ""
434
 
435
+ #: inc/php/settings.php:132
436
  msgid "Click the \"Save changes\" button to update this preview."
437
  msgstr ""
438
 
439
+ #: inc/php/settings.php:140 inc/php/sidebar.php:32
440
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
441
  msgstr ""
442
 
443
+ #: inc/php/settings.php:147 inc/php/sidebar.php:39
444
  msgid "Thanks for your support!"
445
  msgstr ""
446
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: icon, icon set, button, social, media, social button, social media, social
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
- Stable tag: 4.35
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -34,6 +34,7 @@ It give you finer control over buttons. You can configure they on plugins settin
34
  **Key features include...**
35
 
36
  * Beautiful icons
 
37
  * Preview on plugin settings page
38
  * Tooltips with name of the social media above every button
39
  * Shortcode for add social media follow buttons from Post/Page Editor
@@ -279,6 +280,18 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
279
 
280
  == Changelog ==
281
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  = 4.35 =
283
  * Added new constant "_FILE".
284
  * Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
@@ -732,8 +745,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
732
 
733
  == Upgrade Notice ==
734
 
735
- = 4.2 =
736
- Please update to new release!
 
737
 
738
  = 4.0 =
739
  Please update to new release!
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
+ Stable tag: 4.36
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
34
  **Key features include...**
35
 
36
  * Beautiful icons
37
+ * Ability to select only the desired buttons
38
  * Preview on plugin settings page
39
  * Tooltips with name of the social media above every button
40
  * Shortcode for add social media follow buttons from Post/Page Editor
280
 
281
  == Changelog ==
282
 
283
+ = 4.36 =
284
+ * The plugin became much faster due to the decrease in the number of requests to the database.
285
+ * A new option is added to the plugin settings page, allowing the user to select the desired buttons.
286
+ * Added a new control function '_control_checkbox()'. Added CSS code (in the file 'admin.css') for this control. Added JS code (in the file 'admin.js') for this control.
287
+ * Added a new callback function '_get_media_pairs_media()' for getting a list of media buttons.
288
+ * Added a new callback function '_get_media_pairs_additional()' for getting a list of additional media buttons.
289
+ * The function '_control_link()' is updated.
290
+ * The function '_tollbar()' is updated.
291
+ * Added a new upgrade function '_upgrade_4_36()'.
292
+ * The old upgrade function '_upgrade_4_10()' is removed due to uselessness.
293
+ * Some texts are corrected.
294
+
295
  = 4.35 =
296
  * Added new constant "_FILE".
297
  * Added a function that runs during the plugin activation. Now the date of the first activation of the plugin is recorded in the database.
745
 
746
  == Upgrade Notice ==
747
 
748
+ = 4.36 =
749
+ * The plugin became much faster due to the decrease in the number of requests to the database.
750
+ * A new option is added to the plugin settings page, allowing the user to select the desired buttons.
751
 
752
  = 4.0 =
753
  Please update to new release!
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: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
- * Version: 4.35
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
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: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
+ * Version: 4.36
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/