Social Media Follow Buttons Bar - Version 4.14

Version Description

  • Added option for the Google Play.
  • Added option for the itch.
  • Added option for the Mastodon.
  • Added option for the Remind.
  • Added option for the Trade Me.
  • Added option for the VSCO.
  • Added additional CSS reset rules.
Download this release

Release Info

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

Code changes from version 4.13 to 4.14

inc/css/frontend.css CHANGED
@@ -5,7 +5,7 @@
5
  * @uthor Arthur Gareginyan
6
  * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
- * @since 4.2
9
  */
10
 
11
 
@@ -19,10 +19,20 @@
19
  -webkit-user-select: none;
20
  -moz-user-select: none;
21
  }
 
 
 
 
 
 
 
 
22
  .smbt-social-icons li a {
23
  border-bottom: 0 !important;
24
  display: inline !important;
25
  }
26
  .smbt-social-icons li img {
 
 
27
  vertical-align: top;
28
  }
5
  * @uthor Arthur Gareginyan
6
  * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
+ * @since 4.14
9
  */
10
 
11
 
19
  -webkit-user-select: none;
20
  -moz-user-select: none;
21
  }
22
+ .smbt-social-icons li:before {
23
+ content: "" !important;
24
+ content: none !important;
25
+ }
26
+ .smbt-social-icons li:after {
27
+ content: "" !important;
28
+ content: none !important;
29
+ }
30
  .smbt-social-icons li a {
31
  border-bottom: 0 !important;
32
  display: inline !important;
33
  }
34
  .smbt-social-icons li img {
35
+ margin: 0px !important;
36
+ padding: 0px !important;
37
  vertical-align: top;
38
  }
inc/img/social-media-icons/google-play.png ADDED
Binary file
inc/img/social-media-icons/itch.png ADDED
Binary file
inc/img/social-media-icons/mastodon.png ADDED
Binary file
inc/img/social-media-icons/remind.png ADDED
Binary file
inc/img/social-media-icons/trademe.png ADDED
Binary file
inc/img/social-media-icons/vsco.png ADDED
Binary file
inc/php/settings.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Tab
12
  *
13
- * @since 4.13
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
@@ -60,7 +60,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
60
  $alignment = !empty( $options['alignment'] ) ? $options['alignment'] : '';
61
  ?>
62
 
63
- <div class="postbox" id="Buttons">
64
  <h3 class="title"><?php _e( 'Buttons', $text ); ?></h3>
65
  <div class="inside">
66
  <p class="note"><?php _e( 'Just fill in the required fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don\'t want to use any of the following buttons, you can not fill them and then they do not appear.', $text ); ?></p>
@@ -109,6 +109,13 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
109
  '//gaming.youtube.com'
110
  );
111
  ?>
 
 
 
 
 
 
 
112
  <?php smbtoolbar_media( 'itunes',
113
  'iTunes',
114
  'https://www.apple.com/itunes/YourUsernameHere',
@@ -403,6 +410,41 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
403
  '//line.me'
404
  );
405
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  <?php smbtoolbar_media( 'hireology',
407
  'Hireology',
408
  'https://hireology.com/YourUsernameHere',
@@ -513,7 +555,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
513
  </div>
514
  </div>
515
 
516
- <div class="postbox" id="DisplayOptions">
517
  <h3 class="title"><?php _e( 'Display options', $text ); ?></h3>
518
  <div class="inside">
519
  <p class="note"><?php _e( 'There you can configure this plugin.', $text ); ?></p>
@@ -521,13 +563,13 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
521
  <table class="form-table">
522
  <?php smbtoolbar_setting( 'show_posts',
523
  __( 'Show on Posts', $text ),
524
- __( 'Display toolbar below content on Posts.', $text ),
525
  'check'
526
  );
527
  ?>
528
  <?php smbtoolbar_setting( 'show_pages',
529
  __( 'Show on Pages', $text ),
530
- __( 'Display toolbar below content on Pages.', $text ),
531
  'check'
532
  );
533
  ?>
@@ -539,7 +581,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
539
  ?>
540
  <?php smbtoolbar_setting( 'tooltips',
541
  __( 'Tooltips', $text ),
542
- __( 'Enable/disable a tooltips with name of the social media above every button.', $text ),
543
  'check'
544
  );
545
  ?>
@@ -597,7 +639,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
597
  </div>
598
  </div>
599
 
600
- <div class="postbox" id="Preview">
601
  <h3 class="title"><?php _e( 'Preview', $text ); ?></h3>
602
  <div class="inside">
603
  <p class="note"><?php _e( 'Click the "Save changes" button to update this preview.', $text ); ?></p><br>
10
  /**
11
  * Render Settings Tab
12
  *
13
+ * @since 4.14
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
60
  $alignment = !empty( $options['alignment'] ) ? $options['alignment'] : '';
61
  ?>
62
 
63
+ <div class="postbox" id="buttons">
64
  <h3 class="title"><?php _e( 'Buttons', $text ); ?></h3>
65
  <div class="inside">
66
  <p class="note"><?php _e( 'Just fill in the required fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don\'t want to use any of the following buttons, you can not fill them and then they do not appear.', $text ); ?></p>
109
  '//gaming.youtube.com'
110
  );
111
  ?>
112
+ <?php smbtoolbar_media( 'google-play',
113
+ 'Google Play',
114
+ 'https://play.google.com/YourUsernameHere',
115
+ __( 'Enter the link to your Google Play profile page', $text ),
116
+ '//play.google.com'
117
+ );
118
+ ?>
119
  <?php smbtoolbar_media( 'itunes',
120
  'iTunes',
121
  'https://www.apple.com/itunes/YourUsernameHere',
410
  '//line.me'
411
  );
412
  ?>
413
+ <?php smbtoolbar_media( 'itch',
414
+ 'itch',
415
+ 'https://itch.io/YourUsernameHere',
416
+ __( 'Enter the link to your itch profile page', $text ),
417
+ '//itch.io'
418
+ );
419
+ ?>
420
+ <?php smbtoolbar_media( 'mastodon',
421
+ 'Mastodon',
422
+ 'https://mastodon.social/YourUsernameHere',
423
+ __( 'Enter the link to your Mastodon profile page', $text ),
424
+ '//mastodon.social'
425
+ );
426
+ ?>
427
+ <?php smbtoolbar_media( 'remind',
428
+ 'Remind',
429
+ 'https://www.remind.com/YourUsernameHere',
430
+ __( 'Enter the link to your Remind profile page', $text ),
431
+ '//www.remind.com'
432
+ );
433
+ ?>
434
+ <?php smbtoolbar_media( 'trademe',
435
+ 'Trade Me',
436
+ 'https://www.trademe.co.nz/YourUsernameHere',
437
+ __( 'Enter the link to your Trade Me profile page', $text ),
438
+ '//www.trademe.co.nz'
439
+ );
440
+ ?>
441
+ <?php smbtoolbar_media( 'vsco',
442
+ 'VSCO',
443
+ 'https://vsco.co/YourUsernameHere',
444
+ __( 'Enter the link to your VSCO profile page', $text ),
445
+ '//vsco.co'
446
+ );
447
+ ?>
448
  <?php smbtoolbar_media( 'hireology',
449
  'Hireology',
450
  'https://hireology.com/YourUsernameHere',
555
  </div>
556
  </div>
557
 
558
+ <div class="postbox" id="displayo-ptions">
559
  <h3 class="title"><?php _e( 'Display options', $text ); ?></h3>
560
  <div class="inside">
561
  <p class="note"><?php _e( 'There you can configure this plugin.', $text ); ?></p>
563
  <table class="form-table">
564
  <?php smbtoolbar_setting( 'show_posts',
565
  __( 'Show on Posts', $text ),
566
+ __( 'Automatically display toolbar below content on Posts.', $text ),
567
  'check'
568
  );
569
  ?>
570
  <?php smbtoolbar_setting( 'show_pages',
571
  __( 'Show on Pages', $text ),
572
+ __( 'Automatically display toolbar below content on Pages.', $text ),
573
  'check'
574
  );
575
  ?>
581
  ?>
582
  <?php smbtoolbar_setting( 'tooltips',
583
  __( 'Tooltips', $text ),
584
+ __( 'Enable a tooltips with name of the social media above every button.', $text ),
585
  'check'
586
  );
587
  ?>
639
  </div>
640
  </div>
641
 
642
+ <div class="postbox" id="preview">
643
  <h3 class="title"><?php _e( 'Preview', $text ); ?></h3>
644
  <div class="inside">
645
  <p class="note"><?php _e( 'Click the "Save changes" button to update this preview.', $text ); ?></p><br>
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-07-02 22:18+0300\n"
7
- "PO-Revision-Date: 2017-07-02 22:19+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -73,7 +73,7 @@ msgid "Author"
73
  msgstr "Autor"
74
 
75
  #: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28
76
- #: inc/php/settings.php:609
77
  msgid "Support"
78
  msgstr "Soporte"
79
 
@@ -147,7 +147,7 @@ msgstr ""
147
  msgid "It's that simple!"
148
  msgstr ""
149
 
150
- #: inc/php/page.php:86 inc/php/settings.php:506
151
  msgid "Note!"
152
  msgstr ""
153
 
@@ -337,7 +337,7 @@ msgstr ""
337
  "Este plugin te permite añadir fácilmente una barra de botones de social media en "
338
  "cualquier parte de tu sitio web."
339
 
340
- #: inc/php/settings.php:30 inc/php/settings.php:611
341
  msgid ""
342
  "I'm an independent developer, without a regular income, so every little "
343
  "contribution helps cover my costs and lets me spend more time building things for "
@@ -347,11 +347,11 @@ msgstr ""
347
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
348
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
349
 
350
- #: inc/php/settings.php:31 inc/php/settings.php:612
351
  msgid "Donate with PayPal"
352
  msgstr ""
353
 
354
- #: inc/php/settings.php:32 inc/php/settings.php:613
355
  msgid "Thanks for your support!"
356
  msgstr "¡Gracias por su colaboración!"
357
 
@@ -402,210 +402,234 @@ msgid "Enter the link to your YouTube Gaming profile page"
402
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
403
 
404
  #: inc/php/settings.php:115
 
 
 
 
405
  msgid "Enter the link to your iTunes profile page"
406
  msgstr "Ingresa el enlace a tu página de perfil de iTunes"
407
 
408
- #: inc/php/settings.php:122
409
  msgid "Enter the link to your Apple Music profile page"
410
  msgstr "Ingresa el enlace a tu página de perfil de Apple Music"
411
 
412
- #: inc/php/settings.php:129
413
  msgid "Enter the link to your Periscope profile page"
414
  msgstr "Ingresa el enlace a tu página de perfil de Periscope"
415
 
416
- #: inc/php/settings.php:136
417
  msgid "Enter the link to your Vimeo profile page"
418
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
419
 
420
- #: inc/php/settings.php:143
421
  msgid "Enter the link to your Blogger profile page"
422
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
423
 
424
- #: inc/php/settings.php:150
425
  msgid "Enter the link to your Buzzsprout profile page"
426
  msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
427
 
428
- #: inc/php/settings.php:157
429
  msgid "Enter the link to your LiveJournal profile page"
430
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
431
 
432
- #: inc/php/settings.php:164
433
  msgid "Enter the link to your Reddit profile page"
434
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
435
 
436
- #: inc/php/settings.php:171
437
  msgid "Enter the link to your LinkedIn profile page"
438
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
439
 
440
- #: inc/php/settings.php:178
441
  msgid "Enter the link to your Diaspora profile page"
442
  msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
443
 
444
- #: inc/php/settings.php:185
445
  msgid "Enter the link to your DeviantArt profile page"
446
  msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
447
 
448
- #: inc/php/settings.php:192
449
  msgid "Enter the link to your XING profile page"
450
  msgstr "Ingresa el enlace a tu página de perfil de XING"
451
 
452
- #: inc/php/settings.php:199
453
  msgid "Enter the link to your Pinterest profile page"
454
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
455
 
456
- #: inc/php/settings.php:206
457
  msgid "Enter the link to your Flickr profile page"
458
  msgstr "Ingresa el enlace a tu página de perfil de Flickr"
459
 
460
- #: inc/php/settings.php:213
461
  msgid "Enter the link to your Tumblr profile page"
462
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
463
 
464
- #: inc/php/settings.php:220
465
  msgid "Enter the link to your Snapchat profile page"
466
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
467
 
468
- #: inc/php/settings.php:227
469
  msgid "Enter the link to your Twitch profile page"
470
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
471
 
472
- #: inc/php/settings.php:234
473
  msgid "Enter the link to your Patreon profile page"
474
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
475
 
476
- #: inc/php/settings.php:241
477
  msgid "Enter the link to your IMDb profile page"
478
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
479
 
480
- #: inc/php/settings.php:248
481
  msgid "Enter the link to your SoundCloud profile page"
482
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
483
 
484
- #: inc/php/settings.php:255
485
  msgid "Enter the link to your Plug.dj profile page"
486
  msgstr "Ingresa el enlace a tu página de perfil de Plug.dj"
487
 
488
- #: inc/php/settings.php:262
489
  msgid "Enter the link to your Spotify profile page"
490
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
491
 
492
- #: inc/php/settings.php:269
493
  msgid "Enter the link to your Bandcamp profile page"
494
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
495
 
496
- #: inc/php/settings.php:276
497
  msgid "Enter the link to your Dloky profile page"
498
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
499
 
500
- #: inc/php/settings.php:283
501
  msgid "Enter the link to your Amazon profile page"
502
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
503
 
504
- #: inc/php/settings.php:290
505
  msgid "Enter the link to your BookBub profile page"
506
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
507
 
508
- #: inc/php/settings.php:297
509
  msgid "Enter the link to your Goodreads profile page"
510
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
511
 
512
- #: inc/php/settings.php:304
513
  msgid "Enter the link to your MeetVibe profile page"
514
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
515
 
516
- #: inc/php/settings.php:311
517
  msgid "Enter the link to your Meetup profile page"
518
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
519
 
520
- #: inc/php/settings.php:318
521
  msgid "Enter the link to your Steam profile page"
522
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
523
 
524
- #: inc/php/settings.php:325
525
  msgid "Enter the link to your Mixer profile page"
526
  msgstr "Ingresa el enlace a tu página de perfil de Mixer"
527
 
528
- #: inc/php/settings.php:332
529
  msgid "Enter the link to your Discord profile page"
530
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
531
 
532
- #: inc/php/settings.php:339
533
  msgid "Enter the link to your Yelp profile page"
534
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
535
 
536
- #: inc/php/settings.php:346
537
  msgid "Enter the link to your StumbleUpon profile page"
538
  msgstr "Ingresa el enlace a tu página de perfil de StumbleUpon"
539
 
540
- #: inc/php/settings.php:353
541
  msgid "Enter the link to your Bloglovin profile page"
542
  msgstr "Ingresa el enlace a tu página de perfil de Bloglovin"
543
 
544
- #: inc/php/settings.php:360
545
  msgid "Enter the link to your WhatsApp profile page"
546
  msgstr "Ingresa el enlace a tu página de perfil de WhatsApp"
547
 
548
- #: inc/php/settings.php:367
549
  msgid "Enter the link to your Medium profile page"
550
  msgstr "Ingresa el enlace a tu página de perfil de Medium"
551
 
552
- #: inc/php/settings.php:374
553
  msgid "Enter the link to your 500px profile page"
554
  msgstr "Ingresa el enlace a tu página de perfil de 500px"
555
 
556
- #: inc/php/settings.php:381
557
  msgid "Enter the link to your Behance profile page"
558
  msgstr "Ingresa el enlace a tu página de perfil de Behance"
559
 
560
- #: inc/php/settings.php:388
561
  msgid "Enter the link to your Polyvore profile page"
562
  msgstr "Ingresa el enlace a tu página de perfil de Polyvore"
563
 
564
- #: inc/php/settings.php:395
565
  msgid "Enter the link to your Yellow Pages profile page"
566
  msgstr "Ingresa el enlace a tu página de perfil de Yellow Pages"
567
 
568
- #: inc/php/settings.php:402
569
  msgid "Enter the link to your LINE profile page"
570
  msgstr "Ingresa el enlace a tu página de perfil de LINE"
571
 
572
- #: inc/php/settings.php:409
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573
  msgid "Enter the link to your Hireology profile page"
574
  msgstr "Ingresa el enlace a tu página de perfil de Hireology"
575
 
576
- #: inc/php/settings.php:416
577
  msgid "Enter the link to your Kompoz profile page"
578
  msgstr "Ingresa el enlace a tu página de perfil de Kompoz"
579
 
580
- #: inc/php/settings.php:423
581
  msgid "Enter the link to your SoundBlend profile page"
582
  msgstr "Ingresa el enlace a tu página de perfil de SoundBlend"
583
 
584
- #: inc/php/settings.php:430
585
  msgid "Enter the link to your VKontakte profile page"
586
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
587
 
588
- #: inc/php/settings.php:437
589
  msgid "Enter the link to your Odnoklassniki profile page"
590
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
591
 
592
- #: inc/php/settings.php:444
593
  msgid "Enter the link to your Telegram profile page"
594
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
595
 
596
- #: inc/php/settings.php:451
597
  msgid "Enter the link to your GitHub profile page"
598
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
599
 
600
- #: inc/php/settings.php:458
601
  msgid "Enter the link to your WordPress profile page"
602
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
603
 
604
- #: inc/php/settings.php:465
605
  msgid "Enter the link to your CodePen profile page"
606
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
607
 
608
- #: inc/php/settings.php:472
609
  msgid ""
610
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
611
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -613,113 +637,113 @@ msgstr ""
613
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
614
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
615
 
616
- #: inc/php/settings.php:479
617
  msgid "Enter the link to your personal website"
618
  msgstr "Ingresa el enlace a tu sitio web personal"
619
 
620
- #: inc/php/settings.php:486
621
  msgid "Enter your email address with prefix <b>mailto:</b>"
622
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
623
 
624
- #: inc/php/settings.php:493
625
  msgid "Enter your telephone number with prefix <b>tel://</b>"
626
  msgstr ""
627
 
628
- #: inc/php/settings.php:500
629
  msgid "Enter the link to your RSS Feed"
630
  msgstr "Ingresa el enlace a tu Feed de RSS"
631
 
632
- #: inc/php/settings.php:507
633
  #, php-format
634
  msgid ""
635
  "If you did not find the button you need, then %s and I will gladly add it for you."
636
  msgstr ""
637
 
638
- #: inc/php/settings.php:511 inc/php/settings.php:595
639
  msgid "Save changes"
640
  msgstr "Guardar las modificaciones"
641
 
642
- #: inc/php/settings.php:517
643
  msgid "Display options"
644
  msgstr "Opciones de presentación"
645
 
646
- #: inc/php/settings.php:519
647
  msgid "There you can configure this plugin."
648
  msgstr ""
649
 
650
- #: inc/php/settings.php:523
651
  msgid "Show on Posts"
652
  msgstr "Mostrar en Entradas"
653
 
654
- #: inc/php/settings.php:524
655
- msgid "Display toolbar below content on Posts."
656
- msgstr "Mostrar la barra abajo del contenido en Entradas"
657
 
658
- #: inc/php/settings.php:529
659
  msgid "Show on Pages"
660
  msgstr "Mostrar en Páginas"
661
 
662
- #: inc/php/settings.php:530
663
- msgid "Display toolbar below content on Pages."
664
- msgstr "Mostrar la barra abajo del contenido en Páginas"
665
 
666
- #: inc/php/settings.php:535
667
  msgid "Open in new tab"
668
  msgstr "Abrir en una nueva pestaña"
669
 
670
- #: inc/php/settings.php:536
671
  msgid "Open link in a new tab/window."
672
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
673
 
674
- #: inc/php/settings.php:541
675
  msgid "Tooltips"
676
  msgstr ""
677
 
678
- #: inc/php/settings.php:542
679
- msgid "Enable/disable a tooltips with name of the social media above every button."
680
  msgstr ""
681
 
682
- #: inc/php/settings.php:547
683
  msgid "Icon size"
684
  msgstr "Tamaño de ícono"
685
 
686
- #: inc/php/settings.php:548
687
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
688
  msgstr ""
689
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
690
 
691
- #: inc/php/settings.php:555
692
  msgid "Margin"
693
  msgstr "Margen"
694
 
695
- #: inc/php/settings.php:556
696
  msgid ""
697
  "Enter the size of space (in px) between icons in your social media follow buttons "
698
  "bar."
699
  msgstr ""
700
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
701
 
702
- #: inc/php/settings.php:565
703
  msgid "Alignment"
704
  msgstr "Alineación"
705
 
706
- #: inc/php/settings.php:571
707
  msgid "Left"
708
  msgstr "Izquierda"
709
 
710
- #: inc/php/settings.php:575
711
  msgid "Center"
712
  msgstr "Centro"
713
 
714
- #: inc/php/settings.php:579
715
  msgid "Right"
716
  msgstr "Derecha"
717
 
718
- #: inc/php/settings.php:586
719
  msgid "Caption"
720
  msgstr "Leyenda"
721
 
722
- #: inc/php/settings.php:587
723
  msgid ""
724
  "Enter the caption to your social media follow buttons bar. It will be displays "
725
  "before the toolbar."
@@ -727,11 +751,11 @@ msgstr ""
727
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
728
  "la barra de botones."
729
 
730
- #: inc/php/settings.php:601
731
  msgid "Preview"
732
  msgstr "Vista previa"
733
 
734
- #: inc/php/settings.php:603
735
  msgid "Click the \"Save changes\" button to update this preview."
736
  msgstr ""
737
 
@@ -760,6 +784,12 @@ msgstr "Arthur Gareginyan"
760
  msgid "https://www.arthurgareginyan.com"
761
  msgstr "https://www.arthurgareginyan.com"
762
 
 
 
 
 
 
 
763
  #~ msgid "Enter the link to your Beam profile page"
764
  #~ msgstr "Ingresa el enlace a tu página de perfil de Beam"
765
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-07-23 01:58+0300\n"
7
+ "PO-Revision-Date: 2017-07-23 01:59+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
73
  msgstr "Autor"
74
 
75
  #: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28
76
+ #: inc/php/settings.php:651
77
  msgid "Support"
78
  msgstr "Soporte"
79
 
147
  msgid "It's that simple!"
148
  msgstr ""
149
 
150
+ #: inc/php/page.php:86 inc/php/settings.php:548
151
  msgid "Note!"
152
  msgstr ""
153
 
337
  "Este plugin te permite añadir fácilmente una barra de botones de social media en "
338
  "cualquier parte de tu sitio web."
339
 
340
+ #: inc/php/settings.php:30 inc/php/settings.php:653
341
  msgid ""
342
  "I'm an independent developer, without a regular income, so every little "
343
  "contribution helps cover my costs and lets me spend more time building things for "
347
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
348
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
349
 
350
+ #: inc/php/settings.php:31 inc/php/settings.php:654
351
  msgid "Donate with PayPal"
352
  msgstr ""
353
 
354
+ #: inc/php/settings.php:32 inc/php/settings.php:655
355
  msgid "Thanks for your support!"
356
  msgstr "¡Gracias por su colaboración!"
357
 
402
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
403
 
404
  #: inc/php/settings.php:115
405
+ msgid "Enter the link to your Google Play profile page"
406
+ msgstr "Ingresa el enlace a tu página de perfil de Google Play"
407
+
408
+ #: inc/php/settings.php:122
409
  msgid "Enter the link to your iTunes profile page"
410
  msgstr "Ingresa el enlace a tu página de perfil de iTunes"
411
 
412
+ #: inc/php/settings.php:129
413
  msgid "Enter the link to your Apple Music profile page"
414
  msgstr "Ingresa el enlace a tu página de perfil de Apple Music"
415
 
416
+ #: inc/php/settings.php:136
417
  msgid "Enter the link to your Periscope profile page"
418
  msgstr "Ingresa el enlace a tu página de perfil de Periscope"
419
 
420
+ #: inc/php/settings.php:143
421
  msgid "Enter the link to your Vimeo profile page"
422
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
423
 
424
+ #: inc/php/settings.php:150
425
  msgid "Enter the link to your Blogger profile page"
426
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
427
 
428
+ #: inc/php/settings.php:157
429
  msgid "Enter the link to your Buzzsprout profile page"
430
  msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
431
 
432
+ #: inc/php/settings.php:164
433
  msgid "Enter the link to your LiveJournal profile page"
434
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
435
 
436
+ #: inc/php/settings.php:171
437
  msgid "Enter the link to your Reddit profile page"
438
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
439
 
440
+ #: inc/php/settings.php:178
441
  msgid "Enter the link to your LinkedIn profile page"
442
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
443
 
444
+ #: inc/php/settings.php:185
445
  msgid "Enter the link to your Diaspora profile page"
446
  msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
447
 
448
+ #: inc/php/settings.php:192
449
  msgid "Enter the link to your DeviantArt profile page"
450
  msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
451
 
452
+ #: inc/php/settings.php:199
453
  msgid "Enter the link to your XING profile page"
454
  msgstr "Ingresa el enlace a tu página de perfil de XING"
455
 
456
+ #: inc/php/settings.php:206
457
  msgid "Enter the link to your Pinterest profile page"
458
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
459
 
460
+ #: inc/php/settings.php:213
461
  msgid "Enter the link to your Flickr profile page"
462
  msgstr "Ingresa el enlace a tu página de perfil de Flickr"
463
 
464
+ #: inc/php/settings.php:220
465
  msgid "Enter the link to your Tumblr profile page"
466
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
467
 
468
+ #: inc/php/settings.php:227
469
  msgid "Enter the link to your Snapchat profile page"
470
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
471
 
472
+ #: inc/php/settings.php:234
473
  msgid "Enter the link to your Twitch profile page"
474
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
475
 
476
+ #: inc/php/settings.php:241
477
  msgid "Enter the link to your Patreon profile page"
478
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
479
 
480
+ #: inc/php/settings.php:248
481
  msgid "Enter the link to your IMDb profile page"
482
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
483
 
484
+ #: inc/php/settings.php:255
485
  msgid "Enter the link to your SoundCloud profile page"
486
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
487
 
488
+ #: inc/php/settings.php:262
489
  msgid "Enter the link to your Plug.dj profile page"
490
  msgstr "Ingresa el enlace a tu página de perfil de Plug.dj"
491
 
492
+ #: inc/php/settings.php:269
493
  msgid "Enter the link to your Spotify profile page"
494
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
495
 
496
+ #: inc/php/settings.php:276
497
  msgid "Enter the link to your Bandcamp profile page"
498
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
499
 
500
+ #: inc/php/settings.php:283
501
  msgid "Enter the link to your Dloky profile page"
502
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
503
 
504
+ #: inc/php/settings.php:290
505
  msgid "Enter the link to your Amazon profile page"
506
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
507
 
508
+ #: inc/php/settings.php:297
509
  msgid "Enter the link to your BookBub profile page"
510
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
511
 
512
+ #: inc/php/settings.php:304
513
  msgid "Enter the link to your Goodreads profile page"
514
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
515
 
516
+ #: inc/php/settings.php:311
517
  msgid "Enter the link to your MeetVibe profile page"
518
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
519
 
520
+ #: inc/php/settings.php:318
521
  msgid "Enter the link to your Meetup profile page"
522
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
523
 
524
+ #: inc/php/settings.php:325
525
  msgid "Enter the link to your Steam profile page"
526
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
527
 
528
+ #: inc/php/settings.php:332
529
  msgid "Enter the link to your Mixer profile page"
530
  msgstr "Ingresa el enlace a tu página de perfil de Mixer"
531
 
532
+ #: inc/php/settings.php:339
533
  msgid "Enter the link to your Discord profile page"
534
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
535
 
536
+ #: inc/php/settings.php:346
537
  msgid "Enter the link to your Yelp profile page"
538
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
539
 
540
+ #: inc/php/settings.php:353
541
  msgid "Enter the link to your StumbleUpon profile page"
542
  msgstr "Ingresa el enlace a tu página de perfil de StumbleUpon"
543
 
544
+ #: inc/php/settings.php:360
545
  msgid "Enter the link to your Bloglovin profile page"
546
  msgstr "Ingresa el enlace a tu página de perfil de Bloglovin"
547
 
548
+ #: inc/php/settings.php:367
549
  msgid "Enter the link to your WhatsApp profile page"
550
  msgstr "Ingresa el enlace a tu página de perfil de WhatsApp"
551
 
552
+ #: inc/php/settings.php:374
553
  msgid "Enter the link to your Medium profile page"
554
  msgstr "Ingresa el enlace a tu página de perfil de Medium"
555
 
556
+ #: inc/php/settings.php:381
557
  msgid "Enter the link to your 500px profile page"
558
  msgstr "Ingresa el enlace a tu página de perfil de 500px"
559
 
560
+ #: inc/php/settings.php:388
561
  msgid "Enter the link to your Behance profile page"
562
  msgstr "Ingresa el enlace a tu página de perfil de Behance"
563
 
564
+ #: inc/php/settings.php:395
565
  msgid "Enter the link to your Polyvore profile page"
566
  msgstr "Ingresa el enlace a tu página de perfil de Polyvore"
567
 
568
+ #: inc/php/settings.php:402
569
  msgid "Enter the link to your Yellow Pages profile page"
570
  msgstr "Ingresa el enlace a tu página de perfil de Yellow Pages"
571
 
572
+ #: inc/php/settings.php:409
573
  msgid "Enter the link to your LINE profile page"
574
  msgstr "Ingresa el enlace a tu página de perfil de LINE"
575
 
576
+ #: inc/php/settings.php:416
577
+ msgid "Enter the link to your itch profile page"
578
+ msgstr "Ingresa el enlace a tu página de perfil de itch"
579
+
580
+ #: inc/php/settings.php:423
581
+ msgid "Enter the link to your Mastodon profile page"
582
+ msgstr "Ingresa el enlace a tu página de perfil de Mastodon"
583
+
584
+ #: inc/php/settings.php:430
585
+ msgid "Enter the link to your Remind profile page"
586
+ msgstr "Ingresa el enlace a tu página de perfil de Remind"
587
+
588
+ #: inc/php/settings.php:437
589
+ msgid "Enter the link to your Trade Me profile page"
590
+ msgstr "Ingresa el enlace a tu página de perfil de Trade Me"
591
+
592
+ #: inc/php/settings.php:444
593
+ msgid "Enter the link to your VSCO profile page"
594
+ msgstr "Ingresa el enlace a tu página de perfil de VSCO"
595
+
596
+ #: inc/php/settings.php:451
597
  msgid "Enter the link to your Hireology profile page"
598
  msgstr "Ingresa el enlace a tu página de perfil de Hireology"
599
 
600
+ #: inc/php/settings.php:458
601
  msgid "Enter the link to your Kompoz profile page"
602
  msgstr "Ingresa el enlace a tu página de perfil de Kompoz"
603
 
604
+ #: inc/php/settings.php:465
605
  msgid "Enter the link to your SoundBlend profile page"
606
  msgstr "Ingresa el enlace a tu página de perfil de SoundBlend"
607
 
608
+ #: inc/php/settings.php:472
609
  msgid "Enter the link to your VKontakte profile page"
610
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
611
 
612
+ #: inc/php/settings.php:479
613
  msgid "Enter the link to your Odnoklassniki profile page"
614
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
615
 
616
+ #: inc/php/settings.php:486
617
  msgid "Enter the link to your Telegram profile page"
618
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
619
 
620
+ #: inc/php/settings.php:493
621
  msgid "Enter the link to your GitHub profile page"
622
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
623
 
624
+ #: inc/php/settings.php:500
625
  msgid "Enter the link to your WordPress profile page"
626
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
627
 
628
+ #: inc/php/settings.php:507
629
  msgid "Enter the link to your CodePen profile page"
630
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
631
 
632
+ #: inc/php/settings.php:514
633
  msgid ""
634
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
635
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
637
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
638
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
639
 
640
+ #: inc/php/settings.php:521
641
  msgid "Enter the link to your personal website"
642
  msgstr "Ingresa el enlace a tu sitio web personal"
643
 
644
+ #: inc/php/settings.php:528
645
  msgid "Enter your email address with prefix <b>mailto:</b>"
646
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
647
 
648
+ #: inc/php/settings.php:535
649
  msgid "Enter your telephone number with prefix <b>tel://</b>"
650
  msgstr ""
651
 
652
+ #: inc/php/settings.php:542
653
  msgid "Enter the link to your RSS Feed"
654
  msgstr "Ingresa el enlace a tu Feed de RSS"
655
 
656
+ #: inc/php/settings.php:549
657
  #, php-format
658
  msgid ""
659
  "If you did not find the button you need, then %s and I will gladly add it for you."
660
  msgstr ""
661
 
662
+ #: inc/php/settings.php:553 inc/php/settings.php:637
663
  msgid "Save changes"
664
  msgstr "Guardar las modificaciones"
665
 
666
+ #: inc/php/settings.php:559
667
  msgid "Display options"
668
  msgstr "Opciones de presentación"
669
 
670
+ #: inc/php/settings.php:561
671
  msgid "There you can configure this plugin."
672
  msgstr ""
673
 
674
+ #: inc/php/settings.php:565
675
  msgid "Show on Posts"
676
  msgstr "Mostrar en Entradas"
677
 
678
+ #: inc/php/settings.php:566
679
+ msgid "Automatically display toolbar below content on Posts."
680
+ msgstr ""
681
 
682
+ #: inc/php/settings.php:571
683
  msgid "Show on Pages"
684
  msgstr "Mostrar en Páginas"
685
 
686
+ #: inc/php/settings.php:572
687
+ msgid "Automatically display toolbar below content on Pages."
688
+ msgstr ""
689
 
690
+ #: inc/php/settings.php:577
691
  msgid "Open in new tab"
692
  msgstr "Abrir en una nueva pestaña"
693
 
694
+ #: inc/php/settings.php:578
695
  msgid "Open link in a new tab/window."
696
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
697
 
698
+ #: inc/php/settings.php:583
699
  msgid "Tooltips"
700
  msgstr ""
701
 
702
+ #: inc/php/settings.php:584
703
+ msgid "Enable a tooltips with name of the social media above every button."
704
  msgstr ""
705
 
706
+ #: inc/php/settings.php:589
707
  msgid "Icon size"
708
  msgstr "Tamaño de ícono"
709
 
710
+ #: inc/php/settings.php:590
711
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
712
  msgstr ""
713
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
714
 
715
+ #: inc/php/settings.php:597
716
  msgid "Margin"
717
  msgstr "Margen"
718
 
719
+ #: inc/php/settings.php:598
720
  msgid ""
721
  "Enter the size of space (in px) between icons in your social media follow buttons "
722
  "bar."
723
  msgstr ""
724
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
725
 
726
+ #: inc/php/settings.php:607
727
  msgid "Alignment"
728
  msgstr "Alineación"
729
 
730
+ #: inc/php/settings.php:613
731
  msgid "Left"
732
  msgstr "Izquierda"
733
 
734
+ #: inc/php/settings.php:617
735
  msgid "Center"
736
  msgstr "Centro"
737
 
738
+ #: inc/php/settings.php:621
739
  msgid "Right"
740
  msgstr "Derecha"
741
 
742
+ #: inc/php/settings.php:628
743
  msgid "Caption"
744
  msgstr "Leyenda"
745
 
746
+ #: inc/php/settings.php:629
747
  msgid ""
748
  "Enter the caption to your social media follow buttons bar. It will be displays "
749
  "before the toolbar."
751
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
752
  "la barra de botones."
753
 
754
+ #: inc/php/settings.php:643
755
  msgid "Preview"
756
  msgstr "Vista previa"
757
 
758
+ #: inc/php/settings.php:645
759
  msgid "Click the \"Save changes\" button to update this preview."
760
  msgstr ""
761
 
784
  msgid "https://www.arthurgareginyan.com"
785
  msgstr "https://www.arthurgareginyan.com"
786
 
787
+ #~ msgid "Display toolbar below content on Posts."
788
+ #~ msgstr "Mostrar la barra abajo del contenido en Entradas"
789
+
790
+ #~ msgid "Display toolbar below content on Pages."
791
+ #~ msgstr "Mostrar la barra abajo del contenido en Páginas"
792
+
793
  #~ msgid "Enter the link to your Beam profile page"
794
  #~ msgstr "Ingresa el enlace a tu página de perfil de Beam"
795
 
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-07-02 22:17+0300\n"
5
- "PO-Revision-Date: 2017-07-02 22:18+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -72,7 +72,7 @@ msgid "Author"
72
  msgstr "Автор"
73
 
74
  #: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28
75
- #: inc/php/settings.php:609
76
  msgid "Support"
77
  msgstr "Поддержка"
78
 
@@ -143,7 +143,7 @@ msgstr ""
143
  msgid "It's that simple!"
144
  msgstr "Вот так просто!"
145
 
146
- #: inc/php/page.php:86 inc/php/settings.php:506
147
  msgid "Note!"
148
  msgstr "Примечание!"
149
 
@@ -347,7 +347,7 @@ msgstr ""
347
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
348
  "место на вашем веб-сайте."
349
 
350
- #: inc/php/settings.php:30 inc/php/settings.php:611
351
  msgid ""
352
  "I'm an independent developer, without a regular income, so every little "
353
  "contribution helps cover my costs and lets me spend more time building "
@@ -357,11 +357,11 @@ msgstr ""
357
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
358
  "создание программ для людей как вы."
359
 
360
- #: inc/php/settings.php:31 inc/php/settings.php:612
361
  msgid "Donate with PayPal"
362
  msgstr ""
363
 
364
- #: inc/php/settings.php:32 inc/php/settings.php:613
365
  msgid "Thanks for your support!"
366
  msgstr "Спасибо за вашу поддержку!"
367
 
@@ -414,210 +414,234 @@ msgid "Enter the link to your YouTube Gaming profile page"
414
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
415
 
416
  #: inc/php/settings.php:115
 
 
 
 
417
  msgid "Enter the link to your iTunes profile page"
418
  msgstr "Введите ссылку на вашу страницу профиля iTunes"
419
 
420
- #: inc/php/settings.php:122
421
  msgid "Enter the link to your Apple Music profile page"
422
  msgstr "Введите ссылку на вашу страницу профиля Apple Music"
423
 
424
- #: inc/php/settings.php:129
425
  msgid "Enter the link to your Periscope profile page"
426
  msgstr "Введите ссылку на вашу страницу профиля Periscope"
427
 
428
- #: inc/php/settings.php:136
429
  msgid "Enter the link to your Vimeo profile page"
430
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
431
 
432
- #: inc/php/settings.php:143
433
  msgid "Enter the link to your Blogger profile page"
434
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
435
 
436
- #: inc/php/settings.php:150
437
  msgid "Enter the link to your Buzzsprout profile page"
438
  msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
439
 
440
- #: inc/php/settings.php:157
441
  msgid "Enter the link to your LiveJournal profile page"
442
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
443
 
444
- #: inc/php/settings.php:164
445
  msgid "Enter the link to your Reddit profile page"
446
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
447
 
448
- #: inc/php/settings.php:171
449
  msgid "Enter the link to your LinkedIn profile page"
450
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
451
 
452
- #: inc/php/settings.php:178
453
  msgid "Enter the link to your Diaspora profile page"
454
  msgstr "Введите ссылку на вашу страницу профиля Diaspora"
455
 
456
- #: inc/php/settings.php:185
457
  msgid "Enter the link to your DeviantArt profile page"
458
  msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
459
 
460
- #: inc/php/settings.php:192
461
  msgid "Enter the link to your XING profile page"
462
  msgstr "Введите ссылку на вашу страницу профиля XING"
463
 
464
- #: inc/php/settings.php:199
465
  msgid "Enter the link to your Pinterest profile page"
466
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
467
 
468
- #: inc/php/settings.php:206
469
  msgid "Enter the link to your Flickr profile page"
470
  msgstr "Введите ссылку на вашу страницу профиля Flickr"
471
 
472
- #: inc/php/settings.php:213
473
  msgid "Enter the link to your Tumblr profile page"
474
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
475
 
476
- #: inc/php/settings.php:220
477
  msgid "Enter the link to your Snapchat profile page"
478
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
479
 
480
- #: inc/php/settings.php:227
481
  msgid "Enter the link to your Twitch profile page"
482
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
483
 
484
- #: inc/php/settings.php:234
485
  msgid "Enter the link to your Patreon profile page"
486
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
487
 
488
- #: inc/php/settings.php:241
489
  msgid "Enter the link to your IMDb profile page"
490
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
491
 
492
- #: inc/php/settings.php:248
493
  msgid "Enter the link to your SoundCloud profile page"
494
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
495
 
496
- #: inc/php/settings.php:255
497
  msgid "Enter the link to your Plug.dj profile page"
498
  msgstr "Введите ссылку на вашу страницу профиля Plug.dj"
499
 
500
- #: inc/php/settings.php:262
501
  msgid "Enter the link to your Spotify profile page"
502
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
503
 
504
- #: inc/php/settings.php:269
505
  msgid "Enter the link to your Bandcamp profile page"
506
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
507
 
508
- #: inc/php/settings.php:276
509
  msgid "Enter the link to your Dloky profile page"
510
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
511
 
512
- #: inc/php/settings.php:283
513
  msgid "Enter the link to your Amazon profile page"
514
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
515
 
516
- #: inc/php/settings.php:290
517
  msgid "Enter the link to your BookBub profile page"
518
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
519
 
520
- #: inc/php/settings.php:297
521
  msgid "Enter the link to your Goodreads profile page"
522
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
523
 
524
- #: inc/php/settings.php:304
525
  msgid "Enter the link to your MeetVibe profile page"
526
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
527
 
528
- #: inc/php/settings.php:311
529
  msgid "Enter the link to your Meetup profile page"
530
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
531
 
532
- #: inc/php/settings.php:318
533
  msgid "Enter the link to your Steam profile page"
534
  msgstr "Введите ссылку на вашу страницу профиля Steam"
535
 
536
- #: inc/php/settings.php:325
537
  msgid "Enter the link to your Mixer profile page"
538
  msgstr "Введите ссылку на вашу страницу профиля Mixer"
539
 
540
- #: inc/php/settings.php:332
541
  msgid "Enter the link to your Discord profile page"
542
  msgstr "Введите ссылку на вашу страницу профиля Discord"
543
 
544
- #: inc/php/settings.php:339
545
  msgid "Enter the link to your Yelp profile page"
546
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
547
 
548
- #: inc/php/settings.php:346
549
  msgid "Enter the link to your StumbleUpon profile page"
550
  msgstr "Введите ссылку на вашу страницу профиля StumbleUpon"
551
 
552
- #: inc/php/settings.php:353
553
  msgid "Enter the link to your Bloglovin profile page"
554
  msgstr "Введите ссылку на вашу страницу профиля Bloglovin"
555
 
556
- #: inc/php/settings.php:360
557
  msgid "Enter the link to your WhatsApp profile page"
558
  msgstr "Введите ссылку на вашу страницу профиля WhatsApp"
559
 
560
- #: inc/php/settings.php:367
561
  msgid "Enter the link to your Medium profile page"
562
  msgstr "Введите ссылку на вашу страницу профиля Medium"
563
 
564
- #: inc/php/settings.php:374
565
  msgid "Enter the link to your 500px profile page"
566
  msgstr "Введите ссылку на вашу страницу профиля 500px"
567
 
568
- #: inc/php/settings.php:381
569
  msgid "Enter the link to your Behance profile page"
570
  msgstr "Введите ссылку на вашу страницу профиля Behance"
571
 
572
- #: inc/php/settings.php:388
573
  msgid "Enter the link to your Polyvore profile page"
574
  msgstr "Введите ссылку на вашу страницу профиля Polyvore"
575
 
576
- #: inc/php/settings.php:395
577
  msgid "Enter the link to your Yellow Pages profile page"
578
  msgstr "Введите ссылку на вашу страницу профиля Yellow Pages"
579
 
580
- #: inc/php/settings.php:402
581
  msgid "Enter the link to your LINE profile page"
582
  msgstr "Введите ссылку на вашу страницу профиля LINE"
583
 
584
- #: inc/php/settings.php:409
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
  msgid "Enter the link to your Hireology profile page"
586
  msgstr "Введите ссылку на вашу страницу профиля Hireology"
587
 
588
- #: inc/php/settings.php:416
589
  msgid "Enter the link to your Kompoz profile page"
590
  msgstr "Введите ссылку на вашу страницу профиля Kompoz"
591
 
592
- #: inc/php/settings.php:423
593
  msgid "Enter the link to your SoundBlend profile page"
594
  msgstr "Введите ссылку на вашу страницу профиля SoundBlend"
595
 
596
- #: inc/php/settings.php:430
597
  msgid "Enter the link to your VKontakte profile page"
598
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
599
 
600
- #: inc/php/settings.php:437
601
  msgid "Enter the link to your Odnoklassniki profile page"
602
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
603
 
604
- #: inc/php/settings.php:444
605
  msgid "Enter the link to your Telegram profile page"
606
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
607
 
608
- #: inc/php/settings.php:451
609
  msgid "Enter the link to your GitHub profile page"
610
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
611
 
612
- #: inc/php/settings.php:458
613
  msgid "Enter the link to your WordPress profile page"
614
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
615
 
616
- #: inc/php/settings.php:465
617
  msgid "Enter the link to your CodePen profile page"
618
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
619
 
620
- #: inc/php/settings.php:472
621
  msgid ""
622
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
623
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -626,117 +650,114 @@ msgstr ""
626
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
627
  "профиля"
628
 
629
- #: inc/php/settings.php:479
630
  msgid "Enter the link to your personal website"
631
  msgstr "Введите ссылку на ваш персональный сайт"
632
 
633
- #: inc/php/settings.php:486
634
  msgid "Enter your email address with prefix <b>mailto:</b>"
635
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
636
 
637
- #: inc/php/settings.php:493
638
  msgid "Enter your telephone number with prefix <b>tel://</b>"
639
  msgstr "Введите номер телефона с префиксом <b>tel://</b>"
640
 
641
- #: inc/php/settings.php:500
642
  msgid "Enter the link to your RSS Feed"
643
  msgstr "Введите ссылку на ваш RSS поток"
644
 
645
- #: inc/php/settings.php:507
646
  #, php-format
647
  msgid ""
648
  "If you did not find the button you need, then %s and I will gladly add it "
649
  "for you."
650
  msgstr ""
651
 
652
- #: inc/php/settings.php:511 inc/php/settings.php:595
653
  msgid "Save changes"
654
  msgstr "Сохранить изменения"
655
 
656
- #: inc/php/settings.php:517
657
  msgid "Display options"
658
  msgstr "Настройки отображения"
659
 
660
- #: inc/php/settings.php:519
661
  msgid "There you can configure this plugin."
662
  msgstr "Здесь вы можете настроить этот плагин."
663
 
664
- #: inc/php/settings.php:523
665
  msgid "Show on Posts"
666
  msgstr "Показать в записях"
667
 
668
- #: inc/php/settings.php:524
669
- msgid "Display toolbar below content on Posts."
670
- msgstr "Показывать кнопки под содержанием в записях"
671
 
672
- #: inc/php/settings.php:529
673
  msgid "Show on Pages"
674
  msgstr "Показывать на страницах"
675
 
676
- #: inc/php/settings.php:530
677
- msgid "Display toolbar below content on Pages."
678
- msgstr "Показывать кнопки под содержанием на страницах"
679
 
680
- #: inc/php/settings.php:535
681
  msgid "Open in new tab"
682
  msgstr "Открыть в новой вкладке"
683
 
684
- #: inc/php/settings.php:536
685
  msgid "Open link in a new tab/window."
686
  msgstr "Открыть ссылку в новом окне/вкладке"
687
 
688
- #: inc/php/settings.php:541
689
  msgid "Tooltips"
690
  msgstr "Подсказки"
691
 
692
- #: inc/php/settings.php:542
693
- msgid ""
694
- "Enable/disable a tooltips with name of the social media above every button."
695
  msgstr ""
696
- "Включить/отключить всплывающие подсказки с названием социальных медиа над "
697
- "каждой кнопкой."
698
 
699
- #: inc/php/settings.php:547
700
  msgid "Icon size"
701
  msgstr "Размер иконки"
702
 
703
- #: inc/php/settings.php:548
704
  msgid ""
705
  "Enter the size of icons (in px) in your social media follow buttons bar."
706
  msgstr ""
707
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
708
 
709
- #: inc/php/settings.php:555
710
  msgid "Margin"
711
  msgstr "Отступ"
712
 
713
- #: inc/php/settings.php:556
714
  msgid ""
715
  "Enter the size of space (in px) between icons in your social media follow "
716
  "buttons bar."
717
  msgstr ""
718
 
719
- #: inc/php/settings.php:565
720
  msgid "Alignment"
721
  msgstr "Выравнивание"
722
 
723
- #: inc/php/settings.php:571
724
  msgid "Left"
725
  msgstr "Слева"
726
 
727
- #: inc/php/settings.php:575
728
  msgid "Center"
729
  msgstr "По центру"
730
 
731
- #: inc/php/settings.php:579
732
  msgid "Right"
733
  msgstr "Справа"
734
 
735
- #: inc/php/settings.php:586
736
  msgid "Caption"
737
  msgstr "Заголовок"
738
 
739
- #: inc/php/settings.php:587
740
  msgid ""
741
  "Enter the caption to your social media follow buttons bar. It will be "
742
  "displays before the toolbar."
@@ -744,11 +765,11 @@ msgstr ""
744
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
745
  "над панелью."
746
 
747
- #: inc/php/settings.php:601
748
  msgid "Preview"
749
  msgstr "Предварительный просмотр"
750
 
751
- #: inc/php/settings.php:603
752
  msgid "Click the \"Save changes\" button to update this preview."
753
  msgstr ""
754
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
@@ -775,6 +796,19 @@ msgstr "Артур Гарегинян"
775
  msgid "https://www.arthurgareginyan.com"
776
  msgstr "https://www.arthurgareginyan.com"
777
 
 
 
 
 
 
 
 
 
 
 
 
 
 
778
  #~ msgid "You can contact me by email %s"
779
  #~ msgstr "Вы можете связаться со мной по электронной почте %s"
780
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
+ "POT-Creation-Date: 2017-07-23 01:57+0300\n"
5
+ "PO-Revision-Date: 2017-07-23 01:58+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
72
  msgstr "Автор"
73
 
74
  #: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28
75
+ #: inc/php/settings.php:651
76
  msgid "Support"
77
  msgstr "Поддержка"
78
 
143
  msgid "It's that simple!"
144
  msgstr "Вот так просто!"
145
 
146
+ #: inc/php/page.php:86 inc/php/settings.php:548
147
  msgid "Note!"
148
  msgstr "Примечание!"
149
 
347
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
348
  "место на вашем веб-сайте."
349
 
350
+ #: inc/php/settings.php:30 inc/php/settings.php:653
351
  msgid ""
352
  "I'm an independent developer, without a regular income, so every little "
353
  "contribution helps cover my costs and lets me spend more time building "
357
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
358
  "создание программ для людей как вы."
359
 
360
+ #: inc/php/settings.php:31 inc/php/settings.php:654
361
  msgid "Donate with PayPal"
362
  msgstr ""
363
 
364
+ #: inc/php/settings.php:32 inc/php/settings.php:655
365
  msgid "Thanks for your support!"
366
  msgstr "Спасибо за вашу поддержку!"
367
 
414
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
415
 
416
  #: inc/php/settings.php:115
417
+ msgid "Enter the link to your Google Play profile page"
418
+ msgstr "Введите ссылку на вашу страницу профиля Google Play"
419
+
420
+ #: inc/php/settings.php:122
421
  msgid "Enter the link to your iTunes profile page"
422
  msgstr "Введите ссылку на вашу страницу профиля iTunes"
423
 
424
+ #: inc/php/settings.php:129
425
  msgid "Enter the link to your Apple Music profile page"
426
  msgstr "Введите ссылку на вашу страницу профиля Apple Music"
427
 
428
+ #: inc/php/settings.php:136
429
  msgid "Enter the link to your Periscope profile page"
430
  msgstr "Введите ссылку на вашу страницу профиля Periscope"
431
 
432
+ #: inc/php/settings.php:143
433
  msgid "Enter the link to your Vimeo profile page"
434
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
435
 
436
+ #: inc/php/settings.php:150
437
  msgid "Enter the link to your Blogger profile page"
438
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
439
 
440
+ #: inc/php/settings.php:157
441
  msgid "Enter the link to your Buzzsprout profile page"
442
  msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
443
 
444
+ #: inc/php/settings.php:164
445
  msgid "Enter the link to your LiveJournal profile page"
446
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
447
 
448
+ #: inc/php/settings.php:171
449
  msgid "Enter the link to your Reddit profile page"
450
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
451
 
452
+ #: inc/php/settings.php:178
453
  msgid "Enter the link to your LinkedIn profile page"
454
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
455
 
456
+ #: inc/php/settings.php:185
457
  msgid "Enter the link to your Diaspora profile page"
458
  msgstr "Введите ссылку на вашу страницу профиля Diaspora"
459
 
460
+ #: inc/php/settings.php:192
461
  msgid "Enter the link to your DeviantArt profile page"
462
  msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
463
 
464
+ #: inc/php/settings.php:199
465
  msgid "Enter the link to your XING profile page"
466
  msgstr "Введите ссылку на вашу страницу профиля XING"
467
 
468
+ #: inc/php/settings.php:206
469
  msgid "Enter the link to your Pinterest profile page"
470
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
471
 
472
+ #: inc/php/settings.php:213
473
  msgid "Enter the link to your Flickr profile page"
474
  msgstr "Введите ссылку на вашу страницу профиля Flickr"
475
 
476
+ #: inc/php/settings.php:220
477
  msgid "Enter the link to your Tumblr profile page"
478
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
479
 
480
+ #: inc/php/settings.php:227
481
  msgid "Enter the link to your Snapchat profile page"
482
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
483
 
484
+ #: inc/php/settings.php:234
485
  msgid "Enter the link to your Twitch profile page"
486
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
487
 
488
+ #: inc/php/settings.php:241
489
  msgid "Enter the link to your Patreon profile page"
490
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
491
 
492
+ #: inc/php/settings.php:248
493
  msgid "Enter the link to your IMDb profile page"
494
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
495
 
496
+ #: inc/php/settings.php:255
497
  msgid "Enter the link to your SoundCloud profile page"
498
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
499
 
500
+ #: inc/php/settings.php:262
501
  msgid "Enter the link to your Plug.dj profile page"
502
  msgstr "Введите ссылку на вашу страницу профиля Plug.dj"
503
 
504
+ #: inc/php/settings.php:269
505
  msgid "Enter the link to your Spotify profile page"
506
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
507
 
508
+ #: inc/php/settings.php:276
509
  msgid "Enter the link to your Bandcamp profile page"
510
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
511
 
512
+ #: inc/php/settings.php:283
513
  msgid "Enter the link to your Dloky profile page"
514
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
515
 
516
+ #: inc/php/settings.php:290
517
  msgid "Enter the link to your Amazon profile page"
518
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
519
 
520
+ #: inc/php/settings.php:297
521
  msgid "Enter the link to your BookBub profile page"
522
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
523
 
524
+ #: inc/php/settings.php:304
525
  msgid "Enter the link to your Goodreads profile page"
526
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
527
 
528
+ #: inc/php/settings.php:311
529
  msgid "Enter the link to your MeetVibe profile page"
530
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
531
 
532
+ #: inc/php/settings.php:318
533
  msgid "Enter the link to your Meetup profile page"
534
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
535
 
536
+ #: inc/php/settings.php:325
537
  msgid "Enter the link to your Steam profile page"
538
  msgstr "Введите ссылку на вашу страницу профиля Steam"
539
 
540
+ #: inc/php/settings.php:332
541
  msgid "Enter the link to your Mixer profile page"
542
  msgstr "Введите ссылку на вашу страницу профиля Mixer"
543
 
544
+ #: inc/php/settings.php:339
545
  msgid "Enter the link to your Discord profile page"
546
  msgstr "Введите ссылку на вашу страницу профиля Discord"
547
 
548
+ #: inc/php/settings.php:346
549
  msgid "Enter the link to your Yelp profile page"
550
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
551
 
552
+ #: inc/php/settings.php:353
553
  msgid "Enter the link to your StumbleUpon profile page"
554
  msgstr "Введите ссылку на вашу страницу профиля StumbleUpon"
555
 
556
+ #: inc/php/settings.php:360
557
  msgid "Enter the link to your Bloglovin profile page"
558
  msgstr "Введите ссылку на вашу страницу профиля Bloglovin"
559
 
560
+ #: inc/php/settings.php:367
561
  msgid "Enter the link to your WhatsApp profile page"
562
  msgstr "Введите ссылку на вашу страницу профиля WhatsApp"
563
 
564
+ #: inc/php/settings.php:374
565
  msgid "Enter the link to your Medium profile page"
566
  msgstr "Введите ссылку на вашу страницу профиля Medium"
567
 
568
+ #: inc/php/settings.php:381
569
  msgid "Enter the link to your 500px profile page"
570
  msgstr "Введите ссылку на вашу страницу профиля 500px"
571
 
572
+ #: inc/php/settings.php:388
573
  msgid "Enter the link to your Behance profile page"
574
  msgstr "Введите ссылку на вашу страницу профиля Behance"
575
 
576
+ #: inc/php/settings.php:395
577
  msgid "Enter the link to your Polyvore profile page"
578
  msgstr "Введите ссылку на вашу страницу профиля Polyvore"
579
 
580
+ #: inc/php/settings.php:402
581
  msgid "Enter the link to your Yellow Pages profile page"
582
  msgstr "Введите ссылку на вашу страницу профиля Yellow Pages"
583
 
584
+ #: inc/php/settings.php:409
585
  msgid "Enter the link to your LINE profile page"
586
  msgstr "Введите ссылку на вашу страницу профиля LINE"
587
 
588
+ #: inc/php/settings.php:416
589
+ msgid "Enter the link to your itch profile page"
590
+ msgstr "Введите ссылку на вашу страницу профиля itch"
591
+
592
+ #: inc/php/settings.php:423
593
+ msgid "Enter the link to your Mastodon profile page"
594
+ msgstr "Введите ссылку на вашу страницу профиля Mastodon"
595
+
596
+ #: inc/php/settings.php:430
597
+ msgid "Enter the link to your Remind profile page"
598
+ msgstr "Введите ссылку на вашу страницу профиля Remind"
599
+
600
+ #: inc/php/settings.php:437
601
+ msgid "Enter the link to your Trade Me profile page"
602
+ msgstr "Введите ссылку на вашу страницу профиля Trade Me"
603
+
604
+ #: inc/php/settings.php:444
605
+ msgid "Enter the link to your VSCO profile page"
606
+ msgstr "Введите ссылку на вашу страницу профиля VSCO"
607
+
608
+ #: inc/php/settings.php:451
609
  msgid "Enter the link to your Hireology profile page"
610
  msgstr "Введите ссылку на вашу страницу профиля Hireology"
611
 
612
+ #: inc/php/settings.php:458
613
  msgid "Enter the link to your Kompoz profile page"
614
  msgstr "Введите ссылку на вашу страницу профиля Kompoz"
615
 
616
+ #: inc/php/settings.php:465
617
  msgid "Enter the link to your SoundBlend profile page"
618
  msgstr "Введите ссылку на вашу страницу профиля SoundBlend"
619
 
620
+ #: inc/php/settings.php:472
621
  msgid "Enter the link to your VKontakte profile page"
622
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
623
 
624
+ #: inc/php/settings.php:479
625
  msgid "Enter the link to your Odnoklassniki profile page"
626
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
627
 
628
+ #: inc/php/settings.php:486
629
  msgid "Enter the link to your Telegram profile page"
630
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
631
 
632
+ #: inc/php/settings.php:493
633
  msgid "Enter the link to your GitHub profile page"
634
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
635
 
636
+ #: inc/php/settings.php:500
637
  msgid "Enter the link to your WordPress profile page"
638
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
639
 
640
+ #: inc/php/settings.php:507
641
  msgid "Enter the link to your CodePen profile page"
642
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
643
 
644
+ #: inc/php/settings.php:514
645
  msgid ""
646
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
647
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
650
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
651
  "профиля"
652
 
653
+ #: inc/php/settings.php:521
654
  msgid "Enter the link to your personal website"
655
  msgstr "Введите ссылку на ваш персональный сайт"
656
 
657
+ #: inc/php/settings.php:528
658
  msgid "Enter your email address with prefix <b>mailto:</b>"
659
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
660
 
661
+ #: inc/php/settings.php:535
662
  msgid "Enter your telephone number with prefix <b>tel://</b>"
663
  msgstr "Введите номер телефона с префиксом <b>tel://</b>"
664
 
665
+ #: inc/php/settings.php:542
666
  msgid "Enter the link to your RSS Feed"
667
  msgstr "Введите ссылку на ваш RSS поток"
668
 
669
+ #: inc/php/settings.php:549
670
  #, php-format
671
  msgid ""
672
  "If you did not find the button you need, then %s and I will gladly add it "
673
  "for you."
674
  msgstr ""
675
 
676
+ #: inc/php/settings.php:553 inc/php/settings.php:637
677
  msgid "Save changes"
678
  msgstr "Сохранить изменения"
679
 
680
+ #: inc/php/settings.php:559
681
  msgid "Display options"
682
  msgstr "Настройки отображения"
683
 
684
+ #: inc/php/settings.php:561
685
  msgid "There you can configure this plugin."
686
  msgstr "Здесь вы можете настроить этот плагин."
687
 
688
+ #: inc/php/settings.php:565
689
  msgid "Show on Posts"
690
  msgstr "Показать в записях"
691
 
692
+ #: inc/php/settings.php:566
693
+ msgid "Automatically display toolbar below content on Posts."
694
+ msgstr ""
695
 
696
+ #: inc/php/settings.php:571
697
  msgid "Show on Pages"
698
  msgstr "Показывать на страницах"
699
 
700
+ #: inc/php/settings.php:572
701
+ msgid "Automatically display toolbar below content on Pages."
702
+ msgstr ""
703
 
704
+ #: inc/php/settings.php:577
705
  msgid "Open in new tab"
706
  msgstr "Открыть в новой вкладке"
707
 
708
+ #: inc/php/settings.php:578
709
  msgid "Open link in a new tab/window."
710
  msgstr "Открыть ссылку в новом окне/вкладке"
711
 
712
+ #: inc/php/settings.php:583
713
  msgid "Tooltips"
714
  msgstr "Подсказки"
715
 
716
+ #: inc/php/settings.php:584
717
+ msgid "Enable a tooltips with name of the social media above every button."
 
718
  msgstr ""
 
 
719
 
720
+ #: inc/php/settings.php:589
721
  msgid "Icon size"
722
  msgstr "Размер иконки"
723
 
724
+ #: inc/php/settings.php:590
725
  msgid ""
726
  "Enter the size of icons (in px) in your social media follow buttons bar."
727
  msgstr ""
728
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
729
 
730
+ #: inc/php/settings.php:597
731
  msgid "Margin"
732
  msgstr "Отступ"
733
 
734
+ #: inc/php/settings.php:598
735
  msgid ""
736
  "Enter the size of space (in px) between icons in your social media follow "
737
  "buttons bar."
738
  msgstr ""
739
 
740
+ #: inc/php/settings.php:607
741
  msgid "Alignment"
742
  msgstr "Выравнивание"
743
 
744
+ #: inc/php/settings.php:613
745
  msgid "Left"
746
  msgstr "Слева"
747
 
748
+ #: inc/php/settings.php:617
749
  msgid "Center"
750
  msgstr "По центру"
751
 
752
+ #: inc/php/settings.php:621
753
  msgid "Right"
754
  msgstr "Справа"
755
 
756
+ #: inc/php/settings.php:628
757
  msgid "Caption"
758
  msgstr "Заголовок"
759
 
760
+ #: inc/php/settings.php:629
761
  msgid ""
762
  "Enter the caption to your social media follow buttons bar. It will be "
763
  "displays before the toolbar."
765
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
766
  "над панелью."
767
 
768
+ #: inc/php/settings.php:643
769
  msgid "Preview"
770
  msgstr "Предварительный просмотр"
771
 
772
+ #: inc/php/settings.php:645
773
  msgid "Click the \"Save changes\" button to update this preview."
774
  msgstr ""
775
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
796
  msgid "https://www.arthurgareginyan.com"
797
  msgstr "https://www.arthurgareginyan.com"
798
 
799
+ #~ msgid "Display toolbar below content on Posts."
800
+ #~ msgstr "Показывать кнопки под содержанием в записях"
801
+
802
+ #~ msgid "Display toolbar below content on Pages."
803
+ #~ msgstr "Показывать кнопки под содержанием на страницах"
804
+
805
+ #~ msgid ""
806
+ #~ "Enable/disable a tooltips with name of the social media above every "
807
+ #~ "button."
808
+ #~ msgstr ""
809
+ #~ "Включить/отключить всплывающие подсказки с названием социальных медиа над "
810
+ #~ "каждой кнопкой."
811
+
812
  #~ msgid "You can contact me by email %s"
813
  #~ msgstr "Вы можете связаться со мной по электронной почте %s"
814
 
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-07-02 22:17+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -69,7 +69,7 @@ msgstr ""
69
  msgid "Author"
70
  msgstr ""
71
 
72
- #: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28 inc/php/settings.php:609
73
  msgid "Support"
74
  msgstr ""
75
 
@@ -137,7 +137,7 @@ msgstr ""
137
  msgid "It's that simple!"
138
  msgstr ""
139
 
140
- #: inc/php/page.php:86 inc/php/settings.php:506
141
  msgid "Note!"
142
  msgstr ""
143
 
@@ -311,17 +311,17 @@ msgid ""
311
  "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
312
  msgstr ""
313
 
314
- #: inc/php/settings.php:30 inc/php/settings.php:611
315
  msgid ""
316
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
317
  "costs and lets me spend more time building things for people like you to enjoy."
318
  msgstr ""
319
 
320
- #: inc/php/settings.php:31 inc/php/settings.php:612
321
  msgid "Donate with PayPal"
322
  msgstr ""
323
 
324
- #: inc/php/settings.php:32 inc/php/settings.php:613
325
  msgid "Thanks for your support!"
326
  msgstr ""
327
 
@@ -369,326 +369,350 @@ msgid "Enter the link to your YouTube Gaming profile page"
369
  msgstr ""
370
 
371
  #: inc/php/settings.php:115
372
- msgid "Enter the link to your iTunes profile page"
373
  msgstr ""
374
 
375
  #: inc/php/settings.php:122
376
- msgid "Enter the link to your Apple Music profile page"
377
  msgstr ""
378
 
379
  #: inc/php/settings.php:129
380
- msgid "Enter the link to your Periscope profile page"
381
  msgstr ""
382
 
383
  #: inc/php/settings.php:136
384
- msgid "Enter the link to your Vimeo profile page"
385
  msgstr ""
386
 
387
  #: inc/php/settings.php:143
388
- msgid "Enter the link to your Blogger profile page"
389
  msgstr ""
390
 
391
  #: inc/php/settings.php:150
392
- msgid "Enter the link to your Buzzsprout profile page"
393
  msgstr ""
394
 
395
  #: inc/php/settings.php:157
396
- msgid "Enter the link to your LiveJournal profile page"
397
  msgstr ""
398
 
399
  #: inc/php/settings.php:164
400
- msgid "Enter the link to your Reddit profile page"
401
  msgstr ""
402
 
403
  #: inc/php/settings.php:171
404
- msgid "Enter the link to your LinkedIn profile page"
405
  msgstr ""
406
 
407
  #: inc/php/settings.php:178
408
- msgid "Enter the link to your Diaspora profile page"
409
  msgstr ""
410
 
411
  #: inc/php/settings.php:185
412
- msgid "Enter the link to your DeviantArt profile page"
413
  msgstr ""
414
 
415
  #: inc/php/settings.php:192
416
- msgid "Enter the link to your XING profile page"
417
  msgstr ""
418
 
419
  #: inc/php/settings.php:199
420
- msgid "Enter the link to your Pinterest profile page"
421
  msgstr ""
422
 
423
  #: inc/php/settings.php:206
424
- msgid "Enter the link to your Flickr profile page"
425
  msgstr ""
426
 
427
  #: inc/php/settings.php:213
428
- msgid "Enter the link to your Tumblr profile page"
429
  msgstr ""
430
 
431
  #: inc/php/settings.php:220
432
- msgid "Enter the link to your Snapchat profile page"
433
  msgstr ""
434
 
435
  #: inc/php/settings.php:227
436
- msgid "Enter the link to your Twitch profile page"
437
  msgstr ""
438
 
439
  #: inc/php/settings.php:234
440
- msgid "Enter the link to your Patreon profile page"
441
  msgstr ""
442
 
443
  #: inc/php/settings.php:241
444
- msgid "Enter the link to your IMDb profile page"
445
  msgstr ""
446
 
447
  #: inc/php/settings.php:248
448
- msgid "Enter the link to your SoundCloud profile page"
449
  msgstr ""
450
 
451
  #: inc/php/settings.php:255
452
- msgid "Enter the link to your Plug.dj profile page"
453
  msgstr ""
454
 
455
  #: inc/php/settings.php:262
456
- msgid "Enter the link to your Spotify profile page"
457
  msgstr ""
458
 
459
  #: inc/php/settings.php:269
460
- msgid "Enter the link to your Bandcamp profile page"
461
  msgstr ""
462
 
463
  #: inc/php/settings.php:276
464
- msgid "Enter the link to your Dloky profile page"
465
  msgstr ""
466
 
467
  #: inc/php/settings.php:283
468
- msgid "Enter the link to your Amazon profile page"
469
  msgstr ""
470
 
471
  #: inc/php/settings.php:290
472
- msgid "Enter the link to your BookBub profile page"
473
  msgstr ""
474
 
475
  #: inc/php/settings.php:297
476
- msgid "Enter the link to your Goodreads profile page"
477
  msgstr ""
478
 
479
  #: inc/php/settings.php:304
480
- msgid "Enter the link to your MeetVibe profile page"
481
  msgstr ""
482
 
483
  #: inc/php/settings.php:311
484
- msgid "Enter the link to your Meetup profile page"
485
  msgstr ""
486
 
487
  #: inc/php/settings.php:318
488
- msgid "Enter the link to your Steam profile page"
489
  msgstr ""
490
 
491
  #: inc/php/settings.php:325
492
- msgid "Enter the link to your Mixer profile page"
493
  msgstr ""
494
 
495
  #: inc/php/settings.php:332
496
- msgid "Enter the link to your Discord profile page"
497
  msgstr ""
498
 
499
  #: inc/php/settings.php:339
500
- msgid "Enter the link to your Yelp profile page"
501
  msgstr ""
502
 
503
  #: inc/php/settings.php:346
504
- msgid "Enter the link to your StumbleUpon profile page"
505
  msgstr ""
506
 
507
  #: inc/php/settings.php:353
508
- msgid "Enter the link to your Bloglovin profile page"
509
  msgstr ""
510
 
511
  #: inc/php/settings.php:360
512
- msgid "Enter the link to your WhatsApp profile page"
513
  msgstr ""
514
 
515
  #: inc/php/settings.php:367
516
- msgid "Enter the link to your Medium profile page"
517
  msgstr ""
518
 
519
  #: inc/php/settings.php:374
520
- msgid "Enter the link to your 500px profile page"
521
  msgstr ""
522
 
523
  #: inc/php/settings.php:381
524
- msgid "Enter the link to your Behance profile page"
525
  msgstr ""
526
 
527
  #: inc/php/settings.php:388
528
- msgid "Enter the link to your Polyvore profile page"
529
  msgstr ""
530
 
531
  #: inc/php/settings.php:395
532
- msgid "Enter the link to your Yellow Pages profile page"
533
  msgstr ""
534
 
535
  #: inc/php/settings.php:402
536
- msgid "Enter the link to your LINE profile page"
537
  msgstr ""
538
 
539
  #: inc/php/settings.php:409
540
- msgid "Enter the link to your Hireology profile page"
541
  msgstr ""
542
 
543
  #: inc/php/settings.php:416
544
- msgid "Enter the link to your Kompoz profile page"
545
  msgstr ""
546
 
547
  #: inc/php/settings.php:423
548
- msgid "Enter the link to your SoundBlend profile page"
549
  msgstr ""
550
 
551
  #: inc/php/settings.php:430
552
- msgid "Enter the link to your VKontakte profile page"
553
  msgstr ""
554
 
555
  #: inc/php/settings.php:437
556
- msgid "Enter the link to your Odnoklassniki profile page"
557
  msgstr ""
558
 
559
  #: inc/php/settings.php:444
560
- msgid "Enter the link to your Telegram profile page"
561
  msgstr ""
562
 
563
  #: inc/php/settings.php:451
564
- msgid "Enter the link to your GitHub profile page"
565
  msgstr ""
566
 
567
  #: inc/php/settings.php:458
568
- msgid "Enter the link to your WordPress profile page"
569
  msgstr ""
570
 
571
  #: inc/php/settings.php:465
572
- msgid "Enter the link to your CodePen profile page"
573
  msgstr ""
574
 
575
  #: inc/php/settings.php:472
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
576
  msgid ""
577
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
578
  "b>, or <b>?userinfo</b> for view profile"
579
  msgstr ""
580
 
581
- #: inc/php/settings.php:479
582
  msgid "Enter the link to your personal website"
583
  msgstr ""
584
 
585
- #: inc/php/settings.php:486
586
  msgid "Enter your email address with prefix <b>mailto:</b>"
587
  msgstr ""
588
 
589
- #: inc/php/settings.php:493
590
  msgid "Enter your telephone number with prefix <b>tel://</b>"
591
  msgstr ""
592
 
593
- #: inc/php/settings.php:500
594
  msgid "Enter the link to your RSS Feed"
595
  msgstr ""
596
 
597
- #: inc/php/settings.php:507
598
  #, php-format
599
  msgid "If you did not find the button you need, then %s and I will gladly add it for you."
600
  msgstr ""
601
 
602
- #: inc/php/settings.php:511 inc/php/settings.php:595
603
  msgid "Save changes"
604
  msgstr ""
605
 
606
- #: inc/php/settings.php:517
607
  msgid "Display options"
608
  msgstr ""
609
 
610
- #: inc/php/settings.php:519
611
  msgid "There you can configure this plugin."
612
  msgstr ""
613
 
614
- #: inc/php/settings.php:523
615
  msgid "Show on Posts"
616
  msgstr ""
617
 
618
- #: inc/php/settings.php:524
619
- msgid "Display toolbar below content on Posts."
620
  msgstr ""
621
 
622
- #: inc/php/settings.php:529
623
  msgid "Show on Pages"
624
  msgstr ""
625
 
626
- #: inc/php/settings.php:530
627
- msgid "Display toolbar below content on Pages."
628
  msgstr ""
629
 
630
- #: inc/php/settings.php:535
631
  msgid "Open in new tab"
632
  msgstr ""
633
 
634
- #: inc/php/settings.php:536
635
  msgid "Open link in a new tab/window."
636
  msgstr ""
637
 
638
- #: inc/php/settings.php:541
639
  msgid "Tooltips"
640
  msgstr ""
641
 
642
- #: inc/php/settings.php:542
643
- msgid "Enable/disable a tooltips with name of the social media above every button."
644
  msgstr ""
645
 
646
- #: inc/php/settings.php:547
647
  msgid "Icon size"
648
  msgstr ""
649
 
650
- #: inc/php/settings.php:548
651
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
652
  msgstr ""
653
 
654
- #: inc/php/settings.php:555
655
  msgid "Margin"
656
  msgstr ""
657
 
658
- #: inc/php/settings.php:556
659
  msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
660
  msgstr ""
661
 
662
- #: inc/php/settings.php:565
663
  msgid "Alignment"
664
  msgstr ""
665
 
666
- #: inc/php/settings.php:571
667
  msgid "Left"
668
  msgstr ""
669
 
670
- #: inc/php/settings.php:575
671
  msgid "Center"
672
  msgstr ""
673
 
674
- #: inc/php/settings.php:579
675
  msgid "Right"
676
  msgstr ""
677
 
678
- #: inc/php/settings.php:586
679
  msgid "Caption"
680
  msgstr ""
681
 
682
- #: inc/php/settings.php:587
683
  msgid ""
684
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
685
  msgstr ""
686
 
687
- #: inc/php/settings.php:601
688
  msgid "Preview"
689
  msgstr ""
690
 
691
- #: inc/php/settings.php:603
692
  msgid "Click the \"Save changes\" button to update this preview."
693
  msgstr ""
694
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
+ "POT-Creation-Date: 2017-07-23 01:56+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
69
  msgid "Author"
70
  msgstr ""
71
 
72
+ #: inc/php/page.php:51 inc/php/page.php:201 inc/php/settings.php:28 inc/php/settings.php:651
73
  msgid "Support"
74
  msgstr ""
75
 
137
  msgid "It's that simple!"
138
  msgstr ""
139
 
140
+ #: inc/php/page.php:86 inc/php/settings.php:548
141
  msgid "Note!"
142
  msgstr ""
143
 
311
  "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
312
  msgstr ""
313
 
314
+ #: inc/php/settings.php:30 inc/php/settings.php:653
315
  msgid ""
316
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
317
  "costs and lets me spend more time building things for people like you to enjoy."
318
  msgstr ""
319
 
320
+ #: inc/php/settings.php:31 inc/php/settings.php:654
321
  msgid "Donate with PayPal"
322
  msgstr ""
323
 
324
+ #: inc/php/settings.php:32 inc/php/settings.php:655
325
  msgid "Thanks for your support!"
326
  msgstr ""
327
 
369
  msgstr ""
370
 
371
  #: inc/php/settings.php:115
372
+ msgid "Enter the link to your Google Play profile page"
373
  msgstr ""
374
 
375
  #: inc/php/settings.php:122
376
+ msgid "Enter the link to your iTunes profile page"
377
  msgstr ""
378
 
379
  #: inc/php/settings.php:129
380
+ msgid "Enter the link to your Apple Music profile page"
381
  msgstr ""
382
 
383
  #: inc/php/settings.php:136
384
+ msgid "Enter the link to your Periscope profile page"
385
  msgstr ""
386
 
387
  #: inc/php/settings.php:143
388
+ msgid "Enter the link to your Vimeo profile page"
389
  msgstr ""
390
 
391
  #: inc/php/settings.php:150
392
+ msgid "Enter the link to your Blogger profile page"
393
  msgstr ""
394
 
395
  #: inc/php/settings.php:157
396
+ msgid "Enter the link to your Buzzsprout profile page"
397
  msgstr ""
398
 
399
  #: inc/php/settings.php:164
400
+ msgid "Enter the link to your LiveJournal profile page"
401
  msgstr ""
402
 
403
  #: inc/php/settings.php:171
404
+ msgid "Enter the link to your Reddit profile page"
405
  msgstr ""
406
 
407
  #: inc/php/settings.php:178
408
+ msgid "Enter the link to your LinkedIn profile page"
409
  msgstr ""
410
 
411
  #: inc/php/settings.php:185
412
+ msgid "Enter the link to your Diaspora profile page"
413
  msgstr ""
414
 
415
  #: inc/php/settings.php:192
416
+ msgid "Enter the link to your DeviantArt profile page"
417
  msgstr ""
418
 
419
  #: inc/php/settings.php:199
420
+ msgid "Enter the link to your XING profile page"
421
  msgstr ""
422
 
423
  #: inc/php/settings.php:206
424
+ msgid "Enter the link to your Pinterest profile page"
425
  msgstr ""
426
 
427
  #: inc/php/settings.php:213
428
+ msgid "Enter the link to your Flickr profile page"
429
  msgstr ""
430
 
431
  #: inc/php/settings.php:220
432
+ msgid "Enter the link to your Tumblr profile page"
433
  msgstr ""
434
 
435
  #: inc/php/settings.php:227
436
+ msgid "Enter the link to your Snapchat profile page"
437
  msgstr ""
438
 
439
  #: inc/php/settings.php:234
440
+ msgid "Enter the link to your Twitch profile page"
441
  msgstr ""
442
 
443
  #: inc/php/settings.php:241
444
+ msgid "Enter the link to your Patreon profile page"
445
  msgstr ""
446
 
447
  #: inc/php/settings.php:248
448
+ msgid "Enter the link to your IMDb profile page"
449
  msgstr ""
450
 
451
  #: inc/php/settings.php:255
452
+ msgid "Enter the link to your SoundCloud profile page"
453
  msgstr ""
454
 
455
  #: inc/php/settings.php:262
456
+ msgid "Enter the link to your Plug.dj profile page"
457
  msgstr ""
458
 
459
  #: inc/php/settings.php:269
460
+ msgid "Enter the link to your Spotify profile page"
461
  msgstr ""
462
 
463
  #: inc/php/settings.php:276
464
+ msgid "Enter the link to your Bandcamp profile page"
465
  msgstr ""
466
 
467
  #: inc/php/settings.php:283
468
+ msgid "Enter the link to your Dloky profile page"
469
  msgstr ""
470
 
471
  #: inc/php/settings.php:290
472
+ msgid "Enter the link to your Amazon profile page"
473
  msgstr ""
474
 
475
  #: inc/php/settings.php:297
476
+ msgid "Enter the link to your BookBub profile page"
477
  msgstr ""
478
 
479
  #: inc/php/settings.php:304
480
+ msgid "Enter the link to your Goodreads profile page"
481
  msgstr ""
482
 
483
  #: inc/php/settings.php:311
484
+ msgid "Enter the link to your MeetVibe profile page"
485
  msgstr ""
486
 
487
  #: inc/php/settings.php:318
488
+ msgid "Enter the link to your Meetup profile page"
489
  msgstr ""
490
 
491
  #: inc/php/settings.php:325
492
+ msgid "Enter the link to your Steam profile page"
493
  msgstr ""
494
 
495
  #: inc/php/settings.php:332
496
+ msgid "Enter the link to your Mixer profile page"
497
  msgstr ""
498
 
499
  #: inc/php/settings.php:339
500
+ msgid "Enter the link to your Discord profile page"
501
  msgstr ""
502
 
503
  #: inc/php/settings.php:346
504
+ msgid "Enter the link to your Yelp profile page"
505
  msgstr ""
506
 
507
  #: inc/php/settings.php:353
508
+ msgid "Enter the link to your StumbleUpon profile page"
509
  msgstr ""
510
 
511
  #: inc/php/settings.php:360
512
+ msgid "Enter the link to your Bloglovin profile page"
513
  msgstr ""
514
 
515
  #: inc/php/settings.php:367
516
+ msgid "Enter the link to your WhatsApp profile page"
517
  msgstr ""
518
 
519
  #: inc/php/settings.php:374
520
+ msgid "Enter the link to your Medium profile page"
521
  msgstr ""
522
 
523
  #: inc/php/settings.php:381
524
+ msgid "Enter the link to your 500px profile page"
525
  msgstr ""
526
 
527
  #: inc/php/settings.php:388
528
+ msgid "Enter the link to your Behance profile page"
529
  msgstr ""
530
 
531
  #: inc/php/settings.php:395
532
+ msgid "Enter the link to your Polyvore profile page"
533
  msgstr ""
534
 
535
  #: inc/php/settings.php:402
536
+ msgid "Enter the link to your Yellow Pages profile page"
537
  msgstr ""
538
 
539
  #: inc/php/settings.php:409
540
+ msgid "Enter the link to your LINE profile page"
541
  msgstr ""
542
 
543
  #: inc/php/settings.php:416
544
+ msgid "Enter the link to your itch profile page"
545
  msgstr ""
546
 
547
  #: inc/php/settings.php:423
548
+ msgid "Enter the link to your Mastodon profile page"
549
  msgstr ""
550
 
551
  #: inc/php/settings.php:430
552
+ msgid "Enter the link to your Remind profile page"
553
  msgstr ""
554
 
555
  #: inc/php/settings.php:437
556
+ msgid "Enter the link to your Trade Me profile page"
557
  msgstr ""
558
 
559
  #: inc/php/settings.php:444
560
+ msgid "Enter the link to your VSCO profile page"
561
  msgstr ""
562
 
563
  #: inc/php/settings.php:451
564
+ msgid "Enter the link to your Hireology profile page"
565
  msgstr ""
566
 
567
  #: inc/php/settings.php:458
568
+ msgid "Enter the link to your Kompoz profile page"
569
  msgstr ""
570
 
571
  #: inc/php/settings.php:465
572
+ msgid "Enter the link to your SoundBlend profile page"
573
  msgstr ""
574
 
575
  #: inc/php/settings.php:472
576
+ msgid "Enter the link to your VKontakte profile page"
577
+ msgstr ""
578
+
579
+ #: inc/php/settings.php:479
580
+ msgid "Enter the link to your Odnoklassniki profile page"
581
+ msgstr ""
582
+
583
+ #: inc/php/settings.php:486
584
+ msgid "Enter the link to your Telegram profile page"
585
+ msgstr ""
586
+
587
+ #: inc/php/settings.php:493
588
+ msgid "Enter the link to your GitHub profile page"
589
+ msgstr ""
590
+
591
+ #: inc/php/settings.php:500
592
+ msgid "Enter the link to your WordPress profile page"
593
+ msgstr ""
594
+
595
+ #: inc/php/settings.php:507
596
+ msgid "Enter the link to your CodePen profile page"
597
+ msgstr ""
598
+
599
+ #: inc/php/settings.php:514
600
  msgid ""
601
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
602
  "b>, or <b>?userinfo</b> for view profile"
603
  msgstr ""
604
 
605
+ #: inc/php/settings.php:521
606
  msgid "Enter the link to your personal website"
607
  msgstr ""
608
 
609
+ #: inc/php/settings.php:528
610
  msgid "Enter your email address with prefix <b>mailto:</b>"
611
  msgstr ""
612
 
613
+ #: inc/php/settings.php:535
614
  msgid "Enter your telephone number with prefix <b>tel://</b>"
615
  msgstr ""
616
 
617
+ #: inc/php/settings.php:542
618
  msgid "Enter the link to your RSS Feed"
619
  msgstr ""
620
 
621
+ #: inc/php/settings.php:549
622
  #, php-format
623
  msgid "If you did not find the button you need, then %s and I will gladly add it for you."
624
  msgstr ""
625
 
626
+ #: inc/php/settings.php:553 inc/php/settings.php:637
627
  msgid "Save changes"
628
  msgstr ""
629
 
630
+ #: inc/php/settings.php:559
631
  msgid "Display options"
632
  msgstr ""
633
 
634
+ #: inc/php/settings.php:561
635
  msgid "There you can configure this plugin."
636
  msgstr ""
637
 
638
+ #: inc/php/settings.php:565
639
  msgid "Show on Posts"
640
  msgstr ""
641
 
642
+ #: inc/php/settings.php:566
643
+ msgid "Automatically display toolbar below content on Posts."
644
  msgstr ""
645
 
646
+ #: inc/php/settings.php:571
647
  msgid "Show on Pages"
648
  msgstr ""
649
 
650
+ #: inc/php/settings.php:572
651
+ msgid "Automatically display toolbar below content on Pages."
652
  msgstr ""
653
 
654
+ #: inc/php/settings.php:577
655
  msgid "Open in new tab"
656
  msgstr ""
657
 
658
+ #: inc/php/settings.php:578
659
  msgid "Open link in a new tab/window."
660
  msgstr ""
661
 
662
+ #: inc/php/settings.php:583
663
  msgid "Tooltips"
664
  msgstr ""
665
 
666
+ #: inc/php/settings.php:584
667
+ msgid "Enable a tooltips with name of the social media above every button."
668
  msgstr ""
669
 
670
+ #: inc/php/settings.php:589
671
  msgid "Icon size"
672
  msgstr ""
673
 
674
+ #: inc/php/settings.php:590
675
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
676
  msgstr ""
677
 
678
+ #: inc/php/settings.php:597
679
  msgid "Margin"
680
  msgstr ""
681
 
682
+ #: inc/php/settings.php:598
683
  msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
684
  msgstr ""
685
 
686
+ #: inc/php/settings.php:607
687
  msgid "Alignment"
688
  msgstr ""
689
 
690
+ #: inc/php/settings.php:613
691
  msgid "Left"
692
  msgstr ""
693
 
694
+ #: inc/php/settings.php:617
695
  msgid "Center"
696
  msgstr ""
697
 
698
+ #: inc/php/settings.php:621
699
  msgid "Right"
700
  msgstr ""
701
 
702
+ #: inc/php/settings.php:628
703
  msgid "Caption"
704
  msgstr ""
705
 
706
+ #: inc/php/settings.php:629
707
  msgid ""
708
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
709
  msgstr ""
710
 
711
+ #: inc/php/settings.php:643
712
  msgid "Preview"
713
  msgstr ""
714
 
715
+ #: inc/php/settings.php:645
716
  msgid "Click the \"Save changes\" button to update this preview."
717
  msgstr ""
718
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Social Media Follow Buttons Bar ===
2
  Contributors: Arthur Gareginyan
3
- Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
- Stable tag: 4.13
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -49,6 +49,7 @@ It give you finer control over buttons. You can configure they on plugins settin
49
  * Google+
50
  * YouTube
51
  * YouTube Gaming
 
52
  * iTunes
53
  * Apple Music
54
  * Periscope
@@ -90,6 +91,11 @@ It give you finer control over buttons. You can configure they on plugins settin
90
  * Polyvore
91
  * Yellow Pages
92
  * LINE
 
 
 
 
 
93
  * Hireology
94
  * Kompoz
95
  * SoundBlend
@@ -217,7 +223,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
217
  * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
218
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
219
  * The Entrepreneur image that used on banner is from [Pixabay](https://pixabay.com/en/entrepreneur-start-start-up-career-696976/) and licensed under the [Creative Commons CC0](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
220
- * Icons [hireology.png, kompoz.png, soundblend.png, itunes.png, apple-music.png, medium.png, 500px.png, behance.png, polyvore.png, yellowpages.png, mixer.png, telephone.png, bloglovin.png, line.png, stumbleupon.png, whatsapp.png, plugdj.png, deviantart.png, buzzsprout.png, periscope.png, youtube.png, meetvibe.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](https://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
221
  * Icons [facebook.png, flickr.png, google-plus.png, vimeo.png, blogger.png, linkedin.png, livejournal.png, pinterest.png, tumblr.png, soundcloud.png, spotify.png, yelp.png, vkontakte.png, odnoklassniki.png, telegram.png, github.png, skype.png, website.png, email.png, rss-feed.png](https://www.iconfinder.com/iconsets/social-buttons-2?ref=ArthurGareginyan) by Ivlichev Victor Petrovich and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
222
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
223
  * [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
@@ -230,6 +236,15 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
230
 
231
  == Changelog ==
232
 
 
 
 
 
 
 
 
 
 
233
  = 4.13 =
234
  * Added option for the Hireology.
235
  * Added option for the Kompoz.
1
  === Social Media Follow Buttons Bar ===
2
  Contributors: Arthur Gareginyan
3
+ Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, google-play, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, itch, itch.io, mastodon, remind, trademe, vsco, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
+ Stable tag: 4.14
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
49
  * Google+
50
  * YouTube
51
  * YouTube Gaming
52
+ * Google Play
53
  * iTunes
54
  * Apple Music
55
  * Periscope
91
  * Polyvore
92
  * Yellow Pages
93
  * LINE
94
+ * itch
95
+ * Mastodon
96
+ * Remind
97
+ * Trade Me
98
+ * VSCO
99
  * Hireology
100
  * Kompoz
101
  * SoundBlend
223
  * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
224
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
225
  * The Entrepreneur image that used on banner is from [Pixabay](https://pixabay.com/en/entrepreneur-start-start-up-career-696976/) and licensed under the [Creative Commons CC0](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
226
+ * Icons [google-play.png, itch.png, mastodon.png, remind.png, trademe.png, vsco.png, hireology.png, kompoz.png, soundblend.png, itunes.png, apple-music.png, medium.png, 500px.png, behance.png, polyvore.png, yellowpages.png, mixer.png, telephone.png, bloglovin.png, line.png, stumbleupon.png, whatsapp.png, plugdj.png, deviantart.png, buzzsprout.png, periscope.png, youtube.png, meetvibe.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](https://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
227
  * Icons [facebook.png, flickr.png, google-plus.png, vimeo.png, blogger.png, linkedin.png, livejournal.png, pinterest.png, tumblr.png, soundcloud.png, spotify.png, yelp.png, vkontakte.png, odnoklassniki.png, telegram.png, github.png, skype.png, website.png, email.png, rss-feed.png](https://www.iconfinder.com/iconsets/social-buttons-2?ref=ArthurGareginyan) by Ivlichev Victor Petrovich and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
228
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
229
  * [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
236
 
237
  == Changelog ==
238
 
239
+ = 4.14 =
240
+ * Added option for the Google Play.
241
+ * Added option for the itch.
242
+ * Added option for the Mastodon.
243
+ * Added option for the Remind.
244
+ * Added option for the Trade Me.
245
+ * Added option for the VSCO.
246
+ * Added additional CSS reset rules.
247
+
248
  = 4.13 =
249
  * Added option for the Hireology.
250
  * Added option for the Kompoz.
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.13
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.14
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/