Social Media Follow Buttons Bar - Version 4.7

Version Description

  • Compatibility with PHP version 5.2 improved.
  • PHP shorthands improved.
  • Added function for generating the plugin constants.
  • Some constants now get the value from the plugin header data.
  • Added option for the DeviantArt social network.
  • The "_plugin_version_number" function improved.
  • Added file "upgrade.php" for future upgrades.
Download this release

Release Info

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

Code changes from version 4.6.1 to 4.7

inc/img/social-media-icons/deviantart.png ADDED
Binary file
inc/php/functional.php CHANGED
@@ -61,7 +61,7 @@ function smbtoolbar_media( $name, $label, $placeholder, $help=null, $link=null )
61
  }
62
 
63
  /**
64
- * Render checkboxes and fields for saving settings data to BD
65
  *
66
  * @since 4.6
67
  */
61
  }
62
 
63
  /**
64
+ * Render checkboxes and fields for saving settings data to database
65
  *
66
  * @since 4.6
67
  */
inc/php/messages.php CHANGED
@@ -48,12 +48,12 @@ function smbtoolbar_hello_message() {
48
  /**
49
  * Error message (When the old version of plugin installed) - Bootstrap Modal
50
  *
51
- * @since 4.6
52
  */
53
  function smbtoolbar_error_message() {
54
 
55
  $info = get_option( SMEDIABT_SETTINGS . '_service_info' );
56
- $old_version = isset( $info['old_version'] ) && !empty( $info['old_version'] ) ? $info['old_version'] : '0';
57
 
58
  if ( $old_version != '1' ) {
59
  return;
48
  /**
49
  * Error message (When the old version of plugin installed) - Bootstrap Modal
50
  *
51
+ * @since 4.7
52
  */
53
  function smbtoolbar_error_message() {
54
 
55
  $info = get_option( SMEDIABT_SETTINGS . '_service_info' );
56
+ $old_version = !empty( $info['old_version'] ) ? $info['old_version'] : '0';
57
 
58
  if ( $old_version != '1' ) {
59
  return;
inc/php/page.php CHANGED
@@ -15,8 +15,8 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
15
  function smbtoolbar_render_submenu_page() {
16
 
17
  // Call messages
18
- //smbtoolbar_hello_message();
19
- //smbtoolbar_error_message();
20
 
21
  // Layout of page
22
  ?>
15
  function smbtoolbar_render_submenu_page() {
16
 
17
  // Call messages
18
+ smbtoolbar_hello_message();
19
+ smbtoolbar_error_message();
20
 
21
  // Layout of page
22
  ?>
inc/php/settings.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Tab
12
  *
13
- * @since 4.6
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
@@ -54,11 +54,11 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
54
  <?php settings_fields( SMEDIABT_SETTINGS . '_settings_group' ); ?>
55
 
56
  <?php
57
- // Get options from the BD
58
  $options = get_option( SMEDIABT_SETTINGS . '_settings' );
59
 
60
- // Set default value if the option is empty
61
- $alignment = isset( $options['alignment'] ) && !empty( $options['alignment'] ) ? $options['alignment'] : '';
62
  ?>
63
 
64
  <div class="postbox" id="Buttons">
@@ -136,7 +136,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
136
  'https://www.buzzsprout.com/YourUsernameHere',
137
  __( 'Enter the link to your Buzzsprout profile page', SMEDIABT_TEXT ),
138
  '//www.buzzsprout.com'
139
- );
140
  ?>
141
  <?php smbtoolbar_media( 'livejournal',
142
  'LiveJournal',
@@ -166,6 +166,13 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
166
  '//diasporafoundation.org'
167
  );
168
  ?>
 
 
 
 
 
 
 
169
  <?php smbtoolbar_media( 'xing',
170
  'XING',
171
  'https://www.xing.com/YourUsernameHere',
@@ -443,15 +450,15 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
443
  <td>
444
  <ul>
445
  <li>
446
- <input type="radio" name="smbtoolbar_settings[alignment]" value="left" <?php checked('left', $alignment); ?> >
447
  <?php _e( 'Left', SMEDIABT_TEXT ); ?>
448
  </li>
449
  <li>
450
- <input type="radio" name="smbtoolbar_settings[alignment]" value="center" <?php checked('', $alignment); ?> <?php checked('center', $alignment); ?> >
451
  <?php _e( 'Center', SMEDIABT_TEXT ); ?>
452
  </li>
453
  <li>
454
- <input type="radio" name="smbtoolbar_settings[alignment]" value="right" <?php checked('right', $alignment); ?> >
455
  <?php _e( 'Right', SMEDIABT_TEXT ); ?>
456
  </li>
457
  </ul>
10
  /**
11
  * Render Settings Tab
12
  *
13
+ * @since 4.7
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
54
  <?php settings_fields( SMEDIABT_SETTINGS . '_settings_group' ); ?>
55
 
56
  <?php
57
+ // Get options from the database
58
  $options = get_option( SMEDIABT_SETTINGS . '_settings' );
59
 
60
+ // Set default value if option is empty
61
+ $alignment = !empty( $options['alignment'] ) ? $options['alignment'] : '';
62
  ?>
63
 
64
  <div class="postbox" id="Buttons">
136
  'https://www.buzzsprout.com/YourUsernameHere',
137
  __( 'Enter the link to your Buzzsprout profile page', SMEDIABT_TEXT ),
138
  '//www.buzzsprout.com'
139
+ );
140
  ?>
141
  <?php smbtoolbar_media( 'livejournal',
142
  'LiveJournal',
166
  '//diasporafoundation.org'
167
  );
168
  ?>
169
+ <?php smbtoolbar_media( 'deviantart',
170
+ 'DeviantArt',
171
+ 'http://www.deviantart.com/YourUsernameHere',
172
+ __( 'Enter the link to your DeviantArt profile page', SMEDIABT_TEXT ),
173
+ '//www.deviantart.com'
174
+ );
175
+ ?>
176
  <?php smbtoolbar_media( 'xing',
177
  'XING',
178
  'https://www.xing.com/YourUsernameHere',
450
  <td>
451
  <ul>
452
  <li>
453
+ <input type="radio" name="smbtoolbar_settings[alignment]" value="left" <?php checked( 'left', $alignment ); ?> >
454
  <?php _e( 'Left', SMEDIABT_TEXT ); ?>
455
  </li>
456
  <li>
457
+ <input type="radio" name="smbtoolbar_settings[alignment]" value="center" <?php checked( '', $alignment ); ?> <?php checked( 'center', $alignment ); ?> >
458
  <?php _e( 'Center', SMEDIABT_TEXT ); ?>
459
  </li>
460
  <li>
461
+ <input type="radio" name="smbtoolbar_settings[alignment]" value="right" <?php checked( 'right', $alignment ); ?> >
462
  <?php _e( 'Right', SMEDIABT_TEXT ); ?>
463
  </li>
464
  </ul>
inc/php/upgrade.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Prevent Direct Access
5
+ *
6
+ * @since 0.1
7
+ */
8
+ defined( 'ABSPATH' ) or die( "Restricted access!" );
inc/php/version.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Function for managing information about the version number of the plugin
12
  *
13
- * @since 4.6
14
  */
15
  function smbtoolbar_plugin_version_number() {
16
 
@@ -23,13 +23,16 @@ function smbtoolbar_plugin_version_number() {
23
  if ( !is_array( $info ) ) {
24
  $info = array();
25
  }
26
- $current_number = isset( $info['version'] ) && !empty( $info['version'] ) ? $info['version'] : '0';
27
  $new_number = SMEDIABT_VERSION;
28
 
29
- // Call the upgrade function if the version number in the database is smaller than the 1.0
30
- //if ( $current_number < '1.0' ) {
31
- // smbtoolbar_upgrade_1_0();
32
- //}
 
 
 
33
 
34
  // If the version number in the database is same as the new version number:
35
  // - Reset the "old_version" marker in the database
@@ -71,10 +74,4 @@ function smbtoolbar_plugin_version_number() {
71
  }
72
 
73
  }
74
- //smbtoolbar_plugin_version_number();
75
-
76
- // TEMPORARY FIX
77
- function smbtoolbar_plugin_temp_fix() {
78
- delete_option( SMEDIABT_SETTINGS . '_service_info' );
79
- }
80
- smbtoolbar_plugin_temp_fix();
10
  /**
11
  * Function for managing information about the version number of the plugin
12
  *
13
+ * @since 4.7
14
  */
15
  function smbtoolbar_plugin_version_number() {
16
 
23
  if ( !is_array( $info ) ) {
24
  $info = array();
25
  }
26
+ $current_number = !empty( $info['version'] ) ? $info['version'] : '0';
27
  $new_number = SMEDIABT_VERSION;
28
 
29
+ // Update the "_service_info" data in the database if the version number is not number
30
+ if ( !is_numeric($current_number) ) {
31
+
32
+ $info['version'] = $new_number;
33
+ update_option( SMEDIABT_SETTINGS . '_service_info', $info );
34
+
35
+ }
36
 
37
  // If the version number in the database is same as the new version number:
38
  // - Reset the "old_version" marker in the database
74
  }
75
 
76
  }
77
+ smbtoolbar_plugin_version_number();
 
 
 
 
 
 
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-05-23 08:36+0300\n"
7
- "PO-Revision-Date: 2017-05-23 08:36+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -69,7 +69,7 @@ msgid "Author"
69
  msgstr "Autor"
70
 
71
  #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:28
72
- #: inc/php/settings.php:486
73
  msgid "Support"
74
  msgstr "Soporte"
75
 
@@ -137,7 +137,7 @@ msgstr ""
137
  msgid "It's that simple!"
138
  msgstr ""
139
 
140
- #: inc/php/page.php:77 inc/php/settings.php:379
141
  msgid "Note!"
142
  msgstr ""
143
 
@@ -295,7 +295,7 @@ msgstr ""
295
  "Este plugin te permite añadir fácilmente una barra de botones de social media en "
296
  "cualquier parte de tu sitio web."
297
 
298
- #: inc/php/settings.php:30 inc/php/settings.php:488
299
  msgid ""
300
  "I'm an independent developer, without a regular income, so every little "
301
  "contribution helps cover my costs and lets me spend more time building things for "
@@ -305,11 +305,11 @@ msgstr ""
305
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
306
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
307
 
308
- #: inc/php/settings.php:31 inc/php/settings.php:489
309
  msgid "Donate with PayPal"
310
  msgstr ""
311
 
312
- #: inc/php/settings.php:32 inc/php/settings.php:490
313
  msgid "Thanks for your support!"
314
  msgstr "¡Gracias por su colaboración!"
315
 
@@ -321,11 +321,11 @@ msgstr "Ayuda"
321
  msgid "Got something to say? Need help?"
322
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
323
 
324
- #: inc/php/settings.php:57
325
  msgid "Buttons"
326
  msgstr "Botones"
327
 
328
- #: inc/php/settings.php:59
329
  msgid ""
330
  "Just fill in the required fields to make a buttons. The social networking buttons "
331
  "will lead directly to your profile pages. If you don't want to use any of the "
@@ -335,171 +335,175 @@ msgstr ""
335
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
336
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
337
 
338
- #: inc/php/settings.php:66
339
  msgid "Enter the link to your Facebook profile page"
340
  msgstr "Ingresa el enlace a tu página de perfil de Facebook"
341
 
342
- #: inc/php/settings.php:73
343
  msgid "Enter the link to your Twitter profile page"
344
  msgstr "Ingresa el enlace a tu página de perfil de Twitter"
345
 
346
- #: inc/php/settings.php:80
347
  msgid "Enter the link to your Instagram profile page"
348
  msgstr "Ingresa el enlace a tu página de perfil de Instagram"
349
 
350
- #: inc/php/settings.php:87
351
  msgid "Enter the link to your Google+ profile page"
352
  msgstr "Ingresa el enlace a tu página de perfil de Google+"
353
 
354
- #: inc/php/settings.php:94
355
  msgid "Enter the link to your YouTube profile page"
356
  msgstr "Ingresa el enlace a tu página de perfil de Youtube"
357
 
358
- #: inc/php/settings.php:101
359
  msgid "Enter the link to your YouTube Gaming profile page"
360
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
361
 
362
- #: inc/php/settings.php:108
363
  msgid "Enter the link to your Periscope profile page"
364
  msgstr "Ingresa el enlace a tu página de perfil de Periscope"
365
 
366
- #: inc/php/settings.php:115
367
  msgid "Enter the link to your Vimeo profile page"
368
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
369
 
370
- #: inc/php/settings.php:122
371
  msgid "Enter the link to your Blogger profile page"
372
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
373
 
374
- #: inc/php/settings.php:129
375
  msgid "Enter the link to your Buzzsprout profile page"
376
  msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
377
 
378
- #: inc/php/settings.php:136
379
  msgid "Enter the link to your LiveJournal profile page"
380
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
381
 
382
- #: inc/php/settings.php:143
383
  msgid "Enter the link to your Reddit profile page"
384
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
385
 
386
- #: inc/php/settings.php:150
387
  msgid "Enter the link to your LinkedIn profile page"
388
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
389
 
390
- #: inc/php/settings.php:157
391
  msgid "Enter the link to your Diaspora profile page"
392
  msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
393
 
394
- #: inc/php/settings.php:164
 
 
 
 
395
  msgid "Enter the link to your XING profile page"
396
  msgstr "Ingresa el enlace a tu página de perfil de XING"
397
 
398
- #: inc/php/settings.php:171
399
  msgid "Enter the link to your Pinterest profile page"
400
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
401
 
402
- #: inc/php/settings.php:178
403
  msgid "Enter the link to your Flickr profile page"
404
  msgstr "Ingresa el enlace a tu página de perfil de Flickr"
405
 
406
- #: inc/php/settings.php:185
407
  msgid "Enter the link to your Tumblr profile page"
408
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
409
 
410
- #: inc/php/settings.php:192
411
  msgid "Enter the link to your Snapchat profile page"
412
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
413
 
414
- #: inc/php/settings.php:199
415
  msgid "Enter the link to your Twitch profile page"
416
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
417
 
418
- #: inc/php/settings.php:206
419
  msgid "Enter the link to your Patreon profile page"
420
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
421
 
422
- #: inc/php/settings.php:213
423
  msgid "Enter the link to your IMDb profile page"
424
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
425
 
426
- #: inc/php/settings.php:220
427
  msgid "Enter the link to your SoundCloud profile page"
428
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
429
 
430
- #: inc/php/settings.php:227
431
  msgid "Enter the link to your Spotify profile page"
432
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
433
 
434
- #: inc/php/settings.php:234
435
  msgid "Enter the link to your Bandcamp profile page"
436
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
437
 
438
- #: inc/php/settings.php:241
439
  msgid "Enter the link to your Dloky profile page"
440
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
441
 
442
- #: inc/php/settings.php:248
443
  msgid "Enter the link to your Amazon profile page"
444
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
445
 
446
- #: inc/php/settings.php:255
447
  msgid "Enter the link to your BookBub profile page"
448
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
449
 
450
- #: inc/php/settings.php:262
451
  msgid "Enter the link to your Goodreads profile page"
452
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
453
 
454
- #: inc/php/settings.php:269
455
  msgid "Enter the link to your MeetVibe profile page"
456
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
457
 
458
- #: inc/php/settings.php:276
459
  msgid "Enter the link to your Meetup profile page"
460
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
461
 
462
- #: inc/php/settings.php:283
463
  msgid "Enter the link to your Steam profile page"
464
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
465
 
466
- #: inc/php/settings.php:290
467
  msgid "Enter the link to your Beam profile page"
468
  msgstr "Ingresa el enlace a tu página de perfil de Beam"
469
 
470
- #: inc/php/settings.php:297
471
  msgid "Enter the link to your Discord profile page"
472
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
473
 
474
- #: inc/php/settings.php:304
475
  msgid "Enter the link to your Yelp profile page"
476
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
477
 
478
- #: inc/php/settings.php:311
479
  msgid "Enter the link to your VKontakte profile page"
480
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
481
 
482
- #: inc/php/settings.php:318
483
  msgid "Enter the link to your Odnoklassniki profile page"
484
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
485
 
486
- #: inc/php/settings.php:325
487
  msgid "Enter the link to your Telegram profile page"
488
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
489
 
490
- #: inc/php/settings.php:332
491
  msgid "Enter the link to your GitHub profile page"
492
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
493
 
494
- #: inc/php/settings.php:339
495
  msgid "Enter the link to your WordPress profile page"
496
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
497
 
498
- #: inc/php/settings.php:346
499
  msgid "Enter the link to your CodePen profile page"
500
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
501
 
502
- #: inc/php/settings.php:353
503
  msgid ""
504
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
505
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -507,109 +511,109 @@ msgstr ""
507
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
508
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
509
 
510
- #: inc/php/settings.php:360
511
  msgid "Enter the link to your personal website"
512
  msgstr "Ingresa el enlace a tu sitio web personal"
513
 
514
- #: inc/php/settings.php:367
515
  msgid "Enter your email address with prefix <b>mailto:</b>"
516
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
517
 
518
- #: inc/php/settings.php:374
519
  msgid "Enter the link to your RSS Feed"
520
  msgstr "Ingresa el enlace a tu Feed de RSS"
521
 
522
- #: inc/php/settings.php:379
523
  msgid ""
524
  "If you did not find the button you need, then tell me and I will gladly add it for "
525
  "you."
526
  msgstr ""
527
 
528
- #: inc/php/settings.php:380 inc/php/settings.php:473
529
  msgid "Save Changes"
530
  msgstr "Guardar las modificaciones"
531
 
532
- #: inc/php/settings.php:385
533
  msgid "Display options"
534
  msgstr "Opciones de presentación"
535
 
536
- #: inc/php/settings.php:387
537
  msgid "There you can configure this plugin."
538
  msgstr ""
539
 
540
- #: inc/php/settings.php:391
541
  msgid "Show on Posts"
542
  msgstr "Mostrar en Entradas"
543
 
544
- #: inc/php/settings.php:392
545
  msgid "Display toolbar below content on Posts."
546
  msgstr "Mostrar la barra abajo del contenido en Entradas"
547
 
548
- #: inc/php/settings.php:397
549
  msgid "Show on Pages"
550
  msgstr "Mostrar en Páginas"
551
 
552
- #: inc/php/settings.php:398
553
  msgid "Display toolbar below content on Pages."
554
  msgstr "Mostrar la barra abajo del contenido en Páginas"
555
 
556
- #: inc/php/settings.php:403
557
  msgid "Open in new tab"
558
  msgstr "Abrir en una nueva pestaña"
559
 
560
- #: inc/php/settings.php:404
561
  msgid "Open link in a new tab/window."
562
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
563
 
564
- #: inc/php/settings.php:409
565
  msgid "Tooltips"
566
  msgstr ""
567
 
568
- #: inc/php/settings.php:410
569
  msgid "Enable/disable a tooltips with name of the social media above every button."
570
  msgstr ""
571
 
572
- #: inc/php/settings.php:415
573
  msgid "Icon size"
574
  msgstr "Tamaño de ícono"
575
 
576
- #: inc/php/settings.php:416
577
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
578
  msgstr ""
579
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
580
 
581
- #: inc/php/settings.php:423
582
  msgid "Margin"
583
  msgstr "Margen"
584
 
585
- #: inc/php/settings.php:424
586
  msgid ""
587
  "Enter the size of space (in px) between icons in your social media follow buttons "
588
  "bar."
589
  msgstr ""
590
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
591
 
592
- #: inc/php/settings.php:444
593
  msgid "Alignment"
594
  msgstr "Alineación"
595
 
596
- #: inc/php/settings.php:450
597
  msgid "Left"
598
  msgstr "Izquierda"
599
 
600
- #: inc/php/settings.php:454
601
  msgid "Center"
602
  msgstr "Centro"
603
 
604
- #: inc/php/settings.php:458
605
  msgid "Right"
606
  msgstr "Derecha"
607
 
608
- #: inc/php/settings.php:465
609
  msgid "Caption"
610
  msgstr "Leyenda"
611
 
612
- #: inc/php/settings.php:466
613
  msgid ""
614
  "Enter the caption to your social media follow buttons bar. It will be displays "
615
  "before the toolbar."
@@ -617,11 +621,11 @@ msgstr ""
617
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
618
  "la barra de botones."
619
 
620
- #: inc/php/settings.php:478
621
  msgid "Preview"
622
  msgstr "Vista previa"
623
 
624
- #: inc/php/settings.php:480
625
  msgid "Click the \"Save Changes\" button to update this preview."
626
  msgstr ""
627
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-05-25 14:34+0300\n"
7
+ "PO-Revision-Date: 2017-05-25 14:34+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
69
  msgstr "Autor"
70
 
71
  #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:28
72
+ #: inc/php/settings.php:492
73
  msgid "Support"
74
  msgstr "Soporte"
75
 
137
  msgid "It's that simple!"
138
  msgstr ""
139
 
140
+ #: inc/php/page.php:77 inc/php/settings.php:394
141
  msgid "Note!"
142
  msgstr ""
143
 
295
  "Este plugin te permite añadir fácilmente una barra de botones de social media en "
296
  "cualquier parte de tu sitio web."
297
 
298
+ #: inc/php/settings.php:30 inc/php/settings.php:494
299
  msgid ""
300
  "I'm an independent developer, without a regular income, so every little "
301
  "contribution helps cover my costs and lets me spend more time building things for "
305
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
306
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
307
 
308
+ #: inc/php/settings.php:31 inc/php/settings.php:495
309
  msgid "Donate with PayPal"
310
  msgstr ""
311
 
312
+ #: inc/php/settings.php:32 inc/php/settings.php:496
313
  msgid "Thanks for your support!"
314
  msgstr "¡Gracias por su colaboración!"
315
 
321
  msgid "Got something to say? Need help?"
322
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
323
 
324
+ #: inc/php/settings.php:65
325
  msgid "Buttons"
326
  msgstr "Botones"
327
 
328
+ #: inc/php/settings.php:67
329
  msgid ""
330
  "Just fill in the required fields to make a buttons. The social networking buttons "
331
  "will lead directly to your profile pages. If you don't want to use any of the "
335
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
336
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
337
 
338
+ #: inc/php/settings.php:74
339
  msgid "Enter the link to your Facebook profile page"
340
  msgstr "Ingresa el enlace a tu página de perfil de Facebook"
341
 
342
+ #: inc/php/settings.php:81
343
  msgid "Enter the link to your Twitter profile page"
344
  msgstr "Ingresa el enlace a tu página de perfil de Twitter"
345
 
346
+ #: inc/php/settings.php:88
347
  msgid "Enter the link to your Instagram profile page"
348
  msgstr "Ingresa el enlace a tu página de perfil de Instagram"
349
 
350
+ #: inc/php/settings.php:95
351
  msgid "Enter the link to your Google+ profile page"
352
  msgstr "Ingresa el enlace a tu página de perfil de Google+"
353
 
354
+ #: inc/php/settings.php:102
355
  msgid "Enter the link to your YouTube profile page"
356
  msgstr "Ingresa el enlace a tu página de perfil de Youtube"
357
 
358
+ #: inc/php/settings.php:109
359
  msgid "Enter the link to your YouTube Gaming profile page"
360
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
361
 
362
+ #: inc/php/settings.php:116
363
  msgid "Enter the link to your Periscope profile page"
364
  msgstr "Ingresa el enlace a tu página de perfil de Periscope"
365
 
366
+ #: inc/php/settings.php:123
367
  msgid "Enter the link to your Vimeo profile page"
368
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
369
 
370
+ #: inc/php/settings.php:130
371
  msgid "Enter the link to your Blogger profile page"
372
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
373
 
374
+ #: inc/php/settings.php:137
375
  msgid "Enter the link to your Buzzsprout profile page"
376
  msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
377
 
378
+ #: inc/php/settings.php:144
379
  msgid "Enter the link to your LiveJournal profile page"
380
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
381
 
382
+ #: inc/php/settings.php:151
383
  msgid "Enter the link to your Reddit profile page"
384
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
385
 
386
+ #: inc/php/settings.php:158
387
  msgid "Enter the link to your LinkedIn profile page"
388
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
389
 
390
+ #: inc/php/settings.php:165
391
  msgid "Enter the link to your Diaspora profile page"
392
  msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
393
 
394
+ #: inc/php/settings.php:172
395
+ msgid "Enter the link to your DeviantArt profile page"
396
+ msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
397
+
398
+ #: inc/php/settings.php:179
399
  msgid "Enter the link to your XING profile page"
400
  msgstr "Ingresa el enlace a tu página de perfil de XING"
401
 
402
+ #: inc/php/settings.php:186
403
  msgid "Enter the link to your Pinterest profile page"
404
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
405
 
406
+ #: inc/php/settings.php:193
407
  msgid "Enter the link to your Flickr profile page"
408
  msgstr "Ingresa el enlace a tu página de perfil de Flickr"
409
 
410
+ #: inc/php/settings.php:200
411
  msgid "Enter the link to your Tumblr profile page"
412
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
413
 
414
+ #: inc/php/settings.php:207
415
  msgid "Enter the link to your Snapchat profile page"
416
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
417
 
418
+ #: inc/php/settings.php:214
419
  msgid "Enter the link to your Twitch profile page"
420
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
421
 
422
+ #: inc/php/settings.php:221
423
  msgid "Enter the link to your Patreon profile page"
424
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
425
 
426
+ #: inc/php/settings.php:228
427
  msgid "Enter the link to your IMDb profile page"
428
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
429
 
430
+ #: inc/php/settings.php:235
431
  msgid "Enter the link to your SoundCloud profile page"
432
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
433
 
434
+ #: inc/php/settings.php:242
435
  msgid "Enter the link to your Spotify profile page"
436
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
437
 
438
+ #: inc/php/settings.php:249
439
  msgid "Enter the link to your Bandcamp profile page"
440
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
441
 
442
+ #: inc/php/settings.php:256
443
  msgid "Enter the link to your Dloky profile page"
444
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
445
 
446
+ #: inc/php/settings.php:263
447
  msgid "Enter the link to your Amazon profile page"
448
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
449
 
450
+ #: inc/php/settings.php:270
451
  msgid "Enter the link to your BookBub profile page"
452
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
453
 
454
+ #: inc/php/settings.php:277
455
  msgid "Enter the link to your Goodreads profile page"
456
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
457
 
458
+ #: inc/php/settings.php:284
459
  msgid "Enter the link to your MeetVibe profile page"
460
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
461
 
462
+ #: inc/php/settings.php:291
463
  msgid "Enter the link to your Meetup profile page"
464
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
465
 
466
+ #: inc/php/settings.php:298
467
  msgid "Enter the link to your Steam profile page"
468
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
469
 
470
+ #: inc/php/settings.php:305
471
  msgid "Enter the link to your Beam profile page"
472
  msgstr "Ingresa el enlace a tu página de perfil de Beam"
473
 
474
+ #: inc/php/settings.php:312
475
  msgid "Enter the link to your Discord profile page"
476
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
477
 
478
+ #: inc/php/settings.php:319
479
  msgid "Enter the link to your Yelp profile page"
480
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
481
 
482
+ #: inc/php/settings.php:326
483
  msgid "Enter the link to your VKontakte profile page"
484
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
485
 
486
+ #: inc/php/settings.php:333
487
  msgid "Enter the link to your Odnoklassniki profile page"
488
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
489
 
490
+ #: inc/php/settings.php:340
491
  msgid "Enter the link to your Telegram profile page"
492
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
493
 
494
+ #: inc/php/settings.php:347
495
  msgid "Enter the link to your GitHub profile page"
496
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
497
 
498
+ #: inc/php/settings.php:354
499
  msgid "Enter the link to your WordPress profile page"
500
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
501
 
502
+ #: inc/php/settings.php:361
503
  msgid "Enter the link to your CodePen profile page"
504
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
505
 
506
+ #: inc/php/settings.php:368
507
  msgid ""
508
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
509
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
511
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
512
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
513
 
514
+ #: inc/php/settings.php:375
515
  msgid "Enter the link to your personal website"
516
  msgstr "Ingresa el enlace a tu sitio web personal"
517
 
518
+ #: inc/php/settings.php:382
519
  msgid "Enter your email address with prefix <b>mailto:</b>"
520
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
521
 
522
+ #: inc/php/settings.php:389
523
  msgid "Enter the link to your RSS Feed"
524
  msgstr "Ingresa el enlace a tu Feed de RSS"
525
 
526
+ #: inc/php/settings.php:394
527
  msgid ""
528
  "If you did not find the button you need, then tell me and I will gladly add it for "
529
  "you."
530
  msgstr ""
531
 
532
+ #: inc/php/settings.php:395 inc/php/settings.php:478
533
  msgid "Save Changes"
534
  msgstr "Guardar las modificaciones"
535
 
536
+ #: inc/php/settings.php:400
537
  msgid "Display options"
538
  msgstr "Opciones de presentación"
539
 
540
+ #: inc/php/settings.php:402
541
  msgid "There you can configure this plugin."
542
  msgstr ""
543
 
544
+ #: inc/php/settings.php:406
545
  msgid "Show on Posts"
546
  msgstr "Mostrar en Entradas"
547
 
548
+ #: inc/php/settings.php:407
549
  msgid "Display toolbar below content on Posts."
550
  msgstr "Mostrar la barra abajo del contenido en Entradas"
551
 
552
+ #: inc/php/settings.php:412
553
  msgid "Show on Pages"
554
  msgstr "Mostrar en Páginas"
555
 
556
+ #: inc/php/settings.php:413
557
  msgid "Display toolbar below content on Pages."
558
  msgstr "Mostrar la barra abajo del contenido en Páginas"
559
 
560
+ #: inc/php/settings.php:418
561
  msgid "Open in new tab"
562
  msgstr "Abrir en una nueva pestaña"
563
 
564
+ #: inc/php/settings.php:419
565
  msgid "Open link in a new tab/window."
566
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
567
 
568
+ #: inc/php/settings.php:424
569
  msgid "Tooltips"
570
  msgstr ""
571
 
572
+ #: inc/php/settings.php:425
573
  msgid "Enable/disable a tooltips with name of the social media above every button."
574
  msgstr ""
575
 
576
+ #: inc/php/settings.php:430
577
  msgid "Icon size"
578
  msgstr "Tamaño de ícono"
579
 
580
+ #: inc/php/settings.php:431
581
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
582
  msgstr ""
583
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
584
 
585
+ #: inc/php/settings.php:438
586
  msgid "Margin"
587
  msgstr "Margen"
588
 
589
+ #: inc/php/settings.php:439
590
  msgid ""
591
  "Enter the size of space (in px) between icons in your social media follow buttons "
592
  "bar."
593
  msgstr ""
594
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
595
 
596
+ #: inc/php/settings.php:448
597
  msgid "Alignment"
598
  msgstr "Alineación"
599
 
600
+ #: inc/php/settings.php:454
601
  msgid "Left"
602
  msgstr "Izquierda"
603
 
604
+ #: inc/php/settings.php:458
605
  msgid "Center"
606
  msgstr "Centro"
607
 
608
+ #: inc/php/settings.php:462
609
  msgid "Right"
610
  msgstr "Derecha"
611
 
612
+ #: inc/php/settings.php:469
613
  msgid "Caption"
614
  msgstr "Leyenda"
615
 
616
+ #: inc/php/settings.php:470
617
  msgid ""
618
  "Enter the caption to your social media follow buttons bar. It will be displays "
619
  "before the toolbar."
621
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
622
  "la barra de botones."
623
 
624
+ #: inc/php/settings.php:484
625
  msgid "Preview"
626
  msgstr "Vista previa"
627
 
628
+ #: inc/php/settings.php:486
629
  msgid "Click the \"Save Changes\" button to update this preview."
630
  msgstr ""
631
 
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-05-23 08:36+0300\n"
5
- "PO-Revision-Date: 2017-05-23 08:36+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -68,7 +68,7 @@ msgid "Author"
68
  msgstr "Автор"
69
 
70
  #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:28
71
- #: inc/php/settings.php:486
72
  msgid "Support"
73
  msgstr "Поддержка"
74
 
@@ -133,7 +133,7 @@ msgstr ""
133
  msgid "It's that simple!"
134
  msgstr "Вот так просто!"
135
 
136
- #: inc/php/page.php:77 inc/php/settings.php:379
137
  msgid "Note!"
138
  msgstr "Примечание!"
139
 
@@ -303,7 +303,7 @@ msgstr ""
303
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
304
  "место на вашем веб-сайте."
305
 
306
- #: inc/php/settings.php:30 inc/php/settings.php:488
307
  msgid ""
308
  "I'm an independent developer, without a regular income, so every little "
309
  "contribution helps cover my costs and lets me spend more time building "
@@ -313,11 +313,11 @@ msgstr ""
313
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
314
  "создание программ для людей как вы."
315
 
316
- #: inc/php/settings.php:31 inc/php/settings.php:489
317
  msgid "Donate with PayPal"
318
  msgstr ""
319
 
320
- #: inc/php/settings.php:32 inc/php/settings.php:490
321
  msgid "Thanks for your support!"
322
  msgstr "Спасибо за вашу поддержку!"
323
 
@@ -329,11 +329,11 @@ msgstr "Помощь"
329
  msgid "Got something to say? Need help?"
330
  msgstr "Есть что сказать? Нужна помощь?"
331
 
332
- #: inc/php/settings.php:57
333
  msgid "Buttons"
334
  msgstr "Кнопки"
335
 
336
- #: inc/php/settings.php:59
337
  msgid ""
338
  "Just fill in the required fields to make a buttons. The social networking "
339
  "buttons will lead directly to your profile pages. If you don't want to use "
@@ -345,171 +345,175 @@ msgstr ""
345
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
346
  "и тогда они не появятся."
347
 
348
- #: inc/php/settings.php:66
349
  msgid "Enter the link to your Facebook profile page"
350
  msgstr "Введите ссылку на вашу страницу профиля Facebook"
351
 
352
- #: inc/php/settings.php:73
353
  msgid "Enter the link to your Twitter profile page"
354
  msgstr "Введите ссылку на вашу страницу профиля Twitter"
355
 
356
- #: inc/php/settings.php:80
357
  msgid "Enter the link to your Instagram profile page"
358
  msgstr "Введите ссылку на вашу страницу профиля Instagram"
359
 
360
- #: inc/php/settings.php:87
361
  msgid "Enter the link to your Google+ profile page"
362
  msgstr "Введите ссылку на вашу страницу профиля Google+"
363
 
364
- #: inc/php/settings.php:94
365
  msgid "Enter the link to your YouTube profile page"
366
  msgstr "Введите ссылку на вашу страницу профиля YouTube"
367
 
368
- #: inc/php/settings.php:101
369
  msgid "Enter the link to your YouTube Gaming profile page"
370
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
371
 
372
- #: inc/php/settings.php:108
373
  msgid "Enter the link to your Periscope profile page"
374
  msgstr "Введите ссылку на вашу страницу профиля Periscope"
375
 
376
- #: inc/php/settings.php:115
377
  msgid "Enter the link to your Vimeo profile page"
378
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
379
 
380
- #: inc/php/settings.php:122
381
  msgid "Enter the link to your Blogger profile page"
382
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
383
 
384
- #: inc/php/settings.php:129
385
  msgid "Enter the link to your Buzzsprout profile page"
386
  msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
387
 
388
- #: inc/php/settings.php:136
389
  msgid "Enter the link to your LiveJournal profile page"
390
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
391
 
392
- #: inc/php/settings.php:143
393
  msgid "Enter the link to your Reddit profile page"
394
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
395
 
396
- #: inc/php/settings.php:150
397
  msgid "Enter the link to your LinkedIn profile page"
398
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
399
 
400
- #: inc/php/settings.php:157
401
  msgid "Enter the link to your Diaspora profile page"
402
  msgstr "Введите ссылку на вашу страницу профиля Diaspora"
403
 
404
- #: inc/php/settings.php:164
 
 
 
 
405
  msgid "Enter the link to your XING profile page"
406
  msgstr "Введите ссылку на вашу страницу профиля XING"
407
 
408
- #: inc/php/settings.php:171
409
  msgid "Enter the link to your Pinterest profile page"
410
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
411
 
412
- #: inc/php/settings.php:178
413
  msgid "Enter the link to your Flickr profile page"
414
  msgstr "Введите ссылку на вашу страницу профиля Flickr"
415
 
416
- #: inc/php/settings.php:185
417
  msgid "Enter the link to your Tumblr profile page"
418
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
419
 
420
- #: inc/php/settings.php:192
421
  msgid "Enter the link to your Snapchat profile page"
422
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
423
 
424
- #: inc/php/settings.php:199
425
  msgid "Enter the link to your Twitch profile page"
426
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
427
 
428
- #: inc/php/settings.php:206
429
  msgid "Enter the link to your Patreon profile page"
430
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
431
 
432
- #: inc/php/settings.php:213
433
  msgid "Enter the link to your IMDb profile page"
434
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
435
 
436
- #: inc/php/settings.php:220
437
  msgid "Enter the link to your SoundCloud profile page"
438
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
439
 
440
- #: inc/php/settings.php:227
441
  msgid "Enter the link to your Spotify profile page"
442
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
443
 
444
- #: inc/php/settings.php:234
445
  msgid "Enter the link to your Bandcamp profile page"
446
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
447
 
448
- #: inc/php/settings.php:241
449
  msgid "Enter the link to your Dloky profile page"
450
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
451
 
452
- #: inc/php/settings.php:248
453
  msgid "Enter the link to your Amazon profile page"
454
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
455
 
456
- #: inc/php/settings.php:255
457
  msgid "Enter the link to your BookBub profile page"
458
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
459
 
460
- #: inc/php/settings.php:262
461
  msgid "Enter the link to your Goodreads profile page"
462
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
463
 
464
- #: inc/php/settings.php:269
465
  msgid "Enter the link to your MeetVibe profile page"
466
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
467
 
468
- #: inc/php/settings.php:276
469
  msgid "Enter the link to your Meetup profile page"
470
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
471
 
472
- #: inc/php/settings.php:283
473
  msgid "Enter the link to your Steam profile page"
474
  msgstr "Введите ссылку на вашу страницу профиля Steam"
475
 
476
- #: inc/php/settings.php:290
477
  msgid "Enter the link to your Beam profile page"
478
  msgstr "Введите ссылку на вашу страницу профиля Beam"
479
 
480
- #: inc/php/settings.php:297
481
  msgid "Enter the link to your Discord profile page"
482
  msgstr "Введите ссылку на вашу страницу профиля Discord"
483
 
484
- #: inc/php/settings.php:304
485
  msgid "Enter the link to your Yelp profile page"
486
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
487
 
488
- #: inc/php/settings.php:311
489
  msgid "Enter the link to your VKontakte profile page"
490
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
491
 
492
- #: inc/php/settings.php:318
493
  msgid "Enter the link to your Odnoklassniki profile page"
494
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
495
 
496
- #: inc/php/settings.php:325
497
  msgid "Enter the link to your Telegram profile page"
498
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
499
 
500
- #: inc/php/settings.php:332
501
  msgid "Enter the link to your GitHub profile page"
502
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
503
 
504
- #: inc/php/settings.php:339
505
  msgid "Enter the link to your WordPress profile page"
506
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
507
 
508
- #: inc/php/settings.php:346
509
  msgid "Enter the link to your CodePen profile page"
510
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
511
 
512
- #: inc/php/settings.php:353
513
  msgid ""
514
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
515
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -518,112 +522,112 @@ msgstr ""
518
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
519
  "профиля"
520
 
521
- #: inc/php/settings.php:360
522
  msgid "Enter the link to your personal website"
523
  msgstr "Введите ссылку на ваш персональный сайт"
524
 
525
- #: inc/php/settings.php:367
526
  msgid "Enter your email address with prefix <b>mailto:</b>"
527
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
528
 
529
- #: inc/php/settings.php:374
530
  msgid "Enter the link to your RSS Feed"
531
  msgstr "Введите ссылку на ваш RSS поток"
532
 
533
- #: inc/php/settings.php:379
534
  msgid ""
535
  "If you did not find the button you need, then tell me and I will gladly add "
536
  "it for you."
537
  msgstr ""
538
 
539
- #: inc/php/settings.php:380 inc/php/settings.php:473
540
  msgid "Save Changes"
541
  msgstr "Сохранить изменения"
542
 
543
- #: inc/php/settings.php:385
544
  msgid "Display options"
545
  msgstr "Настройки отображения"
546
 
547
- #: inc/php/settings.php:387
548
  msgid "There you can configure this plugin."
549
  msgstr "Здесь вы можете настроить этот плагин."
550
 
551
- #: inc/php/settings.php:391
552
  msgid "Show on Posts"
553
  msgstr "Показать в записях"
554
 
555
- #: inc/php/settings.php:392
556
  msgid "Display toolbar below content on Posts."
557
  msgstr "Показывать кнопки под содержанием в записях"
558
 
559
- #: inc/php/settings.php:397
560
  msgid "Show on Pages"
561
  msgstr "Показывать на страницах"
562
 
563
- #: inc/php/settings.php:398
564
  msgid "Display toolbar below content on Pages."
565
  msgstr "Показывать кнопки под содержанием на страницах"
566
 
567
- #: inc/php/settings.php:403
568
  msgid "Open in new tab"
569
  msgstr "Открыть в новой вкладке"
570
 
571
- #: inc/php/settings.php:404
572
  msgid "Open link in a new tab/window."
573
  msgstr "Открыть ссылку в новом окне/вкладке"
574
 
575
- #: inc/php/settings.php:409
576
  msgid "Tooltips"
577
  msgstr "Подсказки"
578
 
579
- #: inc/php/settings.php:410
580
  msgid ""
581
  "Enable/disable a tooltips with name of the social media above every button."
582
  msgstr ""
583
  "Включить/отключить всплывающие подсказки с названием социальных медиа над "
584
  "каждой кнопкой."
585
 
586
- #: inc/php/settings.php:415
587
  msgid "Icon size"
588
  msgstr "Размер иконки"
589
 
590
- #: inc/php/settings.php:416
591
  msgid ""
592
  "Enter the size of icons (in px) in your social media follow buttons bar."
593
  msgstr ""
594
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
595
 
596
- #: inc/php/settings.php:423
597
  msgid "Margin"
598
  msgstr "Отступ"
599
 
600
- #: inc/php/settings.php:424
601
  msgid ""
602
  "Enter the size of space (in px) between icons in your social media follow "
603
  "buttons bar."
604
  msgstr ""
605
 
606
- #: inc/php/settings.php:444
607
  msgid "Alignment"
608
  msgstr "Выравнивание"
609
 
610
- #: inc/php/settings.php:450
611
  msgid "Left"
612
  msgstr "Слева"
613
 
614
- #: inc/php/settings.php:454
615
  msgid "Center"
616
  msgstr "По центру"
617
 
618
- #: inc/php/settings.php:458
619
  msgid "Right"
620
  msgstr "Справа"
621
 
622
- #: inc/php/settings.php:465
623
  msgid "Caption"
624
  msgstr "Заголовок"
625
 
626
- #: inc/php/settings.php:466
627
  msgid ""
628
  "Enter the caption to your social media follow buttons bar. It will be "
629
  "displays before the toolbar."
@@ -631,11 +635,11 @@ msgstr ""
631
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
632
  "над панелью."
633
 
634
- #: inc/php/settings.php:478
635
  msgid "Preview"
636
  msgstr "Предварительный просмотр"
637
 
638
- #: inc/php/settings.php:480
639
  msgid "Click the \"Save Changes\" button to update this preview."
640
  msgstr ""
641
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
+ "POT-Creation-Date: 2017-05-25 14:34+0300\n"
5
+ "PO-Revision-Date: 2017-05-25 14:34+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
68
  msgstr "Автор"
69
 
70
  #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:28
71
+ #: inc/php/settings.php:492
72
  msgid "Support"
73
  msgstr "Поддержка"
74
 
133
  msgid "It's that simple!"
134
  msgstr "Вот так просто!"
135
 
136
+ #: inc/php/page.php:77 inc/php/settings.php:394
137
  msgid "Note!"
138
  msgstr "Примечание!"
139
 
303
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
304
  "место на вашем веб-сайте."
305
 
306
+ #: inc/php/settings.php:30 inc/php/settings.php:494
307
  msgid ""
308
  "I'm an independent developer, without a regular income, so every little "
309
  "contribution helps cover my costs and lets me spend more time building "
313
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
314
  "создание программ для людей как вы."
315
 
316
+ #: inc/php/settings.php:31 inc/php/settings.php:495
317
  msgid "Donate with PayPal"
318
  msgstr ""
319
 
320
+ #: inc/php/settings.php:32 inc/php/settings.php:496
321
  msgid "Thanks for your support!"
322
  msgstr "Спасибо за вашу поддержку!"
323
 
329
  msgid "Got something to say? Need help?"
330
  msgstr "Есть что сказать? Нужна помощь?"
331
 
332
+ #: inc/php/settings.php:65
333
  msgid "Buttons"
334
  msgstr "Кнопки"
335
 
336
+ #: inc/php/settings.php:67
337
  msgid ""
338
  "Just fill in the required fields to make a buttons. The social networking "
339
  "buttons will lead directly to your profile pages. If you don't want to use "
345
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
346
  "и тогда они не появятся."
347
 
348
+ #: inc/php/settings.php:74
349
  msgid "Enter the link to your Facebook profile page"
350
  msgstr "Введите ссылку на вашу страницу профиля Facebook"
351
 
352
+ #: inc/php/settings.php:81
353
  msgid "Enter the link to your Twitter profile page"
354
  msgstr "Введите ссылку на вашу страницу профиля Twitter"
355
 
356
+ #: inc/php/settings.php:88
357
  msgid "Enter the link to your Instagram profile page"
358
  msgstr "Введите ссылку на вашу страницу профиля Instagram"
359
 
360
+ #: inc/php/settings.php:95
361
  msgid "Enter the link to your Google+ profile page"
362
  msgstr "Введите ссылку на вашу страницу профиля Google+"
363
 
364
+ #: inc/php/settings.php:102
365
  msgid "Enter the link to your YouTube profile page"
366
  msgstr "Введите ссылку на вашу страницу профиля YouTube"
367
 
368
+ #: inc/php/settings.php:109
369
  msgid "Enter the link to your YouTube Gaming profile page"
370
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
371
 
372
+ #: inc/php/settings.php:116
373
  msgid "Enter the link to your Periscope profile page"
374
  msgstr "Введите ссылку на вашу страницу профиля Periscope"
375
 
376
+ #: inc/php/settings.php:123
377
  msgid "Enter the link to your Vimeo profile page"
378
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
379
 
380
+ #: inc/php/settings.php:130
381
  msgid "Enter the link to your Blogger profile page"
382
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
383
 
384
+ #: inc/php/settings.php:137
385
  msgid "Enter the link to your Buzzsprout profile page"
386
  msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
387
 
388
+ #: inc/php/settings.php:144
389
  msgid "Enter the link to your LiveJournal profile page"
390
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
391
 
392
+ #: inc/php/settings.php:151
393
  msgid "Enter the link to your Reddit profile page"
394
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
395
 
396
+ #: inc/php/settings.php:158
397
  msgid "Enter the link to your LinkedIn profile page"
398
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
399
 
400
+ #: inc/php/settings.php:165
401
  msgid "Enter the link to your Diaspora profile page"
402
  msgstr "Введите ссылку на вашу страницу профиля Diaspora"
403
 
404
+ #: inc/php/settings.php:172
405
+ msgid "Enter the link to your DeviantArt profile page"
406
+ msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
407
+
408
+ #: inc/php/settings.php:179
409
  msgid "Enter the link to your XING profile page"
410
  msgstr "Введите ссылку на вашу страницу профиля XING"
411
 
412
+ #: inc/php/settings.php:186
413
  msgid "Enter the link to your Pinterest profile page"
414
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
415
 
416
+ #: inc/php/settings.php:193
417
  msgid "Enter the link to your Flickr profile page"
418
  msgstr "Введите ссылку на вашу страницу профиля Flickr"
419
 
420
+ #: inc/php/settings.php:200
421
  msgid "Enter the link to your Tumblr profile page"
422
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
423
 
424
+ #: inc/php/settings.php:207
425
  msgid "Enter the link to your Snapchat profile page"
426
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
427
 
428
+ #: inc/php/settings.php:214
429
  msgid "Enter the link to your Twitch profile page"
430
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
431
 
432
+ #: inc/php/settings.php:221
433
  msgid "Enter the link to your Patreon profile page"
434
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
435
 
436
+ #: inc/php/settings.php:228
437
  msgid "Enter the link to your IMDb profile page"
438
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
439
 
440
+ #: inc/php/settings.php:235
441
  msgid "Enter the link to your SoundCloud profile page"
442
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
443
 
444
+ #: inc/php/settings.php:242
445
  msgid "Enter the link to your Spotify profile page"
446
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
447
 
448
+ #: inc/php/settings.php:249
449
  msgid "Enter the link to your Bandcamp profile page"
450
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
451
 
452
+ #: inc/php/settings.php:256
453
  msgid "Enter the link to your Dloky profile page"
454
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
455
 
456
+ #: inc/php/settings.php:263
457
  msgid "Enter the link to your Amazon profile page"
458
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
459
 
460
+ #: inc/php/settings.php:270
461
  msgid "Enter the link to your BookBub profile page"
462
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
463
 
464
+ #: inc/php/settings.php:277
465
  msgid "Enter the link to your Goodreads profile page"
466
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
467
 
468
+ #: inc/php/settings.php:284
469
  msgid "Enter the link to your MeetVibe profile page"
470
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
471
 
472
+ #: inc/php/settings.php:291
473
  msgid "Enter the link to your Meetup profile page"
474
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
475
 
476
+ #: inc/php/settings.php:298
477
  msgid "Enter the link to your Steam profile page"
478
  msgstr "Введите ссылку на вашу страницу профиля Steam"
479
 
480
+ #: inc/php/settings.php:305
481
  msgid "Enter the link to your Beam profile page"
482
  msgstr "Введите ссылку на вашу страницу профиля Beam"
483
 
484
+ #: inc/php/settings.php:312
485
  msgid "Enter the link to your Discord profile page"
486
  msgstr "Введите ссылку на вашу страницу профиля Discord"
487
 
488
+ #: inc/php/settings.php:319
489
  msgid "Enter the link to your Yelp profile page"
490
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
491
 
492
+ #: inc/php/settings.php:326
493
  msgid "Enter the link to your VKontakte profile page"
494
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
495
 
496
+ #: inc/php/settings.php:333
497
  msgid "Enter the link to your Odnoklassniki profile page"
498
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
499
 
500
+ #: inc/php/settings.php:340
501
  msgid "Enter the link to your Telegram profile page"
502
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
503
 
504
+ #: inc/php/settings.php:347
505
  msgid "Enter the link to your GitHub profile page"
506
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
507
 
508
+ #: inc/php/settings.php:354
509
  msgid "Enter the link to your WordPress profile page"
510
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
511
 
512
+ #: inc/php/settings.php:361
513
  msgid "Enter the link to your CodePen profile page"
514
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
515
 
516
+ #: inc/php/settings.php:368
517
  msgid ""
518
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
519
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
522
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
523
  "профиля"
524
 
525
+ #: inc/php/settings.php:375
526
  msgid "Enter the link to your personal website"
527
  msgstr "Введите ссылку на ваш персональный сайт"
528
 
529
+ #: inc/php/settings.php:382
530
  msgid "Enter your email address with prefix <b>mailto:</b>"
531
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
532
 
533
+ #: inc/php/settings.php:389
534
  msgid "Enter the link to your RSS Feed"
535
  msgstr "Введите ссылку на ваш RSS поток"
536
 
537
+ #: inc/php/settings.php:394
538
  msgid ""
539
  "If you did not find the button you need, then tell me and I will gladly add "
540
  "it for you."
541
  msgstr ""
542
 
543
+ #: inc/php/settings.php:395 inc/php/settings.php:478
544
  msgid "Save Changes"
545
  msgstr "Сохранить изменения"
546
 
547
+ #: inc/php/settings.php:400
548
  msgid "Display options"
549
  msgstr "Настройки отображения"
550
 
551
+ #: inc/php/settings.php:402
552
  msgid "There you can configure this plugin."
553
  msgstr "Здесь вы можете настроить этот плагин."
554
 
555
+ #: inc/php/settings.php:406
556
  msgid "Show on Posts"
557
  msgstr "Показать в записях"
558
 
559
+ #: inc/php/settings.php:407
560
  msgid "Display toolbar below content on Posts."
561
  msgstr "Показывать кнопки под содержанием в записях"
562
 
563
+ #: inc/php/settings.php:412
564
  msgid "Show on Pages"
565
  msgstr "Показывать на страницах"
566
 
567
+ #: inc/php/settings.php:413
568
  msgid "Display toolbar below content on Pages."
569
  msgstr "Показывать кнопки под содержанием на страницах"
570
 
571
+ #: inc/php/settings.php:418
572
  msgid "Open in new tab"
573
  msgstr "Открыть в новой вкладке"
574
 
575
+ #: inc/php/settings.php:419
576
  msgid "Open link in a new tab/window."
577
  msgstr "Открыть ссылку в новом окне/вкладке"
578
 
579
+ #: inc/php/settings.php:424
580
  msgid "Tooltips"
581
  msgstr "Подсказки"
582
 
583
+ #: inc/php/settings.php:425
584
  msgid ""
585
  "Enable/disable a tooltips with name of the social media above every button."
586
  msgstr ""
587
  "Включить/отключить всплывающие подсказки с названием социальных медиа над "
588
  "каждой кнопкой."
589
 
590
+ #: inc/php/settings.php:430
591
  msgid "Icon size"
592
  msgstr "Размер иконки"
593
 
594
+ #: inc/php/settings.php:431
595
  msgid ""
596
  "Enter the size of icons (in px) in your social media follow buttons bar."
597
  msgstr ""
598
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
599
 
600
+ #: inc/php/settings.php:438
601
  msgid "Margin"
602
  msgstr "Отступ"
603
 
604
+ #: inc/php/settings.php:439
605
  msgid ""
606
  "Enter the size of space (in px) between icons in your social media follow "
607
  "buttons bar."
608
  msgstr ""
609
 
610
+ #: inc/php/settings.php:448
611
  msgid "Alignment"
612
  msgstr "Выравнивание"
613
 
614
+ #: inc/php/settings.php:454
615
  msgid "Left"
616
  msgstr "Слева"
617
 
618
+ #: inc/php/settings.php:458
619
  msgid "Center"
620
  msgstr "По центру"
621
 
622
+ #: inc/php/settings.php:462
623
  msgid "Right"
624
  msgstr "Справа"
625
 
626
+ #: inc/php/settings.php:469
627
  msgid "Caption"
628
  msgstr "Заголовок"
629
 
630
+ #: inc/php/settings.php:470
631
  msgid ""
632
  "Enter the caption to your social media follow buttons bar. It will be "
633
  "displays before the toolbar."
635
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
636
  "над панелью."
637
 
638
+ #: inc/php/settings.php:484
639
  msgid "Preview"
640
  msgstr "Предварительный просмотр"
641
 
642
+ #: inc/php/settings.php:486
643
  msgid "Click the \"Save Changes\" button to update this preview."
644
  msgstr ""
645
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
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-05-23 08:36+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -65,7 +65,7 @@ msgstr ""
65
  msgid "Author"
66
  msgstr ""
67
 
68
- #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:28 inc/php/settings.php:486
69
  msgid "Support"
70
  msgstr ""
71
 
@@ -125,7 +125,7 @@ msgstr ""
125
  msgid "It's that simple!"
126
  msgstr ""
127
 
128
- #: inc/php/page.php:77 inc/php/settings.php:379
129
  msgid "Note!"
130
  msgstr ""
131
 
@@ -271,17 +271,17 @@ msgid ""
271
  "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
272
  msgstr ""
273
 
274
- #: inc/php/settings.php:30 inc/php/settings.php:488
275
  msgid ""
276
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
277
  "costs and lets me spend more time building things for people like you to enjoy."
278
  msgstr ""
279
 
280
- #: inc/php/settings.php:31 inc/php/settings.php:489
281
  msgid "Donate with PayPal"
282
  msgstr ""
283
 
284
- #: inc/php/settings.php:32 inc/php/settings.php:490
285
  msgid "Thanks for your support!"
286
  msgstr ""
287
 
@@ -293,293 +293,297 @@ msgstr ""
293
  msgid "Got something to say? Need help?"
294
  msgstr ""
295
 
296
- #: inc/php/settings.php:57
297
  msgid "Buttons"
298
  msgstr ""
299
 
300
- #: inc/php/settings.php:59
301
  msgid ""
302
  "Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
303
  "to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
304
  "and then they do not appear."
305
  msgstr ""
306
 
307
- #: inc/php/settings.php:66
308
  msgid "Enter the link to your Facebook profile page"
309
  msgstr ""
310
 
311
- #: inc/php/settings.php:73
312
  msgid "Enter the link to your Twitter profile page"
313
  msgstr ""
314
 
315
- #: inc/php/settings.php:80
316
  msgid "Enter the link to your Instagram profile page"
317
  msgstr ""
318
 
319
- #: inc/php/settings.php:87
320
  msgid "Enter the link to your Google+ profile page"
321
  msgstr ""
322
 
323
- #: inc/php/settings.php:94
324
  msgid "Enter the link to your YouTube profile page"
325
  msgstr ""
326
 
327
- #: inc/php/settings.php:101
328
  msgid "Enter the link to your YouTube Gaming profile page"
329
  msgstr ""
330
 
331
- #: inc/php/settings.php:108
332
  msgid "Enter the link to your Periscope profile page"
333
  msgstr ""
334
 
335
- #: inc/php/settings.php:115
336
  msgid "Enter the link to your Vimeo profile page"
337
  msgstr ""
338
 
339
- #: inc/php/settings.php:122
340
  msgid "Enter the link to your Blogger profile page"
341
  msgstr ""
342
 
343
- #: inc/php/settings.php:129
344
  msgid "Enter the link to your Buzzsprout profile page"
345
  msgstr ""
346
 
347
- #: inc/php/settings.php:136
348
  msgid "Enter the link to your LiveJournal profile page"
349
  msgstr ""
350
 
351
- #: inc/php/settings.php:143
352
  msgid "Enter the link to your Reddit profile page"
353
  msgstr ""
354
 
355
- #: inc/php/settings.php:150
356
  msgid "Enter the link to your LinkedIn profile page"
357
  msgstr ""
358
 
359
- #: inc/php/settings.php:157
360
  msgid "Enter the link to your Diaspora profile page"
361
  msgstr ""
362
 
363
- #: inc/php/settings.php:164
 
 
 
 
364
  msgid "Enter the link to your XING profile page"
365
  msgstr ""
366
 
367
- #: inc/php/settings.php:171
368
  msgid "Enter the link to your Pinterest profile page"
369
  msgstr ""
370
 
371
- #: inc/php/settings.php:178
372
  msgid "Enter the link to your Flickr profile page"
373
  msgstr ""
374
 
375
- #: inc/php/settings.php:185
376
  msgid "Enter the link to your Tumblr profile page"
377
  msgstr ""
378
 
379
- #: inc/php/settings.php:192
380
  msgid "Enter the link to your Snapchat profile page"
381
  msgstr ""
382
 
383
- #: inc/php/settings.php:199
384
  msgid "Enter the link to your Twitch profile page"
385
  msgstr ""
386
 
387
- #: inc/php/settings.php:206
388
  msgid "Enter the link to your Patreon profile page"
389
  msgstr ""
390
 
391
- #: inc/php/settings.php:213
392
  msgid "Enter the link to your IMDb profile page"
393
  msgstr ""
394
 
395
- #: inc/php/settings.php:220
396
  msgid "Enter the link to your SoundCloud profile page"
397
  msgstr ""
398
 
399
- #: inc/php/settings.php:227
400
  msgid "Enter the link to your Spotify profile page"
401
  msgstr ""
402
 
403
- #: inc/php/settings.php:234
404
  msgid "Enter the link to your Bandcamp profile page"
405
  msgstr ""
406
 
407
- #: inc/php/settings.php:241
408
  msgid "Enter the link to your Dloky profile page"
409
  msgstr ""
410
 
411
- #: inc/php/settings.php:248
412
  msgid "Enter the link to your Amazon profile page"
413
  msgstr ""
414
 
415
- #: inc/php/settings.php:255
416
  msgid "Enter the link to your BookBub profile page"
417
  msgstr ""
418
 
419
- #: inc/php/settings.php:262
420
  msgid "Enter the link to your Goodreads profile page"
421
  msgstr ""
422
 
423
- #: inc/php/settings.php:269
424
  msgid "Enter the link to your MeetVibe profile page"
425
  msgstr ""
426
 
427
- #: inc/php/settings.php:276
428
  msgid "Enter the link to your Meetup profile page"
429
  msgstr ""
430
 
431
- #: inc/php/settings.php:283
432
  msgid "Enter the link to your Steam profile page"
433
  msgstr ""
434
 
435
- #: inc/php/settings.php:290
436
  msgid "Enter the link to your Beam profile page"
437
  msgstr ""
438
 
439
- #: inc/php/settings.php:297
440
  msgid "Enter the link to your Discord profile page"
441
  msgstr ""
442
 
443
- #: inc/php/settings.php:304
444
  msgid "Enter the link to your Yelp profile page"
445
  msgstr ""
446
 
447
- #: inc/php/settings.php:311
448
  msgid "Enter the link to your VKontakte profile page"
449
  msgstr ""
450
 
451
- #: inc/php/settings.php:318
452
  msgid "Enter the link to your Odnoklassniki profile page"
453
  msgstr ""
454
 
455
- #: inc/php/settings.php:325
456
  msgid "Enter the link to your Telegram profile page"
457
  msgstr ""
458
 
459
- #: inc/php/settings.php:332
460
  msgid "Enter the link to your GitHub profile page"
461
  msgstr ""
462
 
463
- #: inc/php/settings.php:339
464
  msgid "Enter the link to your WordPress profile page"
465
  msgstr ""
466
 
467
- #: inc/php/settings.php:346
468
  msgid "Enter the link to your CodePen profile page"
469
  msgstr ""
470
 
471
- #: inc/php/settings.php:353
472
  msgid ""
473
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
474
  "b>, or <b>?userinfo</b> for view profile"
475
  msgstr ""
476
 
477
- #: inc/php/settings.php:360
478
  msgid "Enter the link to your personal website"
479
  msgstr ""
480
 
481
- #: inc/php/settings.php:367
482
  msgid "Enter your email address with prefix <b>mailto:</b>"
483
  msgstr ""
484
 
485
- #: inc/php/settings.php:374
486
  msgid "Enter the link to your RSS Feed"
487
  msgstr ""
488
 
489
- #: inc/php/settings.php:379
490
  msgid "If you did not find the button you need, then tell me and I will gladly add it for you."
491
  msgstr ""
492
 
493
- #: inc/php/settings.php:380 inc/php/settings.php:473
494
  msgid "Save Changes"
495
  msgstr ""
496
 
497
- #: inc/php/settings.php:385
498
  msgid "Display options"
499
  msgstr ""
500
 
501
- #: inc/php/settings.php:387
502
  msgid "There you can configure this plugin."
503
  msgstr ""
504
 
505
- #: inc/php/settings.php:391
506
  msgid "Show on Posts"
507
  msgstr ""
508
 
509
- #: inc/php/settings.php:392
510
  msgid "Display toolbar below content on Posts."
511
  msgstr ""
512
 
513
- #: inc/php/settings.php:397
514
  msgid "Show on Pages"
515
  msgstr ""
516
 
517
- #: inc/php/settings.php:398
518
  msgid "Display toolbar below content on Pages."
519
  msgstr ""
520
 
521
- #: inc/php/settings.php:403
522
  msgid "Open in new tab"
523
  msgstr ""
524
 
525
- #: inc/php/settings.php:404
526
  msgid "Open link in a new tab/window."
527
  msgstr ""
528
 
529
- #: inc/php/settings.php:409
530
  msgid "Tooltips"
531
  msgstr ""
532
 
533
- #: inc/php/settings.php:410
534
  msgid "Enable/disable a tooltips with name of the social media above every button."
535
  msgstr ""
536
 
537
- #: inc/php/settings.php:415
538
  msgid "Icon size"
539
  msgstr ""
540
 
541
- #: inc/php/settings.php:416
542
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
543
  msgstr ""
544
 
545
- #: inc/php/settings.php:423
546
  msgid "Margin"
547
  msgstr ""
548
 
549
- #: inc/php/settings.php:424
550
  msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
551
  msgstr ""
552
 
553
- #: inc/php/settings.php:444
554
  msgid "Alignment"
555
  msgstr ""
556
 
557
- #: inc/php/settings.php:450
558
  msgid "Left"
559
  msgstr ""
560
 
561
- #: inc/php/settings.php:454
562
  msgid "Center"
563
  msgstr ""
564
 
565
- #: inc/php/settings.php:458
566
  msgid "Right"
567
  msgstr ""
568
 
569
- #: inc/php/settings.php:465
570
  msgid "Caption"
571
  msgstr ""
572
 
573
- #: inc/php/settings.php:466
574
  msgid ""
575
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
576
  msgstr ""
577
 
578
- #: inc/php/settings.php:478
579
  msgid "Preview"
580
  msgstr ""
581
 
582
- #: inc/php/settings.php:480
583
  msgid "Click the \"Save Changes\" button to update this preview."
584
  msgstr ""
585
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
+ "POT-Creation-Date: 2017-05-25 14:34+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
65
  msgid "Author"
66
  msgstr ""
67
 
68
+ #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:28 inc/php/settings.php:492
69
  msgid "Support"
70
  msgstr ""
71
 
125
  msgid "It's that simple!"
126
  msgstr ""
127
 
128
+ #: inc/php/page.php:77 inc/php/settings.php:394
129
  msgid "Note!"
130
  msgstr ""
131
 
271
  "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
272
  msgstr ""
273
 
274
+ #: inc/php/settings.php:30 inc/php/settings.php:494
275
  msgid ""
276
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
277
  "costs and lets me spend more time building things for people like you to enjoy."
278
  msgstr ""
279
 
280
+ #: inc/php/settings.php:31 inc/php/settings.php:495
281
  msgid "Donate with PayPal"
282
  msgstr ""
283
 
284
+ #: inc/php/settings.php:32 inc/php/settings.php:496
285
  msgid "Thanks for your support!"
286
  msgstr ""
287
 
293
  msgid "Got something to say? Need help?"
294
  msgstr ""
295
 
296
+ #: inc/php/settings.php:65
297
  msgid "Buttons"
298
  msgstr ""
299
 
300
+ #: inc/php/settings.php:67
301
  msgid ""
302
  "Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
303
  "to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
304
  "and then they do not appear."
305
  msgstr ""
306
 
307
+ #: inc/php/settings.php:74
308
  msgid "Enter the link to your Facebook profile page"
309
  msgstr ""
310
 
311
+ #: inc/php/settings.php:81
312
  msgid "Enter the link to your Twitter profile page"
313
  msgstr ""
314
 
315
+ #: inc/php/settings.php:88
316
  msgid "Enter the link to your Instagram profile page"
317
  msgstr ""
318
 
319
+ #: inc/php/settings.php:95
320
  msgid "Enter the link to your Google+ profile page"
321
  msgstr ""
322
 
323
+ #: inc/php/settings.php:102
324
  msgid "Enter the link to your YouTube profile page"
325
  msgstr ""
326
 
327
+ #: inc/php/settings.php:109
328
  msgid "Enter the link to your YouTube Gaming profile page"
329
  msgstr ""
330
 
331
+ #: inc/php/settings.php:116
332
  msgid "Enter the link to your Periscope profile page"
333
  msgstr ""
334
 
335
+ #: inc/php/settings.php:123
336
  msgid "Enter the link to your Vimeo profile page"
337
  msgstr ""
338
 
339
+ #: inc/php/settings.php:130
340
  msgid "Enter the link to your Blogger profile page"
341
  msgstr ""
342
 
343
+ #: inc/php/settings.php:137
344
  msgid "Enter the link to your Buzzsprout profile page"
345
  msgstr ""
346
 
347
+ #: inc/php/settings.php:144
348
  msgid "Enter the link to your LiveJournal profile page"
349
  msgstr ""
350
 
351
+ #: inc/php/settings.php:151
352
  msgid "Enter the link to your Reddit profile page"
353
  msgstr ""
354
 
355
+ #: inc/php/settings.php:158
356
  msgid "Enter the link to your LinkedIn profile page"
357
  msgstr ""
358
 
359
+ #: inc/php/settings.php:165
360
  msgid "Enter the link to your Diaspora profile page"
361
  msgstr ""
362
 
363
+ #: inc/php/settings.php:172
364
+ msgid "Enter the link to your DeviantArt profile page"
365
+ msgstr ""
366
+
367
+ #: inc/php/settings.php:179
368
  msgid "Enter the link to your XING profile page"
369
  msgstr ""
370
 
371
+ #: inc/php/settings.php:186
372
  msgid "Enter the link to your Pinterest profile page"
373
  msgstr ""
374
 
375
+ #: inc/php/settings.php:193
376
  msgid "Enter the link to your Flickr profile page"
377
  msgstr ""
378
 
379
+ #: inc/php/settings.php:200
380
  msgid "Enter the link to your Tumblr profile page"
381
  msgstr ""
382
 
383
+ #: inc/php/settings.php:207
384
  msgid "Enter the link to your Snapchat profile page"
385
  msgstr ""
386
 
387
+ #: inc/php/settings.php:214
388
  msgid "Enter the link to your Twitch profile page"
389
  msgstr ""
390
 
391
+ #: inc/php/settings.php:221
392
  msgid "Enter the link to your Patreon profile page"
393
  msgstr ""
394
 
395
+ #: inc/php/settings.php:228
396
  msgid "Enter the link to your IMDb profile page"
397
  msgstr ""
398
 
399
+ #: inc/php/settings.php:235
400
  msgid "Enter the link to your SoundCloud profile page"
401
  msgstr ""
402
 
403
+ #: inc/php/settings.php:242
404
  msgid "Enter the link to your Spotify profile page"
405
  msgstr ""
406
 
407
+ #: inc/php/settings.php:249
408
  msgid "Enter the link to your Bandcamp profile page"
409
  msgstr ""
410
 
411
+ #: inc/php/settings.php:256
412
  msgid "Enter the link to your Dloky profile page"
413
  msgstr ""
414
 
415
+ #: inc/php/settings.php:263
416
  msgid "Enter the link to your Amazon profile page"
417
  msgstr ""
418
 
419
+ #: inc/php/settings.php:270
420
  msgid "Enter the link to your BookBub profile page"
421
  msgstr ""
422
 
423
+ #: inc/php/settings.php:277
424
  msgid "Enter the link to your Goodreads profile page"
425
  msgstr ""
426
 
427
+ #: inc/php/settings.php:284
428
  msgid "Enter the link to your MeetVibe profile page"
429
  msgstr ""
430
 
431
+ #: inc/php/settings.php:291
432
  msgid "Enter the link to your Meetup profile page"
433
  msgstr ""
434
 
435
+ #: inc/php/settings.php:298
436
  msgid "Enter the link to your Steam profile page"
437
  msgstr ""
438
 
439
+ #: inc/php/settings.php:305
440
  msgid "Enter the link to your Beam profile page"
441
  msgstr ""
442
 
443
+ #: inc/php/settings.php:312
444
  msgid "Enter the link to your Discord profile page"
445
  msgstr ""
446
 
447
+ #: inc/php/settings.php:319
448
  msgid "Enter the link to your Yelp profile page"
449
  msgstr ""
450
 
451
+ #: inc/php/settings.php:326
452
  msgid "Enter the link to your VKontakte profile page"
453
  msgstr ""
454
 
455
+ #: inc/php/settings.php:333
456
  msgid "Enter the link to your Odnoklassniki profile page"
457
  msgstr ""
458
 
459
+ #: inc/php/settings.php:340
460
  msgid "Enter the link to your Telegram profile page"
461
  msgstr ""
462
 
463
+ #: inc/php/settings.php:347
464
  msgid "Enter the link to your GitHub profile page"
465
  msgstr ""
466
 
467
+ #: inc/php/settings.php:354
468
  msgid "Enter the link to your WordPress profile page"
469
  msgstr ""
470
 
471
+ #: inc/php/settings.php:361
472
  msgid "Enter the link to your CodePen profile page"
473
  msgstr ""
474
 
475
+ #: inc/php/settings.php:368
476
  msgid ""
477
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
478
  "b>, or <b>?userinfo</b> for view profile"
479
  msgstr ""
480
 
481
+ #: inc/php/settings.php:375
482
  msgid "Enter the link to your personal website"
483
  msgstr ""
484
 
485
+ #: inc/php/settings.php:382
486
  msgid "Enter your email address with prefix <b>mailto:</b>"
487
  msgstr ""
488
 
489
+ #: inc/php/settings.php:389
490
  msgid "Enter the link to your RSS Feed"
491
  msgstr ""
492
 
493
+ #: inc/php/settings.php:394
494
  msgid "If you did not find the button you need, then tell me and I will gladly add it for you."
495
  msgstr ""
496
 
497
+ #: inc/php/settings.php:395 inc/php/settings.php:478
498
  msgid "Save Changes"
499
  msgstr ""
500
 
501
+ #: inc/php/settings.php:400
502
  msgid "Display options"
503
  msgstr ""
504
 
505
+ #: inc/php/settings.php:402
506
  msgid "There you can configure this plugin."
507
  msgstr ""
508
 
509
+ #: inc/php/settings.php:406
510
  msgid "Show on Posts"
511
  msgstr ""
512
 
513
+ #: inc/php/settings.php:407
514
  msgid "Display toolbar below content on Posts."
515
  msgstr ""
516
 
517
+ #: inc/php/settings.php:412
518
  msgid "Show on Pages"
519
  msgstr ""
520
 
521
+ #: inc/php/settings.php:413
522
  msgid "Display toolbar below content on Pages."
523
  msgstr ""
524
 
525
+ #: inc/php/settings.php:418
526
  msgid "Open in new tab"
527
  msgstr ""
528
 
529
+ #: inc/php/settings.php:419
530
  msgid "Open link in a new tab/window."
531
  msgstr ""
532
 
533
+ #: inc/php/settings.php:424
534
  msgid "Tooltips"
535
  msgstr ""
536
 
537
+ #: inc/php/settings.php:425
538
  msgid "Enable/disable a tooltips with name of the social media above every button."
539
  msgstr ""
540
 
541
+ #: inc/php/settings.php:430
542
  msgid "Icon size"
543
  msgstr ""
544
 
545
+ #: inc/php/settings.php:431
546
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
547
  msgstr ""
548
 
549
+ #: inc/php/settings.php:438
550
  msgid "Margin"
551
  msgstr ""
552
 
553
+ #: inc/php/settings.php:439
554
  msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
555
  msgstr ""
556
 
557
+ #: inc/php/settings.php:448
558
  msgid "Alignment"
559
  msgstr ""
560
 
561
+ #: inc/php/settings.php:454
562
  msgid "Left"
563
  msgstr ""
564
 
565
+ #: inc/php/settings.php:458
566
  msgid "Center"
567
  msgstr ""
568
 
569
+ #: inc/php/settings.php:462
570
  msgid "Right"
571
  msgstr ""
572
 
573
+ #: inc/php/settings.php:469
574
  msgid "Caption"
575
  msgstr ""
576
 
577
+ #: inc/php/settings.php:470
578
  msgid ""
579
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
580
  msgstr ""
581
 
582
+ #: inc/php/settings.php:484
583
  msgid "Preview"
584
  msgstr ""
585
 
586
+ #: inc/php/settings.php:486
587
  msgid "Click the \"Save Changes\" button to update this preview."
588
  msgstr ""
589
 
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, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, discord, yelp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, 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.7
7
- Stable tag: 4.6.1
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -53,6 +53,7 @@ It give you finer control over buttons. You can configure they on plugins settin
53
  * Blogger
54
  * LinkedIn
55
  * Diaspora
 
56
  * XING
57
  * Buzzsprout
58
  * LiveJournal
@@ -192,7 +193,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
192
  * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
193
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
194
  * 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).
195
- * Icons [buzzsprout.png, periscope.png, youtube.png, meetvibe.png, beam.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](http://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
196
  * 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/).
197
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
198
  * [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).
@@ -205,8 +206,17 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
205
 
206
  == Changelog ==
207
 
 
 
 
 
 
 
 
 
 
208
  = 4.6.1 =
209
- * Fixed the bug due to which the the "Warning: Constants may only evaluate to scalar values in " warnings are displayed.
210
 
211
  = 4.6 =
212
  * Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
@@ -214,7 +224,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
214
  * All references to the plugin name, slug, prefix are replaced with constants.
215
  * Added default values to empty options.
216
  * The "_load_scripts_base" function improved.
217
- * The "name" attribute removed from the "<form>" tag.
218
 
219
  = 4.5 =
220
  * Added option for the Buzzsprout social network.
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, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, discord, yelp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, 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.7
7
+ Stable tag: 4.7
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
53
  * Blogger
54
  * LinkedIn
55
  * Diaspora
56
+ * DeviantArt
57
  * XING
58
  * Buzzsprout
59
  * LiveJournal
193
  * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
194
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
195
  * 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).
196
+ * Icons [deviantart.png, buzzsprout.png, periscope.png, youtube.png, meetvibe.png, beam.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](http://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
197
  * 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/).
198
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
199
  * [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).
206
 
207
  == Changelog ==
208
 
209
+ = 4.7 =
210
+ * Compatibility with PHP version 5.2 improved.
211
+ * PHP shorthands improved.
212
+ * Added function for generating the plugin constants.
213
+ * Some constants now get the value from the plugin header data.
214
+ * Added option for the DeviantArt social network.
215
+ * The "_plugin_version_number" function improved.
216
+ * Added file "upgrade.php" for future upgrades.
217
+
218
  = 4.6.1 =
219
+ * Fixed the bug due to which the "Warning: Constants may only evaluate to scalar values in" warning are displayed.
220
 
221
  = 4.6 =
222
  * Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
224
  * All references to the plugin name, slug, prefix are replaced with constants.
225
  * Added default values to empty options.
226
  * The "_load_scripts_base" function improved.
227
+ * The "name" attribute removed from the "form" tag.
228
 
229
  = 4.5 =
230
  * Added option for the Buzzsprout social network.
social-media-buttons-toolbar.php CHANGED
@@ -5,27 +5,25 @@
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: http://www.arthurgareginyan.com
8
- * Version: 4.6.1
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
12
  *
13
  * Copyright 2015-2017 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
14
  *
15
- * This file is part of "Social Media Follow Buttons Bar".
16
- *
17
- * "Social Media Follow Buttons Bar" is free software: you can redistribute it and/or modify
18
  * it under the terms of the GNU General Public License as published by
19
  * the Free Software Foundation, either version 3 of the License, or
20
  * (at your option) any later version.
21
  *
22
- * "Social Media Follow Buttons Bar" is distributed in the hope that it will be useful,
23
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
  * GNU General Public License for more details.
26
  *
27
  * You should have received a copy of the GNU General Public License
28
- * along with "Social Media Follow Buttons Bar". If not, see <http://www.gnu.org/licenses/>.
29
  *
30
  *
31
  * █████╗ ██████╗ ████████╗██╗ ██╗██╗ ██╗██████╗
@@ -55,27 +53,34 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
55
  /**
56
  * Define global constants
57
  *
58
- * @since 4.6
59
  */
60
- defined( 'SMEDIABT_DIR' ) or define( 'SMEDIABT_DIR', dirname( plugin_basename( __FILE__ ) ) );
61
- defined( 'SMEDIABT_BASE' ) or define( 'SMEDIABT_BASE', plugin_basename( __FILE__ ) );
62
- defined( 'SMEDIABT_URL' ) or define( 'SMEDIABT_URL', plugin_dir_url( __FILE__ ) );
63
- defined( 'SMEDIABT_PATH' ) or define( 'SMEDIABT_PATH', plugin_dir_path( __FILE__ ) );
64
- defined( 'SMEDIABT_TEXT' ) or define( 'SMEDIABT_TEXT', 'social-media-buttons-toolbar' );
65
- defined( 'SMEDIABT_SLUG' ) or define( 'SMEDIABT_SLUG', 'social-media-buttons-toolbar' );
66
- defined( 'SMEDIABT_PREFIX' ) or define( 'SMEDIABT_PREFIX', 'smbtoolbar' );
67
- defined( 'SMEDIABT_SETTINGS' ) or define( 'SMEDIABT_SETTINGS', 'smbtoolbar' );
68
- defined( 'SMEDIABT_NAME' ) or define( 'SMEDIABT_NAME', 'Social Media Follow Buttons Bar' );
69
- defined( 'SMEDIABT_VERSION' ) or define( 'SMEDIABT_VERSION', '4.6.1' );
 
 
 
 
 
 
70
 
71
  /**
72
  * Load the plugin modules
73
  *
74
- * @since 4.2
75
  */
76
  require_once( SMEDIABT_PATH . 'inc/php/core.php' );
77
- require_once( SMEDIABT_PATH . 'inc/php/enqueue.php' );
78
  require_once( SMEDIABT_PATH . 'inc/php/version.php' );
 
79
  require_once( SMEDIABT_PATH . 'inc/php/functional.php' );
80
  require_once( SMEDIABT_PATH . 'inc/php/page.php' );
81
  require_once( SMEDIABT_PATH . 'inc/php/messages.php' );
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: http://www.arthurgareginyan.com
8
+ * Version: 4.7
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
12
  *
13
  * Copyright 2015-2017 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
14
  *
15
+ * This plugin is free software: you can redistribute it and/or modify
 
 
16
  * it under the terms of the GNU General Public License as published by
17
  * the Free Software Foundation, either version 3 of the License, or
18
  * (at your option) any later version.
19
  *
20
+ * This plugin is distributed in the hope that it will be useful,
21
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
  * GNU General Public License for more details.
24
  *
25
  * You should have received a copy of the GNU General Public License
26
+ * along with this plugin. If not, see <http://www.gnu.org/licenses/>.
27
  *
28
  *
29
  * █████╗ ██████╗ ████████╗██╗ ██╗██╗ ██╗██████╗
53
  /**
54
  * Define global constants
55
  *
56
+ * @since 4.7
57
  */
58
+ $plugin_data = get_file_data( __FILE__, array( 'name'=>'Plugin Name', 'version'=>'Version', 'text'=>'Text Domain' ) );
59
+ function smbtoolbar_define_constants( $constant_name, $value ) {
60
+ $constant_name = 'SMEDIABT_' . $constant_name;
61
+ if ( !defined( $constant_name ) )
62
+ define( $constant_name, $value );
63
+ }
64
+ smbtoolbar_define_constants( 'DIR', dirname( plugin_basename( __FILE__ ) ) );
65
+ smbtoolbar_define_constants( 'BASE', plugin_basename( __FILE__ ) );
66
+ smbtoolbar_define_constants( 'URL', plugin_dir_url( __FILE__ ) );
67
+ smbtoolbar_define_constants( 'PATH', plugin_dir_path( __FILE__ ) );
68
+ smbtoolbar_define_constants( 'SLUG', dirname( plugin_basename( __FILE__ ) ) );
69
+ smbtoolbar_define_constants( 'NAME', $plugin_data['name'] );
70
+ smbtoolbar_define_constants( 'VERSION', $plugin_data['version'] );
71
+ smbtoolbar_define_constants( 'TEXT', $plugin_data['text'] );
72
+ smbtoolbar_define_constants( 'PREFIX', 'smbtoolbar' );
73
+ smbtoolbar_define_constants( 'SETTINGS', 'smbtoolbar' );
74
 
75
  /**
76
  * Load the plugin modules
77
  *
78
+ * @since 4.7
79
  */
80
  require_once( SMEDIABT_PATH . 'inc/php/core.php' );
81
+ require_once( SMEDIABT_PATH . 'inc/php/upgrade.php' );
82
  require_once( SMEDIABT_PATH . 'inc/php/version.php' );
83
+ require_once( SMEDIABT_PATH . 'inc/php/enqueue.php' );
84
  require_once( SMEDIABT_PATH . 'inc/php/functional.php' );
85
  require_once( SMEDIABT_PATH . 'inc/php/page.php' );
86
  require_once( SMEDIABT_PATH . 'inc/php/messages.php' );