Social Media Follow Buttons Bar - Version 4.51

Version Description

  • 2019-03-18 =
  • Improvement: Notification display system updated
  • Code commenting improved.
  • Style sheet for the back end is optimised.
Download this release

Release Info

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

Code changes from version 4.50 to 4.51

inc/css/admin.css CHANGED
@@ -51,7 +51,7 @@ p {
51
  display: block;
52
  margin-top: 15px;
53
  font-size: 16px;
54
- letter-spacing: .2em;
55
  text-shadow: none;
56
  line-height: 20px;
57
  }
@@ -280,6 +280,28 @@ p {
280
  text-align: center;
281
  }
282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  /* Notes
284
  -------------------------------------------------------------- */
285
  .note {
@@ -293,6 +315,19 @@ p {
293
  letter-spacing: 0.1px;
294
  }
295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  /* Spoilers
297
  -------------------------------------------------------------- */
298
  .panel-group {
@@ -528,19 +563,6 @@ p {
528
  font-weight: normal;
529
  }
530
 
531
- /* Help text
532
- -------------------------------------------------------------- */
533
- td.help-text {
534
- font-family: Verdana, Geneva, sans-serif;
535
- font-size: 12px;
536
- font-style: italic;
537
- float: left;
538
- clear: left;
539
- color: #797979;
540
- line-height: 15px;
541
- padding-top: 0;
542
- }
543
-
544
  /* Control: Field
545
  -------------------------------------------------------------- */
546
  .control-field,
51
  display: block;
52
  margin-top: 15px;
53
  font-size: 16px;
54
+ letter-spacing: 0.2em;
55
  text-shadow: none;
56
  line-height: 20px;
57
  }
280
  text-align: center;
281
  }
282
 
283
+ /* Messages
284
+ -------------------------------------------------------------- */
285
+ #setting-error-settings_updated {
286
+ display: none;
287
+ }
288
+ #message.updated i {
289
+ padding-right: 5px;
290
+ color: green;
291
+ font-size: 1.5em;
292
+ vertical-align: middle;
293
+ }
294
+ #message.error i {
295
+ padding-right: 5px;
296
+ color: red;
297
+ font-size: 2.5em;
298
+ vertical-align: middle;
299
+ }
300
+ #message.error span {
301
+ display: inline-block;
302
+ vertical-align: middle;
303
+ }
304
+
305
  /* Notes
306
  -------------------------------------------------------------- */
307
  .note {
315
  letter-spacing: 0.1px;
316
  }
317
 
318
+ /* Help text
319
+ -------------------------------------------------------------- */
320
+ td.help-text {
321
+ font-family: Verdana, Geneva, sans-serif;
322
+ font-size: 12px;
323
+ font-style: italic;
324
+ float: left;
325
+ clear: left;
326
+ color: #797979;
327
+ line-height: 15px;
328
+ padding-top: 0;
329
+ }
330
+
331
  /* Spoilers
332
  -------------------------------------------------------------- */
333
  .panel-group {
563
  font-weight: normal;
564
  }
565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  /* Control: Field
567
  -------------------------------------------------------------- */
568
  .control-field,
inc/php/messages.php CHANGED
@@ -8,29 +8,37 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
8
  /**
9
  * Hello message - Bootstrap Modal
10
  */
11
- function spacexchimp_p005_hello_message() {
12
 
13
- $options = get_option( SPACEXCHIMP_P005_SETTINGS . '_settings' );
 
 
 
14
 
 
 
 
 
15
  if ( !empty( $options ) ) {
16
  return;
17
  }
18
 
 
19
  ?>
20
  <div id="hello-message" class="modal fade hello-message" role="dialog">
21
  <div class="modal-dialog">
22
  <div class="modal-content">
23
  <div class="modal-body">
24
- <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/spacexchimp-logo.png'; ?>">
25
  <button type="button" class="close" data-dismiss="modal">&times;</button>
26
  <p>
27
- <?php _e( 'Hello!', SPACEXCHIMP_P005_TEXT ); ?>
28
- <?php _e( 'We are the team of Space X-Chimp.', SPACEXCHIMP_P005_TEXT ); ?>
29
  </p>
30
  <p>
31
  <?php
32
  printf(
33
- __( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P005_TEXT ),
34
  '&#x1F603;'
35
  );
36
  ?>
@@ -39,6 +47,10 @@ function spacexchimp_p005_hello_message() {
39
  </div>
40
  </div>
41
  </div>
 
 
 
 
42
  <script>
43
  jQuery(document).ready(function($) {
44
 
@@ -57,26 +69,37 @@ function spacexchimp_p005_hello_message() {
57
  /**
58
  * Error message (When the old version of plugin installed) - Bootstrap Modal
59
  */
60
- function spacexchimp_p005_error_message() {
 
 
 
 
61
 
62
- $info = get_option( SPACEXCHIMP_P005_SETTINGS . '_service_info' );
 
63
  $old_version = !empty( $info['old_version'] ) ? $info['old_version'] : '0';
64
 
 
65
  if ( $old_version != '1' ) {
66
  return;
67
  }
68
 
 
69
  ?>
70
  <div id="error-message" class="modal fade error-message" role="dialog">
71
  <div class="modal-dialog">
72
  <div class="modal-content">
73
  <div class="modal-body">
74
- <p><?php _e( 'You have installed an old version of this plugin.', SPACEXCHIMP_P005_TEXT ); ?></p>
75
- <p><?php _e( 'Please update the plugin to the latest version, and all will be fine.', SPACEXCHIMP_P005_TEXT ); ?></p>
76
  </div>
77
  </div>
78
  </div>
79
  </div>
 
 
 
 
80
  <script>
81
  jQuery(document).ready(function($) {
82
  $("#error-message").modal( {backdrop: "static", keyboard: false} );
@@ -84,3 +107,27 @@ function spacexchimp_p005_error_message() {
84
  </script>
85
  <?php
86
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  /**
9
  * Hello message - Bootstrap Modal
10
  */
11
+ function spacexchimp_p005_message_hello() {
12
 
13
+ // Put value of constants to variables for easier access
14
+ $settings = SPACEXCHIMP_P005_SETTINGS;
15
+ $url = SPACEXCHIMP_P005_URL;
16
+ $text = SPACEXCHIMP_P005_TEXT;
17
 
18
+ // Retrieve options from database and declare variables
19
+ $options = get_option( $settings . '_settings' );
20
+
21
+ // Exit if options are already set in database
22
  if ( !empty( $options ) ) {
23
  return;
24
  }
25
 
26
+ // HTML layout
27
  ?>
28
  <div id="hello-message" class="modal fade hello-message" role="dialog">
29
  <div class="modal-dialog">
30
  <div class="modal-content">
31
  <div class="modal-body">
32
+ <img src="<?php echo $url . 'inc/img/spacexchimp-logo.png'; ?>">
33
  <button type="button" class="close" data-dismiss="modal">&times;</button>
34
  <p>
35
+ <?php _e( 'Hello!', $text ); ?>
36
+ <?php _e( 'We are the team of Space X-Chimp.', $text ); ?>
37
  </p>
38
  <p>
39
  <?php
40
  printf(
41
+ __( 'Thank you for installing our plugin! We hope you will love it! %s', $text ),
42
  '&#x1F603;'
43
  );
44
  ?>
47
  </div>
48
  </div>
49
  </div>
50
+ <?php
51
+
52
+ // Inline JavaScript
53
+ ?>
54
  <script>
55
  jQuery(document).ready(function($) {
56
 
69
  /**
70
  * Error message (When the old version of plugin installed) - Bootstrap Modal
71
  */
72
+ function spacexchimp_p005_message_error_version() {
73
+
74
+ // Put value of constants to variables for easier access
75
+ $settings = SPACEXCHIMP_P005_SETTINGS;
76
+ $text = SPACEXCHIMP_P005_TEXT;
77
 
78
+ // Retrieve options from database and declare variables
79
+ $info = get_option( $settings . '_service_info' );
80
  $old_version = !empty( $info['old_version'] ) ? $info['old_version'] : '0';
81
 
82
+ // Exit if this is not the old version of the plugin
83
  if ( $old_version != '1' ) {
84
  return;
85
  }
86
 
87
+ // HTML layout
88
  ?>
89
  <div id="error-message" class="modal fade error-message" role="dialog">
90
  <div class="modal-dialog">
91
  <div class="modal-content">
92
  <div class="modal-body">
93
+ <p><?php _e( 'You have installed an old version of this plugin.', $text ); ?></p>
94
+ <p><?php _e( 'Please update the plugin to the latest version, and all will be fine.', $text ); ?></p>
95
  </div>
96
  </div>
97
  </div>
98
  </div>
99
+ <?php
100
+
101
+ // Inline JavaScript
102
+ ?>
103
  <script>
104
  jQuery(document).ready(function($) {
105
  $("#error-message").modal( {backdrop: "static", keyboard: false} );
107
  </script>
108
  <?php
109
  }
110
+
111
+ /**
112
+ * Save message
113
+ */
114
+ function spacexchimp_p005_message_save() {
115
+
116
+ // Exit if settings are not updated
117
+ if ( !isset( $_GET['settings-updated'] ) ) {
118
+ return;
119
+ }
120
+
121
+ // Put value of constants to variables for easier access
122
+ $text = SPACEXCHIMP_P005_TEXT;
123
+
124
+ // HTML layout
125
+ ?>
126
+ <div id="message" class="updated">
127
+ <p>
128
+ <i class="fa fa-check" aria-hidden="true"></i>
129
+ <?php _e( 'Settings saved successfully.', $text ); ?>
130
+ </p>
131
+ </div>
132
+ <?php
133
+ }
inc/php/page.php CHANGED
@@ -18,8 +18,9 @@ function spacexchimp_p005_render_submenu_page() {
18
  $path = SPACEXCHIMP_P005_PATH;
19
 
20
  // Call messages
21
- spacexchimp_p005_hello_message();
22
- spacexchimp_p005_error_message();
 
23
 
24
  // Layout of page
25
  ?>
18
  $path = SPACEXCHIMP_P005_PATH;
19
 
20
  // Call messages
21
+ spacexchimp_p005_message_hello();
22
+ spacexchimp_p005_message_error_version();
23
+ spacexchimp_p005_message_save();
24
 
25
  // Layout of page
26
  ?>
inc/php/tabs/support.php CHANGED
@@ -31,7 +31,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
31
  '<a href="https://www.spacexchimp.com" target="_blank">',
32
  '</a>'
33
  );
34
- ?>
35
  </p>
36
  <p>
37
  <?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
31
  '<a href="https://www.spacexchimp.com" target="_blank">',
32
  '</a>'
33
  );
34
+ ?>
35
  </p>
36
  <p>
37
  <?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
inc/php/upgrade.php CHANGED
@@ -28,7 +28,7 @@ function spacexchimp_p005_upgrade_4_19() {
28
  $service_info_new = is_array( $service_info_old ) ? $service_info_old : array();
29
  $service_info_new['upgrade'] = $upgrade_number_new;
30
 
31
- // Exit if the upgrade is not needed or alreade done
32
  if ( $upgrade_number_current >= $upgrade_number_new ) return;
33
 
34
  // Update service info in the database
@@ -45,7 +45,7 @@ function spacexchimp_p005_upgrade_4_19() {
45
  // Setting array with new data
46
  $settings_new = is_array( $settings_current ) ? $settings_current : array();
47
 
48
- // Exit if the upgrade is not needed or alreade done
49
  if ( empty( $settings_current ) ) return;
50
 
51
  // Update plugin setting in the database
@@ -73,7 +73,7 @@ function spacexchimp_p005_upgrade_4_36() {
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
@@ -90,7 +90,7 @@ function spacexchimp_p005_upgrade_4_36() {
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
 
28
  $service_info_new = is_array( $service_info_old ) ? $service_info_old : array();
29
  $service_info_new['upgrade'] = $upgrade_number_new;
30
 
31
+ // Exit if the upgrade is not needed or already done
32
  if ( $upgrade_number_current >= $upgrade_number_new ) return;
33
 
34
  // Update service info in the database
45
  // Setting array with new data
46
  $settings_new = is_array( $settings_current ) ? $settings_current : array();
47
 
48
+ // Exit if the upgrade is not needed or already done
49
  if ( empty( $settings_current ) ) return;
50
 
51
  // Update plugin setting in the database
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 already done
77
  if ( $upgrade_number_current >= $upgrade_number_new ) return;
78
 
79
  // Setting array with new data
90
  $settings = get_option( $prefix . '_settings' );
91
  $settings = is_array( $settings ) ? $settings : array();
92
 
93
+ // Exit if the upgrade is not needed or already done
94
  if ( empty( $settings ) ) return;
95
  if ( !array_key_exists( 'media', $settings ) ) return;
96
 
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: 2019-03-01 06:51+0300\n"
7
- "PO-Revision-Date: 2019-03-01 06:51+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:23 inc/php/page.php:46
24
  msgid "Settings"
25
  msgstr "Einstellungen"
26
 
@@ -61,49 +61,53 @@ msgstr "Link zu Ihrer persönlichen Webseite."
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr "Geben Sie den Link zu Ihrem RSS Feed ein."
63
 
64
- #: inc/php/messages.php:27 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "Hallo!"
67
 
68
- #: inc/php/messages.php:28
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Wir sind das Team von Space X-Chimp."
71
 
72
- #: inc/php/messages.php:33
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
76
 
77
- #: inc/php/messages.php:74
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
80
 
81
- #: inc/php/messages.php:75
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
84
 
85
- #: inc/php/page.php:33
 
 
 
 
86
  #, php-format
87
  msgid "by %s Space X-Chimp %s"
88
  msgstr "by %s Space X-Chimp %s"
89
 
90
- #: inc/php/page.php:39
91
  msgid "Version"
92
  msgstr "Version"
93
 
94
- #: inc/php/page.php:47
95
  msgid "Usage"
96
  msgstr "Verwendung"
97
 
98
- #: inc/php/page.php:48
99
  msgid "F.A.Q."
100
  msgstr "F.A.Q."
101
 
102
- #: inc/php/page.php:49 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
103
  msgid "Support"
104
  msgstr "Unterstützung"
105
 
106
- #: inc/php/page.php:50
107
  msgid "Store"
108
  msgstr "Geschäft"
109
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2019-03-18 21:16+0300\n"
7
+ "PO-Revision-Date: 2019-03-18 21:17+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\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:47
24
  msgid "Settings"
25
  msgstr "Einstellungen"
26
 
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr "Geben Sie den Link zu Ihrem RSS Feed ein."
63
 
64
+ #: inc/php/messages.php:35 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "Hallo!"
67
 
68
+ #: inc/php/messages.php:36
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Wir sind das Team von Space X-Chimp."
71
 
72
+ #: inc/php/messages.php:41
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
76
 
77
+ #: inc/php/messages.php:93
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
80
 
81
+ #: inc/php/messages.php:94
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
84
 
85
+ #: inc/php/messages.php:129
86
+ msgid "Settings saved successfully."
87
+ msgstr ""
88
+
89
+ #: inc/php/page.php:34
90
  #, php-format
91
  msgid "by %s Space X-Chimp %s"
92
  msgstr "by %s Space X-Chimp %s"
93
 
94
+ #: inc/php/page.php:40
95
  msgid "Version"
96
  msgstr "Version"
97
 
98
+ #: inc/php/page.php:48
99
  msgid "Usage"
100
  msgstr "Verwendung"
101
 
102
+ #: inc/php/page.php:49
103
  msgid "F.A.Q."
104
  msgstr "F.A.Q."
105
 
106
+ #: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
107
  msgid "Support"
108
  msgstr "Unterstützung"
109
 
110
+ #: inc/php/page.php:51
111
  msgid "Store"
112
  msgstr "Geschäft"
113
 
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: 2019-03-01 06:51+0300\n"
7
- "PO-Revision-Date: 2019-03-01 06:51+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:23 inc/php/page.php:46
24
  msgid "Settings"
25
  msgstr "Ajustes"
26
 
@@ -61,49 +61,53 @@ msgstr "Ingresa el enlace a tu sitio web personal."
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr "Ingresa el enlace a tu Feed de RSS."
63
 
64
- #: inc/php/messages.php:27 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "¡Hola!"
67
 
68
- #: inc/php/messages.php:28
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Somos el equipo de Space X-Chimp."
71
 
72
- #: inc/php/messages.php:33
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
76
 
77
- #: inc/php/messages.php:74
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Has instalado una versión antigua de este complemento."
80
 
81
- #: inc/php/messages.php:75
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
84
 
85
- #: inc/php/page.php:33
 
 
 
 
86
  #, php-format
87
  msgid "by %s Space X-Chimp %s"
88
  msgstr "por %s Space X-Chimp %s"
89
 
90
- #: inc/php/page.php:39
91
  msgid "Version"
92
  msgstr "Versión"
93
 
94
- #: inc/php/page.php:47
95
  msgid "Usage"
96
  msgstr "Uso"
97
 
98
- #: inc/php/page.php:48
99
  msgid "F.A.Q."
100
  msgstr "Preguntas ?"
101
 
102
- #: inc/php/page.php:49 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
103
  msgid "Support"
104
  msgstr "Soporte"
105
 
106
- #: inc/php/page.php:50
107
  msgid "Store"
108
  msgstr "Tienda"
109
 
@@ -244,7 +248,7 @@ msgstr ""
244
 
245
  #: inc/php/tabs/faq.php:101
246
  msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
247
- msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
248
 
249
  #: inc/php/tabs/faq.php:102
250
  msgid "Many of plugin users would be delighted if you share your translation with the community."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2019-03-18 21:17+0300\n"
7
+ "PO-Revision-Date: 2019-03-18 21:17+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\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:47
24
  msgid "Settings"
25
  msgstr "Ajustes"
26
 
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr "Ingresa el enlace a tu Feed de RSS."
63
 
64
+ #: inc/php/messages.php:35 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "¡Hola!"
67
 
68
+ #: inc/php/messages.php:36
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Somos el equipo de Space X-Chimp."
71
 
72
+ #: inc/php/messages.php:41
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
76
 
77
+ #: inc/php/messages.php:93
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Has instalado una versión antigua de este complemento."
80
 
81
+ #: inc/php/messages.php:94
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
84
 
85
+ #: inc/php/messages.php:129
86
+ msgid "Settings saved successfully."
87
+ msgstr ""
88
+
89
+ #: inc/php/page.php:34
90
  #, php-format
91
  msgid "by %s Space X-Chimp %s"
92
  msgstr "por %s Space X-Chimp %s"
93
 
94
+ #: inc/php/page.php:40
95
  msgid "Version"
96
  msgstr "Versión"
97
 
98
+ #: inc/php/page.php:48
99
  msgid "Usage"
100
  msgstr "Uso"
101
 
102
+ #: inc/php/page.php:49
103
  msgid "F.A.Q."
104
  msgstr "Preguntas ?"
105
 
106
+ #: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
107
  msgid "Support"
108
  msgstr "Soporte"
109
 
110
+ #: inc/php/page.php:51
111
  msgid "Store"
112
  msgstr "Tienda"
113
 
248
 
249
  #: inc/php/tabs/faq.php:101
250
  msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
251
+ msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones."
252
 
253
  #: inc/php/tabs/faq.php:102
254
  msgid "Many of plugin users would be delighted if you share your translation with the community."
languages/social-media-buttons-toolbar-fr_FR.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-fr_FR.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
- "POT-Creation-Date: 2019-03-01 06:51+0300\n"
7
- "PO-Revision-Date: 2019-03-01 06:51+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: French\n"
10
  "Language: fr_FR\n"
@@ -19,7 +19,7 @@ msgstr ""
19
  "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: inc/php/core.php:23 inc/php/page.php:46
23
  msgid "Settings"
24
  msgstr "Paramètres"
25
 
@@ -60,49 +60,53 @@ msgstr ""
60
  msgid "Enter the URL of your RSS feed."
61
  msgstr ""
62
 
63
- #: inc/php/messages.php:27 inc/php/tabs/support.php:25
64
  msgid "Hello!"
65
  msgstr "Salut."
66
 
67
- #: inc/php/messages.php:28
68
  msgid "We are the team of Space X-Chimp."
69
  msgstr "Nous sommes l'équipe de Space X-Chimp."
70
 
71
- #: inc/php/messages.php:33
72
  #, php-format
73
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
74
  msgstr "Merci pour l'installation de notre plugin! Nous espérons que vous allez l'adorer! %s"
75
 
76
- #: inc/php/messages.php:74
77
  msgid "You have installed an old version of this plugin."
78
  msgstr ""
79
 
80
- #: inc/php/messages.php:75
81
  msgid "Please update the plugin to the latest version, and all will be fine."
82
  msgstr ""
83
 
84
- #: inc/php/page.php:33
 
 
 
 
85
  #, php-format
86
  msgid "by %s Space X-Chimp %s"
87
  msgstr "par %s Space X-Chimp %s"
88
 
89
- #: inc/php/page.php:39
90
  msgid "Version"
91
  msgstr "Version"
92
 
93
- #: inc/php/page.php:47
94
  msgid "Usage"
95
  msgstr "Utilisation"
96
 
97
- #: inc/php/page.php:48
98
  msgid "F.A.Q."
99
  msgstr "FAQ."
100
 
101
- #: inc/php/page.php:49 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
102
  msgid "Support"
103
  msgstr "Support"
104
 
105
- #: inc/php/page.php:50
106
  msgid "Store"
107
  msgstr "Le magasin"
108
 
@@ -243,7 +247,7 @@ msgstr ""
243
 
244
  #: inc/php/tabs/faq.php:101
245
  msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
246
- msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections!"
247
 
248
  #: inc/php/tabs/faq.php:102
249
  msgid "Many of plugin users would be delighted if you share your translation with the community."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2019-03-18 21:17+0300\n"
7
+ "PO-Revision-Date: 2019-03-18 21:17+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: French\n"
10
  "Language: fr_FR\n"
19
  "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: inc/php/core.php:23 inc/php/page.php:47
23
  msgid "Settings"
24
  msgstr "Paramètres"
25
 
60
  msgid "Enter the URL of your RSS feed."
61
  msgstr ""
62
 
63
+ #: inc/php/messages.php:35 inc/php/tabs/support.php:25
64
  msgid "Hello!"
65
  msgstr "Salut."
66
 
67
+ #: inc/php/messages.php:36
68
  msgid "We are the team of Space X-Chimp."
69
  msgstr "Nous sommes l'équipe de Space X-Chimp."
70
 
71
+ #: inc/php/messages.php:41
72
  #, php-format
73
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
74
  msgstr "Merci pour l'installation de notre plugin! Nous espérons que vous allez l'adorer! %s"
75
 
76
+ #: inc/php/messages.php:93
77
  msgid "You have installed an old version of this plugin."
78
  msgstr ""
79
 
80
+ #: inc/php/messages.php:94
81
  msgid "Please update the plugin to the latest version, and all will be fine."
82
  msgstr ""
83
 
84
+ #: inc/php/messages.php:129
85
+ msgid "Settings saved successfully."
86
+ msgstr ""
87
+
88
+ #: inc/php/page.php:34
89
  #, php-format
90
  msgid "by %s Space X-Chimp %s"
91
  msgstr "par %s Space X-Chimp %s"
92
 
93
+ #: inc/php/page.php:40
94
  msgid "Version"
95
  msgstr "Version"
96
 
97
+ #: inc/php/page.php:48
98
  msgid "Usage"
99
  msgstr "Utilisation"
100
 
101
+ #: inc/php/page.php:49
102
  msgid "F.A.Q."
103
  msgstr "FAQ."
104
 
105
+ #: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
106
  msgid "Support"
107
  msgstr "Support"
108
 
109
+ #: inc/php/page.php:51
110
  msgid "Store"
111
  msgstr "Le magasin"
112
 
247
 
248
  #: inc/php/tabs/faq.php:101
249
  msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
250
+ msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections."
251
 
252
  #: inc/php/tabs/faq.php:102
253
  msgid "Many of plugin users would be delighted if you share your translation with the community."
languages/social-media-buttons-toolbar-nl_NL.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-nl_NL.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
- "POT-Creation-Date: 2019-03-01 06:51+0300\n"
7
- "PO-Revision-Date: 2019-03-01 06:51+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:23 inc/php/page.php:46
24
  msgid "Settings"
25
  msgstr "Instellingen"
26
 
@@ -61,49 +61,53 @@ msgstr ""
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr ""
63
 
64
- #: inc/php/messages.php:27 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "Hallo!"
67
 
68
- #: inc/php/messages.php:28
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Wij zijn het team van Space X-Chimp."
71
 
72
- #: inc/php/messages.php:33
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
76
 
77
- #: inc/php/messages.php:74
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
80
 
81
- #: inc/php/messages.php:75
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
84
 
85
- #: inc/php/page.php:33
 
 
 
 
86
  #, php-format
87
  msgid "by %s Space X-Chimp %s"
88
  msgstr "door %s Space X-Chimp %s"
89
 
90
- #: inc/php/page.php:39
91
  msgid "Version"
92
  msgstr "Versie"
93
 
94
- #: inc/php/page.php:47
95
  msgid "Usage"
96
  msgstr "Gebruik"
97
 
98
- #: inc/php/page.php:48
99
  msgid "F.A.Q."
100
  msgstr "F.A.Q."
101
 
102
- #: inc/php/page.php:49 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
103
  msgid "Support"
104
  msgstr "Ondersteuning"
105
 
106
- #: inc/php/page.php:50
107
  msgid "Store"
108
  msgstr "Winkel"
109
 
@@ -244,7 +248,7 @@ msgstr ""
244
 
245
  #: inc/php/tabs/faq.php:101
246
  msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
247
- msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
248
 
249
  #: inc/php/tabs/faq.php:102
250
  msgid "Many of plugin users would be delighted if you share your translation with the community."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2019-03-18 21:17+0300\n"
7
+ "PO-Revision-Date: 2019-03-18 21:17+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\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:47
24
  msgid "Settings"
25
  msgstr "Instellingen"
26
 
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr ""
63
 
64
+ #: inc/php/messages.php:35 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "Hallo!"
67
 
68
+ #: inc/php/messages.php:36
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Wij zijn het team van Space X-Chimp."
71
 
72
+ #: inc/php/messages.php:41
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
76
 
77
+ #: inc/php/messages.php:93
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
80
 
81
+ #: inc/php/messages.php:94
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
84
 
85
+ #: inc/php/messages.php:129
86
+ msgid "Settings saved successfully."
87
+ msgstr ""
88
+
89
+ #: inc/php/page.php:34
90
  #, php-format
91
  msgid "by %s Space X-Chimp %s"
92
  msgstr "door %s Space X-Chimp %s"
93
 
94
+ #: inc/php/page.php:40
95
  msgid "Version"
96
  msgstr "Versie"
97
 
98
+ #: inc/php/page.php:48
99
  msgid "Usage"
100
  msgstr "Gebruik"
101
 
102
+ #: inc/php/page.php:49
103
  msgid "F.A.Q."
104
  msgstr "F.A.Q."
105
 
106
+ #: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
107
  msgid "Support"
108
  msgstr "Ondersteuning"
109
 
110
+ #: inc/php/page.php:51
111
  msgid "Store"
112
  msgstr "Winkel"
113
 
248
 
249
  #: inc/php/tabs/faq.php:101
250
  msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
251
+ msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen."
252
 
253
  #: inc/php/tabs/faq.php:102
254
  msgid "Many of plugin users would be delighted if you share your translation with the community."
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: 2019-03-01 06:51+0300\n"
7
- "PO-Revision-Date: 2019-03-01 06:51+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:23 inc/php/page.php:46
24
  msgid "Settings"
25
  msgstr "Настройки"
26
 
@@ -61,49 +61,53 @@ msgstr "Введите URL вашего персонального веб-сай
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr "Введите URL вашего RSS потока."
63
 
64
- #: inc/php/messages.php:27 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "Привет!"
67
 
68
- #: inc/php/messages.php:28
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Мы - команда Space X-Chimp."
71
 
72
- #: inc/php/messages.php:33
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
76
 
77
- #: inc/php/messages.php:74
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Вы установили устаревшую версию этого плагина."
80
 
81
- #: inc/php/messages.php:75
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
84
 
85
- #: inc/php/page.php:33
 
 
 
 
86
  #, php-format
87
  msgid "by %s Space X-Chimp %s"
88
  msgstr "от %s Space X-Chimp %s"
89
 
90
- #: inc/php/page.php:39
91
  msgid "Version"
92
  msgstr "Версия"
93
 
94
- #: inc/php/page.php:47
95
  msgid "Usage"
96
  msgstr "Применение"
97
 
98
- #: inc/php/page.php:48
99
  msgid "F.A.Q."
100
  msgstr "F.A.Q."
101
 
102
- #: inc/php/page.php:49 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
103
  msgid "Support"
104
  msgstr "Поддержка"
105
 
106
- #: inc/php/page.php:50
107
  msgid "Store"
108
  msgstr "Магазин"
109
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2019-03-18 21:17+0300\n"
7
+ "PO-Revision-Date: 2019-03-18 21:17+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\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:47
24
  msgid "Settings"
25
  msgstr "Настройки"
26
 
61
  msgid "Enter the URL of your RSS feed."
62
  msgstr "Введите URL вашего RSS потока."
63
 
64
+ #: inc/php/messages.php:35 inc/php/tabs/support.php:25
65
  msgid "Hello!"
66
  msgstr "Привет!"
67
 
68
+ #: inc/php/messages.php:36
69
  msgid "We are the team of Space X-Chimp."
70
  msgstr "Мы - команда Space X-Chimp."
71
 
72
+ #: inc/php/messages.php:41
73
  #, php-format
74
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
75
  msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
76
 
77
+ #: inc/php/messages.php:93
78
  msgid "You have installed an old version of this plugin."
79
  msgstr "Вы установили устаревшую версию этого плагина."
80
 
81
+ #: inc/php/messages.php:94
82
  msgid "Please update the plugin to the latest version, and all will be fine."
83
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
84
 
85
+ #: inc/php/messages.php:129
86
+ msgid "Settings saved successfully."
87
+ msgstr ""
88
+
89
+ #: inc/php/page.php:34
90
  #, php-format
91
  msgid "by %s Space X-Chimp %s"
92
  msgstr "от %s Space X-Chimp %s"
93
 
94
+ #: inc/php/page.php:40
95
  msgid "Version"
96
  msgstr "Версия"
97
 
98
+ #: inc/php/page.php:48
99
  msgid "Usage"
100
  msgstr "Применение"
101
 
102
+ #: inc/php/page.php:49
103
  msgid "F.A.Q."
104
  msgstr "F.A.Q."
105
 
106
+ #: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
107
  msgid "Support"
108
  msgstr "Поддержка"
109
 
110
+ #: inc/php/page.php:51
111
  msgid "Store"
112
  msgstr "Магазин"
113
 
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: 2019-03-01 06:51+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
 
21
- #: inc/php/core.php:23 inc/php/page.php:46
22
  msgid "Settings"
23
  msgstr ""
24
 
@@ -59,49 +59,53 @@ msgstr ""
59
  msgid "Enter the URL of your RSS feed."
60
  msgstr ""
61
 
62
- #: inc/php/messages.php:27 inc/php/tabs/support.php:25
63
  msgid "Hello!"
64
  msgstr ""
65
 
66
- #: inc/php/messages.php:28
67
  msgid "We are the team of Space X-Chimp."
68
  msgstr ""
69
 
70
- #: inc/php/messages.php:33
71
  #, php-format
72
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
73
  msgstr ""
74
 
75
- #: inc/php/messages.php:74
76
  msgid "You have installed an old version of this plugin."
77
  msgstr ""
78
 
79
- #: inc/php/messages.php:75
80
  msgid "Please update the plugin to the latest version, and all will be fine."
81
  msgstr ""
82
 
83
- #: inc/php/page.php:33
 
 
 
 
84
  #, php-format
85
  msgid "by %s Space X-Chimp %s"
86
  msgstr ""
87
 
88
- #: inc/php/page.php:39
89
  msgid "Version"
90
  msgstr ""
91
 
92
- #: inc/php/page.php:47
93
  msgid "Usage"
94
  msgstr ""
95
 
96
- #: inc/php/page.php:48
97
  msgid "F.A.Q."
98
  msgstr ""
99
 
100
- #: inc/php/page.php:49 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
101
  msgid "Support"
102
  msgstr ""
103
 
104
- #: inc/php/page.php:50
105
  msgid "Store"
106
  msgstr ""
107
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Follow Buttons Bar\n"
6
+ "POT-Creation-Date: 2019-03-18 21:17+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
 
21
+ #: inc/php/core.php:23 inc/php/page.php:47
22
  msgid "Settings"
23
  msgstr ""
24
 
59
  msgid "Enter the URL of your RSS feed."
60
  msgstr ""
61
 
62
+ #: inc/php/messages.php:35 inc/php/tabs/support.php:25
63
  msgid "Hello!"
64
  msgstr ""
65
 
66
+ #: inc/php/messages.php:36
67
  msgid "We are the team of Space X-Chimp."
68
  msgstr ""
69
 
70
+ #: inc/php/messages.php:41
71
  #, php-format
72
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
73
  msgstr ""
74
 
75
+ #: inc/php/messages.php:93
76
  msgid "You have installed an old version of this plugin."
77
  msgstr ""
78
 
79
+ #: inc/php/messages.php:94
80
  msgid "Please update the plugin to the latest version, and all will be fine."
81
  msgstr ""
82
 
83
+ #: inc/php/messages.php:129
84
+ msgid "Settings saved successfully."
85
+ msgstr ""
86
+
87
+ #: inc/php/page.php:34
88
  #, php-format
89
  msgid "by %s Space X-Chimp %s"
90
  msgstr ""
91
 
92
+ #: inc/php/page.php:40
93
  msgid "Version"
94
  msgstr ""
95
 
96
+ #: inc/php/page.php:48
97
  msgid "Usage"
98
  msgstr ""
99
 
100
+ #: inc/php/page.php:49
101
  msgid "F.A.Q."
102
  msgstr ""
103
 
104
+ #: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:150
105
  msgid "Support"
106
  msgstr ""
107
 
108
+ #: inc/php/page.php:51
109
  msgid "Store"
110
  msgstr ""
111
 
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: 5.1
7
- Stable tag: 4.50
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -178,12 +178,12 @@ If you want to help translate this plugin, please visit the [translation page](h
178
 
179
  **Minimum system requirements:**
180
 
181
- * [PHP](https://php.net) version **5.2** or higher.
182
  * [MySQL](https://www.mysql.com) version **5.0** or higher.
183
 
184
  **Recommended system requirements:**
185
 
186
- * [PHP](https://php.net) version **7.0** or higher.
187
  * [MySQL](https://www.mysql.com) version **5.6** or higher.
188
 
189
  **Contribution**
@@ -191,7 +191,7 @@ If you want to help translate this plugin, please visit the [translation page](h
191
  Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
192
 
193
  * [Donate](https://www.spacexchimp.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
194
- * [Rate and Review](https://wordpress.org/support/view/plugin-reviews/social-media-buttons-toolbar?rate=5#postform) this plugin.
195
  * [Share with us](https://www.spacexchimp.com/contact.html) or view the [GitHub Repo](https://github.com/ArthurGareginyan/social-media-buttons-toolbar) if you have any ideas or suggestions to make this plugin better.
196
 
197
 
@@ -310,6 +310,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
310
 
311
  == Changelog ==
312
 
 
 
 
 
 
313
  = 4.50 - 2019-03-04 =
314
  * Improved compatibility with third-party themes.
315
 
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 5.1
7
+ Stable tag: 4.51
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
178
 
179
  **Minimum system requirements:**
180
 
181
+ * [PHP](https://secure.php.net) version **5.2** or higher.
182
  * [MySQL](https://www.mysql.com) version **5.0** or higher.
183
 
184
  **Recommended system requirements:**
185
 
186
+ * [PHP](https://secure.php.net) version **7.0** or higher.
187
  * [MySQL](https://www.mysql.com) version **5.6** or higher.
188
 
189
  **Contribution**
191
  Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
192
 
193
  * [Donate](https://www.spacexchimp.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
194
+ * [Rate and Review](https://wordpress.org/support/plugin/social-media-buttons-toolbar/reviews/#new-post) this plugin.
195
  * [Share with us](https://www.spacexchimp.com/contact.html) or view the [GitHub Repo](https://github.com/ArthurGareginyan/social-media-buttons-toolbar) if you have any ideas or suggestions to make this plugin better.
196
 
197
 
310
 
311
  == Changelog ==
312
 
313
+ = 4.51 - 2019-03-18 =
314
+ * Improvement: Notification display system updated
315
+ * Code commenting improved.
316
+ * Style sheet for the back end is optimised.
317
+
318
  = 4.50 - 2019-03-04 =
319
  * Improved compatibility with third-party themes.
320
 
social-media-buttons-toolbar.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
- * Version: 4.50
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
5
  * Description: Easily and safely add a smart bar with social media follow buttons (not share, only link to your profiles) to any place (post content, page content, widget, sidebar, header, footer) of your WordPress website.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
+ * Version: 4.51
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/