Social Media Follow Buttons Bar - Version 4.40

Version Description

  • Dutch translation added. (Thanks to Peter Leenders)
  • The code block that adds dynamic CSS is moved to a separate function '_load_scripts_dynamic_css' within the 'enqueue.php' file.
  • The function '_load_scripts_base' is deleted due to uselessness.
  • The function '_load_scripts_admin' is improved.
  • The function '_load_scripts_frontend' is improved.
  • The banner of Space X-Chimp, located on the settings page of the plugin, is updated. The image 'banner.png' is deleted.
  • Some texts are updated.
  • All translation files are updated.
Download this release

Release Info

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

Code changes from version 4.39 to 4.40

inc/css/admin.css CHANGED
@@ -99,6 +99,11 @@ h2 .version {
99
  #side-sortables .banner img {
100
  width: 265px;
101
  }
 
 
 
 
 
102
 
103
  /* Support - Tab and Addition section
104
  -------------------------------------------------------------- */
99
  #side-sortables .banner img {
100
  width: 265px;
101
  }
102
+ #side-sortables .banner .btn {
103
+ width: 95%;
104
+ height: 40px;
105
+ margin-bottom: 0;
106
+ }
107
 
108
  /* Support - Tab and Addition section
109
  -------------------------------------------------------------- */
inc/img/banner.png DELETED
Binary file
inc/php/enqueue.php CHANGED
@@ -6,25 +6,16 @@
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
8
  /**
9
- * Base for the _load_scripts hook
10
  */
11
- function spacexchimp_p005_load_scripts_base( $options ) {
12
 
13
- // Put value of constants to variables for easier access
14
- $prefix = SPACEXCHIMP_P005_PREFIX;
15
- $url = SPACEXCHIMP_P005_URL;
16
- $version = SPACEXCHIMP_P005_VERSION;
17
-
18
- // Load jQuery library
19
- wp_enqueue_script( 'jquery' );
20
-
21
- // Style sheet
22
- wp_enqueue_style( $prefix . '-frontend-css', $url . 'inc/css/frontend.css', array(), $version, 'all' );
23
-
24
- // Dynamic CSS. Create CSS and injected it into the stylesheet
25
  $icon_size = !empty( $options['icon-size'] ) ? esc_textarea( $options['icon-size'] ) : '64';
26
  $margin = !empty( $options['margin-right'] ) ? esc_textarea( $options['margin-right'] ) : '10';
27
  $alignment = !empty( $options['alignment'] ) ? $options['alignment'] : 'center';
 
 
28
  $custom_css = "
29
  .sxc-follow-buttons {
30
  text-align: " . $alignment . " !important;
@@ -35,8 +26,9 @@ function spacexchimp_p005_load_scripts_base( $options ) {
35
  margin: " . ( $margin / 2 ) . "px !important;
36
  }
37
  ";
38
- wp_add_inline_style( $prefix . '-frontend-css', $custom_css );
39
 
 
 
40
  }
41
 
42
  /**
@@ -58,6 +50,9 @@ function spacexchimp_p005_load_scripts_admin( $hook ) {
58
  // Read options from database
59
  $options = get_option( $settings . '_settings' );
60
 
 
 
 
61
  // Bootstrap library
62
  wp_enqueue_style( $prefix . '-bootstrap-css', $url . 'inc/lib/bootstrap/bootstrap.css', array(), $version, 'all' );
63
  wp_enqueue_style( $prefix . '-bootstrap-theme-css', $url . 'inc/lib/bootstrap/bootstrap-theme.css', array(), $version, 'all' );
@@ -71,12 +66,13 @@ function spacexchimp_p005_load_scripts_admin( $hook ) {
71
 
72
  // Style sheet
73
  wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css', array(), $version, 'all' );
 
74
 
75
  // JavaScript
76
  wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
77
 
78
- // Call the function that contain a basis of scripts
79
- spacexchimp_p005_load_scripts_base( $options );
80
 
81
  }
82
  add_action( 'admin_enqueue_scripts', 'spacexchimp_p005_load_scripts_admin' );
@@ -95,12 +91,18 @@ function spacexchimp_p005_load_scripts_frontend() {
95
  // Read options from database
96
  $options = get_option( $settings . '_settings' );
97
 
98
- // Call the function that contain a basis of scripts
99
- spacexchimp_p005_load_scripts_base( $options );
100
 
101
  // Other libraries
102
  wp_enqueue_style( $prefix . '-bootstrap-tooltip-css', $url . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.css', array(), $version, 'all' );
103
  wp_enqueue_script( $prefix . '-bootstrap-tooltip-js', $url . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.js', array(), $version, false );
104
 
 
 
 
 
 
 
105
  }
106
  add_action( 'wp_enqueue_scripts', 'spacexchimp_p005_load_scripts_frontend' );
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
8
  /**
9
+ * Callback for the dynamic CSS
10
  */
11
+ function spacexchimp_p005_load_scripts_dynamic_css( $options, $prefix ) {
12
 
13
+ // Get settings and put them in variables
 
 
 
 
 
 
 
 
 
 
 
14
  $icon_size = !empty( $options['icon-size'] ) ? esc_textarea( $options['icon-size'] ) : '64';
15
  $margin = !empty( $options['margin-right'] ) ? esc_textarea( $options['margin-right'] ) : '10';
16
  $alignment = !empty( $options['alignment'] ) ? $options['alignment'] : 'center';
17
+
18
+ // Create an array with all the settings (CSS code)
19
  $custom_css = "
20
  .sxc-follow-buttons {
21
  text-align: " . $alignment . " !important;
26
  margin: " . ( $margin / 2 ) . "px !important;
27
  }
28
  ";
 
29
 
30
+ // Inject the array into the stylesheet
31
+ wp_add_inline_style( $prefix . '-frontend-css', $custom_css );
32
  }
33
 
34
  /**
50
  // Read options from database
51
  $options = get_option( $settings . '_settings' );
52
 
53
+ // Load jQuery library
54
+ wp_enqueue_script( 'jquery' );
55
+
56
  // Bootstrap library
57
  wp_enqueue_style( $prefix . '-bootstrap-css', $url . 'inc/lib/bootstrap/bootstrap.css', array(), $version, 'all' );
58
  wp_enqueue_style( $prefix . '-bootstrap-theme-css', $url . 'inc/lib/bootstrap/bootstrap-theme.css', array(), $version, 'all' );
66
 
67
  // Style sheet
68
  wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css', array(), $version, 'all' );
69
+ wp_enqueue_style( $prefix . '-frontend-css', $url . 'inc/css/frontend.css', array(), $version, 'all' );
70
 
71
  // JavaScript
72
  wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
73
 
74
+ // Call the function that contains the dynamic CSS
75
+ spacexchimp_p005_load_scripts_dynamic_css( $options, $prefix );
76
 
77
  }
78
  add_action( 'admin_enqueue_scripts', 'spacexchimp_p005_load_scripts_admin' );
91
  // Read options from database
92
  $options = get_option( $settings . '_settings' );
93
 
94
+ // Load jQuery library
95
+ wp_enqueue_script( 'jquery' );
96
 
97
  // Other libraries
98
  wp_enqueue_style( $prefix . '-bootstrap-tooltip-css', $url . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.css', array(), $version, 'all' );
99
  wp_enqueue_script( $prefix . '-bootstrap-tooltip-js', $url . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.js', array(), $version, false );
100
 
101
+ // Style sheet
102
+ wp_enqueue_style( $prefix . '-frontend-css', $url . 'inc/css/frontend.css', array(), $version, 'all' );
103
+
104
+ // Call the function that contains the dynamic CSS
105
+ spacexchimp_p005_load_scripts_dynamic_css( $options, $prefix );
106
+
107
  }
108
  add_action( 'wp_enqueue_scripts', 'spacexchimp_p005_load_scripts_frontend' );
inc/php/page.php CHANGED
@@ -193,7 +193,7 @@ function spacexchimp_p005_render_submenu_page() {
193
  <!-- TAB 4 -->
194
  <div class="tab-page fade" id="tab-support">
195
  <div class="postbox">
196
- <h3 class="title"><?php _e( 'Support Me', $text ); ?></h3>
197
  <div class="inside">
198
  <span class="image-with-button pull-left">
199
  <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
@@ -206,17 +206,17 @@ function spacexchimp_p005_render_submenu_page() {
206
  </span>
207
  <p><?php
208
  printf(
209
- __( 'Hello! My name is %s Arthur Gareginyan %s and I\'m the founder of %s Space X-Chimp %s.', $text ),
210
- '<a href="https://www.arthurgareginyan.com" target="_blank">',
211
  '</a>',
212
  '<a href="https://www.spacexchimp.com" target="_blank">',
213
  '</a>'
214
  );
215
  ?>
216
  </p>
217
- <p><?php _e( 'My intention is to create projects that will make this world a better place. I\'m really passionate about my work, I like what I\'m doing and hope that you will be enriched by my projects too.', $text ); ?></p>
218
- <p><?php _e( 'I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, 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.', $text ); ?></p>
219
- <p><?php _e( 'If you appreciate my work, you can buy me a coffee!', $text ); ?></p>
220
  <p><?php _e( 'Thank you for your support!', $text ); ?></p>
221
  </div>
222
  </div>
193
  <!-- TAB 4 -->
194
  <div class="tab-page fade" id="tab-support">
195
  <div class="postbox">
196
+ <h3 class="title"><?php _e( 'Support Us', $text ); ?></h3>
197
  <div class="inside">
198
  <span class="image-with-button pull-left">
199
  <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
206
  </span>
207
  <p><?php
208
  printf(
209
+ __( 'Hello! My name is %s Arthur %s, I\'m the founder of %s Space X-Chimp %s, which unites a small international team of young people.', $text ),
210
+ '<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
211
  '</a>',
212
  '<a href="https://www.spacexchimp.com" target="_blank">',
213
  '</a>'
214
  );
215
  ?>
216
  </p>
217
+ <p><?php _e( 'Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too.', $text ); ?></p>
218
+ <p><?php _e( 'We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
219
+ <p><?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?></p>
220
  <p><?php _e( 'Thank you for your support!', $text ); ?></p>
221
  </div>
222
  </div>
inc/php/settings.php CHANGED
@@ -137,7 +137,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
137
  <div class="postbox" id="support-addition">
138
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
139
  <div class="inside">
140
- <p><?php _e( '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.', $text ); ?></p>
141
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
142
  <span class="btn-label">
143
  <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
137
  <div class="postbox" id="support-addition">
138
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
139
  <div class="inside">
140
+ <p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
141
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
142
  <span class="btn-label">
143
  <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
inc/php/sidebar.php CHANGED
@@ -12,6 +12,15 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
12
  <div class="inner-sidebar">
13
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
14
 
 
 
 
 
 
 
 
 
 
15
  <div class="postbox about">
16
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
17
  <div class="inside">
@@ -29,7 +38,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
29
  <div class="postbox support">
30
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
31
  <div class="inside">
32
- <p><?php _e( '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.', $text ); ?></p>
33
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
34
  <span class="btn-label">
35
  <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
@@ -40,14 +49,6 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
40
  </div>
41
  </div>
42
 
43
- <div class="postbox banner">
44
- <div class="inside">
45
- <a href="https://www.spacexchimp.com/" target="_blank">
46
- <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp">
47
- </a>
48
- </div>
49
- </div>
50
-
51
  </div>
52
  </div>
53
  <?php
12
  <div class="inner-sidebar">
13
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
14
 
15
+ <div class="postbox banner">
16
+ <h3 class="title"><?php _e( 'We are «Space X-Chimp»', $text ); ?></h3>
17
+ <div class="inside">
18
+ <a href="https://www.spacexchimp.com/" target="_blank">
19
+ <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/spacexchimp-logo.png'; ?>" alt="Space X-Chimp">
20
+ </a>
21
+ </div>
22
+ </div>
23
+
24
  <div class="postbox about">
25
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
26
  <div class="inside">
38
  <div class="postbox support">
39
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
40
  <div class="inside">
41
+ <p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
42
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
43
  <span class="btn-label">
44
  <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
49
  </div>
50
  </div>
51
 
 
 
 
 
 
 
 
 
52
  </div>
53
  </div>
54
  <?php
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-07-11 20:00+0300\n"
7
- "PO-Revision-Date: 2018-07-11 20:00+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:138 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Support"
97
 
@@ -286,28 +286,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
286
  msgstr ""
287
 
288
  #: inc/php/page.php:196
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
 
296
  #: inc/php/page.php:209
297
  #, php-format
298
- msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
299
- msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
300
 
301
  #: inc/php/page.php:217
302
- msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
303
- msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
304
 
305
  #: inc/php/page.php:218
306
- msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, 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."
307
- msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
308
 
309
  #: inc/php/page.php:219
310
- msgid "If you appreciate my work, you can buy me a coffee!"
311
  msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
312
 
313
  #: inc/php/page.php:220
@@ -448,27 +448,31 @@ msgstr "Live Vorschau"
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
 
459
  #: inc/php/sidebar.php:16
 
 
 
 
460
  msgid "About"
461
  msgstr "Über"
462
 
463
- #: inc/php/sidebar.php:18
464
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
465
  msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall auf Ihrer Webseite hinzufügen."
466
 
467
- #: inc/php/sidebar.php:23
468
  msgid "Help"
469
  msgstr "Hilfe"
470
 
471
- #: inc/php/sidebar.php:25
472
  msgid "If you have a question, please read the information in the FAQ section."
473
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
474
 
@@ -492,5 +496,11 @@ msgstr "Space X-Chimp"
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."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-07-24 00:38+0300\n"
7
+ "PO-Revision-Date: 2018-07-24 00:38+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:39
95
  msgid "Support"
96
  msgstr "Support"
97
 
286
  msgstr ""
287
 
288
  #: inc/php/page.php:196
289
+ msgid "Support Us"
290
+ msgstr "Unterstütze uns"
291
 
292
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:46
293
  msgid "Donate with PayPal"
294
  msgstr "Spende mit PayPal"
295
 
296
  #: inc/php/page.php:209
297
  #, php-format
298
+ msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
299
+ msgstr ""
300
 
301
  #: inc/php/page.php:217
302
+ msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
303
+ msgstr ""
304
 
305
  #: inc/php/page.php:218
306
+ msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
307
+ msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
308
 
309
  #: inc/php/page.php:219
310
+ msgid "If you appreciate our work, you can buy us a cup of coffee!"
311
  msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
312
 
313
  #: inc/php/page.php:220
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:41
452
+ msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
453
+ msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
454
 
455
+ #: inc/php/settings.php:147 inc/php/sidebar.php:48
456
  msgid "Thanks for your support!"
457
  msgstr "Danke für Ihre Unterstützung!"
458
 
459
  #: inc/php/sidebar.php:16
460
+ msgid "We are «Space X-Chimp»"
461
+ msgstr ""
462
+
463
+ #: inc/php/sidebar.php:25
464
  msgid "About"
465
  msgstr "Über"
466
 
467
+ #: inc/php/sidebar.php:27
468
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
469
  msgstr "Mit Hilfe dieses Plugins können Sie auf einfache Weise die \"social media follow buttons bar\" überall auf Ihrer Webseite hinzufügen."
470
 
471
+ #: inc/php/sidebar.php:32
472
  msgid "Help"
473
  msgstr "Hilfe"
474
 
475
+ #: inc/php/sidebar.php:34
476
  msgid "If you have a question, please read the information in the FAQ section."
477
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
478
 
496
  msgid "https://www.spacexchimp.com"
497
  msgstr "https://www.spacexchimp.com"
498
 
499
+ #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
500
+ #~ msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
501
+
502
+ #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
503
+ #~ msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
504
+
505
  #~ 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."
506
  #~ 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-07-11 20:00+0300\n"
7
- "PO-Revision-Date: 2018-07-11 20:00+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:138 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Soporte"
97
 
@@ -286,28 +286,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
286
  msgstr "Puede hacer tu pregunta en %s esta página %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
287
 
288
  #: inc/php/page.php:196
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
 
296
  #: inc/php/page.php:209
297
  #, php-format
298
- msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
299
- msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
300
 
301
  #: inc/php/page.php:217
302
- msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
303
- msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
304
 
305
  #: inc/php/page.php:218
306
- msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, 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."
307
  msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
308
 
309
  #: inc/php/page.php:219
310
- msgid "If you appreciate my work, you can buy me a coffee!"
311
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
312
 
313
  #: inc/php/page.php:220
@@ -448,27 +448,31 @@ msgstr "Vista Previa"
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
 
459
  #: inc/php/sidebar.php:16
 
 
 
 
460
  msgid "About"
461
  msgstr "Acerca de"
462
 
463
- #: inc/php/sidebar.php:18
464
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
465
  msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
466
 
467
- #: inc/php/sidebar.php:23
468
  msgid "Help"
469
  msgstr "Ayuda"
470
 
471
- #: inc/php/sidebar.php:25
472
  msgid "If you have a question, please read the information in the FAQ section."
473
  msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
474
 
@@ -492,5 +496,11 @@ msgstr "Space X-Chimp"
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á."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-07-24 00:38+0300\n"
7
+ "PO-Revision-Date: 2018-07-24 00:38+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:39
95
  msgid "Support"
96
  msgstr "Soporte"
97
 
286
  msgstr "Puede hacer tu pregunta en %s esta página %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
287
 
288
  #: inc/php/page.php:196
289
+ msgid "Support Us"
290
+ msgstr "¡Apoyanos!"
291
 
292
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:46
293
  msgid "Donate with PayPal"
294
  msgstr "Donar con PayPal"
295
 
296
  #: inc/php/page.php:209
297
  #, php-format
298
+ msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
299
+ msgstr ""
300
 
301
  #: inc/php/page.php:217
302
+ msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
303
+ msgstr ""
304
 
305
  #: inc/php/page.php:218
306
+ msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
307
  msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
308
 
309
  #: inc/php/page.php:219
310
+ msgid "If you appreciate our work, you can buy us a cup of coffee!"
311
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
312
 
313
  #: inc/php/page.php:220
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:41
452
+ msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome 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:48
456
  msgid "Thanks for your support!"
457
  msgstr "¡Gracias por tu apoyo!"
458
 
459
  #: inc/php/sidebar.php:16
460
+ msgid "We are «Space X-Chimp»"
461
+ msgstr ""
462
+
463
+ #: inc/php/sidebar.php:25
464
  msgid "About"
465
  msgstr "Acerca de"
466
 
467
+ #: inc/php/sidebar.php:27
468
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
469
  msgstr "Este complemento te permite añadir fácilmente una barra de botones de social media en cualquier parte de tu sitio web."
470
 
471
+ #: inc/php/sidebar.php:32
472
  msgid "Help"
473
  msgstr "Ayuda"
474
 
475
+ #: inc/php/sidebar.php:34
476
  msgid "If you have a question, please read the information in the FAQ section."
477
  msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
478
 
496
  msgid "https://www.spacexchimp.com"
497
  msgstr "https://www.spacexchimp.com"
498
 
499
+ #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
500
+ #~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
501
+
502
+ #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
503
+ #~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
504
+
505
  #~ 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."
506
  #~ 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-nl_NL.mo ADDED
Binary file
languages/social-media-buttons-toolbar-nl_NL.po ADDED
@@ -0,0 +1,493 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of plugin - Social Media Follow Buttons Bar - in Dutch (Netherlands)
2
+ # This file is distributed under the same license as the plugin - Social Media Follow Buttons Bar.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-07-24 00:38+0300\n"
7
+ "PO-Revision-Date: 2018-07-24 00:38+0300\n"
8
+ "Last-Translator: Arthur Gareginyan\n"
9
+ "Language-Team: Dutch\n"
10
+ "Language: nl_NL\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Poedit 2.0.6\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-WPHeader: social-media-buttons-toolbar.php\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "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;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+
23
+ #: inc/php/core.php:23 inc/php/page.php:43
24
+ msgid "Settings"
25
+ msgstr "Instellingen"
26
+
27
+ #: inc/php/core.php:37
28
+ msgid "Donate"
29
+ msgstr "Doe een gift"
30
+
31
+ #: inc/php/core.php:52
32
+ msgid "Social Media Follow Buttons"
33
+ msgstr ""
34
+
35
+ #: inc/php/items.php:1
36
+ #, php-format
37
+ msgid "Enter the link to your %s profile page"
38
+ msgstr ""
39
+
40
+ #: inc/php/items.php:1
41
+ msgid "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"
42
+ msgstr ""
43
+
44
+ #: inc/php/items.php:1
45
+ msgid "Enter your telephone number with prefix <b>tel://</b>"
46
+ msgstr ""
47
+
48
+ #: inc/php/items.php:1
49
+ msgid "Enter your email address with prefix <b>mailto:</b>"
50
+ msgstr ""
51
+
52
+ #: inc/php/items.php:1
53
+ msgid "Enter the link to your personal website"
54
+ msgstr ""
55
+
56
+ #: inc/php/items.php:1
57
+ msgid "Enter the link to your RSS Feed"
58
+ msgstr ""
59
+
60
+ #: inc/php/messages.php:26
61
+ msgid "Hello. We are the team of Space X-Chimp."
62
+ msgstr "Hallo. Wij zijn het team van Space X-Chimp."
63
+
64
+ #: inc/php/messages.php:28
65
+ #, php-format
66
+ msgid "Thank you for installing our plugin! We hope you will love it! %s"
67
+ msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
68
+
69
+ #: inc/php/messages.php:68
70
+ msgid "You have installed an old version of this plugin."
71
+ msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
72
+
73
+ #: inc/php/messages.php:69
74
+ msgid "Please update the plugin to the latest version, and all will be fine."
75
+ msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
76
+
77
+ #: inc/php/page.php:30
78
+ #, php-format
79
+ msgid "by %s Space X-Chimp %s"
80
+ msgstr "door %s Space X-Chimp %s"
81
+
82
+ #: inc/php/page.php:36
83
+ msgid "Version"
84
+ msgstr "Versie"
85
+
86
+ #: inc/php/page.php:44
87
+ msgid "Usage"
88
+ msgstr "Gebruik"
89
+
90
+ #: inc/php/page.php:45
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:39
95
+ msgid "Support"
96
+ msgstr "Ondersteuning"
97
+
98
+ #: inc/php/page.php:47
99
+ msgid "Store"
100
+ msgstr "Winkel"
101
+
102
+ #: inc/php/page.php:63
103
+ msgid "Usage Instructions"
104
+ msgstr "Gebruiksinstructies"
105
+
106
+ #: inc/php/page.php:65
107
+ msgid "To display the social media follow buttons bar on the front end of your website, simply follow these steps:"
108
+ msgstr ""
109
+
110
+ #: inc/php/page.php:67
111
+ msgid "Go to the \"Settings\" tab."
112
+ msgstr ""
113
+
114
+ #: inc/php/page.php:68
115
+ msgid "Fill in the required fields."
116
+ msgstr ""
117
+
118
+ #: inc/php/page.php:69
119
+ msgid "Select the desired settings."
120
+ msgstr ""
121
+
122
+ #: inc/php/page.php:70
123
+ msgid "Click the \"Save changes\" button."
124
+ msgstr "Klik op de knop \"Wijzigingen opslaan\"."
125
+
126
+ #: inc/php/page.php:71
127
+ msgid "Now you have several methods for display the social media follow buttons bar (further just \"buttons\"). Just choose the one that is more suitable for your case."
128
+ msgstr ""
129
+
130
+ #: inc/php/page.php:72
131
+ msgid "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click the \"Save changes\" button."
132
+ msgstr ""
133
+
134
+ #: inc/php/page.php:73
135
+ msgid "<b>B)</b> For add the buttons inside a post from WordPress Post/Page Editor use the following shortcode:"
136
+ msgstr ""
137
+
138
+ #: inc/php/page.php:75
139
+ msgid "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget and add inside it the following shortcode:"
140
+ msgstr ""
141
+
142
+ #: inc/php/page.php:77
143
+ msgid "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:"
144
+ msgstr ""
145
+
146
+ #: inc/php/page.php:80
147
+ msgid "Enjoy your fancy social media follow buttons."
148
+ msgstr ""
149
+
150
+ #: inc/php/page.php:80
151
+ msgid "It's that simple!"
152
+ msgstr "Zo eenvoudig is het!"
153
+
154
+ #: inc/php/page.php:82
155
+ msgid "Note!"
156
+ msgstr "Opmerking!"
157
+
158
+ #: inc/php/page.php:83
159
+ #, php-format
160
+ msgid "If you want more options then %s tell us %s and we will be happy to add it."
161
+ msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
162
+
163
+ #: inc/php/page.php:97
164
+ msgid "Frequently Asked Questions"
165
+ msgstr "Veel voorkomende vragen (FAQ)"
166
+
167
+ #: inc/php/page.php:101
168
+ msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
169
+ msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
170
+
171
+ #: inc/php/page.php:123
172
+ msgid "Will this plugin work on my WordPress.COM website?"
173
+ msgstr "Werkt deze plugin op mijn WordPress.COM website?"
174
+
175
+ #: inc/php/page.php:124
176
+ msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
177
+ msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (WordPress.ORG) websites."
178
+
179
+ #: inc/php/page.php:126
180
+ msgid "Can I use this plugin on my language?"
181
+ msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
182
+
183
+ #: inc/php/page.php:127
184
+ msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
185
+ msgstr "Ja. Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
186
+
187
+ #: inc/php/page.php:129
188
+ #, php-format
189
+ msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
190
+ msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s. Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken. Stuur het PO-bestand naar ons op de %s en we zullen deze vertaling opnemen in de volgende plug-in update."
191
+
192
+ #: inc/php/page.php:134
193
+ msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
194
+ msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
195
+
196
+ #: inc/php/page.php:135
197
+ msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
198
+ msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt. Bedankt voor je bijdrage!"
199
+
200
+ #: inc/php/page.php:137
201
+ msgid "How does it work?"
202
+ msgstr "Hoe werkt het?"
203
+
204
+ #: inc/php/page.php:138
205
+ msgid "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy your fancy social media follow buttons. It's that simple!"
206
+ msgstr ""
207
+
208
+ #: inc/php/page.php:140
209
+ msgid "Does this plugin requires any modification of the theme?"
210
+ msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
211
+
212
+ #: inc/php/page.php:141
213
+ msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
214
+ msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
215
+
216
+ #: inc/php/page.php:143
217
+ msgid "Does this require any knowledge of HTML or CSS?"
218
+ msgstr "Vereist dit enige kennis van HTML of CSS?"
219
+
220
+ #: inc/php/page.php:144
221
+ msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
222
+ msgstr ""
223
+
224
+ #: inc/php/page.php:146
225
+ msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
226
+ msgstr ""
227
+
228
+ #: inc/php/page.php:147
229
+ msgid "The images that uses in this plugin are already compressed, but I will do my best to find out what else can be done with the images in order to compress them even better."
230
+ msgstr ""
231
+
232
+ #: inc/php/page.php:149
233
+ msgid "It's not working. What could be wrong?"
234
+ msgstr "Het werkt niet. Wat kan er fout zijn?"
235
+
236
+ #: inc/php/page.php:150
237
+ msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
238
+ msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
239
+
240
+ #: inc/php/page.php:151
241
+ msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
242
+ msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
243
+
244
+ #: inc/php/page.php:153
245
+ msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
246
+ msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
247
+
248
+ #: inc/php/page.php:154
249
+ msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
250
+ msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
251
+
252
+ #: inc/php/page.php:156
253
+ msgid "Where to report bug if found?"
254
+ msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
255
+
256
+ #: inc/php/page.php:158
257
+ #, php-format
258
+ msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
259
+ msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
260
+
261
+ #: inc/php/page.php:164
262
+ msgid "Where to share any ideas or suggestions to make the plugin better?"
263
+ msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
264
+
265
+ #: inc/php/page.php:166
266
+ #, php-format
267
+ msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
268
+ msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
269
+
270
+ #: inc/php/page.php:172
271
+ msgid "I love this plugin! Can I help somehow?"
272
+ msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
273
+
274
+ #: inc/php/page.php:174
275
+ #, php-format
276
+ msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
277
+ msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
278
+
279
+ #: inc/php/page.php:180
280
+ msgid "My question wasn't answered here."
281
+ msgstr "Mij vraag is hier niet beantwoord."
282
+
283
+ #: inc/php/page.php:182
284
+ #, php-format
285
+ msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
286
+ msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
287
+
288
+ #: inc/php/page.php:196
289
+ msgid "Support Us"
290
+ msgstr "Ondersteun ons"
291
+
292
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:46
293
+ msgid "Donate with PayPal"
294
+ msgstr "Doneer via PayPal"
295
+
296
+ #: inc/php/page.php:209
297
+ #, php-format
298
+ msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
299
+ msgstr ""
300
+
301
+ #: inc/php/page.php:217
302
+ msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
303
+ msgstr ""
304
+
305
+ #: inc/php/page.php:218
306
+ msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
307
+ msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
308
+
309
+ #: inc/php/page.php:219
310
+ msgid "If you appreciate our work, you can buy us a cup of coffee!"
311
+ msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
312
+
313
+ #: inc/php/page.php:220
314
+ msgid "Thank you for your support!"
315
+ msgstr "Bedankt voor je ondersteuning!"
316
+
317
+ #: inc/php/settings.php:21 inc/php/settings.php:127
318
+ msgid "Save changes"
319
+ msgstr "Wijzigingen opslaan"
320
+
321
+ #: inc/php/settings.php:25
322
+ msgid "Buttons"
323
+ msgstr ""
324
+
325
+ #: inc/php/settings.php:27
326
+ msgid "Here you can select the buttons that you want to have in your social media follow buttons bar."
327
+ msgstr ""
328
+
329
+ #: inc/php/settings.php:33
330
+ msgid "Social media buttons"
331
+ msgstr ""
332
+
333
+ #: inc/php/settings.php:34 inc/php/settings.php:41
334
+ msgid "Mark the desired buttons to add it to your social media follow buttons bar."
335
+ msgstr ""
336
+
337
+ #: inc/php/settings.php:40
338
+ msgid "Additional buttons"
339
+ msgstr ""
340
+
341
+ #: inc/php/settings.php:49
342
+ msgid "Button links"
343
+ msgstr ""
344
+
345
+ #: inc/php/settings.php:51
346
+ 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."
347
+ msgstr ""
348
+
349
+ #: inc/php/settings.php:76
350
+ msgid "Display options"
351
+ msgstr ""
352
+
353
+ #: inc/php/settings.php:78
354
+ msgid "Here you can configure the display options."
355
+ msgstr ""
356
+
357
+ #: inc/php/settings.php:82
358
+ msgid "Show on Posts"
359
+ msgstr ""
360
+
361
+ #: inc/php/settings.php:83
362
+ msgid "Automatically display toolbar below content on Posts."
363
+ msgstr ""
364
+
365
+ #: inc/php/settings.php:86
366
+ msgid "Show on Pages"
367
+ msgstr ""
368
+
369
+ #: inc/php/settings.php:87
370
+ msgid "Automatically display toolbar below content on Pages."
371
+ msgstr ""
372
+
373
+ #: inc/php/settings.php:90
374
+ msgid "Open in new tab"
375
+ msgstr ""
376
+
377
+ #: inc/php/settings.php:91
378
+ msgid "Open link in a new tab/window."
379
+ msgstr ""
380
+
381
+ #: inc/php/settings.php:94
382
+ msgid "Tooltips"
383
+ msgstr ""
384
+
385
+ #: inc/php/settings.php:95
386
+ msgid "Enable a tooltips with name of the social media above every button."
387
+ msgstr ""
388
+
389
+ #: inc/php/settings.php:98
390
+ msgid "Icon size"
391
+ msgstr ""
392
+
393
+ #: inc/php/settings.php:99
394
+ msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
395
+ msgstr ""
396
+
397
+ #: inc/php/settings.php:103
398
+ msgid "Margin"
399
+ msgstr ""
400
+
401
+ #: inc/php/settings.php:104
402
+ msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
403
+ msgstr ""
404
+
405
+ #: inc/php/settings.php:109
406
+ msgid "Left"
407
+ msgstr ""
408
+
409
+ #: inc/php/settings.php:110
410
+ msgid "Center"
411
+ msgstr ""
412
+
413
+ #: inc/php/settings.php:111
414
+ msgid "Right"
415
+ msgstr ""
416
+
417
+ #: inc/php/settings.php:113
418
+ msgid "Alignment"
419
+ msgstr ""
420
+
421
+ #: inc/php/settings.php:114
422
+ msgid "You can choose the alignment of the buttons bar."
423
+ msgstr ""
424
+
425
+ #: inc/php/settings.php:118
426
+ msgid "Caption"
427
+ msgstr ""
428
+
429
+ #: inc/php/settings.php:119
430
+ msgid "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
431
+ msgstr ""
432
+
433
+ #: inc/php/settings.php:130
434
+ msgid "Live Preview"
435
+ msgstr ""
436
+
437
+ #: inc/php/settings.php:132
438
+ msgid "Click the \"Save changes\" button to update this preview."
439
+ msgstr ""
440
+
441
+ #: inc/php/settings.php:140 inc/php/sidebar.php:41
442
+ msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
443
+ msgstr "Ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
444
+
445
+ #: inc/php/settings.php:147 inc/php/sidebar.php:48
446
+ msgid "Thanks for your support!"
447
+ msgstr "Bedankt voor uw steun!"
448
+
449
+ #: inc/php/sidebar.php:16
450
+ msgid "We are «Space X-Chimp»"
451
+ msgstr ""
452
+
453
+ #: inc/php/sidebar.php:25
454
+ msgid "About"
455
+ msgstr "Over"
456
+
457
+ #: inc/php/sidebar.php:27
458
+ msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
459
+ msgstr ""
460
+
461
+ #: inc/php/sidebar.php:32
462
+ msgid "Help"
463
+ msgstr "Help"
464
+
465
+ #: inc/php/sidebar.php:34
466
+ msgid "If you have a question, please read the information in the FAQ section."
467
+ msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
468
+
469
+ #. Plugin Name of the plugin/theme
470
+ msgid "Social Media Follow Buttons Bar"
471
+ msgstr "Mijn Persoonlijke Functies"
472
+
473
+ #. Plugin URI of the plugin/theme
474
+ msgid "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
475
+ msgstr "https://github.com/ArthurGareginyan/social-media-buttons-toolbar"
476
+
477
+ #. Description of the plugin/theme
478
+ msgid "Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website."
479
+ msgstr ""
480
+
481
+ #. Author of the plugin/theme
482
+ msgid "Space X-Chimp"
483
+ msgstr "Space X-Chimp"
484
+
485
+ #. Author URI of the plugin/theme
486
+ msgid "https://www.spacexchimp.com"
487
+ msgstr "https://www.spacexchimp.com"
488
+
489
+ #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
490
+ #~ msgstr "Hallo! Mijn naam is %s Arthur Gareginyan %s en ik ben de oprichter van %s Space X-Chimp %s."
491
+
492
+ #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
493
+ #~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
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-07-11 20:00+0300\n"
7
- "PO-Revision-Date: 2018-07-11 20:00+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:138 inc/php/sidebar.php:30
95
  msgid "Support"
96
  msgstr "Поддержка"
97
 
@@ -286,28 +286,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
286
  msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
287
 
288
  #: inc/php/page.php:196
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
 
296
  #: inc/php/page.php:209
297
  #, php-format
298
- msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
299
- msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
300
 
301
  #: inc/php/page.php:217
302
- msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
303
- msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
304
 
305
  #: inc/php/page.php:218
306
- msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, 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."
307
  msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
308
 
309
  #: inc/php/page.php:219
310
- msgid "If you appreciate my work, you can buy me a coffee!"
311
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
312
 
313
  #: inc/php/page.php:220
@@ -448,27 +448,31 @@ msgstr "Просмотр в реальном времени"
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
 
459
  #: inc/php/sidebar.php:16
 
 
 
 
460
  msgid "About"
461
  msgstr "О плагине"
462
 
463
- #: inc/php/sidebar.php:18
464
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
465
  msgstr "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое место на вашем веб-сайте."
466
 
467
- #: inc/php/sidebar.php:23
468
  msgid "Help"
469
  msgstr "Помощь"
470
 
471
- #: inc/php/sidebar.php:25
472
  msgid "If you have a question, please read the information in the FAQ section."
473
  msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
474
 
@@ -492,5 +496,11 @@ msgstr "Space X-Chimp"
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 "Просто заполните необходимые поля, чтобы создать кнопки. Кнопки социальных медиа будут вести непосредственно к вашим страницам профиля. Если вы не хотите использовать любой из следующих кнопок, то вы можете не заполнить их и тогда они не появятся."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2018-07-24 00:38+0300\n"
7
+ "PO-Revision-Date: 2018-07-24 00:38+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:39
95
  msgid "Support"
96
  msgstr "Поддержка"
97
 
286
  msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
287
 
288
  #: inc/php/page.php:196
289
+ msgid "Support Us"
290
+ msgstr "Поддержать нас"
291
 
292
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:46
293
  msgid "Donate with PayPal"
294
  msgstr "Пожертвовать через PayPal"
295
 
296
  #: inc/php/page.php:209
297
  #, php-format
298
+ msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
299
+ msgstr ""
300
 
301
  #: inc/php/page.php:217
302
+ msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
303
+ msgstr ""
304
 
305
  #: inc/php/page.php:218
306
+ msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
307
  msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
308
 
309
  #: inc/php/page.php:219
310
+ msgid "If you appreciate our work, you can buy us a cup of coffee!"
311
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
312
 
313
  #: inc/php/page.php:220
448
  msgid "Click the \"Save changes\" button to update this preview."
449
  msgstr "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
450
 
451
+ #: inc/php/settings.php:140 inc/php/sidebar.php:41
452
+ msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
453
  msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
454
 
455
+ #: inc/php/settings.php:147 inc/php/sidebar.php:48
456
  msgid "Thanks for your support!"
457
  msgstr "Спасибо за вашу поддержку!"
458
 
459
  #: inc/php/sidebar.php:16
460
+ msgid "We are «Space X-Chimp»"
461
+ msgstr ""
462
+
463
+ #: inc/php/sidebar.php:25
464
  msgid "About"
465
  msgstr "О плагине"
466
 
467
+ #: inc/php/sidebar.php:27
468
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
469
  msgstr "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое место на вашем веб-сайте."
470
 
471
+ #: inc/php/sidebar.php:32
472
  msgid "Help"
473
  msgstr "Помощь"
474
 
475
+ #: inc/php/sidebar.php:34
476
  msgid "If you have a question, please read the information in the FAQ section."
477
  msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
478
 
496
  msgid "https://www.spacexchimp.com"
497
  msgstr "https://www.spacexchimp.com"
498
 
499
+ #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
500
+ #~ msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
501
+
502
+ #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
503
+ #~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
504
+
505
  #~ 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."
506
  #~ 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-07-11 20:00+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:138 inc/php/sidebar.php:30
93
  msgid "Support"
94
  msgstr ""
95
 
@@ -284,28 +284,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
284
  msgstr ""
285
 
286
  #: inc/php/page.php:196
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
 
294
  #: inc/php/page.php:209
295
  #, php-format
296
- msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
297
  msgstr ""
298
 
299
  #: inc/php/page.php:217
300
- msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
301
  msgstr ""
302
 
303
  #: inc/php/page.php:218
304
- msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, 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."
305
  msgstr ""
306
 
307
  #: inc/php/page.php:219
308
- msgid "If you appreciate my work, you can buy me a coffee!"
309
  msgstr ""
310
 
311
  #: inc/php/page.php:220
@@ -436,27 +436,31 @@ msgstr ""
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
 
447
  #: inc/php/sidebar.php:16
 
 
 
 
448
  msgid "About"
449
  msgstr ""
450
 
451
- #: inc/php/sidebar.php:18
452
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
453
  msgstr ""
454
 
455
- #: inc/php/sidebar.php:23
456
  msgid "Help"
457
  msgstr ""
458
 
459
- #: inc/php/sidebar.php:25
460
  msgid "If you have a question, please read the information in the FAQ section."
461
  msgstr ""
462
 
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-07-24 00:38+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:39
93
  msgid "Support"
94
  msgstr ""
95
 
284
  msgstr ""
285
 
286
  #: inc/php/page.php:196
287
+ msgid "Support Us"
288
  msgstr ""
289
 
290
+ #: inc/php/page.php:204 inc/php/settings.php:145 inc/php/sidebar.php:46
291
  msgid "Donate with PayPal"
292
  msgstr ""
293
 
294
  #: inc/php/page.php:209
295
  #, php-format
296
+ msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
297
  msgstr ""
298
 
299
  #: inc/php/page.php:217
300
+ msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
301
  msgstr ""
302
 
303
  #: inc/php/page.php:218
304
+ msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
305
  msgstr ""
306
 
307
  #: inc/php/page.php:219
308
+ msgid "If you appreciate our work, you can buy us a cup of coffee!"
309
  msgstr ""
310
 
311
  #: inc/php/page.php:220
436
  msgid "Click the \"Save changes\" button to update this preview."
437
  msgstr ""
438
 
439
+ #: inc/php/settings.php:140 inc/php/sidebar.php:41
440
+ msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
441
  msgstr ""
442
 
443
+ #: inc/php/settings.php:147 inc/php/sidebar.php:48
444
  msgid "Thanks for your support!"
445
  msgstr ""
446
 
447
  #: inc/php/sidebar.php:16
448
+ msgid "We are «Space X-Chimp»"
449
+ msgstr ""
450
+
451
+ #: inc/php/sidebar.php:25
452
  msgid "About"
453
  msgstr ""
454
 
455
+ #: inc/php/sidebar.php:27
456
  msgid "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
457
  msgstr ""
458
 
459
+ #: inc/php/sidebar.php:32
460
  msgid "Help"
461
  msgstr ""
462
 
463
+ #: inc/php/sidebar.php:34
464
  msgid "If you have a question, please read the information in the FAQ section."
465
  msgstr ""
466
 
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.39
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -154,6 +154,7 @@ This plugin is ready for translation and has already been translated into severa
154
  * Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
155
  * German (translation by Michael)
156
  * Spanish (translation by Ramiro Garcés and Patricio Toledo)
 
157
 
158
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
159
 
@@ -280,6 +281,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
280
 
281
  == Changelog ==
282
 
 
 
 
 
 
 
 
 
 
 
283
  = 4.39 =
284
  * The extra mention of the constant '_SLUG' is removed from the file 'enqueue.php'.
285
  * All translation files are updated.
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.40
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
154
  * Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
155
  * German (translation by Michael)
156
  * Spanish (translation by Ramiro Garcés and Patricio Toledo)
157
+ * Dutch (translation by Peter Leenders)
158
 
159
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
160
 
281
 
282
  == Changelog ==
283
 
284
+ = 4.40 =
285
+ * Dutch translation added. (Thanks to Peter Leenders)
286
+ * The code block that adds dynamic CSS is moved to a separate function '_load_scripts_dynamic_css' within the 'enqueue.php' file.
287
+ * The function '_load_scripts_base' is deleted due to uselessness.
288
+ * The function '_load_scripts_admin' is improved.
289
+ * The function '_load_scripts_frontend' is improved.
290
+ * The banner of Space X-Chimp, located on the settings page of the plugin, is updated. The image 'banner.png' is deleted.
291
+ * Some texts are updated.
292
+ * All translation files are updated.
293
+
294
  = 4.39 =
295
  * The extra mention of the constant '_SLUG' is removed from the file 'enqueue.php'.
296
  * All translation files are updated.
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.39
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.40
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/