Social Media Follow Buttons Bar - Version 4.23

Version Description

  • At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
Download this release

Release Info

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

Code changes from version 4.22 to 4.23

inc/php/core.php CHANGED
@@ -20,7 +20,7 @@ add_action( 'init', 'spacexchimp_p005_textdomain' );
20
  * and inserts a link to the plugin admin page
21
  */
22
  function spacexchimp_p005_settings_link( $links ) {
23
- $page = '<a href="' . admin_url( 'admin.php?page=spacexchimp/' . SPACEXCHIMP_P005_SLUG ) .'">' . __( 'Settings', SPACEXCHIMP_P005_TEXT ) . '</a>';
24
  array_unshift( $links, $page );
25
  return $links;
26
  }
@@ -44,55 +44,20 @@ function spacexchimp_p005_plugin_row_meta( $links, $file ) {
44
  add_filter( 'plugin_row_meta', 'spacexchimp_p005_plugin_row_meta', 10, 2 );
45
 
46
  /**
47
- * Register brand menu item in the Admin Menu
48
- */
49
- function spacexchimp_p005_register_admin_menu() {
50
-
51
- // Return if the brand menu item is already existed
52
- if ( !empty ( $GLOBALS['admin_page_hooks']['spacexchimp'] ) ) return;
53
-
54
- $page_title = 'Space X-Chimp';
55
- $menu_title = 'Space X-Chimp';
56
- $capability = 'manage_options';
57
- $menu_slug = 'spacexchimp';
58
- $function = null;
59
- $icon_url = 'dashicons-star-filled';
60
- $position = 66;
61
-
62
- add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
63
- }
64
- add_action( 'admin_menu', 'spacexchimp_p005_register_admin_menu' );
65
-
66
- /**
67
- * Register plugin's submenu item in the brand menu item
68
  */
69
  function spacexchimp_p005_register_submenu_page() {
70
 
71
- $parent_slug = 'spacexchimp';
72
  $page_title = SPACEXCHIMP_P005_NAME;
73
  $menu_title = __( 'Social Media Follow Buttons', SPACEXCHIMP_P005_TEXT );
74
  $capability = 'manage_options';
75
- $menu_slug = 'spacexchimp/' . SPACEXCHIMP_P005_SLUG;
76
  $function = 'spacexchimp_p005_render_submenu_page';
77
 
78
- add_submenu_page( $parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function);
79
  }
80
  add_action( 'admin_menu', 'spacexchimp_p005_register_submenu_page' );
81
 
82
- /**
83
- * Remove the 'Space X-Chimp' sub menu item in the brand menu item
84
- */
85
- function spacexchimp_p005_remove_submenu_item() {
86
-
87
- // Read global variable
88
- global $submenu;
89
-
90
- if ( isset( $submenu['spacexchimp'] ) ) {
91
- unset( $submenu['spacexchimp'][0] );
92
- }
93
- }
94
- add_action( 'admin_menu', 'spacexchimp_p005_remove_submenu_item' );
95
-
96
  /**
97
  * Register settings
98
  */
@@ -111,7 +76,7 @@ function spacexchimp_p005_admin_footer_text() {
111
  $current_screen = get_current_screen();
112
 
113
  // Return if the page is not a settings page of this plugin
114
- $settings_page = 'space-x-chimp_page_spacexchimp/' . SPACEXCHIMP_P005_SLUG;
115
  if ( $settings_page != $current_screen->id ) return;
116
 
117
  // Filter footer text
20
  * and inserts a link to the plugin admin page
21
  */
22
  function spacexchimp_p005_settings_link( $links ) {
23
+ $page = '<a href="' . admin_url( 'options-general.php?page=' . SPACEXCHIMP_P005_SLUG . '.php' ) .'">' . __( 'Settings', SPACEXCHIMP_P005_TEXT ) . '</a>';
24
  array_unshift( $links, $page );
25
  return $links;
26
  }
44
  add_filter( 'plugin_row_meta', 'spacexchimp_p005_plugin_row_meta', 10, 2 );
45
 
46
  /**
47
+ * Register a submenu item in the top-level menu item "Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  */
49
  function spacexchimp_p005_register_submenu_page() {
50
 
 
51
  $page_title = SPACEXCHIMP_P005_NAME;
52
  $menu_title = __( 'Social Media Follow Buttons', SPACEXCHIMP_P005_TEXT );
53
  $capability = 'manage_options';
54
+ $menu_slug = SPACEXCHIMP_P005_SLUG;
55
  $function = 'spacexchimp_p005_render_submenu_page';
56
 
57
+ add_options_page( $page_title, $menu_title, $capability, $menu_slug, $function );
58
  }
59
  add_action( 'admin_menu', 'spacexchimp_p005_register_submenu_page' );
60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  /**
62
  * Register settings
63
  */
76
  $current_screen = get_current_screen();
77
 
78
  // Return if the page is not a settings page of this plugin
79
+ $settings_page = 'settings_page_' . SPACEXCHIMP_P005_SLUG;
80
  if ( $settings_page != $current_screen->id ) return;
81
 
82
  // Filter footer text
inc/php/enqueue.php CHANGED
@@ -51,7 +51,7 @@ function spacexchimp_p005_load_scripts_admin( $hook ) {
51
  $settings = SPACEXCHIMP_P005_SETTINGS;
52
 
53
  // Return if the page is not a settings page of this plugin
54
- $settings_page = 'space-x-chimp_page_spacexchimp/' . $slug;
55
  if ( $settings_page != $hook ) return;
56
 
57
  // Read options from database
51
  $settings = SPACEXCHIMP_P005_SETTINGS;
52
 
53
  // Return if the page is not a settings page of this plugin
54
+ $settings_page = 'settings_page_' . $slug;
55
  if ( $settings_page != $hook ) return;
56
 
57
  // Read options from database
inc/php/settings.php CHANGED
@@ -28,10 +28,6 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
28
  <table class="form-table">
29
  <?php require_once( SPACEXCHIMP_P005_PATH . 'inc/php/list.php' ); ?>
30
  </table>
31
- <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
32
- __( 'If you did not find the button you need, then %s and I will gladly add it for you.', $text ),
33
- '<a href="mailto:arthurgareginyan@gmail.com?subject=Request a new button for the ' . $name . ' plugin">tell me</a>'
34
- ); ?></p>
35
  </div>
36
  </div>
37
 
28
  <table class="form-table">
29
  <?php require_once( SPACEXCHIMP_P005_PATH . 'inc/php/list.php' ); ?>
30
  </table>
 
 
 
 
31
  </div>
32
  </div>
33
 
languages/social-media-buttons-toolbar-es_ES.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
- "POT-Creation-Date: 2017-09-15 14:27+0300\n"
7
- "PO-Revision-Date: 2017-09-15 14:27+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -30,7 +30,7 @@ msgstr "Ajustes"
30
  msgid "Donate"
31
  msgstr "Donar"
32
 
33
- #: inc/php/core.php:73
34
  msgid "Social Media Follow Buttons"
35
  msgstr "Social Media Follow Buttons"
36
 
@@ -121,7 +121,7 @@ msgstr "Uso"
121
  msgid "F.A.Q."
122
  msgstr "Preguntas ?"
123
 
124
- #: inc/php/page.php:46 inc/php/settings.php:128 inc/php/sidebar.php:23
125
  msgid "Support"
126
  msgstr "Soporte"
127
 
@@ -199,7 +199,7 @@ msgstr ""
199
  msgid "It's that simple!"
200
  msgstr "¡Es así de simple!"
201
 
202
- #: inc/php/page.php:82 inc/php/settings.php:39
203
  msgid "Note!"
204
  msgstr "¡Nota!"
205
 
@@ -423,7 +423,7 @@ msgstr ""
423
  msgid "Support Me"
424
  msgstr ""
425
 
426
- #: inc/php/page.php:196 inc/php/settings.php:135 inc/php/sidebar.php:30
427
  msgid "Donate with PayPal"
428
  msgstr "Donar con PayPal"
429
 
@@ -458,15 +458,15 @@ msgstr ""
458
  msgid "Thank you for your support!"
459
  msgstr "¡Gracias por tu apoyo!"
460
 
461
- #: inc/php/settings.php:29 inc/php/settings.php:117
462
  msgid "Save changes"
463
  msgstr "Guardar las modificaciones"
464
 
465
- #: inc/php/settings.php:33
466
  msgid "Buttons"
467
  msgstr "Botones"
468
 
469
- #: inc/php/settings.php:35
470
  msgid ""
471
  "Just fill in the required fields to make a buttons. The social networking buttons "
472
  "will lead directly to your profile pages. If you don't want to use any of the "
@@ -476,66 +476,60 @@ msgstr ""
476
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
477
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
478
 
479
- #: inc/php/settings.php:40
480
- #, php-format
481
- msgid ""
482
- "If you did not find the button you need, then %s and I will gladly add it for you."
483
- msgstr ""
484
-
485
- #: inc/php/settings.php:47
486
  msgid "Display options"
487
  msgstr "Opciones de presentación"
488
 
489
- #: inc/php/settings.php:49
490
  msgid "There you can configure this plugin."
491
  msgstr "Aquí puedes configurar este complemento."
492
 
493
- #: inc/php/settings.php:53
494
  msgid "Show on Posts"
495
  msgstr "Mostrar en Entradas"
496
 
497
- #: inc/php/settings.php:54
498
  msgid "Automatically display toolbar below content on Posts."
499
  msgstr ""
500
 
501
- #: inc/php/settings.php:57
502
  msgid "Show on Pages"
503
  msgstr "Mostrar en Páginas"
504
 
505
- #: inc/php/settings.php:58
506
  msgid "Automatically display toolbar below content on Pages."
507
  msgstr ""
508
 
509
- #: inc/php/settings.php:61
510
  msgid "Open in new tab"
511
  msgstr "Abrir en una nueva pestaña"
512
 
513
- #: inc/php/settings.php:62
514
  msgid "Open link in a new tab/window."
515
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
516
 
517
- #: inc/php/settings.php:65
518
  msgid "Tooltips"
519
  msgstr ""
520
 
521
- #: inc/php/settings.php:66
522
  msgid "Enable a tooltips with name of the social media above every button."
523
  msgstr ""
524
 
525
- #: inc/php/settings.php:69
526
  msgid "Icon size"
527
  msgstr "Tamaño de ícono"
528
 
529
- #: inc/php/settings.php:70
530
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
531
  msgstr ""
532
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
533
 
534
- #: inc/php/settings.php:74
535
  msgid "Margin"
536
  msgstr "Margen"
537
 
538
- #: inc/php/settings.php:75
539
  msgid ""
540
  "Enter the size of space (in pixels) between icons in your social media follow "
541
  "buttons bar."
@@ -543,31 +537,31 @@ msgstr ""
543
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social "
544
  "Media."
545
 
546
- #: inc/php/settings.php:82
547
- msgid "Alignment"
548
- msgstr "Alineación"
549
-
550
- #: inc/php/settings.php:88
551
  msgid "Left"
552
  msgstr "Izquierda"
553
 
554
- #: inc/php/settings.php:92
555
  msgid "Center"
556
  msgstr "Centro"
557
 
558
- #: inc/php/settings.php:96
559
  msgid "Right"
560
  msgstr "Derecha"
561
 
562
- #: inc/php/settings.php:103
 
 
 
 
563
  msgid "You can choose the alignment of the buttons bar."
564
  msgstr ""
565
 
566
- #: inc/php/settings.php:108
567
  msgid "Caption"
568
  msgstr "Leyenda"
569
 
570
- #: inc/php/settings.php:109
571
  msgid ""
572
  "Enter the caption to your social media follow buttons bar. It will be displays "
573
  "before the toolbar."
@@ -575,15 +569,15 @@ msgstr ""
575
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
576
  "la barra de botones."
577
 
578
- #: inc/php/settings.php:120
579
  msgid "Live Preview"
580
  msgstr "Vista Previa"
581
 
582
- #: inc/php/settings.php:122
583
  msgid "Click the \"Save changes\" button to update this preview."
584
  msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
585
 
586
- #: inc/php/settings.php:130 inc/php/sidebar.php:25
587
  msgid ""
588
  "I'm an independent developer, without a regular income, so every little "
589
  "contribution helps cover my costs and lets me spend more time building things for "
@@ -593,7 +587,7 @@ msgstr ""
593
  "pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo "
594
  "construyendo cosas para que personas como tú las disfruten."
595
 
596
- #: inc/php/settings.php:137 inc/php/sidebar.php:32
597
  msgid "Thanks for your support!"
598
  msgstr "¡Gracias por tu apoyo!"
599
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-09-23 04:51+0300\n"
7
+ "PO-Revision-Date: 2017-09-23 04:51+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
30
  msgid "Donate"
31
  msgstr "Donar"
32
 
33
+ #: inc/php/core.php:52
34
  msgid "Social Media Follow Buttons"
35
  msgstr "Social Media Follow Buttons"
36
 
121
  msgid "F.A.Q."
122
  msgstr "Preguntas ?"
123
 
124
+ #: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:23
125
  msgid "Support"
126
  msgstr "Soporte"
127
 
199
  msgid "It's that simple!"
200
  msgstr "¡Es así de simple!"
201
 
202
+ #: inc/php/page.php:82
203
  msgid "Note!"
204
  msgstr "¡Nota!"
205
 
423
  msgid "Support Me"
424
  msgstr ""
425
 
426
+ #: inc/php/page.php:196 inc/php/settings.php:104 inc/php/sidebar.php:30
427
  msgid "Donate with PayPal"
428
  msgstr "Donar con PayPal"
429
 
458
  msgid "Thank you for your support!"
459
  msgstr "¡Gracias por tu apoyo!"
460
 
461
+ #: inc/php/settings.php:21 inc/php/settings.php:86
462
  msgid "Save changes"
463
  msgstr "Guardar las modificaciones"
464
 
465
+ #: inc/php/settings.php:25
466
  msgid "Buttons"
467
  msgstr "Botones"
468
 
469
+ #: inc/php/settings.php:27
470
  msgid ""
471
  "Just fill in the required fields to make a buttons. The social networking buttons "
472
  "will lead directly to your profile pages. If you don't want to use any of the "
476
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
477
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
478
 
479
+ #: inc/php/settings.php:35
 
 
 
 
 
 
480
  msgid "Display options"
481
  msgstr "Opciones de presentación"
482
 
483
+ #: inc/php/settings.php:37
484
  msgid "There you can configure this plugin."
485
  msgstr "Aquí puedes configurar este complemento."
486
 
487
+ #: inc/php/settings.php:41
488
  msgid "Show on Posts"
489
  msgstr "Mostrar en Entradas"
490
 
491
+ #: inc/php/settings.php:42
492
  msgid "Automatically display toolbar below content on Posts."
493
  msgstr ""
494
 
495
+ #: inc/php/settings.php:45
496
  msgid "Show on Pages"
497
  msgstr "Mostrar en Páginas"
498
 
499
+ #: inc/php/settings.php:46
500
  msgid "Automatically display toolbar below content on Pages."
501
  msgstr ""
502
 
503
+ #: inc/php/settings.php:49
504
  msgid "Open in new tab"
505
  msgstr "Abrir en una nueva pestaña"
506
 
507
+ #: inc/php/settings.php:50
508
  msgid "Open link in a new tab/window."
509
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
510
 
511
+ #: inc/php/settings.php:53
512
  msgid "Tooltips"
513
  msgstr ""
514
 
515
+ #: inc/php/settings.php:54
516
  msgid "Enable a tooltips with name of the social media above every button."
517
  msgstr ""
518
 
519
+ #: inc/php/settings.php:57
520
  msgid "Icon size"
521
  msgstr "Tamaño de ícono"
522
 
523
+ #: inc/php/settings.php:58
524
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
525
  msgstr ""
526
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media."
527
 
528
+ #: inc/php/settings.php:62
529
  msgid "Margin"
530
  msgstr "Margen"
531
 
532
+ #: inc/php/settings.php:63
533
  msgid ""
534
  "Enter the size of space (in pixels) between icons in your social media follow "
535
  "buttons bar."
537
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social "
538
  "Media."
539
 
540
+ #: inc/php/settings.php:68
 
 
 
 
541
  msgid "Left"
542
  msgstr "Izquierda"
543
 
544
+ #: inc/php/settings.php:69
545
  msgid "Center"
546
  msgstr "Centro"
547
 
548
+ #: inc/php/settings.php:70
549
  msgid "Right"
550
  msgstr "Derecha"
551
 
552
+ #: inc/php/settings.php:72
553
+ msgid "Alignment"
554
+ msgstr "Alineación"
555
+
556
+ #: inc/php/settings.php:73
557
  msgid "You can choose the alignment of the buttons bar."
558
  msgstr ""
559
 
560
+ #: inc/php/settings.php:77
561
  msgid "Caption"
562
  msgstr "Leyenda"
563
 
564
+ #: inc/php/settings.php:78
565
  msgid ""
566
  "Enter the caption to your social media follow buttons bar. It will be displays "
567
  "before the toolbar."
569
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
570
  "la barra de botones."
571
 
572
+ #: inc/php/settings.php:89
573
  msgid "Live Preview"
574
  msgstr "Vista Previa"
575
 
576
+ #: inc/php/settings.php:91
577
  msgid "Click the \"Save changes\" button to update this preview."
578
  msgstr "Has clic en el botón \"Guardar Cambios\" para actualizar esta vista previa."
579
 
580
+ #: inc/php/settings.php:99 inc/php/sidebar.php:25
581
  msgid ""
582
  "I'm an independent developer, without a regular income, so every little "
583
  "contribution helps cover my costs and lets me spend more time building things for "
587
  "pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo "
588
  "construyendo cosas para que personas como tú las disfruten."
589
 
590
+ #: inc/php/settings.php:106 inc/php/sidebar.php:32
591
  msgid "Thanks for your support!"
592
  msgstr "¡Gracias por tu apoyo!"
593
 
languages/social-media-buttons-toolbar-ru_RU.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
- "POT-Creation-Date: 2017-09-15 14:22+0300\n"
5
- "PO-Revision-Date: 2017-09-15 14:23+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -29,7 +29,7 @@ msgstr "Настройки"
29
  msgid "Donate"
30
  msgstr "Поддержать"
31
 
32
- #: inc/php/core.php:73
33
  msgid "Social Media Follow Buttons"
34
  msgstr "Социальные Медиа Кнопки Следования"
35
 
@@ -122,7 +122,7 @@ msgstr "Применение"
122
  msgid "F.A.Q."
123
  msgstr "F.A.Q."
124
 
125
- #: inc/php/page.php:46 inc/php/settings.php:128 inc/php/sidebar.php:23
126
  msgid "Support"
127
  msgstr "Поддержка"
128
 
@@ -214,7 +214,7 @@ msgstr "Наслаждайтесь своими модными социальн
214
  msgid "It's that simple!"
215
  msgstr "Вот так просто!"
216
 
217
- #: inc/php/page.php:82 inc/php/settings.php:39
218
  msgid "Note!"
219
  msgstr "Примечание!"
220
 
@@ -449,7 +449,7 @@ msgstr ""
449
  msgid "Support Me"
450
  msgstr "Поддержать меня"
451
 
452
- #: inc/php/page.php:196 inc/php/settings.php:135 inc/php/sidebar.php:30
453
  msgid "Donate with PayPal"
454
  msgstr "Пожертвовать через PayPal"
455
 
@@ -496,15 +496,15 @@ msgstr "Если вы цените мою работу, то вы можете
496
  msgid "Thank you for your support!"
497
  msgstr "Спасибо за вашу поддержку!"
498
 
499
- #: inc/php/settings.php:29 inc/php/settings.php:117
500
  msgid "Save changes"
501
  msgstr "Сохранить изменения"
502
 
503
- #: inc/php/settings.php:33
504
  msgid "Buttons"
505
  msgstr "Кнопки"
506
 
507
- #: inc/php/settings.php:35
508
  msgid ""
509
  "Just fill in the required fields to make a buttons. The social networking "
510
  "buttons will lead directly to your profile pages. If you don't want to use "
@@ -516,102 +516,93 @@ msgstr ""
516
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
517
  "и тогда они не появятся."
518
 
519
- #: inc/php/settings.php:40
520
- #, php-format
521
- msgid ""
522
- "If you did not find the button you need, then %s and I will gladly add it "
523
- "for you."
524
- msgstr ""
525
- "Если вы не нашли нужную кнопку, тогда %s и Я с удовольствием добавлю её для "
526
- "вас."
527
-
528
- #: inc/php/settings.php:47
529
  msgid "Display options"
530
  msgstr "Настройки отображения"
531
 
532
- #: inc/php/settings.php:49
533
  msgid "There you can configure this plugin."
534
  msgstr "Здесь вы можете настроить этот плагин."
535
 
536
- #: inc/php/settings.php:53
537
  msgid "Show on Posts"
538
  msgstr "Показывать в записях"
539
 
540
- #: inc/php/settings.php:54
541
  msgid "Automatically display toolbar below content on Posts."
542
  msgstr "Автоматически отображать панель инструментов под содержимым сообщений."
543
 
544
- #: inc/php/settings.php:57
545
  msgid "Show on Pages"
546
  msgstr "Показывать на страницах"
547
 
548
- #: inc/php/settings.php:58
549
  msgid "Automatically display toolbar below content on Pages."
550
  msgstr ""
551
  "Автоматически отображать панель инструментов ниже содержимого на страницах."
552
 
553
- #: inc/php/settings.php:61
554
  msgid "Open in new tab"
555
  msgstr "Открыть в новой вкладке"
556
 
557
- #: inc/php/settings.php:62
558
  msgid "Open link in a new tab/window."
559
  msgstr "Открыть ссылку в новом окне/вкладке."
560
 
561
- #: inc/php/settings.php:65
562
  msgid "Tooltips"
563
  msgstr "Подсказки"
564
 
565
- #: inc/php/settings.php:66
566
  msgid "Enable a tooltips with name of the social media above every button."
567
  msgstr ""
568
  "Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
569
 
570
- #: inc/php/settings.php:69
571
  msgid "Icon size"
572
  msgstr "Размер иконки"
573
 
574
- #: inc/php/settings.php:70
575
  msgid ""
576
  "Enter the size of icons (in pixels) in your social media follow buttons bar."
577
  msgstr ""
578
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
579
 
580
- #: inc/php/settings.php:74
581
  msgid "Margin"
582
  msgstr "Отступ"
583
 
584
- #: inc/php/settings.php:75
585
  msgid ""
586
  "Enter the size of space (in pixels) between icons in your social media "
587
  "follow buttons bar."
588
  msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
589
 
590
- #: inc/php/settings.php:82
591
- msgid "Alignment"
592
- msgstr "Выравнивание"
593
-
594
- #: inc/php/settings.php:88
595
  msgid "Left"
596
  msgstr "Слева"
597
 
598
- #: inc/php/settings.php:92
599
  msgid "Center"
600
  msgstr "По центру"
601
 
602
- #: inc/php/settings.php:96
603
  msgid "Right"
604
  msgstr "Справа"
605
 
606
- #: inc/php/settings.php:103
 
 
 
 
607
  msgid "You can choose the alignment of the buttons bar."
608
  msgstr "Вы можете выбрать выравнивание кнопок социальных медиа."
609
 
610
- #: inc/php/settings.php:108
611
  msgid "Caption"
612
  msgstr "Заголовок"
613
 
614
- #: inc/php/settings.php:109
615
  msgid ""
616
  "Enter the caption to your social media follow buttons bar. It will be "
617
  "displays before the toolbar."
@@ -619,16 +610,16 @@ msgstr ""
619
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
620
  "над панелью."
621
 
622
- #: inc/php/settings.php:120
623
  msgid "Live Preview"
624
  msgstr "Просмотр в реальном времени"
625
 
626
- #: inc/php/settings.php:122
627
  msgid "Click the \"Save changes\" button to update this preview."
628
  msgstr ""
629
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
630
 
631
- #: inc/php/settings.php:130 inc/php/sidebar.php:25
632
  msgid ""
633
  "I'm an independent developer, without a regular income, so every little "
634
  "contribution helps cover my costs and lets me spend more time building "
@@ -638,7 +629,7 @@ msgstr ""
638
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
639
  "создание программ для людей как вы."
640
 
641
- #: inc/php/settings.php:137 inc/php/sidebar.php:32
642
  msgid "Thanks for your support!"
643
  msgstr "Спасибо за вашу поддержку!"
644
 
@@ -688,6 +679,13 @@ msgstr "Артур Гарегинян"
688
  msgid "https://www.arthurgareginyan.com"
689
  msgstr "https://www.arthurgareginyan.com"
690
 
 
 
 
 
 
 
 
691
  #~ msgid "by %s Arthur Gareginyan %s"
692
  #~ msgstr "от %s Артура Гарегинян %s"
693
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
+ "POT-Creation-Date: 2017-09-23 04:51+0300\n"
5
+ "PO-Revision-Date: 2017-09-23 04:51+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
29
  msgid "Donate"
30
  msgstr "Поддержать"
31
 
32
+ #: inc/php/core.php:52
33
  msgid "Social Media Follow Buttons"
34
  msgstr "Социальные Медиа Кнопки Следования"
35
 
122
  msgid "F.A.Q."
123
  msgstr "F.A.Q."
124
 
125
+ #: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:23
126
  msgid "Support"
127
  msgstr "Поддержка"
128
 
214
  msgid "It's that simple!"
215
  msgstr "Вот так просто!"
216
 
217
+ #: inc/php/page.php:82
218
  msgid "Note!"
219
  msgstr "Примечание!"
220
 
449
  msgid "Support Me"
450
  msgstr "Поддержать меня"
451
 
452
+ #: inc/php/page.php:196 inc/php/settings.php:104 inc/php/sidebar.php:30
453
  msgid "Donate with PayPal"
454
  msgstr "Пожертвовать через PayPal"
455
 
496
  msgid "Thank you for your support!"
497
  msgstr "Спасибо за вашу поддержку!"
498
 
499
+ #: inc/php/settings.php:21 inc/php/settings.php:86
500
  msgid "Save changes"
501
  msgstr "Сохранить изменения"
502
 
503
+ #: inc/php/settings.php:25
504
  msgid "Buttons"
505
  msgstr "Кнопки"
506
 
507
+ #: inc/php/settings.php:27
508
  msgid ""
509
  "Just fill in the required fields to make a buttons. The social networking "
510
  "buttons will lead directly to your profile pages. If you don't want to use "
516
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
517
  "и тогда они не появятся."
518
 
519
+ #: inc/php/settings.php:35
 
 
 
 
 
 
 
 
 
520
  msgid "Display options"
521
  msgstr "Настройки отображения"
522
 
523
+ #: inc/php/settings.php:37
524
  msgid "There you can configure this plugin."
525
  msgstr "Здесь вы можете настроить этот плагин."
526
 
527
+ #: inc/php/settings.php:41
528
  msgid "Show on Posts"
529
  msgstr "Показывать в записях"
530
 
531
+ #: inc/php/settings.php:42
532
  msgid "Automatically display toolbar below content on Posts."
533
  msgstr "Автоматически отображать панель инструментов под содержимым сообщений."
534
 
535
+ #: inc/php/settings.php:45
536
  msgid "Show on Pages"
537
  msgstr "Показывать на страницах"
538
 
539
+ #: inc/php/settings.php:46
540
  msgid "Automatically display toolbar below content on Pages."
541
  msgstr ""
542
  "Автоматически отображать панель инструментов ниже содержимого на страницах."
543
 
544
+ #: inc/php/settings.php:49
545
  msgid "Open in new tab"
546
  msgstr "Открыть в новой вкладке"
547
 
548
+ #: inc/php/settings.php:50
549
  msgid "Open link in a new tab/window."
550
  msgstr "Открыть ссылку в новом окне/вкладке."
551
 
552
+ #: inc/php/settings.php:53
553
  msgid "Tooltips"
554
  msgstr "Подсказки"
555
 
556
+ #: inc/php/settings.php:54
557
  msgid "Enable a tooltips with name of the social media above every button."
558
  msgstr ""
559
  "Включите всплывающие подсказки с именем социальных сетей над каждой кнопкой."
560
 
561
+ #: inc/php/settings.php:57
562
  msgid "Icon size"
563
  msgstr "Размер иконки"
564
 
565
+ #: inc/php/settings.php:58
566
  msgid ""
567
  "Enter the size of icons (in pixels) in your social media follow buttons bar."
568
  msgstr ""
569
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
570
 
571
+ #: inc/php/settings.php:62
572
  msgid "Margin"
573
  msgstr "Отступ"
574
 
575
+ #: inc/php/settings.php:63
576
  msgid ""
577
  "Enter the size of space (in pixels) between icons in your social media "
578
  "follow buttons bar."
579
  msgstr "Введите размер пробела (в пикселях) между значками в социальных сетях."
580
 
581
+ #: inc/php/settings.php:68
 
 
 
 
582
  msgid "Left"
583
  msgstr "Слева"
584
 
585
+ #: inc/php/settings.php:69
586
  msgid "Center"
587
  msgstr "По центру"
588
 
589
+ #: inc/php/settings.php:70
590
  msgid "Right"
591
  msgstr "Справа"
592
 
593
+ #: inc/php/settings.php:72
594
+ msgid "Alignment"
595
+ msgstr "Выравнивание"
596
+
597
+ #: inc/php/settings.php:73
598
  msgid "You can choose the alignment of the buttons bar."
599
  msgstr "Вы можете выбрать выравнивание кнопок социальных медиа."
600
 
601
+ #: inc/php/settings.php:77
602
  msgid "Caption"
603
  msgstr "Заголовок"
604
 
605
+ #: inc/php/settings.php:78
606
  msgid ""
607
  "Enter the caption to your social media follow buttons bar. It will be "
608
  "displays before the toolbar."
610
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
611
  "над панелью."
612
 
613
+ #: inc/php/settings.php:89
614
  msgid "Live Preview"
615
  msgstr "Просмотр в реальном времени"
616
 
617
+ #: inc/php/settings.php:91
618
  msgid "Click the \"Save changes\" button to update this preview."
619
  msgstr ""
620
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
621
 
622
+ #: inc/php/settings.php:99 inc/php/sidebar.php:25
623
  msgid ""
624
  "I'm an independent developer, without a regular income, so every little "
625
  "contribution helps cover my costs and lets me spend more time building "
629
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
630
  "создание программ для людей как вы."
631
 
632
+ #: inc/php/settings.php:106 inc/php/sidebar.php:32
633
  msgid "Thanks for your support!"
634
  msgstr "Спасибо за вашу поддержку!"
635
 
679
  msgid "https://www.arthurgareginyan.com"
680
  msgstr "https://www.arthurgareginyan.com"
681
 
682
+ #~ msgid ""
683
+ #~ "If you did not find the button you need, then %s and I will gladly add it "
684
+ #~ "for you."
685
+ #~ msgstr ""
686
+ #~ "Если вы не нашли нужную кнопку, тогда %s и Я с удовольствием добавлю её "
687
+ #~ "для вас."
688
+
689
  #~ msgid "by %s Arthur Gareginyan %s"
690
  #~ msgstr "от %s Артура Гарегинян %s"
691
 
languages/social-media-buttons-toolbar.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
- "POT-Creation-Date: 2017-09-15 14:08+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -27,7 +27,7 @@ msgstr ""
27
  msgid "Donate"
28
  msgstr ""
29
 
30
- #: inc/php/core.php:73
31
  msgid "Social Media Follow Buttons"
32
  msgstr ""
33
 
@@ -110,7 +110,7 @@ msgstr ""
110
  msgid "F.A.Q."
111
  msgstr ""
112
 
113
- #: inc/php/page.php:46 inc/php/settings.php:128 inc/php/sidebar.php:23
114
  msgid "Support"
115
  msgstr ""
116
 
@@ -182,7 +182,7 @@ msgstr ""
182
  msgid "It's that simple!"
183
  msgstr ""
184
 
185
- #: inc/php/page.php:82 inc/php/settings.php:39
186
  msgid "Note!"
187
  msgstr ""
188
 
@@ -351,7 +351,7 @@ msgstr ""
351
  msgid "Support Me"
352
  msgstr ""
353
 
354
- #: inc/php/page.php:196 inc/php/settings.php:135 inc/php/sidebar.php:30
355
  msgid "Donate with PayPal"
356
  msgstr ""
357
 
@@ -382,126 +382,121 @@ msgstr ""
382
  msgid "Thank you for your support!"
383
  msgstr ""
384
 
385
- #: inc/php/settings.php:29 inc/php/settings.php:117
386
  msgid "Save changes"
387
  msgstr ""
388
 
389
- #: inc/php/settings.php:33
390
  msgid "Buttons"
391
  msgstr ""
392
 
393
- #: inc/php/settings.php:35
394
  msgid ""
395
  "Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
396
  "to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
397
  "and then they do not appear."
398
  msgstr ""
399
 
400
- #: inc/php/settings.php:40
401
- #, php-format
402
- msgid "If you did not find the button you need, then %s and I will gladly add it for you."
403
- msgstr ""
404
-
405
- #: inc/php/settings.php:47
406
  msgid "Display options"
407
  msgstr ""
408
 
409
- #: inc/php/settings.php:49
410
  msgid "There you can configure this plugin."
411
  msgstr ""
412
 
413
- #: inc/php/settings.php:53
414
  msgid "Show on Posts"
415
  msgstr ""
416
 
417
- #: inc/php/settings.php:54
418
  msgid "Automatically display toolbar below content on Posts."
419
  msgstr ""
420
 
421
- #: inc/php/settings.php:57
422
  msgid "Show on Pages"
423
  msgstr ""
424
 
425
- #: inc/php/settings.php:58
426
  msgid "Automatically display toolbar below content on Pages."
427
  msgstr ""
428
 
429
- #: inc/php/settings.php:61
430
  msgid "Open in new tab"
431
  msgstr ""
432
 
433
- #: inc/php/settings.php:62
434
  msgid "Open link in a new tab/window."
435
  msgstr ""
436
 
437
- #: inc/php/settings.php:65
438
  msgid "Tooltips"
439
  msgstr ""
440
 
441
- #: inc/php/settings.php:66
442
  msgid "Enable a tooltips with name of the social media above every button."
443
  msgstr ""
444
 
445
- #: inc/php/settings.php:69
446
  msgid "Icon size"
447
  msgstr ""
448
 
449
- #: inc/php/settings.php:70
450
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
451
  msgstr ""
452
 
453
- #: inc/php/settings.php:74
454
  msgid "Margin"
455
  msgstr ""
456
 
457
- #: inc/php/settings.php:75
458
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
459
  msgstr ""
460
 
461
- #: inc/php/settings.php:82
462
- msgid "Alignment"
463
- msgstr ""
464
-
465
- #: inc/php/settings.php:88
466
  msgid "Left"
467
  msgstr ""
468
 
469
- #: inc/php/settings.php:92
470
  msgid "Center"
471
  msgstr ""
472
 
473
- #: inc/php/settings.php:96
474
  msgid "Right"
475
  msgstr ""
476
 
477
- #: inc/php/settings.php:103
 
 
 
 
478
  msgid "You can choose the alignment of the buttons bar."
479
  msgstr ""
480
 
481
- #: inc/php/settings.php:108
482
  msgid "Caption"
483
  msgstr ""
484
 
485
- #: inc/php/settings.php:109
486
  msgid ""
487
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
488
  msgstr ""
489
 
490
- #: inc/php/settings.php:120
491
  msgid "Live Preview"
492
  msgstr ""
493
 
494
- #: inc/php/settings.php:122
495
  msgid "Click the \"Save changes\" button to update this preview."
496
  msgstr ""
497
 
498
- #: inc/php/settings.php:130 inc/php/sidebar.php:25
499
  msgid ""
500
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
501
  "costs and lets me spend more time building things for people like you to enjoy."
502
  msgstr ""
503
 
504
- #: inc/php/settings.php:137 inc/php/sidebar.php:32
505
  msgid "Thanks for your support!"
506
  msgstr ""
507
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
+ "POT-Creation-Date: 2017-09-23 04:50+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
27
  msgid "Donate"
28
  msgstr ""
29
 
30
+ #: inc/php/core.php:52
31
  msgid "Social Media Follow Buttons"
32
  msgstr ""
33
 
110
  msgid "F.A.Q."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:46 inc/php/settings.php:97 inc/php/sidebar.php:23
114
  msgid "Support"
115
  msgstr ""
116
 
182
  msgid "It's that simple!"
183
  msgstr ""
184
 
185
+ #: inc/php/page.php:82
186
  msgid "Note!"
187
  msgstr ""
188
 
351
  msgid "Support Me"
352
  msgstr ""
353
 
354
+ #: inc/php/page.php:196 inc/php/settings.php:104 inc/php/sidebar.php:30
355
  msgid "Donate with PayPal"
356
  msgstr ""
357
 
382
  msgid "Thank you for your support!"
383
  msgstr ""
384
 
385
+ #: inc/php/settings.php:21 inc/php/settings.php:86
386
  msgid "Save changes"
387
  msgstr ""
388
 
389
+ #: inc/php/settings.php:25
390
  msgid "Buttons"
391
  msgstr ""
392
 
393
+ #: inc/php/settings.php:27
394
  msgid ""
395
  "Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
396
  "to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
397
  "and then they do not appear."
398
  msgstr ""
399
 
400
+ #: inc/php/settings.php:35
 
 
 
 
 
401
  msgid "Display options"
402
  msgstr ""
403
 
404
+ #: inc/php/settings.php:37
405
  msgid "There you can configure this plugin."
406
  msgstr ""
407
 
408
+ #: inc/php/settings.php:41
409
  msgid "Show on Posts"
410
  msgstr ""
411
 
412
+ #: inc/php/settings.php:42
413
  msgid "Automatically display toolbar below content on Posts."
414
  msgstr ""
415
 
416
+ #: inc/php/settings.php:45
417
  msgid "Show on Pages"
418
  msgstr ""
419
 
420
+ #: inc/php/settings.php:46
421
  msgid "Automatically display toolbar below content on Pages."
422
  msgstr ""
423
 
424
+ #: inc/php/settings.php:49
425
  msgid "Open in new tab"
426
  msgstr ""
427
 
428
+ #: inc/php/settings.php:50
429
  msgid "Open link in a new tab/window."
430
  msgstr ""
431
 
432
+ #: inc/php/settings.php:53
433
  msgid "Tooltips"
434
  msgstr ""
435
 
436
+ #: inc/php/settings.php:54
437
  msgid "Enable a tooltips with name of the social media above every button."
438
  msgstr ""
439
 
440
+ #: inc/php/settings.php:57
441
  msgid "Icon size"
442
  msgstr ""
443
 
444
+ #: inc/php/settings.php:58
445
  msgid "Enter the size of icons (in pixels) in your social media follow buttons bar."
446
  msgstr ""
447
 
448
+ #: inc/php/settings.php:62
449
  msgid "Margin"
450
  msgstr ""
451
 
452
+ #: inc/php/settings.php:63
453
  msgid "Enter the size of space (in pixels) between icons in your social media follow buttons bar."
454
  msgstr ""
455
 
456
+ #: inc/php/settings.php:68
 
 
 
 
457
  msgid "Left"
458
  msgstr ""
459
 
460
+ #: inc/php/settings.php:69
461
  msgid "Center"
462
  msgstr ""
463
 
464
+ #: inc/php/settings.php:70
465
  msgid "Right"
466
  msgstr ""
467
 
468
+ #: inc/php/settings.php:72
469
+ msgid "Alignment"
470
+ msgstr ""
471
+
472
+ #: inc/php/settings.php:73
473
  msgid "You can choose the alignment of the buttons bar."
474
  msgstr ""
475
 
476
+ #: inc/php/settings.php:77
477
  msgid "Caption"
478
  msgstr ""
479
 
480
+ #: inc/php/settings.php:78
481
  msgid ""
482
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
483
  msgstr ""
484
 
485
+ #: inc/php/settings.php:89
486
  msgid "Live Preview"
487
  msgstr ""
488
 
489
+ #: inc/php/settings.php:91
490
  msgid "Click the \"Save changes\" button to update this preview."
491
  msgstr ""
492
 
493
+ #: inc/php/settings.php:99 inc/php/sidebar.php:25
494
  msgid ""
495
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
496
  "costs and lets me spend more time building things for people like you to enjoy."
497
  msgstr ""
498
 
499
+ #: inc/php/settings.php:106 inc/php/sidebar.php:32
500
  msgid "Thanks for your support!"
501
  msgstr ""
502
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: icon, icon set, button, social, media, social button, social media, social
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
- Stable tag: 4.22
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -166,7 +166,7 @@ Manually via FTP access:
166
  4. Log into Admin Panel of your WordPress website.
167
  5. Activate this plugin through the "`Plugins`" tab.
168
 
169
- After installation and activation, the "`Social Media Follow Buttons`" menu item will appear in the "`Space X-Chimp`" section of Admin Panel. Click on it in order to view the plugin settings page.
170
 
171
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
172
 
@@ -181,7 +181,7 @@ A. Yes. This plugin is ready for translation and has already been translated int
181
 
182
  = Q. How does it work? =
183
  A. Simply go to the plugin settings page, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It's that simple!
184
- You can find the plugin settings page at "`WP Admin Panel`" -> "`Space X-Chimp`" -> "`Social Media Follow Buttons`".
185
 
186
  = Q. Does this plugin requires any modification of the theme? =
187
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Panel of your WordPress website.
@@ -251,6 +251,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
251
 
252
  == Changelog ==
253
 
 
 
 
254
  = 4.22 =
255
  * Fixed the issue due tof which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
256
  * Added branded footer text on the plugin's settings page.
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
+ Stable tag: 4.23
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
166
  4. Log into Admin Panel of your WordPress website.
167
  5. Activate this plugin through the "`Plugins`" tab.
168
 
169
+ After installation and activation, the "`Social Media Follow Buttons`" menu item will appear in the "`Settings`" section of Admin Panel. Click on it in order to view the plugin settings page.
170
 
171
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
172
 
181
 
182
  = Q. How does it work? =
183
  A. Simply go to the plugin settings page, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It's that simple!
184
+ You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`Social Media Follow Buttons`".
185
 
186
  = Q. Does this plugin requires any modification of the theme? =
187
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Panel of your WordPress website.
251
 
252
  == Changelog ==
253
 
254
+ = 4.23 =
255
+ * At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
256
+
257
  = 4.22 =
258
  * Fixed the issue due tof which the 'Space X-Chimp' sub menu item in the brand menu item was displayed.
259
  * Added branded footer text on the plugin's settings page.
social-media-buttons-toolbar.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
- * Version: 4.22
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: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
+ * Version: 4.23
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/