Social Media Follow Buttons Bar - Version 4.11

Version Description

  • Added option for the iTunes social media.
  • Added option for the Apple Music social media.
  • Added option for the Medium social media.
  • Added option for the 500px social network.
  • On the plugin settings page, text of buttons are corrected.
  • On the plugin settings page, the information about the plugin version number moved to header section.
  • Some mention of constants replaced with variables for easier access.
  • Content of the "Usage" tab updated.
  • Content of the "FAQ" tab updated.
Download this release

Release Info

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

Code changes from version 4.10 to 4.11

inc/css/admin.css CHANGED
@@ -5,7 +5,7 @@
5
  * @uthor Arthur Gareginyan
6
  * @link http://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
- * @since 4.10
9
  */
10
 
11
 
@@ -52,16 +52,7 @@ h2 span {
52
  display: block ;
53
  margin-top: 15px;
54
  font-size: 16px;
55
- text-shadow: 0 -1px 0 #fff,
56
- 0 1px 0 #2e2e2e,
57
- 0 2px 0 #2a2a2a,
58
- 0 3px 0 #262626,
59
- 0 4px 0 #222,
60
- 0 5px 0 #1e1e1e,
61
- 0 6px 0 #1a1a1a,
62
- 0 7px 0 #161616,
63
- 0 8px 0 #121212,
64
- 0 22px 30px rgba(0, 0, 0, 0.9);
65
  line-height: 20px !important;
66
  }
67
  h2 span a,
@@ -74,6 +65,13 @@ h2 span a:hover {
74
  -webkit-transition: all 0.2s ease-in-out;
75
  transition: all 0.2s ease-in-out;
76
  }
 
 
 
 
 
 
 
77
 
78
  /* Titles and Descriptions of sections
79
  -------------------------------------------------------------- */
@@ -145,10 +143,6 @@ h3.title {
145
  #side-sortables .paypal {
146
  font-size: 18px;
147
  }
148
- #side-sortables .version {
149
- color: #888888;
150
- text-align: right;
151
- }
152
 
153
  /* Support - addition section
154
  -------------------------------------------------------------- */
5
  * @uthor Arthur Gareginyan
6
  * @link http://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
+ * @since 4.11
9
  */
10
 
11
 
52
  display: block ;
53
  margin-top: 15px;
54
  font-size: 16px;
55
+ text-shadow: none;
 
 
 
 
 
 
 
 
 
56
  line-height: 20px !important;
57
  }
58
  h2 span a,
65
  -webkit-transition: all 0.2s ease-in-out;
66
  transition: all 0.2s ease-in-out;
67
  }
68
+ h2 .version {
69
+ position: absolute;
70
+ right: 40px;
71
+ color: #a6a6a6;
72
+ text-shadow: none;
73
+ letter-spacing: .1em;
74
+ }
75
 
76
  /* Titles and Descriptions of sections
77
  -------------------------------------------------------------- */
143
  #side-sortables .paypal {
144
  font-size: 18px;
145
  }
 
 
 
 
146
 
147
  /* Support - addition section
148
  -------------------------------------------------------------- */
inc/img/social-media-icons/500px.png ADDED
Binary file
inc/img/social-media-icons/apple-music.png ADDED
Binary file
inc/img/social-media-icons/codepen.png CHANGED
Binary file
inc/img/social-media-icons/itunes.png ADDED
Binary file
inc/img/social-media-icons/medium.png ADDED
Binary file
inc/img/social-media-icons/snapchat.png CHANGED
Binary file
inc/img/social-media-icons/vkontakte.png CHANGED
Binary file
inc/js/admin.js CHANGED
@@ -1,5 +1,5 @@
1
  /*
2
- * Plugin JavaScript and JQuery code for the admin pages of website
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @uthor Arthur Gareginyan
1
  /*
2
+ * Plugin JavaScript and jQuery code for the admin pages of website
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @uthor Arthur Gareginyan
inc/php/enqueue.php CHANGED
@@ -10,15 +10,20 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Base for the _load_scripts hook
12
  *
13
- * @since 4.6
14
  */
15
  function smbtoolbar_load_scripts_base( $options ) {
16
 
17
- // Load JQuery library
 
 
 
 
 
18
  wp_enqueue_script( 'jquery' );
19
 
20
  // Style sheet
21
- wp_enqueue_style( SMEDIABT_PREFIX . '-frontend-css', SMEDIABT_URL . 'inc/css/frontend.css' );
22
 
23
  // Size of icons
24
  $icon_size = esc_textarea( $options['icon-size'] );
@@ -50,39 +55,45 @@ function smbtoolbar_load_scripts_base( $options ) {
50
  margin: " . ( $margin_right / 2 ) . "px !important;
51
  }
52
  ";
53
- wp_add_inline_style( SMEDIABT_PREFIX . '-frontend-css', $custom_css );
54
 
55
  }
56
 
57
  /**
58
  * Load scripts and style sheet for settings page
59
  *
60
- * @since 4.6
61
  */
62
  function smbtoolbar_load_scripts_admin( $hook ) {
63
 
 
 
 
 
 
 
64
  // Return if the page is not a settings page of this plugin
65
- $settings_page = 'settings_page_' . SMEDIABT_SLUG;
66
  if ( $settings_page != $hook ) {
67
  return;
68
  }
69
 
70
  // Read options from BD
71
- $options = get_option( SMEDIABT_SETTINGS . '_settings' );
72
 
73
  // Style sheet
74
- wp_enqueue_style( SMEDIABT_PREFIX . '-admin-css', SMEDIABT_URL . 'inc/css/admin.css' );
75
 
76
  // JavaScript
77
- wp_enqueue_script( SMEDIABT_PREFIX . '-admin-js', SMEDIABT_URL . 'inc/js/admin.js', array(), false, true );
78
 
79
  // Bootstrap library
80
- wp_enqueue_style( SMEDIABT_PREFIX . '-bootstrap-css', SMEDIABT_URL . 'inc/lib/bootstrap/bootstrap.css' );
81
- wp_enqueue_style( SMEDIABT_PREFIX . '-bootstrap-theme-css', SMEDIABT_URL . 'inc/lib/bootstrap/bootstrap-theme.css' );
82
- wp_enqueue_script( SMEDIABT_PREFIX . '-bootstrap-js', SMEDIABT_URL . 'inc/lib/bootstrap/bootstrap.js' );
83
 
84
  // Other libraries
85
- wp_enqueue_script( SMEDIABT_PREFIX . '-bootstrap-checkbox-js', SMEDIABT_URL . 'inc/lib/bootstrap-checkbox.js' );
86
 
87
  // Call the function that contain a basis of scripts
88
  smbtoolbar_load_scripts_base( $options );
@@ -93,19 +104,25 @@ add_action( 'admin_enqueue_scripts', SMEDIABT_PREFIX . '_load_scripts_admin' );
93
  /**
94
  * Load scripts and style sheet for front end of website
95
  *
96
- * @since 4.6
97
  */
98
  function smbtoolbar_load_scripts_frontend() {
99
 
 
 
 
 
 
 
100
  // Read options from BD
101
- $options = get_option( SMEDIABT_SETTINGS . '_settings' );
102
 
103
  // Call the function that contain a basis of scripts
104
  smbtoolbar_load_scripts_base( $options );
105
 
106
  // Other libraries
107
- wp_enqueue_style( SMEDIABT_PREFIX . '-bootstrap-tooltip-css', SMEDIABT_URL . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.css' );
108
- wp_enqueue_script( SMEDIABT_PREFIX . '-bootstrap-tooltip-js', SMEDIABT_URL . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.js' );
109
 
110
  }
111
  add_action( 'wp_enqueue_scripts', SMEDIABT_PREFIX . '_load_scripts_frontend' );
10
  /**
11
  * Base for the _load_scripts hook
12
  *
13
+ * @since 4.11
14
  */
15
  function smbtoolbar_load_scripts_base( $options ) {
16
 
17
+ // Put value of constants to variables for easier access
18
+ $slug = SMEDIABT_SLUG;
19
+ $prefix = SMEDIABT_PREFIX;
20
+ $url = SMEDIABT_URL;
21
+
22
+ // Load jQuery library
23
  wp_enqueue_script( 'jquery' );
24
 
25
  // Style sheet
26
+ wp_enqueue_style( $prefix . '-frontend-css', $url . 'inc/css/frontend.css' );
27
 
28
  // Size of icons
29
  $icon_size = esc_textarea( $options['icon-size'] );
55
  margin: " . ( $margin_right / 2 ) . "px !important;
56
  }
57
  ";
58
+ wp_add_inline_style( $prefix . '-frontend-css', $custom_css );
59
 
60
  }
61
 
62
  /**
63
  * Load scripts and style sheet for settings page
64
  *
65
+ * @since 4.11
66
  */
67
  function smbtoolbar_load_scripts_admin( $hook ) {
68
 
69
+ // Put value of constants to variables for easier access
70
+ $slug = SMEDIABT_SLUG;
71
+ $prefix = SMEDIABT_PREFIX;
72
+ $url = SMEDIABT_URL;
73
+ $settings = SMEDIABT_SETTINGS;
74
+
75
  // Return if the page is not a settings page of this plugin
76
+ $settings_page = 'settings_page_' . $slug;
77
  if ( $settings_page != $hook ) {
78
  return;
79
  }
80
 
81
  // Read options from BD
82
+ $options = get_option( $settings . '_settings' );
83
 
84
  // Style sheet
85
+ wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css' );
86
 
87
  // JavaScript
88
+ wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), false, true );
89
 
90
  // Bootstrap library
91
+ wp_enqueue_style( $prefix . '-bootstrap-css', $url . 'inc/lib/bootstrap/bootstrap.css' );
92
+ wp_enqueue_style( $prefix . '-bootstrap-theme-css', $url . 'inc/lib/bootstrap/bootstrap-theme.css' );
93
+ wp_enqueue_script( $prefix . '-bootstrap-js', $url . 'inc/lib/bootstrap/bootstrap.js' );
94
 
95
  // Other libraries
96
+ wp_enqueue_script( $prefix . '-bootstrap-checkbox-js', $url . 'inc/lib/bootstrap-checkbox.js' );
97
 
98
  // Call the function that contain a basis of scripts
99
  smbtoolbar_load_scripts_base( $options );
104
  /**
105
  * Load scripts and style sheet for front end of website
106
  *
107
+ * @since 4.11
108
  */
109
  function smbtoolbar_load_scripts_frontend() {
110
 
111
+ // Put value of constants to variables for easier access
112
+ $slug = SMEDIABT_SLUG;
113
+ $prefix = SMEDIABT_PREFIX;
114
+ $url = SMEDIABT_URL;
115
+ $settings = SMEDIABT_SETTINGS;
116
+
117
  // Read options from BD
118
+ $options = get_option( $settings . '_settings' );
119
 
120
  // Call the function that contain a basis of scripts
121
  smbtoolbar_load_scripts_base( $options );
122
 
123
  // Other libraries
124
+ wp_enqueue_style( $prefix . '-bootstrap-tooltip-css', $url . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.css' );
125
+ wp_enqueue_script( $prefix . '-bootstrap-tooltip-js', $url . 'inc/lib/bootstrap-tooltip/bootstrap-tooltip.js' );
126
 
127
  }
128
  add_action( 'wp_enqueue_scripts', SMEDIABT_PREFIX . '_load_scripts_frontend' );
inc/php/page.php CHANGED
@@ -10,10 +10,16 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Page
12
  *
13
- * @since 4.6
14
  */
15
  function smbtoolbar_render_submenu_page() {
16
 
 
 
 
 
 
 
17
  // Call messages
18
  smbtoolbar_hello_message();
19
  smbtoolbar_error_message();
@@ -22,27 +28,28 @@ function smbtoolbar_render_submenu_page() {
22
  ?>
23
  <div class="wrap">
24
  <h2>
25
- <?php echo SMEDIABT_NAME; ?>
26
  <span>
27
  <?php printf(
28
- __( 'by %s Arthur Gareginyan %s', SMEDIABT_TEXT ),
29
  '<a href="http://www.arthurgareginyan.com" target="_blank">',
30
  '</a>'
31
  );
32
  ?>
33
  </span>
 
34
  </h2>
35
 
36
  <div id="poststuff" class="metabox-holder has-right-sidebar">
37
 
38
  <!-- TABS NAVIGATION MENU -->
39
  <ul class="tabs-nav">
40
- <li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', SMEDIABT_TEXT ); ?></a></li>
41
- <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', SMEDIABT_TEXT ); ?></a></li>
42
- <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', SMEDIABT_TEXT ); ?></a></li>
43
- <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', SMEDIABT_TEXT ); ?></a></li>
44
- <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', SMEDIABT_TEXT ); ?></a></li>
45
- <li><a href="#tab-family" data-toggle="tab"><?php _e( 'Family', SMEDIABT_TEXT ); ?></a></li>
46
  </ul>
47
  <!-- END-TABS NAVIGATION MENU -->
48
 
@@ -57,24 +64,26 @@ function smbtoolbar_render_submenu_page() {
57
  <!-- TAB 2 -->
58
  <div class="tab-page fade" id="tab-usage">
59
  <div class="postbox">
60
- <h3 class="title"><?php _e( 'Usage', SMEDIABT_TEXT ); ?></h3>
61
  <div class="inside">
62
- <p><?php _e( 'To display the social media follow buttons bar on the front end of your website, simply follow these steps:', SMEDIABT_TEXT ); ?></p>
63
  <ol class="custom-counter">
64
- <li><?php _e( 'Go to the "Settings" tab.', SMEDIABT_TEXT ); ?></li>
65
- <li><?php _e( 'Fill in the required fields, select the desired settings and click the "Save Changes" button.', SMEDIABT_TEXT ); ?></li>
66
- <li><?php _e( 'Now you have several methods for display the social media follow buttons bar (further just "buttons"). Just choose the one that is more suitable for your case.', SMEDIABT_TEXT ); ?><br><br>
67
- <p><?php _e( '<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the checkbox "Show on Posts" or/and "Show on Pages" in the section "Display options", then click the "Save Changes" button.', SMEDIABT_TEXT ); ?></p>
68
- <p><?php _e( '<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:', SMEDIABT_TEXT ); ?></p>
 
 
69
  <p><?php highlight_string('[smbtoolbar]'); ?></p>
70
- <p><?php _e( '<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "Text" widget and add inside it the following shortcode:', SMEDIABT_TEXT ); ?></p>
71
  <p><?php highlight_string('[smbtoolbar]'); ?></p>
72
- <p><?php _e( '<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:', SMEDIABT_TEXT ); ?></p>
73
  <p><?php highlight_string('<?php echo do_shortcode("[smbtoolbar]"); ?>'); ?></p>
74
  </li>
75
- <li><?php _e( 'Enjoy your fancy social media follow buttons.', SMEDIABT_TEXT ); ?> <?php _e( 'It\'s that simple!', SMEDIABT_TEXT ); ?></li>
76
  </ol>
77
- <p class="note"><b><?php _e( 'Note!', SMEDIABT_TEXT ); ?></b> <?php _e( 'If you want more options then tell me and I will be happy to add it.', SMEDIABT_TEXT ); ?></p>
78
  </div>
79
  </div>
80
  </div>
@@ -83,12 +92,16 @@ function smbtoolbar_render_submenu_page() {
83
  <!-- TAB 3 -->
84
  <div class="tab-page fade" id="tab-faq">
85
  <div class="postbox">
86
- <h3 class="title"><?php _e( 'Frequently Asked Questions', SMEDIABT_TEXT ); ?></h3>
87
  <div class="inside">
88
 
 
 
 
 
89
  <div class="panel-group" id="collapse-group">
90
  <?php
91
- $loopvalue = '11';
92
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
93
  echo '<div class="panel panel-default">
94
  <div class="panel-heading">
@@ -105,59 +118,66 @@ function smbtoolbar_render_submenu_page() {
105
  ?>
106
  </div>
107
 
108
- <div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?', SMEDIABT_TEXT ); ?></div>
109
- <div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', SMEDIABT_TEXT ); ?></div>
110
 
111
- <div class="question-2"><?php _e( 'Can I use this plugin on my language?', SMEDIABT_TEXT ); ?></div>
112
  <div class="answer-2"><?php printf(
113
- __( 'Yes. But If your language is not available then you can make one. This plugin is ready for translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. Many of plugin users would be delighted if you shared your translation with the community. Just send the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the translation within the next plugin update.', SMEDIABT_TEXT ),
114
- '<a href="mailto:arthurgareginyan@gmail.com?subject=Social Media Follow Buttons Bar">arthurgareginyan@gmail.com</a>'
115
  );
116
- ?></div>
 
117
 
118
- <div class="question-3"><?php _e( 'How does it work?', SMEDIABT_TEXT ); ?></div>
119
- <div class="answer-3"><?php _e( 'On the "Settings" tab, select the desired settings and click the "Save Changes" button. Enjoy your fancy social media follow buttons. It\'s that simple!', SMEDIABT_TEXT ); ?></div>
120
 
121
- <div class="question-4"><?php _e( 'Does this plugin requires any modification of the theme?', SMEDIABT_TEXT ); ?></div>
122
- <div class="answer-4"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', SMEDIABT_TEXT ); ?></div>
123
 
124
- <div class="question-5"><?php _e( 'Does this require any knowledge of HTML or CSS?', SMEDIABT_TEXT ); ?></div>
125
- <div class="answer-5"><?php _e( 'Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', SMEDIABT_TEXT ); ?></div>
126
 
127
- <div class="question-6"><?php _e( 'What I need to do if the Google PageSpeed test says that this plugin images must be compressed?', SMEDIABT_TEXT ); ?></div>
128
- <div class="answer-6"><?php _e( 'The images that uses in this plugin are already compressed, but I will do my best to find out what else can be done with the images in order to compress them even better.', SMEDIABT_TEXT ); ?></div>
129
 
130
- <div class="question-7 question-red"><?php _e( 'It\'s not working. What could be wrong?', SMEDIABT_TEXT ); ?></div>
131
- <div class="answer-7"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', SMEDIABT_TEXT ); ?><br><br>
132
- <?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, I\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', SMEDIABT_TEXT ); ?></div>
133
 
134
- <div class="question-8 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', SMEDIABT_TEXT ); ?></div>
135
- <div class="answer-8"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', SMEDIABT_TEXT ); ?></div>
136
 
137
- <div class="question-9 question-red"><?php _e( 'Where to report bug if found?', SMEDIABT_TEXT ); ?></div>
138
  <div class="answer-9"><?php printf(
139
- __( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', SMEDIABT_TEXT ),
140
- '<a href="https://github.com/ArthurGareginyan/social-media-buttons-toolbar" target="_blank">',
141
  '</a>'
142
  );
143
  ?></div>
144
 
145
- <div class="question-10"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', SMEDIABT_TEXT ); ?></div>
146
  <div class="answer-10"><?php printf(
147
- __( 'Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!', SMEDIABT_TEXT ),
148
- '<a href="mailto:arthurgareginyan@gmail.com?subject=Social Media Follow Buttons Bar">',
149
- '</a>'
150
  );
151
  ?></div>
152
 
153
- <div class="question-11"><?php _e( 'I love this plugin! Can I help somehow?', SMEDIABT_TEXT ); ?></div>
154
  <div class="answer-11"><?php printf(
155
- __( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', SMEDIABT_TEXT ),
156
  '<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
157
  '</a>'
158
  );
159
  ?></div>
160
 
 
 
 
 
 
 
 
161
  </div>
162
  </div>
163
  </div>
@@ -166,7 +186,7 @@ function smbtoolbar_render_submenu_page() {
166
  <!-- TAB 4 -->
167
  <div class="tab-page fade" id="tab-author">
168
  <div class="postbox">
169
- <h3 class="title"><?php _e( 'Author', SMEDIABT_TEXT ); ?></h3>
170
  <div class="inside include-tab-author"></div>
171
  </div>
172
  </div>
@@ -175,7 +195,7 @@ function smbtoolbar_render_submenu_page() {
175
  <!-- TAB 5 -->
176
  <div class="tab-page fade" id="tab-support">
177
  <div class="postbox">
178
- <h3 class="title"><?php _e( 'Support', SMEDIABT_TEXT ); ?></h3>
179
  <div class="inside include-tab-support"></div>
180
  </div>
181
  </div>
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 4.11
14
  */
15
  function smbtoolbar_render_submenu_page() {
16
 
17
+ // Put value of constants to variables for easier access
18
+ $name = SMEDIABT_NAME;
19
+ $slug = SMEDIABT_SLUG;
20
+ $version = SMEDIABT_VERSION;
21
+ $text = SMEDIABT_TEXT;
22
+
23
  // Call messages
24
  smbtoolbar_hello_message();
25
  smbtoolbar_error_message();
28
  ?>
29
  <div class="wrap">
30
  <h2>
31
+ <?php echo $name; ?>
32
  <span>
33
  <?php printf(
34
+ __( 'by %s Arthur Gareginyan %s', $text ),
35
  '<a href="http://www.arthurgareginyan.com" target="_blank">',
36
  '</a>'
37
  );
38
  ?>
39
  </span>
40
+ <p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
41
  </h2>
42
 
43
  <div id="poststuff" class="metabox-holder has-right-sidebar">
44
 
45
  <!-- TABS NAVIGATION MENU -->
46
  <ul class="tabs-nav">
47
+ <li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', $text ); ?></a></li>
48
+ <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
49
+ <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
50
+ <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
51
+ <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
52
+ <li><a href="#tab-family" data-toggle="tab"><?php _e( 'Family', $text ); ?></a></li>
53
  </ul>
54
  <!-- END-TABS NAVIGATION MENU -->
55
 
64
  <!-- TAB 2 -->
65
  <div class="tab-page fade" id="tab-usage">
66
  <div class="postbox">
67
+ <h3 class="title"><?php _e( 'Usage', $text ); ?></h3>
68
  <div class="inside">
69
+ <p><?php _e( 'To display the social media follow buttons bar on the front end of your website, simply follow these steps:', $text ); ?></p>
70
  <ol class="custom-counter">
71
+ <li><?php _e( 'Go to the "Settings" tab.', $text ); ?></li>
72
+ <li><?php _e( 'Fill in the required fields.', $text ); ?></li>
73
+ <li><?php _e( 'Select the desired settings.', $text ); ?></li>
74
+ <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
75
+ <li><?php _e( 'Now you have several methods for display the social media follow buttons bar (further just "buttons"). Just choose the one that is more suitable for your case.', $text ); ?><br><br>
76
+ <p><?php _e( '<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the checkbox "Show on Posts" or/and "Show on Pages" in the section "Display options", then click the "Save changes" button.', $text ); ?></p>
77
+ <p><?php _e( '<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:', $text ); ?></p>
78
  <p><?php highlight_string('[smbtoolbar]'); ?></p>
79
+ <p><?php _e( '<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "Text" widget and add inside it the following shortcode:', $text ); ?></p>
80
  <p><?php highlight_string('[smbtoolbar]'); ?></p>
81
+ <p><?php _e( '<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place (where you want to display the buttons) in your theme files:', $text ); ?></p>
82
  <p><?php highlight_string('<?php echo do_shortcode("[smbtoolbar]"); ?>'); ?></p>
83
  </li>
84
+ <li><?php _e( 'Enjoy your fancy social media follow buttons.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
85
  </ol>
86
+ <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'If you want more options then tell me and I will be happy to add it.', $text ); ?></p>
87
  </div>
88
  </div>
89
  </div>
92
  <!-- TAB 3 -->
93
  <div class="tab-page fade" id="tab-faq">
94
  <div class="postbox">
95
+ <h3 class="title"><?php _e( 'Frequently Asked Questions', $text ); ?></h3>
96
  <div class="inside">
97
 
98
+ <p class="note">
99
+ <?php _e( 'If you have a question, please read the Frequently Asked Questions below to see if the answer is here.', $text ); ?>
100
+ </p>
101
+
102
  <div class="panel-group" id="collapse-group">
103
  <?php
104
+ $loopvalue = '12';
105
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
106
  echo '<div class="panel panel-default">
107
  <div class="panel-heading">
118
  ?>
119
  </div>
120
 
121
+ <div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?', $text ); ?></div>
122
+ <div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
123
 
124
+ <div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
125
  <div class="answer-2"><?php printf(
126
+ __( 'Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the <code>languages</code> folder. Just send the PO file to me at the %s and I will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ),
127
+ '<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
128
  );
129
+ ?><br><br>
130
+ <?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?></div>
131
 
132
+ <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
133
+ <div class="answer-3"><?php _e( 'On the "Settings" tab, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It\'s that simple!', $text ); ?></div>
134
 
135
+ <div class="question-4"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
136
+ <div class="answer-4"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
137
 
138
+ <div class="question-5"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
139
+ <div class="answer-5"><?php _e( 'Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?></div>
140
 
141
+ <div class="question-6"><?php _e( 'What I need to do if the Google PageSpeed test says that this plugin images must be compressed?', $text ); ?></div>
142
+ <div class="answer-6"><?php _e( 'The images that uses in this plugin are already compressed, but I will do my best to find out what else can be done with the images in order to compress them even better.', $text ); ?></div>
143
 
144
+ <div class="question-7 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
145
+ <div class="answer-7"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
146
+ <?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, I\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?></div>
147
 
148
+ <div class="question-8 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
149
+ <div class="answer-8"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', $text ); ?></div>
150
 
151
+ <div class="question-9 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
152
  <div class="answer-9"><?php printf(
153
+ __( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', $text ),
154
+ '<a href="https://github.com/ArthurGareginyan/' . $slug . '" target="_blank">',
155
  '</a>'
156
  );
157
  ?></div>
158
 
159
+ <div class="question-10"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
160
  <div class="answer-10"><?php printf(
161
+ __( 'Any suggestions are very welcome! Please send me an email to %s. Thank you!', $text ),
162
+ '<a href="mailto:arthurgareginyan@gmail.com?subject=Suggestions about the ' . $name . '">arthurgareginyan@gmail.com</a>'
 
163
  );
164
  ?></div>
165
 
166
+ <div class="question-11"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
167
  <div class="answer-11"><?php printf(
168
+ __( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', $text ),
169
  '<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
170
  '</a>'
171
  );
172
  ?></div>
173
 
174
+ <div class="question-12"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
175
+ <div class="answer-12"><?php printf(
176
+ __( 'You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is no a special support team, so I have no way to answer everyone.', $text ),
177
+ '<a href="https://wordpress.org/support/plugin/' . $slug . '/" target="_blank">here</a>'
178
+ );
179
+ ?></div>
180
+
181
  </div>
182
  </div>
183
  </div>
186
  <!-- TAB 4 -->
187
  <div class="tab-page fade" id="tab-author">
188
  <div class="postbox">
189
+ <h3 class="title"><?php _e( 'Author', $text ); ?></h3>
190
  <div class="inside include-tab-author"></div>
191
  </div>
192
  </div>
195
  <!-- TAB 5 -->
196
  <div class="tab-page fade" id="tab-support">
197
  <div class="postbox">
198
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
199
  <div class="inside include-tab-support"></div>
200
  </div>
201
  </div>
inc/php/settings.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Tab
12
  *
13
- * @since 4.10
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
@@ -18,27 +18,25 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
18
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
19
 
20
  <div id="about" class="postbox">
21
- <h3 class="title"><?php _e( 'About', SMEDIABT_TEXT ); ?></h3>
22
  <div class="inside">
23
- <p><?php _e( 'This plugin allows you to easily add the social media follow buttons bar to any place of your website.', SMEDIABT_TEXT ); ?></p>
24
- <p class="version"><?php _e( 'Version', SMEDIABT_TEXT ); ?> <?php echo SMEDIABT_VERSION; ?></p>
25
  </div>
26
  </div>
27
 
28
  <div id="support" class="postbox">
29
- <h3 class="title"><?php _e( 'Support', SMEDIABT_TEXT ); ?></h3>
30
  <div class="inside">
31
- <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', SMEDIABT_TEXT ); ?></p>
32
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', SMEDIABT_TEXT ); ?></a>
33
- <p><?php _e( 'Thanks for your support!', SMEDIABT_TEXT ); ?></p>
34
  </div>
35
  </div>
36
 
37
  <div id="help" class="postbox">
38
- <h3 class="title"><?php _e( 'Help', SMEDIABT_TEXT ); ?></h3>
39
  <div class="inside">
40
- <p><?php _e( 'Got something to say? Need help?', SMEDIABT_TEXT ); ?></p>
41
- <p><a href="mailto:arthurgareginyan@gmail.com?subject=<?php echo SMEDIABT_NAME; ?>">arthurgareginyan@gmail.com</a></p>
42
  </div>
43
  </div>
44
 
@@ -63,423 +61,453 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
63
  ?>
64
 
65
  <div class="postbox" id="Buttons">
66
- <h3 class="title"><?php _e( 'Buttons', SMEDIABT_TEXT ); ?></h3>
67
  <div class="inside">
68
- <p class="note"><?php _e( 'Just fill in the required fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don\'t want to use any of the following buttons, you can not fill them and then they do not appear.', SMEDIABT_TEXT ); ?></p>
69
 
70
  <table class="form-table">
71
 
72
  <?php smbtoolbar_media( 'facebook',
73
  'Facebook',
74
  'https://www.facebook.com/YourUsernameHere',
75
- __( 'Enter the link to your Facebook profile page', SMEDIABT_TEXT ),
76
  '//www.facebook.com'
77
  );
78
  ?>
79
  <?php smbtoolbar_media( 'twitter',
80
  'Twitter',
81
  'https://twitter.com/YourUsernameHere',
82
- __( 'Enter the link to your Twitter profile page', SMEDIABT_TEXT ),
83
  '//twitter.com'
84
  );
85
  ?>
86
  <?php smbtoolbar_media( 'instagram',
87
  'Instagram',
88
  'http://instagram.com/YourUsernameHere',
89
- __( 'Enter the link to your Instagram profile page', SMEDIABT_TEXT ),
90
  '//instagram.com'
91
  );
92
  ?>
93
  <?php smbtoolbar_media( 'google-plus',
94
  'Google+',
95
  'https://plus.google.com/u/0/+YourUsernameHere',
96
- __( 'Enter the link to your Google+ profile page', SMEDIABT_TEXT ),
97
  '//plus.google.com'
98
  );
99
  ?>
100
  <?php smbtoolbar_media( 'youtube',
101
  'YouTube',
102
  'https://www.youtube.com/channel/YourChannelIdentifierHere',
103
- __( 'Enter the link to your YouTube profile page', SMEDIABT_TEXT ),
104
  '//www.youtube.com'
105
  );
106
  ?>
107
  <?php smbtoolbar_media( 'youtube-gaming',
108
  'YouTube Gaming',
109
  'https://gaming.youtube.com/channel/YourChannelIdentifierHere',
110
- __( 'Enter the link to your YouTube Gaming profile page', SMEDIABT_TEXT ),
111
  '//gaming.youtube.com'
112
  );
113
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  <?php smbtoolbar_media( 'periscope',
115
  'Periscope',
116
  'https://www.periscope.tv/YourUsernameHere',
117
- __( 'Enter the link to your Periscope profile page', SMEDIABT_TEXT ),
118
  '//www.periscope.tv'
119
  );
120
  ?>
121
  <?php smbtoolbar_media( 'vimeo',
122
  'Vimeo',
123
  'https://vimeo.com/YourUsernameHere',
124
- __( 'Enter the link to your Vimeo profile page', SMEDIABT_TEXT ),
125
  '//vimeo.com'
126
  );
127
  ?>
128
  <?php smbtoolbar_media( 'blogger',
129
  'Blogger',
130
  'http://YourBlogNameHere.blogspot.com',
131
- __( 'Enter the link to your Blogger profile page', SMEDIABT_TEXT ),
132
  '//www.blogger.com'
133
  );
134
  ?>
135
  <?php smbtoolbar_media( 'buzzsprout',
136
  'Buzzsprout',
137
  'https://www.buzzsprout.com/YourUsernameHere',
138
- __( 'Enter the link to your Buzzsprout profile page', SMEDIABT_TEXT ),
139
  '//www.buzzsprout.com'
140
  );
141
  ?>
142
  <?php smbtoolbar_media( 'livejournal',
143
  'LiveJournal',
144
  'http://YourUsernameHere.livejournal.com',
145
- __( 'Enter the link to your LiveJournal profile page', SMEDIABT_TEXT ),
146
  '//www.livejournal.com'
147
  );
148
  ?>
149
  <?php smbtoolbar_media( 'reddit',
150
  'Reddit',
151
  'https://www.reddit.com/user/YourUsernameHere',
152
- __( 'Enter the link to your Reddit profile page', SMEDIABT_TEXT ),
153
  '//www.reddit.com'
154
  );
155
  ?>
156
  <?php smbtoolbar_media( 'linkedin',
157
  'LinkedIn',
158
  'https://linkedin.com/in/YourUsernameHere',
159
- __( 'Enter the link to your LinkedIn profile page', SMEDIABT_TEXT ),
160
  '//linkedin.com'
161
  );
162
  ?>
163
  <?php smbtoolbar_media( 'diaspora',
164
  'Diaspora',
165
  'https://diasporafoundation.org/YourUsernameHere',
166
- __( 'Enter the link to your Diaspora profile page', SMEDIABT_TEXT ),
167
  '//diasporafoundation.org'
168
  );
169
  ?>
170
  <?php smbtoolbar_media( 'deviantart',
171
  'DeviantArt',
172
  'http://www.deviantart.com/YourUsernameHere',
173
- __( 'Enter the link to your DeviantArt profile page', SMEDIABT_TEXT ),
174
  '//www.deviantart.com'
175
  );
176
  ?>
177
  <?php smbtoolbar_media( 'xing',
178
  'XING',
179
  'https://www.xing.com/YourUsernameHere',
180
- __( 'Enter the link to your XING profile page', SMEDIABT_TEXT ),
181
  '//www.xing.com'
182
  );
183
  ?>
184
  <?php smbtoolbar_media( 'pinterest',
185
  'Pinterest',
186
  'https://www.pinterest.com/YourUsernameHere',
187
- __( 'Enter the link to your Pinterest profile page', SMEDIABT_TEXT ),
188
  '//www.pinterest.com'
189
  );
190
  ?>
191
  <?php smbtoolbar_media( 'flickr',
192
  'Flickr',
193
  'https://www.flickr.com/YourUsernameHere',
194
- __( 'Enter the link to your Flickr profile page', SMEDIABT_TEXT ),
195
  '//www.flickr.com'
196
  );
197
  ?>
198
  <?php smbtoolbar_media( 'tumblr',
199
  'Tumblr',
200
  'https://www.tumblr.com/blog/YourBlogNameHere',
201
- __( 'Enter the link to your Tumblr profile page', SMEDIABT_TEXT ),
202
  '//www.tumblr.com'
203
  );
204
  ?>
205
  <?php smbtoolbar_media( 'snapchat',
206
  'Snapchat',
207
  'https://www.snapchat.com/add/YourUsernameHere',
208
- __( 'Enter the link to your Snapchat profile page', SMEDIABT_TEXT ),
209
  '//www.snapchat.com'
210
  );
211
  ?>
212
  <?php smbtoolbar_media( 'twitch',
213
  'Twitch',
214
  'https://www.twitch.tv/YourUsernameHere',
215
- __( 'Enter the link to your Twitch profile page', SMEDIABT_TEXT ),
216
  '//www.twitch.tv'
217
  );
218
  ?>
219
  <?php smbtoolbar_media( 'patreon',
220
  'Patreon',
221
  'https://www.patreon.com/YourUsernameHere',
222
- __( 'Enter the link to your Patreon profile page', SMEDIABT_TEXT ),
223
  '//www.patreon.com'
224
  );
225
  ?>
226
  <?php smbtoolbar_media( 'imdb',
227
  'IMDb',
228
  'http://www.imdb.com/name/YourUsernameHere',
229
- __( 'Enter the link to your IMDb profile page', SMEDIABT_TEXT ),
230
  '//www.imdb.com'
231
  );
232
  ?>
233
  <?php smbtoolbar_media( 'soundcloud',
234
  'SoundCloud',
235
  'https://soundcloud.com/YourUsernameHere',
236
- __( 'Enter the link to your SoundCloud profile page', SMEDIABT_TEXT ),
237
  '//soundcloud.com'
238
  );
239
  ?>
240
  <?php smbtoolbar_media( 'plugdj',
241
  'Plug.dj',
242
  'https://plug.dj/YourUsernameHere',
243
- __( 'Enter the link to your Plug.dj profile page', SMEDIABT_TEXT ),
244
  '//plug.dj'
245
  );
246
  ?>
247
  <?php smbtoolbar_media( 'spotify',
248
  'Spotify',
249
  'http://open.spotify.com/user/YourUsernameHere',
250
- __( 'Enter the link to your Spotify profile page', SMEDIABT_TEXT ),
251
  '//www.spotify.com'
252
  );
253
  ?>
254
  <?php smbtoolbar_media( 'bandcamp',
255
  'Bandcamp',
256
  'https://bandcamp.com/YourUsernameHere',
257
- __( 'Enter the link to your Bandcamp profile page', SMEDIABT_TEXT ),
258
  '//bandcamp.com'
259
  );
260
  ?>
261
  <?php smbtoolbar_media( 'dloky',
262
  'Dloky',
263
  'https://dloky.com/YourUsernameHere',
264
- __( 'Enter the link to your Dloky profile page', SMEDIABT_TEXT ),
265
  '//dloky.com'
266
  );
267
  ?>
268
  <?php smbtoolbar_media( 'amazon',
269
  'Amazon',
270
  'https://www.amazon.com/YourUsernameHere',
271
- __( 'Enter the link to your Amazon profile page', SMEDIABT_TEXT ),
272
  '//www.amazon.com'
273
  );
274
  ?>
275
  <?php smbtoolbar_media( 'bookbub',
276
  'BookBub',
277
  'https://www.bookbub.com/YourUsernameHere',
278
- __( 'Enter the link to your BookBub profile page', SMEDIABT_TEXT ),
279
  '//www.bookbub.com'
280
  );
281
  ?>
282
  <?php smbtoolbar_media( 'goodreads',
283
  'Goodreads',
284
  'https://www.goodreads.com/YourUsernameHere',
285
- __( 'Enter the link to your Goodreads profile page', SMEDIABT_TEXT ),
286
  '//www.goodreads.com'
287
  );
288
  ?>
289
  <?php smbtoolbar_media( 'meetvibe',
290
  'MeetVibe',
291
  'https://meetvibe.com/YourUsernameHere',
292
- __( 'Enter the link to your MeetVibe profile page', SMEDIABT_TEXT ),
293
  '//meetvibe.com'
294
  );
295
  ?>
296
  <?php smbtoolbar_media( 'meetup',
297
  'Meetup',
298
  'https://www.meetup.com/YourUsernameHere',
299
- __( 'Enter the link to your Meetup profile page', SMEDIABT_TEXT ),
300
  '//www.meetup.com'
301
  );
302
  ?>
303
  <?php smbtoolbar_media( 'steam',
304
  'Steam',
305
  'http://store.steampowered.com/YourUsernameHere',
306
- __( 'Enter the link to your Steam profile page', SMEDIABT_TEXT ),
307
  '//store.steampowered.com'
308
  );
309
  ?>
310
  <?php smbtoolbar_media( 'mixer',
311
  'Mixer',
312
  'https://mixer.com/YourUsernameHere',
313
- __( 'Enter the link to your Mixer profile page', SMEDIABT_TEXT ),
314
  '//mixer.com'
315
  );
316
  ?>
317
  <?php smbtoolbar_media( 'discord',
318
  'Discord',
319
  'https://discordapp.com/YourUsernameHere',
320
- __( 'Enter the link to your Discord profile page', SMEDIABT_TEXT ),
321
  '//discordapp.com'
322
  );
323
  ?>
324
  <?php smbtoolbar_media( 'yelp',
325
  'Yelp',
326
  'https://www.yelp.com/YourUsernameHere',
327
- __( 'Enter the link to your Yelp profile page', SMEDIABT_TEXT ),
328
  '//www.yelp.com'
329
  );
330
  ?>
331
  <?php smbtoolbar_media( 'stumbleupon',
332
  'StumbleUpon',
333
  'http://www.stumbleupon.com/YourUsernameHere',
334
- __( 'Enter the link to your StumbleUpon profile page', SMEDIABT_TEXT ),
335
  '//www.stumbleupon.com'
336
  );
337
  ?>
338
  <?php smbtoolbar_media( 'bloglovin',
339
  'Bloglovin',
340
  'https://www.bloglovin.com/YourUsernameHere',
341
- __( 'Enter the link to your Bloglovin profile page', SMEDIABT_TEXT ),
342
  '//www.bloglovin.com'
343
  );
344
  ?>
345
  <?php smbtoolbar_media( 'whatsapp',
346
  'WhatsApp',
347
  'https://www.whatsapp.com/YourUsernameHere',
348
- __( 'Enter the link to your WhatsApp profile page', SMEDIABT_TEXT ),
349
  '//www.whatsapp.com'
350
  );
351
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  <?php smbtoolbar_media( 'line',
353
  'LINE',
354
  'https://line.me/YourUsernameHere',
355
- __( 'Enter the link to your LINE profile page', SMEDIABT_TEXT ),
356
  '//line.me'
357
  );
358
  ?>
359
  <?php smbtoolbar_media( 'vkontakte',
360
  'VKontakte',
361
  'https://vk.com/id_YourIdentifierHere',
362
- __( 'Enter the link to your VKontakte profile page', SMEDIABT_TEXT ),
363
  '//vk.com'
364
  );
365
  ?>
366
  <?php smbtoolbar_media( 'odnoklassniki',
367
  'Odnoklassniki',
368
  'https://ok.ru/profile/YourIdentifierHere',
369
- __( 'Enter the link to your Odnoklassniki profile page', SMEDIABT_TEXT ),
370
  '//ok.ru'
371
  );
372
  ?>
373
  <?php smbtoolbar_media( 'telegram',
374
  'Telegram',
375
  'https://telegram.me/YourUsernameHere',
376
- __( 'Enter the link to your Telegram profile page', SMEDIABT_TEXT ),
377
  '//telegram.org'
378
  );
379
  ?>
380
  <?php smbtoolbar_media( 'github',
381
  'GitHub',
382
  'https://github.com/YourUsernameHere',
383
- __( 'Enter the link to your GitHub profile page', SMEDIABT_TEXT ),
384
  '//github.com'
385
  );
386
  ?>
387
  <?php smbtoolbar_media( 'wordpress',
388
  'WordPress',
389
  'https://profiles.wordpress.org/YourUsernameHere',
390
- __( 'Enter the link to your WordPress profile page', SMEDIABT_TEXT ),
391
  '//wordpress.org'
392
  );
393
  ?>
394
  <?php smbtoolbar_media( 'codepen',
395
  'CodePen',
396
  'http://codepen.io/YourUsernameHere',
397
- __( 'Enter the link to your CodePen profile page', SMEDIABT_TEXT ),
398
  '//codepen.io'
399
  );
400
  ?>
401
  <?php smbtoolbar_media( 'skype',
402
  'Skype',
403
  'skype:YourUsernameHere?call',
404
- __( 'Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile', SMEDIABT_TEXT ),
405
  '//www.skype.com'
406
  );
407
  ?>
408
  <?php smbtoolbar_media( 'website',
409
  'Personal website',
410
  'http://www.arthurgareginyan.com',
411
- __( 'Enter the link to your personal website', SMEDIABT_TEXT ),
412
  ''
413
  );
414
  ?>
415
  <?php smbtoolbar_media( 'email',
416
  'Email',
417
  'mailto:YourUsernameHere@gmail.com',
418
- __( 'Enter your email address with prefix <b>mailto:</b>', SMEDIABT_TEXT ),
419
  ''
420
  );
421
  ?>
422
  <?php smbtoolbar_media( 'telephone',
423
  'Telephone',
424
  'tel://1-555-555-5555',
425
- __( 'Enter your telephone number with prefix <b>tel://</b>', SMEDIABT_TEXT ),
426
  ''
427
  );
428
  ?>
429
  <?php smbtoolbar_media( 'rss-feed',
430
  'RSS Feed',
431
  'http://YourDomainNameHere.com/feed',
432
- __( 'Enter the link to your RSS Feed', SMEDIABT_TEXT ),
433
  ''
434
  );
435
  ?>
436
  </table>
437
- <p class="note"><b><?php _e( 'Note!', SMEDIABT_TEXT ); ?></b> <?php _e( 'If you did not find the button you need, then tell me and I will gladly add it for you.', SMEDIABT_TEXT ); ?></p>
438
- <?php submit_button( __( 'Save Changes', SMEDIABT_TEXT ), 'primary', 'submit', true ); ?>
 
 
439
  </div>
440
  </div>
441
 
442
  <div class="postbox" id="DisplayOptions">
443
- <h3 class="title"><?php _e( 'Display options', SMEDIABT_TEXT ); ?></h3>
444
  <div class="inside">
445
- <p class="note"><?php _e( 'There you can configure this plugin.', SMEDIABT_TEXT ); ?></p>
446
 
447
  <table class="form-table">
448
  <?php smbtoolbar_setting( 'show_posts',
449
- __( 'Show on Posts', SMEDIABT_TEXT ),
450
- __( 'Display toolbar below content on Posts.', SMEDIABT_TEXT ),
451
  'check'
452
  );
453
  ?>
454
  <?php smbtoolbar_setting( 'show_pages',
455
- __( 'Show on Pages', SMEDIABT_TEXT ),
456
- __( 'Display toolbar below content on Pages.', SMEDIABT_TEXT ),
457
  'check'
458
  );
459
  ?>
460
  <?php smbtoolbar_setting( 'new_tab',
461
- __( 'Open in new tab', SMEDIABT_TEXT ),
462
- __( 'Open link in a new tab/window.', SMEDIABT_TEXT ),
463
  'check'
464
  );
465
  ?>
466
  <?php smbtoolbar_setting( 'tooltips',
467
- __( 'Tooltips', SMEDIABT_TEXT ),
468
- __( 'Enable/disable a tooltips with name of the social media above every button.', SMEDIABT_TEXT ),
469
  'check'
470
  );
471
  ?>
472
  <?php smbtoolbar_setting( 'icon-size',
473
- __( 'Icon size', SMEDIABT_TEXT ),
474
- __( 'Enter the size of icons (in px) in your social media follow buttons bar.', SMEDIABT_TEXT ),
475
  'field',
476
  '64',
477
  '2'
478
  );
479
  ?>
480
  <?php smbtoolbar_setting( 'margin-right',
481
- __( 'Margin', SMEDIABT_TEXT ),
482
- __( 'Enter the size of space (in px) between icons in your social media follow buttons bar.', SMEDIABT_TEXT ),
483
  'field',
484
  '10',
485
  '2'
@@ -488,29 +516,29 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
488
 
489
  <tr>
490
  <th scope='row'>
491
- <?php _e( 'Alignment', SMEDIABT_TEXT ); ?>
492
  </th>
493
  <td>
494
  <ul>
495
  <li>
496
  <input type="radio" name="smbtoolbar_settings[alignment]" value="left" <?php checked( 'left', $alignment ); ?> >
497
- <?php _e( 'Left', SMEDIABT_TEXT ); ?>
498
  </li>
499
  <li>
500
  <input type="radio" name="smbtoolbar_settings[alignment]" value="center" <?php checked( '', $alignment ); ?> <?php checked( 'center', $alignment ); ?> >
501
- <?php _e( 'Center', SMEDIABT_TEXT ); ?>
502
  </li>
503
  <li>
504
  <input type="radio" name="smbtoolbar_settings[alignment]" value="right" <?php checked( 'right', $alignment ); ?> >
505
- <?php _e( 'Right', SMEDIABT_TEXT ); ?>
506
  </li>
507
  </ul>
508
  </td>
509
  </tr>
510
 
511
  <?php smbtoolbar_setting('caption',
512
- __( 'Caption', SMEDIABT_TEXT ),
513
- __( 'Enter the caption to your social media follow buttons bar. It will be displays before the toolbar.', SMEDIABT_TEXT ),
514
  'field',
515
  'Follow me in social media:',
516
  '50'
@@ -518,25 +546,25 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
518
 
519
  </table>
520
 
521
- <?php submit_button( __( 'Save Changes', SMEDIABT_TEXT ), 'primary', 'submit', true ); ?>
522
 
523
  </div>
524
  </div>
525
 
526
  <div class="postbox" id="Preview">
527
- <h3 class="title"><?php _e( 'Preview', SMEDIABT_TEXT ); ?></h3>
528
  <div class="inside">
529
- <p class="note"><?php _e( 'Click the "Save Changes" button to update this preview.', SMEDIABT_TEXT ); ?></p><br>
530
  <?php echo smbtoolbar_shortcode(); ?>
531
  </div>
532
  </div>
533
 
534
  <div class="postbox" id="support-addition">
535
- <h3 class="title"><?php _e( 'Support', SMEDIABT_TEXT ); ?></h3>
536
  <div class="inside">
537
- <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', SMEDIABT_TEXT ); ?></p>
538
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', SMEDIABT_TEXT ); ?></a>
539
- <p><?php _e( 'Thanks for your support!', SMEDIABT_TEXT ); ?></p>
540
  </div>
541
  </div>
542
 
10
  /**
11
  * Render Settings Tab
12
  *
13
+ * @since 4.11
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
18
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
19
 
20
  <div id="about" class="postbox">
21
+ <h3 class="title"><?php _e( 'About', $text ); ?></h3>
22
  <div class="inside">
23
+ <p><?php _e( 'This plugin allows you to easily add the social media follow buttons bar to any place of your website.', $text ); ?></p>
 
24
  </div>
25
  </div>
26
 
27
  <div id="support" class="postbox">
28
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
29
  <div class="inside">
30
+ <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
31
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
32
+ <p><?php _e( 'Thanks for your support!', $text ); ?></p>
33
  </div>
34
  </div>
35
 
36
  <div id="help" class="postbox">
37
+ <h3 class="title"><?php _e( 'Help', $text ); ?></h3>
38
  <div class="inside">
39
+ <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
 
40
  </div>
41
  </div>
42
 
61
  ?>
62
 
63
  <div class="postbox" id="Buttons">
64
+ <h3 class="title"><?php _e( 'Buttons', $text ); ?></h3>
65
  <div class="inside">
66
+ <p class="note"><?php _e( 'Just fill in the required fields to make a buttons. The social networking buttons will lead directly to your profile pages. If you don\'t want to use any of the following buttons, you can not fill them and then they do not appear.', $text ); ?></p>
67
 
68
  <table class="form-table">
69
 
70
  <?php smbtoolbar_media( 'facebook',
71
  'Facebook',
72
  'https://www.facebook.com/YourUsernameHere',
73
+ __( 'Enter the link to your Facebook profile page', $text ),
74
  '//www.facebook.com'
75
  );
76
  ?>
77
  <?php smbtoolbar_media( 'twitter',
78
  'Twitter',
79
  'https://twitter.com/YourUsernameHere',
80
+ __( 'Enter the link to your Twitter profile page', $text ),
81
  '//twitter.com'
82
  );
83
  ?>
84
  <?php smbtoolbar_media( 'instagram',
85
  'Instagram',
86
  'http://instagram.com/YourUsernameHere',
87
+ __( 'Enter the link to your Instagram profile page', $text ),
88
  '//instagram.com'
89
  );
90
  ?>
91
  <?php smbtoolbar_media( 'google-plus',
92
  'Google+',
93
  'https://plus.google.com/u/0/+YourUsernameHere',
94
+ __( 'Enter the link to your Google+ profile page', $text ),
95
  '//plus.google.com'
96
  );
97
  ?>
98
  <?php smbtoolbar_media( 'youtube',
99
  'YouTube',
100
  'https://www.youtube.com/channel/YourChannelIdentifierHere',
101
+ __( 'Enter the link to your YouTube profile page', $text ),
102
  '//www.youtube.com'
103
  );
104
  ?>
105
  <?php smbtoolbar_media( 'youtube-gaming',
106
  'YouTube Gaming',
107
  'https://gaming.youtube.com/channel/YourChannelIdentifierHere',
108
+ __( 'Enter the link to your YouTube Gaming profile page', $text ),
109
  '//gaming.youtube.com'
110
  );
111
  ?>
112
+ <?php smbtoolbar_media( 'itunes',
113
+ 'iTunes',
114
+ 'https://www.apple.com/itunes/YourUsernameHere',
115
+ __( 'Enter the link to your iTunes profile page', $text ),
116
+ '//www.apple.com/itunes'
117
+ );
118
+ ?>
119
+ <?php smbtoolbar_media( 'apple-music',
120
+ 'Apple Music',
121
+ 'https://www.apple.com/lae/music/YourUsernameHere',
122
+ __( 'Enter the link to your Apple Music profile page', $text ),
123
+ '//www.apple.com/lae/music'
124
+ );
125
+ ?>
126
  <?php smbtoolbar_media( 'periscope',
127
  'Periscope',
128
  'https://www.periscope.tv/YourUsernameHere',
129
+ __( 'Enter the link to your Periscope profile page', $text ),
130
  '//www.periscope.tv'
131
  );
132
  ?>
133
  <?php smbtoolbar_media( 'vimeo',
134
  'Vimeo',
135
  'https://vimeo.com/YourUsernameHere',
136
+ __( 'Enter the link to your Vimeo profile page', $text ),
137
  '//vimeo.com'
138
  );
139
  ?>
140
  <?php smbtoolbar_media( 'blogger',
141
  'Blogger',
142
  'http://YourBlogNameHere.blogspot.com',
143
+ __( 'Enter the link to your Blogger profile page', $text ),
144
  '//www.blogger.com'
145
  );
146
  ?>
147
  <?php smbtoolbar_media( 'buzzsprout',
148
  'Buzzsprout',
149
  'https://www.buzzsprout.com/YourUsernameHere',
150
+ __( 'Enter the link to your Buzzsprout profile page', $text ),
151
  '//www.buzzsprout.com'
152
  );
153
  ?>
154
  <?php smbtoolbar_media( 'livejournal',
155
  'LiveJournal',
156
  'http://YourUsernameHere.livejournal.com',
157
+ __( 'Enter the link to your LiveJournal profile page', $text ),
158
  '//www.livejournal.com'
159
  );
160
  ?>
161
  <?php smbtoolbar_media( 'reddit',
162
  'Reddit',
163
  'https://www.reddit.com/user/YourUsernameHere',
164
+ __( 'Enter the link to your Reddit profile page', $text ),
165
  '//www.reddit.com'
166
  );
167
  ?>
168
  <?php smbtoolbar_media( 'linkedin',
169
  'LinkedIn',
170
  'https://linkedin.com/in/YourUsernameHere',
171
+ __( 'Enter the link to your LinkedIn profile page', $text ),
172
  '//linkedin.com'
173
  );
174
  ?>
175
  <?php smbtoolbar_media( 'diaspora',
176
  'Diaspora',
177
  'https://diasporafoundation.org/YourUsernameHere',
178
+ __( 'Enter the link to your Diaspora profile page', $text ),
179
  '//diasporafoundation.org'
180
  );
181
  ?>
182
  <?php smbtoolbar_media( 'deviantart',
183
  'DeviantArt',
184
  'http://www.deviantart.com/YourUsernameHere',
185
+ __( 'Enter the link to your DeviantArt profile page', $text ),
186
  '//www.deviantart.com'
187
  );
188
  ?>
189
  <?php smbtoolbar_media( 'xing',
190
  'XING',
191
  'https://www.xing.com/YourUsernameHere',
192
+ __( 'Enter the link to your XING profile page', $text ),
193
  '//www.xing.com'
194
  );
195
  ?>
196
  <?php smbtoolbar_media( 'pinterest',
197
  'Pinterest',
198
  'https://www.pinterest.com/YourUsernameHere',
199
+ __( 'Enter the link to your Pinterest profile page', $text ),
200
  '//www.pinterest.com'
201
  );
202
  ?>
203
  <?php smbtoolbar_media( 'flickr',
204
  'Flickr',
205
  'https://www.flickr.com/YourUsernameHere',
206
+ __( 'Enter the link to your Flickr profile page', $text ),
207
  '//www.flickr.com'
208
  );
209
  ?>
210
  <?php smbtoolbar_media( 'tumblr',
211
  'Tumblr',
212
  'https://www.tumblr.com/blog/YourBlogNameHere',
213
+ __( 'Enter the link to your Tumblr profile page', $text ),
214
  '//www.tumblr.com'
215
  );
216
  ?>
217
  <?php smbtoolbar_media( 'snapchat',
218
  'Snapchat',
219
  'https://www.snapchat.com/add/YourUsernameHere',
220
+ __( 'Enter the link to your Snapchat profile page', $text ),
221
  '//www.snapchat.com'
222
  );
223
  ?>
224
  <?php smbtoolbar_media( 'twitch',
225
  'Twitch',
226
  'https://www.twitch.tv/YourUsernameHere',
227
+ __( 'Enter the link to your Twitch profile page', $text ),
228
  '//www.twitch.tv'
229
  );
230
  ?>
231
  <?php smbtoolbar_media( 'patreon',
232
  'Patreon',
233
  'https://www.patreon.com/YourUsernameHere',
234
+ __( 'Enter the link to your Patreon profile page', $text ),
235
  '//www.patreon.com'
236
  );
237
  ?>
238
  <?php smbtoolbar_media( 'imdb',
239
  'IMDb',
240
  'http://www.imdb.com/name/YourUsernameHere',
241
+ __( 'Enter the link to your IMDb profile page', $text ),
242
  '//www.imdb.com'
243
  );
244
  ?>
245
  <?php smbtoolbar_media( 'soundcloud',
246
  'SoundCloud',
247
  'https://soundcloud.com/YourUsernameHere',
248
+ __( 'Enter the link to your SoundCloud profile page', $text ),
249
  '//soundcloud.com'
250
  );
251
  ?>
252
  <?php smbtoolbar_media( 'plugdj',
253
  'Plug.dj',
254
  'https://plug.dj/YourUsernameHere',
255
+ __( 'Enter the link to your Plug.dj profile page', $text ),
256
  '//plug.dj'
257
  );
258
  ?>
259
  <?php smbtoolbar_media( 'spotify',
260
  'Spotify',
261
  'http://open.spotify.com/user/YourUsernameHere',
262
+ __( 'Enter the link to your Spotify profile page', $text ),
263
  '//www.spotify.com'
264
  );
265
  ?>
266
  <?php smbtoolbar_media( 'bandcamp',
267
  'Bandcamp',
268
  'https://bandcamp.com/YourUsernameHere',
269
+ __( 'Enter the link to your Bandcamp profile page', $text ),
270
  '//bandcamp.com'
271
  );
272
  ?>
273
  <?php smbtoolbar_media( 'dloky',
274
  'Dloky',
275
  'https://dloky.com/YourUsernameHere',
276
+ __( 'Enter the link to your Dloky profile page', $text ),
277
  '//dloky.com'
278
  );
279
  ?>
280
  <?php smbtoolbar_media( 'amazon',
281
  'Amazon',
282
  'https://www.amazon.com/YourUsernameHere',
283
+ __( 'Enter the link to your Amazon profile page', $text ),
284
  '//www.amazon.com'
285
  );
286
  ?>
287
  <?php smbtoolbar_media( 'bookbub',
288
  'BookBub',
289
  'https://www.bookbub.com/YourUsernameHere',
290
+ __( 'Enter the link to your BookBub profile page', $text ),
291
  '//www.bookbub.com'
292
  );
293
  ?>
294
  <?php smbtoolbar_media( 'goodreads',
295
  'Goodreads',
296
  'https://www.goodreads.com/YourUsernameHere',
297
+ __( 'Enter the link to your Goodreads profile page', $text ),
298
  '//www.goodreads.com'
299
  );
300
  ?>
301
  <?php smbtoolbar_media( 'meetvibe',
302
  'MeetVibe',
303
  'https://meetvibe.com/YourUsernameHere',
304
+ __( 'Enter the link to your MeetVibe profile page', $text ),
305
  '//meetvibe.com'
306
  );
307
  ?>
308
  <?php smbtoolbar_media( 'meetup',
309
  'Meetup',
310
  'https://www.meetup.com/YourUsernameHere',
311
+ __( 'Enter the link to your Meetup profile page', $text ),
312
  '//www.meetup.com'
313
  );
314
  ?>
315
  <?php smbtoolbar_media( 'steam',
316
  'Steam',
317
  'http://store.steampowered.com/YourUsernameHere',
318
+ __( 'Enter the link to your Steam profile page', $text ),
319
  '//store.steampowered.com'
320
  );
321
  ?>
322
  <?php smbtoolbar_media( 'mixer',
323
  'Mixer',
324
  'https://mixer.com/YourUsernameHere',
325
+ __( 'Enter the link to your Mixer profile page', $text ),
326
  '//mixer.com'
327
  );
328
  ?>
329
  <?php smbtoolbar_media( 'discord',
330
  'Discord',
331
  'https://discordapp.com/YourUsernameHere',
332
+ __( 'Enter the link to your Discord profile page', $text ),
333
  '//discordapp.com'
334
  );
335
  ?>
336
  <?php smbtoolbar_media( 'yelp',
337
  'Yelp',
338
  'https://www.yelp.com/YourUsernameHere',
339
+ __( 'Enter the link to your Yelp profile page', $text ),
340
  '//www.yelp.com'
341
  );
342
  ?>
343
  <?php smbtoolbar_media( 'stumbleupon',
344
  'StumbleUpon',
345
  'http://www.stumbleupon.com/YourUsernameHere',
346
+ __( 'Enter the link to your StumbleUpon profile page', $text ),
347
  '//www.stumbleupon.com'
348
  );
349
  ?>
350
  <?php smbtoolbar_media( 'bloglovin',
351
  'Bloglovin',
352
  'https://www.bloglovin.com/YourUsernameHere',
353
+ __( 'Enter the link to your Bloglovin profile page', $text ),
354
  '//www.bloglovin.com'
355
  );
356
  ?>
357
  <?php smbtoolbar_media( 'whatsapp',
358
  'WhatsApp',
359
  'https://www.whatsapp.com/YourUsernameHere',
360
+ __( 'Enter the link to your WhatsApp profile page', $text ),
361
  '//www.whatsapp.com'
362
  );
363
  ?>
364
+ <?php smbtoolbar_media( 'medium',
365
+ 'Medium',
366
+ 'https://medium.com/YourUsernameHere',
367
+ __( 'Enter the link to your Medium profile page', $text ),
368
+ '//medium.com'
369
+ );
370
+ ?>
371
+ <?php smbtoolbar_media( '500px',
372
+ '500px',
373
+ 'https://500px.com/YourUsernameHere',
374
+ __( 'Enter the link to your 500px profile page', $text ),
375
+ '//500px.com'
376
+ );
377
+ ?>
378
  <?php smbtoolbar_media( 'line',
379
  'LINE',
380
  'https://line.me/YourUsernameHere',
381
+ __( 'Enter the link to your LINE profile page', $text ),
382
  '//line.me'
383
  );
384
  ?>
385
  <?php smbtoolbar_media( 'vkontakte',
386
  'VKontakte',
387
  'https://vk.com/id_YourIdentifierHere',
388
+ __( 'Enter the link to your VKontakte profile page', $text ),
389
  '//vk.com'
390
  );
391
  ?>
392
  <?php smbtoolbar_media( 'odnoklassniki',
393
  'Odnoklassniki',
394
  'https://ok.ru/profile/YourIdentifierHere',
395
+ __( 'Enter the link to your Odnoklassniki profile page', $text ),
396
  '//ok.ru'
397
  );
398
  ?>
399
  <?php smbtoolbar_media( 'telegram',
400
  'Telegram',
401
  'https://telegram.me/YourUsernameHere',
402
+ __( 'Enter the link to your Telegram profile page', $text ),
403
  '//telegram.org'
404
  );
405
  ?>
406
  <?php smbtoolbar_media( 'github',
407
  'GitHub',
408
  'https://github.com/YourUsernameHere',
409
+ __( 'Enter the link to your GitHub profile page', $text ),
410
  '//github.com'
411
  );
412
  ?>
413
  <?php smbtoolbar_media( 'wordpress',
414
  'WordPress',
415
  'https://profiles.wordpress.org/YourUsernameHere',
416
+ __( 'Enter the link to your WordPress profile page', $text ),
417
  '//wordpress.org'
418
  );
419
  ?>
420
  <?php smbtoolbar_media( 'codepen',
421
  'CodePen',
422
  'http://codepen.io/YourUsernameHere',
423
+ __( 'Enter the link to your CodePen profile page', $text ),
424
  '//codepen.io'
425
  );
426
  ?>
427
  <?php smbtoolbar_media( 'skype',
428
  'Skype',
429
  'skype:YourUsernameHere?call',
430
+ __( 'Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile', $text ),
431
  '//www.skype.com'
432
  );
433
  ?>
434
  <?php smbtoolbar_media( 'website',
435
  'Personal website',
436
  'http://www.arthurgareginyan.com',
437
+ __( 'Enter the link to your personal website', $text ),
438
  ''
439
  );
440
  ?>
441
  <?php smbtoolbar_media( 'email',
442
  'Email',
443
  'mailto:YourUsernameHere@gmail.com',
444
+ __( 'Enter your email address with prefix <b>mailto:</b>', $text ),
445
  ''
446
  );
447
  ?>
448
  <?php smbtoolbar_media( 'telephone',
449
  'Telephone',
450
  'tel://1-555-555-5555',
451
+ __( 'Enter your telephone number with prefix <b>tel://</b>', $text ),
452
  ''
453
  );
454
  ?>
455
  <?php smbtoolbar_media( 'rss-feed',
456
  'RSS Feed',
457
  'http://YourDomainNameHere.com/feed',
458
+ __( 'Enter the link to your RSS Feed', $text ),
459
  ''
460
  );
461
  ?>
462
  </table>
463
+ <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'If you did not find the button you need, then tell me and I will gladly add it for you.', $text ); ?></p>
464
+
465
+ <?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
466
+
467
  </div>
468
  </div>
469
 
470
  <div class="postbox" id="DisplayOptions">
471
+ <h3 class="title"><?php _e( 'Display options', $text ); ?></h3>
472
  <div class="inside">
473
+ <p class="note"><?php _e( 'There you can configure this plugin.', $text ); ?></p>
474
 
475
  <table class="form-table">
476
  <?php smbtoolbar_setting( 'show_posts',
477
+ __( 'Show on Posts', $text ),
478
+ __( 'Display toolbar below content on Posts.', $text ),
479
  'check'
480
  );
481
  ?>
482
  <?php smbtoolbar_setting( 'show_pages',
483
+ __( 'Show on Pages', $text ),
484
+ __( 'Display toolbar below content on Pages.', $text ),
485
  'check'
486
  );
487
  ?>
488
  <?php smbtoolbar_setting( 'new_tab',
489
+ __( 'Open in new tab', $text ),
490
+ __( 'Open link in a new tab/window.', $text ),
491
  'check'
492
  );
493
  ?>
494
  <?php smbtoolbar_setting( 'tooltips',
495
+ __( 'Tooltips', $text ),
496
+ __( 'Enable/disable a tooltips with name of the social media above every button.', $text ),
497
  'check'
498
  );
499
  ?>
500
  <?php smbtoolbar_setting( 'icon-size',
501
+ __( 'Icon size', $text ),
502
+ __( 'Enter the size of icons (in px) in your social media follow buttons bar.', $text ),
503
  'field',
504
  '64',
505
  '2'
506
  );
507
  ?>
508
  <?php smbtoolbar_setting( 'margin-right',
509
+ __( 'Margin', $text ),
510
+ __( 'Enter the size of space (in px) between icons in your social media follow buttons bar.', $text ),
511
  'field',
512
  '10',
513
  '2'
516
 
517
  <tr>
518
  <th scope='row'>
519
+ <?php _e( 'Alignment', $text ); ?>
520
  </th>
521
  <td>
522
  <ul>
523
  <li>
524
  <input type="radio" name="smbtoolbar_settings[alignment]" value="left" <?php checked( 'left', $alignment ); ?> >
525
+ <?php _e( 'Left', $text ); ?>
526
  </li>
527
  <li>
528
  <input type="radio" name="smbtoolbar_settings[alignment]" value="center" <?php checked( '', $alignment ); ?> <?php checked( 'center', $alignment ); ?> >
529
+ <?php _e( 'Center', $text ); ?>
530
  </li>
531
  <li>
532
  <input type="radio" name="smbtoolbar_settings[alignment]" value="right" <?php checked( 'right', $alignment ); ?> >
533
+ <?php _e( 'Right', $text ); ?>
534
  </li>
535
  </ul>
536
  </td>
537
  </tr>
538
 
539
  <?php smbtoolbar_setting('caption',
540
+ __( 'Caption', $text ),
541
+ __( 'Enter the caption to your social media follow buttons bar. It will be displays before the toolbar.', $text ),
542
  'field',
543
  'Follow me in social media:',
544
  '50'
546
 
547
  </table>
548
 
549
+ <?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
550
 
551
  </div>
552
  </div>
553
 
554
  <div class="postbox" id="Preview">
555
+ <h3 class="title"><?php _e( 'Preview', $text ); ?></h3>
556
  <div class="inside">
557
+ <p class="note"><?php _e( 'Click the "Save changes" button to update this preview.', $text ); ?></p><br>
558
  <?php echo smbtoolbar_shortcode(); ?>
559
  </div>
560
  </div>
561
 
562
  <div class="postbox" id="support-addition">
563
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
564
  <div class="inside">
565
+ <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
566
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
567
+ <p><?php _e( 'Thanks for your support!', $text ); ?></p>
568
  </div>
569
  </div>
570
 
inc/php/versioning.php CHANGED
@@ -18,6 +18,7 @@ function smbtoolbar_versioning() {
18
  // SETTING VARIABLES //
19
  ///////////////////////////////////////////////////////////////////
20
 
 
21
  $version_files = SMEDIABT_VERSION;
22
  $settings = SMEDIABT_SETTINGS;
23
 
18
  // SETTING VARIABLES //
19
  ///////////////////////////////////////////////////////////////////
20
 
21
+ // Put value of constants to variables for easier access
22
  $version_files = SMEDIABT_VERSION;
23
  $settings = SMEDIABT_SETTINGS;
24
 
languages/Readme.txt CHANGED
@@ -2,10 +2,12 @@
2
  CONTRIBUTING YOUR TRANSLATION
3
 
4
 
5
- This plugin is ready for translation.
6
 
7
- If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar), or use the POT file, that is included and placed in the "languages" folder, in order to create a translation files (*.po, *.mo). Just send the translation files (*.po, *.mo) to me at the arthurgareginyan@gmail.com and I will include the translation within the next plugin update.
8
 
9
- Also you can use an existing PO file that placed in the "languages" folder, in order to make corrections.
 
 
10
 
11
  Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
2
  CONTRIBUTING YOUR TRANSLATION
3
 
4
 
5
+ This plugin is ready for translation and has already been translated into several languages.
6
 
7
+ If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
8
 
9
+ You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to me at the arthurgareginyan@gmail.com and I will include this translation within the next plugin update.
10
+
11
+ Maybe not all existed translations are up to date. You are welcome to contribute corrections!
12
 
13
  Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
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-06-04 20:38+0300\n"
7
- "PO-Revision-Date: 2017-06-04 20:38+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -22,7 +22,7 @@ msgstr ""
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
 
25
- #: inc/php/core.php:31 inc/php/page.php:40
26
  msgid "Settings"
27
  msgstr "Configuraciones"
28
 
@@ -51,63 +51,73 @@ msgstr ""
51
  msgid "Please update the plugin to the latest version, and all will be fine."
52
  msgstr ""
53
 
54
- #: inc/php/page.php:28
55
  #, php-format
56
  msgid "by %s Arthur Gareginyan %s"
57
  msgstr "por %s Arthur Gareginyan %s"
58
 
59
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
60
  msgid "Usage"
61
  msgstr "Uso"
62
 
63
- #: inc/php/page.php:42
64
  msgid "F.A.Q."
65
  msgstr "F.A.Q."
66
 
67
- #: inc/php/page.php:43 inc/php/page.php:169
68
  msgid "Author"
69
  msgstr "Autor"
70
 
71
- #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:29
72
- #: inc/php/settings.php:535
73
  msgid "Support"
74
  msgstr "Soporte"
75
 
76
- #: inc/php/page.php:45
77
  msgid "Family"
78
  msgstr "Familia"
79
 
80
- #: inc/php/page.php:62
81
  msgid ""
82
  "To display the social media follow buttons bar on the front end of your website, "
83
  "simply follow these steps:"
84
  msgstr ""
85
 
86
- #: inc/php/page.php:64
87
  msgid "Go to the \"Settings\" tab."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:65
91
- msgid ""
92
- "Fill in the required fields, select the desired settings and click the \"Save "
93
- "Changes\" button."
 
 
 
 
 
 
94
  msgstr ""
95
 
96
- #: inc/php/page.php:66
97
  msgid ""
98
  "Now you have several methods for display the social media follow buttons bar "
99
  "(further just \"buttons\"). Just choose the one that is more suitable for your "
100
  "case."
101
  msgstr ""
102
 
103
- #: inc/php/page.php:67
104
  msgid ""
105
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
106
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
107
- "\"Display options\", then click the \"Save Changes\" button."
108
  msgstr ""
109
 
110
- #: inc/php/page.php:68
111
  msgid ""
112
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
113
  "following shortcode:"
@@ -115,7 +125,7 @@ msgstr ""
115
  "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
116
  "Páginas de Wordpress usa el siguiente shortcode:"
117
 
118
- #: inc/php/page.php:70
119
  msgid ""
120
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "
121
  "\"Text\" widget and add inside it the following shortcode:"
@@ -123,104 +133,116 @@ msgstr ""
123
  "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
124
  "u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
125
 
126
- #: inc/php/page.php:72
127
  msgid ""
128
  "<b>D)</b> For add the buttons directly to a theme files, just add the following "
129
  "code to needed place (where you want to display the buttons) in your theme files:"
130
  msgstr ""
131
 
132
- #: inc/php/page.php:75
133
  msgid "Enjoy your fancy social media follow buttons."
134
  msgstr ""
135
 
136
- #: inc/php/page.php:75
137
  msgid "It's that simple!"
138
  msgstr ""
139
 
140
- #: inc/php/page.php:77 inc/php/settings.php:437
141
  msgid "Note!"
142
  msgstr ""
143
 
144
- #: inc/php/page.php:77
145
  msgid "If you want more options then tell me and I will be happy to add it."
146
  msgstr ""
147
 
148
- #: inc/php/page.php:86
149
  msgid "Frequently Asked Questions"
150
  msgstr "Preguntas Frecuentes"
151
 
152
- #: inc/php/page.php:108
 
 
 
 
 
 
153
  msgid "Will this plugin work on my WordPress.COM website?"
154
  msgstr ""
155
 
156
- #: inc/php/page.php:109
157
  msgid ""
158
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
159
  "websites."
160
  msgstr ""
161
 
162
- #: inc/php/page.php:111
163
  msgid "Can I use this plugin on my language?"
164
  msgstr ""
165
 
166
- #: inc/php/page.php:113
167
  #, php-format
168
  msgid ""
169
- "Yes. But If your language is not available then you can make one. This plugin is "
170
- "ready for translation. The<code>.pot</code>file is included and placed in the "
171
- "<code>languages</code> folder. Many of plugin users would be delighted if you "
172
- "shared your translation with the community. Just send the translation files "
173
- "(<code>*.po, *.mo</code>) to me at the %s and I will include the translation "
174
- "within the next plugin update."
175
  msgstr ""
176
 
177
- #: inc/php/page.php:118
 
 
 
 
 
 
178
  msgid "How does it work?"
179
  msgstr ""
180
 
181
- #: inc/php/page.php:119
182
  msgid ""
183
- "On the \"Settings\" tab, select the desired settings and click the \"Save Changes"
184
  "\" button. Enjoy your fancy social media follow buttons. It's that simple!"
185
  msgstr ""
186
 
187
- #: inc/php/page.php:121
188
  msgid "Does this plugin requires any modification of the theme?"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:122
192
  msgid ""
193
  "Absolutely not. This plugin is configurable entirely from the plugin settings page."
194
  msgstr ""
195
 
196
- #: inc/php/page.php:124
197
  msgid "Does this require any knowledge of HTML or CSS?"
198
  msgstr ""
199
 
200
- #: inc/php/page.php:125
201
  msgid ""
202
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, "
203
  "using an easy-to-use plugin settings page."
204
  msgstr ""
205
 
206
- #: inc/php/page.php:127
207
  msgid ""
208
  "What I need to do if the Google PageSpeed test says that this plugin images must "
209
  "be compressed?"
210
  msgstr ""
211
 
212
- #: inc/php/page.php:128
213
  msgid ""
214
  "The images that uses in this plugin are already compressed, but I will do my best "
215
  "to find out what else can be done with the images in order to compress them even "
216
  "better."
217
  msgstr ""
218
 
219
- #: inc/php/page.php:130
220
  msgid "It's not working. What could be wrong?"
221
  msgstr ""
222
 
223
- #: inc/php/page.php:131
224
  msgid ""
225
  "As with every plugin, it's possible that things don't work. The most common reason "
226
  "for this is a web browser's cache. Every web browser stores a cache of the "
@@ -229,7 +251,7 @@ msgid ""
229
  "the problem."
230
  msgstr ""
231
 
232
- #: inc/php/page.php:132
233
  msgid ""
234
  "It's impossible to tell what could be wrong exactly, but if you post a support "
235
  "request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
@@ -237,13 +259,13 @@ msgid ""
237
  "including a link to your website where the problem can be seen."
238
  msgstr ""
239
 
240
- #: inc/php/page.php:134
241
  msgid ""
242
  "The last WordPress update is preventing me from editing my website that is using "
243
  "this plugin. Why is this?"
244
  msgstr ""
245
 
246
- #: inc/php/page.php:135
247
  msgid ""
248
  "This plugin can not cause such problem. More likely, the problem are related to "
249
  "the settings of the website. It could just be a cache, so please try to clear your "
@@ -252,37 +274,47 @@ msgid ""
252
  "login to the website, this too can help."
253
  msgstr ""
254
 
255
- #: inc/php/page.php:137
256
  msgid "Where to report bug if found?"
257
  msgstr ""
258
 
259
- #: inc/php/page.php:139
260
  #, php-format
261
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
262
  msgstr ""
263
 
264
- #: inc/php/page.php:145
265
  msgid "Where to share any ideas or suggestions to make the plugin better?"
266
  msgstr ""
267
 
268
- #: inc/php/page.php:147
269
  #, php-format
270
- msgid ""
271
- "Any suggestions are very welcome! Please send me an email to %s "
272
- "arthurgareginyan@gmail.com %s. Thank you!"
273
  msgstr ""
274
 
275
- #: inc/php/page.php:153
276
  msgid "I love this plugin! Can I help somehow?"
277
  msgstr ""
278
 
279
- #: inc/php/page.php:155
280
  #, php-format
281
  msgid ""
282
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click "
283
  "on the donate button, and thank you!"
284
  msgstr ""
285
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  #: inc/php/settings.php:21
287
  msgid "About"
288
  msgstr "Acerca de"
@@ -295,11 +327,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:24
299
- msgid "Version"
300
- msgstr ""
301
-
302
- #: inc/php/settings.php:31 inc/php/settings.php:537
303
  msgid ""
304
  "I'm an independent developer, without a regular income, so every little "
305
  "contribution helps cover my costs and lets me spend more time building things for "
@@ -309,27 +337,27 @@ msgstr ""
309
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
310
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
311
 
312
- #: inc/php/settings.php:32 inc/php/settings.php:538
313
  msgid "Donate with PayPal"
314
  msgstr ""
315
 
316
- #: inc/php/settings.php:33 inc/php/settings.php:539
317
  msgid "Thanks for your support!"
318
  msgstr "¡Gracias por su colaboración!"
319
 
320
- #: inc/php/settings.php:38
321
  msgid "Help"
322
  msgstr "Ayuda"
323
 
324
- #: inc/php/settings.php:40
325
- msgid "Got something to say? Need help?"
326
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
327
 
328
- #: inc/php/settings.php:66
329
  msgid "Buttons"
330
  msgstr "Botones"
331
 
332
- #: inc/php/settings.php:68
333
  msgid ""
334
  "Just fill in the required fields to make a buttons. The social networking buttons "
335
  "will lead directly to your profile pages. If you don't want to use any of the "
@@ -339,195 +367,211 @@ msgstr ""
339
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
340
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
341
 
342
- #: inc/php/settings.php:75
343
  msgid "Enter the link to your Facebook profile page"
344
  msgstr "Ingresa el enlace a tu página de perfil de Facebook"
345
 
346
- #: inc/php/settings.php:82
347
  msgid "Enter the link to your Twitter profile page"
348
  msgstr "Ingresa el enlace a tu página de perfil de Twitter"
349
 
350
- #: inc/php/settings.php:89
351
  msgid "Enter the link to your Instagram profile page"
352
  msgstr "Ingresa el enlace a tu página de perfil de Instagram"
353
 
354
- #: inc/php/settings.php:96
355
  msgid "Enter the link to your Google+ profile page"
356
  msgstr "Ingresa el enlace a tu página de perfil de Google+"
357
 
358
- #: inc/php/settings.php:103
359
  msgid "Enter the link to your YouTube profile page"
360
  msgstr "Ingresa el enlace a tu página de perfil de Youtube"
361
 
362
- #: inc/php/settings.php:110
363
  msgid "Enter the link to your YouTube Gaming profile page"
364
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
365
 
366
- #: inc/php/settings.php:117
 
 
 
 
 
 
 
 
367
  msgid "Enter the link to your Periscope profile page"
368
  msgstr "Ingresa el enlace a tu página de perfil de Periscope"
369
 
370
- #: inc/php/settings.php:124
371
  msgid "Enter the link to your Vimeo profile page"
372
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
373
 
374
- #: inc/php/settings.php:131
375
  msgid "Enter the link to your Blogger profile page"
376
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
377
 
378
- #: inc/php/settings.php:138
379
  msgid "Enter the link to your Buzzsprout profile page"
380
  msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
381
 
382
- #: inc/php/settings.php:145
383
  msgid "Enter the link to your LiveJournal profile page"
384
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
385
 
386
- #: inc/php/settings.php:152
387
  msgid "Enter the link to your Reddit profile page"
388
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
389
 
390
- #: inc/php/settings.php:159
391
  msgid "Enter the link to your LinkedIn profile page"
392
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
393
 
394
- #: inc/php/settings.php:166
395
  msgid "Enter the link to your Diaspora profile page"
396
  msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
397
 
398
- #: inc/php/settings.php:173
399
  msgid "Enter the link to your DeviantArt profile page"
400
  msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
401
 
402
- #: inc/php/settings.php:180
403
  msgid "Enter the link to your XING profile page"
404
  msgstr "Ingresa el enlace a tu página de perfil de XING"
405
 
406
- #: inc/php/settings.php:187
407
  msgid "Enter the link to your Pinterest profile page"
408
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
409
 
410
- #: inc/php/settings.php:194
411
  msgid "Enter the link to your Flickr profile page"
412
  msgstr "Ingresa el enlace a tu página de perfil de Flickr"
413
 
414
- #: inc/php/settings.php:201
415
  msgid "Enter the link to your Tumblr profile page"
416
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
417
 
418
- #: inc/php/settings.php:208
419
  msgid "Enter the link to your Snapchat profile page"
420
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
421
 
422
- #: inc/php/settings.php:215
423
  msgid "Enter the link to your Twitch profile page"
424
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
425
 
426
- #: inc/php/settings.php:222
427
  msgid "Enter the link to your Patreon profile page"
428
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
429
 
430
- #: inc/php/settings.php:229
431
  msgid "Enter the link to your IMDb profile page"
432
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
433
 
434
- #: inc/php/settings.php:236
435
  msgid "Enter the link to your SoundCloud profile page"
436
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
437
 
438
- #: inc/php/settings.php:243
439
  msgid "Enter the link to your Plug.dj profile page"
440
  msgstr "Ingresa el enlace a tu página de perfil de Plug.dj"
441
 
442
- #: inc/php/settings.php:250
443
  msgid "Enter the link to your Spotify profile page"
444
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
445
 
446
- #: inc/php/settings.php:257
447
  msgid "Enter the link to your Bandcamp profile page"
448
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
449
 
450
- #: inc/php/settings.php:264
451
  msgid "Enter the link to your Dloky profile page"
452
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
453
 
454
- #: inc/php/settings.php:271
455
  msgid "Enter the link to your Amazon profile page"
456
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
457
 
458
- #: inc/php/settings.php:278
459
  msgid "Enter the link to your BookBub profile page"
460
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
461
 
462
- #: inc/php/settings.php:285
463
  msgid "Enter the link to your Goodreads profile page"
464
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
465
 
466
- #: inc/php/settings.php:292
467
  msgid "Enter the link to your MeetVibe profile page"
468
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
469
 
470
- #: inc/php/settings.php:299
471
  msgid "Enter the link to your Meetup profile page"
472
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
473
 
474
- #: inc/php/settings.php:306
475
  msgid "Enter the link to your Steam profile page"
476
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
477
 
478
- #: inc/php/settings.php:313
479
  msgid "Enter the link to your Mixer profile page"
480
  msgstr "Ingresa el enlace a tu página de perfil de Mixer"
481
 
482
- #: inc/php/settings.php:320
483
  msgid "Enter the link to your Discord profile page"
484
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
485
 
486
- #: inc/php/settings.php:327
487
  msgid "Enter the link to your Yelp profile page"
488
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
489
 
490
- #: inc/php/settings.php:334
491
  msgid "Enter the link to your StumbleUpon profile page"
492
  msgstr "Ingresa el enlace a tu página de perfil de StumbleUpon"
493
 
494
- #: inc/php/settings.php:341
495
  msgid "Enter the link to your Bloglovin profile page"
496
  msgstr "Ingresa el enlace a tu página de perfil de Bloglovin"
497
 
498
- #: inc/php/settings.php:348
499
  msgid "Enter the link to your WhatsApp profile page"
500
  msgstr "Ingresa el enlace a tu página de perfil de WhatsApp"
501
 
502
- #: inc/php/settings.php:355
 
 
 
 
 
 
 
 
503
  msgid "Enter the link to your LINE profile page"
504
  msgstr "Ingresa el enlace a tu página de perfil de LINE"
505
 
506
- #: inc/php/settings.php:362
507
  msgid "Enter the link to your VKontakte profile page"
508
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
509
 
510
- #: inc/php/settings.php:369
511
  msgid "Enter the link to your Odnoklassniki profile page"
512
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
513
 
514
- #: inc/php/settings.php:376
515
  msgid "Enter the link to your Telegram profile page"
516
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
517
 
518
- #: inc/php/settings.php:383
519
  msgid "Enter the link to your GitHub profile page"
520
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
521
 
522
- #: inc/php/settings.php:390
523
  msgid "Enter the link to your WordPress profile page"
524
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
525
 
526
- #: inc/php/settings.php:397
527
  msgid "Enter the link to your CodePen profile page"
528
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
529
 
530
- #: inc/php/settings.php:404
531
  msgid ""
532
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
533
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -535,113 +579,113 @@ msgstr ""
535
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
536
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
537
 
538
- #: inc/php/settings.php:411
539
  msgid "Enter the link to your personal website"
540
  msgstr "Ingresa el enlace a tu sitio web personal"
541
 
542
- #: inc/php/settings.php:418
543
  msgid "Enter your email address with prefix <b>mailto:</b>"
544
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
545
 
546
- #: inc/php/settings.php:425
547
  msgid "Enter your telephone number with prefix <b>tel://</b>"
548
  msgstr ""
549
 
550
- #: inc/php/settings.php:432
551
  msgid "Enter the link to your RSS Feed"
552
  msgstr "Ingresa el enlace a tu Feed de RSS"
553
 
554
- #: inc/php/settings.php:437
555
  msgid ""
556
  "If you did not find the button you need, then tell me and I will gladly add it for "
557
  "you."
558
  msgstr ""
559
 
560
- #: inc/php/settings.php:438 inc/php/settings.php:521
561
- msgid "Save Changes"
562
  msgstr "Guardar las modificaciones"
563
 
564
- #: inc/php/settings.php:443
565
  msgid "Display options"
566
  msgstr "Opciones de presentación"
567
 
568
- #: inc/php/settings.php:445
569
  msgid "There you can configure this plugin."
570
  msgstr ""
571
 
572
- #: inc/php/settings.php:449
573
  msgid "Show on Posts"
574
  msgstr "Mostrar en Entradas"
575
 
576
- #: inc/php/settings.php:450
577
  msgid "Display toolbar below content on Posts."
578
  msgstr "Mostrar la barra abajo del contenido en Entradas"
579
 
580
- #: inc/php/settings.php:455
581
  msgid "Show on Pages"
582
  msgstr "Mostrar en Páginas"
583
 
584
- #: inc/php/settings.php:456
585
  msgid "Display toolbar below content on Pages."
586
  msgstr "Mostrar la barra abajo del contenido en Páginas"
587
 
588
- #: inc/php/settings.php:461
589
  msgid "Open in new tab"
590
  msgstr "Abrir en una nueva pestaña"
591
 
592
- #: inc/php/settings.php:462
593
  msgid "Open link in a new tab/window."
594
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
595
 
596
- #: inc/php/settings.php:467
597
  msgid "Tooltips"
598
  msgstr ""
599
 
600
- #: inc/php/settings.php:468
601
  msgid "Enable/disable a tooltips with name of the social media above every button."
602
  msgstr ""
603
 
604
- #: inc/php/settings.php:473
605
  msgid "Icon size"
606
  msgstr "Tamaño de ícono"
607
 
608
- #: inc/php/settings.php:474
609
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
610
  msgstr ""
611
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
612
 
613
- #: inc/php/settings.php:481
614
  msgid "Margin"
615
  msgstr "Margen"
616
 
617
- #: inc/php/settings.php:482
618
  msgid ""
619
  "Enter the size of space (in px) between icons in your social media follow buttons "
620
  "bar."
621
  msgstr ""
622
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
623
 
624
- #: inc/php/settings.php:491
625
  msgid "Alignment"
626
  msgstr "Alineación"
627
 
628
- #: inc/php/settings.php:497
629
  msgid "Left"
630
  msgstr "Izquierda"
631
 
632
- #: inc/php/settings.php:501
633
  msgid "Center"
634
  msgstr "Centro"
635
 
636
- #: inc/php/settings.php:505
637
  msgid "Right"
638
  msgstr "Derecha"
639
 
640
- #: inc/php/settings.php:512
641
  msgid "Caption"
642
  msgstr "Leyenda"
643
 
644
- #: inc/php/settings.php:513
645
  msgid ""
646
  "Enter the caption to your social media follow buttons bar. It will be displays "
647
  "before the toolbar."
@@ -649,12 +693,12 @@ msgstr ""
649
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
650
  "la barra de botones."
651
 
652
- #: inc/php/settings.php:527
653
  msgid "Preview"
654
  msgstr "Vista previa"
655
 
656
- #: inc/php/settings.php:529
657
- msgid "Click the \"Save Changes\" button to update this preview."
658
  msgstr ""
659
 
660
  #. Plugin Name of the plugin/theme
@@ -691,7 +735,7 @@ msgstr "http://www.arthurgareginyan.com"
691
  #~ msgid ""
692
  #~ "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
693
  #~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
694
- #~ "section \"Display options\", then click \"Save Changes\". It's that simple!"
695
  #~ msgstr ""
696
  #~ "<b>A)</b> Para mosrar la barra después del contenido de cada Entrada y/o de "
697
  #~ "cada Página, sólo marca la casilla \"Mostrar en Entradas\" y/o \"Mostrar en "
@@ -711,7 +755,7 @@ msgstr "http://www.arthurgareginyan.com"
711
  #~ msgid ""
712
  #~ "You have several methods for display the social media follow buttons bar "
713
  #~ "(further just \"bar\") on your website. But first, fill in the required fields, "
714
- #~ "then click \"Save Changes\"."
715
  #~ msgstr ""
716
  #~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
717
  #~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
@@ -724,7 +768,7 @@ msgstr "http://www.arthurgareginyan.com"
724
  #~ "¡Es así de simple! Si desea más opciones entonces Dile y yo estaremos "
725
  #~ "encantados de añadirlo."
726
 
727
- #~ msgid "Click \"Save Changes\" to update this preview."
728
  #~ msgstr ""
729
  #~ "Haz clic en \"Guardar los cambios\" para actualizar esta previsualización."
730
 
@@ -738,7 +782,7 @@ msgstr "http://www.arthurgareginyan.com"
738
  #~ msgid ""
739
  #~ "You have several methods for display the social media follow buttons bar "
740
  #~ "(further just \"toolbar\") on your website. But first, fill in the required "
741
- #~ "fields, then click \"Save Changes\"."
742
  #~ msgstr ""
743
  #~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
744
  #~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
@@ -747,7 +791,7 @@ msgstr "http://www.arthurgareginyan.com"
747
  #~ msgid ""
748
  #~ "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, "
749
  #~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
750
- #~ "section \"Display options\", then click \"Save Changes\". It's that simple!"
751
  #~ msgstr ""
752
  #~ "<b>A)</b> Para mosrar la barra después del contenido de cada Entrada y/o de "
753
  #~ "cada Página, sólo marca la casilla \"Mostrar en Entradas\" y/o \"Mostrar en "
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-06-16 03:37+0300\n"
7
+ "PO-Revision-Date: 2017-06-16 03:37+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
 
25
+ #: inc/php/core.php:31 inc/php/page.php:47
26
  msgid "Settings"
27
  msgstr "Configuraciones"
28
 
51
  msgid "Please update the plugin to the latest version, and all will be fine."
52
  msgstr ""
53
 
54
+ #: inc/php/page.php:34
55
  #, php-format
56
  msgid "by %s Arthur Gareginyan %s"
57
  msgstr "por %s Arthur Gareginyan %s"
58
 
59
+ #: inc/php/page.php:40
60
+ msgid "Version"
61
+ msgstr ""
62
+
63
+ #: inc/php/page.php:48 inc/php/page.php:67
64
  msgid "Usage"
65
  msgstr "Uso"
66
 
67
+ #: inc/php/page.php:49
68
  msgid "F.A.Q."
69
  msgstr "F.A.Q."
70
 
71
+ #: inc/php/page.php:50 inc/php/page.php:189
72
  msgid "Author"
73
  msgstr "Autor"
74
 
75
+ #: inc/php/page.php:51 inc/php/page.php:198 inc/php/settings.php:28
76
+ #: inc/php/settings.php:563
77
  msgid "Support"
78
  msgstr "Soporte"
79
 
80
+ #: inc/php/page.php:52
81
  msgid "Family"
82
  msgstr "Familia"
83
 
84
+ #: inc/php/page.php:69
85
  msgid ""
86
  "To display the social media follow buttons bar on the front end of your website, "
87
  "simply follow these steps:"
88
  msgstr ""
89
 
90
+ #: inc/php/page.php:71
91
  msgid "Go to the \"Settings\" tab."
92
  msgstr ""
93
 
94
+ #: inc/php/page.php:72
95
+ msgid "Fill in the required fields."
96
+ msgstr ""
97
+
98
+ #: inc/php/page.php:73
99
+ msgid "Select the desired settings."
100
+ msgstr ""
101
+
102
+ #: inc/php/page.php:74
103
+ msgid "Click the \"Save changes\" button."
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:75
107
  msgid ""
108
  "Now you have several methods for display the social media follow buttons bar "
109
  "(further just \"buttons\"). Just choose the one that is more suitable for your "
110
  "case."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:76
114
  msgid ""
115
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
116
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
117
+ "\"Display options\", then click the \"Save changes\" button."
118
  msgstr ""
119
 
120
+ #: inc/php/page.php:77
121
  msgid ""
122
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
123
  "following shortcode:"
125
  "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
126
  "Páginas de Wordpress usa el siguiente shortcode:"
127
 
128
+ #: inc/php/page.php:79
129
  msgid ""
130
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "
131
  "\"Text\" widget and add inside it the following shortcode:"
133
  "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
134
  "u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
135
 
136
+ #: inc/php/page.php:81
137
  msgid ""
138
  "<b>D)</b> For add the buttons directly to a theme files, just add the following "
139
  "code to needed place (where you want to display the buttons) in your theme files:"
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:84
143
  msgid "Enjoy your fancy social media follow buttons."
144
  msgstr ""
145
 
146
+ #: inc/php/page.php:84
147
  msgid "It's that simple!"
148
  msgstr ""
149
 
150
+ #: inc/php/page.php:86 inc/php/settings.php:463
151
  msgid "Note!"
152
  msgstr ""
153
 
154
+ #: inc/php/page.php:86
155
  msgid "If you want more options then tell me and I will be happy to add it."
156
  msgstr ""
157
 
158
+ #: inc/php/page.php:95
159
  msgid "Frequently Asked Questions"
160
  msgstr "Preguntas Frecuentes"
161
 
162
+ #: inc/php/page.php:99
163
+ msgid ""
164
+ "If you have a question, please read the Frequently Asked Questions below to see if "
165
+ "the answer is here."
166
+ msgstr ""
167
+
168
+ #: inc/php/page.php:121
169
  msgid "Will this plugin work on my WordPress.COM website?"
170
  msgstr ""
171
 
172
+ #: inc/php/page.php:122
173
  msgid ""
174
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
175
  "websites."
176
  msgstr ""
177
 
178
+ #: inc/php/page.php:124
179
  msgid "Can I use this plugin on my language?"
180
  msgstr ""
181
 
182
+ #: inc/php/page.php:126
183
  #, php-format
184
  msgid ""
185
+ "Yes. This plugin is ready for translation and has already been translated into "
186
+ "several languages. But If your language is not available then you can make one. "
187
+ "The POT file is included and placed in the <code>languages</code> folder. Just "
188
+ "send the PO file to me at the %s and I will include this translation within the "
189
+ "next plugin update. Many of plugin users would be delighted if you share your "
190
+ "translation with the community. Thanks for your contribution!"
191
  msgstr ""
192
 
193
+ #: inc/php/page.php:130
194
+ msgid ""
195
+ "Maybe not all existed translations are up to date. You are welcome to contribute "
196
+ "corrections!"
197
+ msgstr ""
198
+
199
+ #: inc/php/page.php:132
200
  msgid "How does it work?"
201
  msgstr ""
202
 
203
+ #: inc/php/page.php:133
204
  msgid ""
205
+ "On the \"Settings\" tab, select the desired settings and click the \"Save changes"
206
  "\" button. Enjoy your fancy social media follow buttons. It's that simple!"
207
  msgstr ""
208
 
209
+ #: inc/php/page.php:135
210
  msgid "Does this plugin requires any modification of the theme?"
211
  msgstr ""
212
 
213
+ #: inc/php/page.php:136
214
  msgid ""
215
  "Absolutely not. This plugin is configurable entirely from the plugin settings page."
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:138
219
  msgid "Does this require any knowledge of HTML or CSS?"
220
  msgstr ""
221
 
222
+ #: inc/php/page.php:139
223
  msgid ""
224
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, "
225
  "using an easy-to-use plugin settings page."
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:141
229
  msgid ""
230
  "What I need to do if the Google PageSpeed test says that this plugin images must "
231
  "be compressed?"
232
  msgstr ""
233
 
234
+ #: inc/php/page.php:142
235
  msgid ""
236
  "The images that uses in this plugin are already compressed, but I will do my best "
237
  "to find out what else can be done with the images in order to compress them even "
238
  "better."
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:144
242
  msgid "It's not working. What could be wrong?"
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:145
246
  msgid ""
247
  "As with every plugin, it's possible that things don't work. The most common reason "
248
  "for this is a web browser's cache. Every web browser stores a cache of the "
251
  "the problem."
252
  msgstr ""
253
 
254
+ #: inc/php/page.php:146
255
  msgid ""
256
  "It's impossible to tell what could be wrong exactly, but if you post a support "
257
  "request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
259
  "including a link to your website where the problem can be seen."
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:148
263
  msgid ""
264
  "The last WordPress update is preventing me from editing my website that is using "
265
  "this plugin. Why is this?"
266
  msgstr ""
267
 
268
+ #: inc/php/page.php:149
269
  msgid ""
270
  "This plugin can not cause such problem. More likely, the problem are related to "
271
  "the settings of the website. It could just be a cache, so please try to clear your "
274
  "login to the website, this too can help."
275
  msgstr ""
276
 
277
+ #: inc/php/page.php:151
278
  msgid "Where to report bug if found?"
279
  msgstr ""
280
 
281
+ #: inc/php/page.php:153
282
  #, php-format
283
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
284
  msgstr ""
285
 
286
+ #: inc/php/page.php:159
287
  msgid "Where to share any ideas or suggestions to make the plugin better?"
288
  msgstr ""
289
 
290
+ #: inc/php/page.php:161
291
  #, php-format
292
+ msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
 
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:166
296
  msgid "I love this plugin! Can I help somehow?"
297
  msgstr ""
298
 
299
+ #: inc/php/page.php:168
300
  #, php-format
301
  msgid ""
302
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click "
303
  "on the donate button, and thank you!"
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:174
307
+ msgid "My question wasn't answered here."
308
+ msgstr ""
309
+
310
+ #: inc/php/page.php:176
311
+ #, php-format
312
+ msgid ""
313
+ "You can ask your question on the plugin support page %s. But please keep in mind "
314
+ "that this plugin is free, and there is no a special support team, so I have no way "
315
+ "to answer everyone."
316
+ msgstr ""
317
+
318
  #: inc/php/settings.php:21
319
  msgid "About"
320
  msgstr "Acerca de"
327
  "Este plugin te permite añadir fácilmente una barra de botones de social media en "
328
  "cualquier parte de tu sitio web."
329
 
330
+ #: inc/php/settings.php:30 inc/php/settings.php:565
 
 
 
 
331
  msgid ""
332
  "I'm an independent developer, without a regular income, so every little "
333
  "contribution helps cover my costs and lets me spend more time building things for "
337
  "pequeña contribución me ayudará a cubrir mis gastos y me permitirá dedicar más "
338
  "tiempo a hacer cosas que puedan disfrutar personas como tú."
339
 
340
+ #: inc/php/settings.php:31 inc/php/settings.php:566
341
  msgid "Donate with PayPal"
342
  msgstr ""
343
 
344
+ #: inc/php/settings.php:32 inc/php/settings.php:567
345
  msgid "Thanks for your support!"
346
  msgstr "¡Gracias por su colaboración!"
347
 
348
+ #: inc/php/settings.php:37
349
  msgid "Help"
350
  msgstr "Ayuda"
351
 
352
+ #: inc/php/settings.php:39
353
+ msgid "If you have a question, please read the information in the FAQ section."
354
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
355
 
356
+ #: inc/php/settings.php:64
357
  msgid "Buttons"
358
  msgstr "Botones"
359
 
360
+ #: inc/php/settings.php:66
361
  msgid ""
362
  "Just fill in the required fields to make a buttons. The social networking buttons "
363
  "will lead directly to your profile pages. If you don't want to use any of the "
367
  "social conducirán directamente a tu página de perfil en esa red. Si no quieres "
368
  "usar alguno de los botones, sencillamente no lo llenes y no aparecerá."
369
 
370
+ #: inc/php/settings.php:73
371
  msgid "Enter the link to your Facebook profile page"
372
  msgstr "Ingresa el enlace a tu página de perfil de Facebook"
373
 
374
+ #: inc/php/settings.php:80
375
  msgid "Enter the link to your Twitter profile page"
376
  msgstr "Ingresa el enlace a tu página de perfil de Twitter"
377
 
378
+ #: inc/php/settings.php:87
379
  msgid "Enter the link to your Instagram profile page"
380
  msgstr "Ingresa el enlace a tu página de perfil de Instagram"
381
 
382
+ #: inc/php/settings.php:94
383
  msgid "Enter the link to your Google+ profile page"
384
  msgstr "Ingresa el enlace a tu página de perfil de Google+"
385
 
386
+ #: inc/php/settings.php:101
387
  msgid "Enter the link to your YouTube profile page"
388
  msgstr "Ingresa el enlace a tu página de perfil de Youtube"
389
 
390
+ #: inc/php/settings.php:108
391
  msgid "Enter the link to your YouTube Gaming profile page"
392
  msgstr "Ingresa el enlace a tu página de perfil de YouTube Gaming"
393
 
394
+ #: inc/php/settings.php:115
395
+ msgid "Enter the link to your iTunes profile page"
396
+ msgstr ""
397
+
398
+ #: inc/php/settings.php:122
399
+ msgid "Enter the link to your Apple Music profile page"
400
+ msgstr ""
401
+
402
+ #: inc/php/settings.php:129
403
  msgid "Enter the link to your Periscope profile page"
404
  msgstr "Ingresa el enlace a tu página de perfil de Periscope"
405
 
406
+ #: inc/php/settings.php:136
407
  msgid "Enter the link to your Vimeo profile page"
408
  msgstr "Ingresa el enlace a tu página de perfil de Vimeo"
409
 
410
+ #: inc/php/settings.php:143
411
  msgid "Enter the link to your Blogger profile page"
412
  msgstr "Ingresa el enlace a tu página de perfil de Blogger"
413
 
414
+ #: inc/php/settings.php:150
415
  msgid "Enter the link to your Buzzsprout profile page"
416
  msgstr "Ingresa el enlace a tu página de perfil de Buzzsprout"
417
 
418
+ #: inc/php/settings.php:157
419
  msgid "Enter the link to your LiveJournal profile page"
420
  msgstr "Ingresa el enlace a tu página de perfil de LiveJournal"
421
 
422
+ #: inc/php/settings.php:164
423
  msgid "Enter the link to your Reddit profile page"
424
  msgstr "Ingresa el enlace a tu página de perfil de Reddit"
425
 
426
+ #: inc/php/settings.php:171
427
  msgid "Enter the link to your LinkedIn profile page"
428
  msgstr "Ingresa el enlace a tu página de perfil de LinkedIn"
429
 
430
+ #: inc/php/settings.php:178
431
  msgid "Enter the link to your Diaspora profile page"
432
  msgstr "Ingresa el enlace a tu página de perfil de Diaspora"
433
 
434
+ #: inc/php/settings.php:185
435
  msgid "Enter the link to your DeviantArt profile page"
436
  msgstr "Ingresa el enlace a tu página de perfil de DeviantArt"
437
 
438
+ #: inc/php/settings.php:192
439
  msgid "Enter the link to your XING profile page"
440
  msgstr "Ingresa el enlace a tu página de perfil de XING"
441
 
442
+ #: inc/php/settings.php:199
443
  msgid "Enter the link to your Pinterest profile page"
444
  msgstr "Ingresa el enlace a tu página de perfil de Pinterest"
445
 
446
+ #: inc/php/settings.php:206
447
  msgid "Enter the link to your Flickr profile page"
448
  msgstr "Ingresa el enlace a tu página de perfil de Flickr"
449
 
450
+ #: inc/php/settings.php:213
451
  msgid "Enter the link to your Tumblr profile page"
452
  msgstr "Ingresa el enlace a tu página de perfil de Tumblr"
453
 
454
+ #: inc/php/settings.php:220
455
  msgid "Enter the link to your Snapchat profile page"
456
  msgstr "Ingresa el enlace a tu página de perfil de Snapchat"
457
 
458
+ #: inc/php/settings.php:227
459
  msgid "Enter the link to your Twitch profile page"
460
  msgstr "Ingresa el enlace a tu página de perfil de Twitch"
461
 
462
+ #: inc/php/settings.php:234
463
  msgid "Enter the link to your Patreon profile page"
464
  msgstr "Ingresa el enlace a tu página de perfil de Patreon"
465
 
466
+ #: inc/php/settings.php:241
467
  msgid "Enter the link to your IMDb profile page"
468
  msgstr "Ingresa el enlace a tu página de perfil de IMDb"
469
 
470
+ #: inc/php/settings.php:248
471
  msgid "Enter the link to your SoundCloud profile page"
472
  msgstr "Ingresa el enlace a tu página de perfil de SoundCloud"
473
 
474
+ #: inc/php/settings.php:255
475
  msgid "Enter the link to your Plug.dj profile page"
476
  msgstr "Ingresa el enlace a tu página de perfil de Plug.dj"
477
 
478
+ #: inc/php/settings.php:262
479
  msgid "Enter the link to your Spotify profile page"
480
  msgstr "Ingresa el enlace a tu página de perfil de Spotify"
481
 
482
+ #: inc/php/settings.php:269
483
  msgid "Enter the link to your Bandcamp profile page"
484
  msgstr "Ingresa el enlace a tu página de perfil de Bandcamp"
485
 
486
+ #: inc/php/settings.php:276
487
  msgid "Enter the link to your Dloky profile page"
488
  msgstr "Ingresa el enlace a tu página de perfil de Dloky"
489
 
490
+ #: inc/php/settings.php:283
491
  msgid "Enter the link to your Amazon profile page"
492
  msgstr "Ingresa el enlace a tu página de perfil de Amazon"
493
 
494
+ #: inc/php/settings.php:290
495
  msgid "Enter the link to your BookBub profile page"
496
  msgstr "Ingresa el enlace a tu página de perfil de BookBub"
497
 
498
+ #: inc/php/settings.php:297
499
  msgid "Enter the link to your Goodreads profile page"
500
  msgstr "Ingresa el enlace a tu página de perfil de Goodreads"
501
 
502
+ #: inc/php/settings.php:304
503
  msgid "Enter the link to your MeetVibe profile page"
504
  msgstr "Ingresa el enlace a tu página de perfil de MeetVibe"
505
 
506
+ #: inc/php/settings.php:311
507
  msgid "Enter the link to your Meetup profile page"
508
  msgstr "Ingresa el enlace a tu página de perfil de Meetup"
509
 
510
+ #: inc/php/settings.php:318
511
  msgid "Enter the link to your Steam profile page"
512
  msgstr "Ingresa el enlace a tu página de perfil de Steam"
513
 
514
+ #: inc/php/settings.php:325
515
  msgid "Enter the link to your Mixer profile page"
516
  msgstr "Ingresa el enlace a tu página de perfil de Mixer"
517
 
518
+ #: inc/php/settings.php:332
519
  msgid "Enter the link to your Discord profile page"
520
  msgstr "Ingresa el enlace a tu página de perfil de Discord"
521
 
522
+ #: inc/php/settings.php:339
523
  msgid "Enter the link to your Yelp profile page"
524
  msgstr "Ingresa el enlace a tu página de perfil de Yelp"
525
 
526
+ #: inc/php/settings.php:346
527
  msgid "Enter the link to your StumbleUpon profile page"
528
  msgstr "Ingresa el enlace a tu página de perfil de StumbleUpon"
529
 
530
+ #: inc/php/settings.php:353
531
  msgid "Enter the link to your Bloglovin profile page"
532
  msgstr "Ingresa el enlace a tu página de perfil de Bloglovin"
533
 
534
+ #: inc/php/settings.php:360
535
  msgid "Enter the link to your WhatsApp profile page"
536
  msgstr "Ingresa el enlace a tu página de perfil de WhatsApp"
537
 
538
+ #: inc/php/settings.php:367
539
+ msgid "Enter the link to your Medium profile page"
540
+ msgstr "Ingresa el enlace a tu página de perfil de Medium"
541
+
542
+ #: inc/php/settings.php:374
543
+ msgid "Enter the link to your 500px profile page"
544
+ msgstr "Ingresa el enlace a tu página de perfil de 500px"
545
+
546
+ #: inc/php/settings.php:381
547
  msgid "Enter the link to your LINE profile page"
548
  msgstr "Ingresa el enlace a tu página de perfil de LINE"
549
 
550
+ #: inc/php/settings.php:388
551
  msgid "Enter the link to your VKontakte profile page"
552
  msgstr "Ingresa el enlace a tu página de perfil de VKontakte"
553
 
554
+ #: inc/php/settings.php:395
555
  msgid "Enter the link to your Odnoklassniki profile page"
556
  msgstr "Ingresa el enlace a tu página de perfil de Odnoklassniki"
557
 
558
+ #: inc/php/settings.php:402
559
  msgid "Enter the link to your Telegram profile page"
560
  msgstr "Ingresa el enlace a tu página de perfil de Telegram"
561
 
562
+ #: inc/php/settings.php:409
563
  msgid "Enter the link to your GitHub profile page"
564
  msgstr "Ingresa el enlace a tu página de perfil de GitHub"
565
 
566
+ #: inc/php/settings.php:416
567
  msgid "Enter the link to your WordPress profile page"
568
  msgstr "Ingresa el enlace a tu página de perfil de WordPress"
569
 
570
+ #: inc/php/settings.php:423
571
  msgid "Enter the link to your CodePen profile page"
572
  msgstr "Ingresa el enlace a tu página de perfil de CodePen"
573
 
574
+ #: inc/php/settings.php:430
575
  msgid ""
576
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?"
577
  "add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
579
  "Ingresa tu nombre de Skype con prefijo <b>skype:</b> y sufijo <b>?call</b>, o <b>?"
580
  "add</b>, o <b>?chat</b>, o <b>?userinfo</b> para ver el perfil"
581
 
582
+ #: inc/php/settings.php:437
583
  msgid "Enter the link to your personal website"
584
  msgstr "Ingresa el enlace a tu sitio web personal"
585
 
586
+ #: inc/php/settings.php:444
587
  msgid "Enter your email address with prefix <b>mailto:</b>"
588
  msgstr "Ingresa tu dirección de correo electrónico con prefijo <b>mailto:</b>"
589
 
590
+ #: inc/php/settings.php:451
591
  msgid "Enter your telephone number with prefix <b>tel://</b>"
592
  msgstr ""
593
 
594
+ #: inc/php/settings.php:458
595
  msgid "Enter the link to your RSS Feed"
596
  msgstr "Ingresa el enlace a tu Feed de RSS"
597
 
598
+ #: inc/php/settings.php:463
599
  msgid ""
600
  "If you did not find the button you need, then tell me and I will gladly add it for "
601
  "you."
602
  msgstr ""
603
 
604
+ #: inc/php/settings.php:465 inc/php/settings.php:549
605
+ msgid "Save changes"
606
  msgstr "Guardar las modificaciones"
607
 
608
+ #: inc/php/settings.php:471
609
  msgid "Display options"
610
  msgstr "Opciones de presentación"
611
 
612
+ #: inc/php/settings.php:473
613
  msgid "There you can configure this plugin."
614
  msgstr ""
615
 
616
+ #: inc/php/settings.php:477
617
  msgid "Show on Posts"
618
  msgstr "Mostrar en Entradas"
619
 
620
+ #: inc/php/settings.php:478
621
  msgid "Display toolbar below content on Posts."
622
  msgstr "Mostrar la barra abajo del contenido en Entradas"
623
 
624
+ #: inc/php/settings.php:483
625
  msgid "Show on Pages"
626
  msgstr "Mostrar en Páginas"
627
 
628
+ #: inc/php/settings.php:484
629
  msgid "Display toolbar below content on Pages."
630
  msgstr "Mostrar la barra abajo del contenido en Páginas"
631
 
632
+ #: inc/php/settings.php:489
633
  msgid "Open in new tab"
634
  msgstr "Abrir en una nueva pestaña"
635
 
636
+ #: inc/php/settings.php:490
637
  msgid "Open link in a new tab/window."
638
  msgstr "¿Abrir enlace en una nueva pestaña/ventana?"
639
 
640
+ #: inc/php/settings.php:495
641
  msgid "Tooltips"
642
  msgstr ""
643
 
644
+ #: inc/php/settings.php:496
645
  msgid "Enable/disable a tooltips with name of the social media above every button."
646
  msgstr ""
647
 
648
+ #: inc/php/settings.php:501
649
  msgid "Icon size"
650
  msgstr "Tamaño de ícono"
651
 
652
+ #: inc/php/settings.php:502
653
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
654
  msgstr ""
655
  "Ingrese el tamaño de los íconos (en píxeles) en tu barra de botones Social Media"
656
 
657
+ #: inc/php/settings.php:509
658
  msgid "Margin"
659
  msgstr "Margen"
660
 
661
+ #: inc/php/settings.php:510
662
  msgid ""
663
  "Enter the size of space (in px) between icons in your social media follow buttons "
664
  "bar."
665
  msgstr ""
666
  "Ingresa el espacio (en píxeles) entre íconos en tu barra de botones de Social Media"
667
 
668
+ #: inc/php/settings.php:519
669
  msgid "Alignment"
670
  msgstr "Alineación"
671
 
672
+ #: inc/php/settings.php:525
673
  msgid "Left"
674
  msgstr "Izquierda"
675
 
676
+ #: inc/php/settings.php:529
677
  msgid "Center"
678
  msgstr "Centro"
679
 
680
+ #: inc/php/settings.php:533
681
  msgid "Right"
682
  msgstr "Derecha"
683
 
684
+ #: inc/php/settings.php:540
685
  msgid "Caption"
686
  msgstr "Leyenda"
687
 
688
+ #: inc/php/settings.php:541
689
  msgid ""
690
  "Enter the caption to your social media follow buttons bar. It will be displays "
691
  "before the toolbar."
693
  "Ingresa la leyenda para tu barra de botones de Social Media. Aparecerá arriba de "
694
  "la barra de botones."
695
 
696
+ #: inc/php/settings.php:555
697
  msgid "Preview"
698
  msgstr "Vista previa"
699
 
700
+ #: inc/php/settings.php:557
701
+ msgid "Click the \"Save changes\" button to update this preview."
702
  msgstr ""
703
 
704
  #. Plugin Name of the plugin/theme
735
  #~ msgid ""
736
  #~ "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
737
  #~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
738
+ #~ "section \"Display options\", then click \"Save changes\". It's that simple!"
739
  #~ msgstr ""
740
  #~ "<b>A)</b> Para mosrar la barra después del contenido de cada Entrada y/o de "
741
  #~ "cada Página, sólo marca la casilla \"Mostrar en Entradas\" y/o \"Mostrar en "
755
  #~ msgid ""
756
  #~ "You have several methods for display the social media follow buttons bar "
757
  #~ "(further just \"bar\") on your website. But first, fill in the required fields, "
758
+ #~ "then click \"Save changes\"."
759
  #~ msgstr ""
760
  #~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
761
  #~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
768
  #~ "¡Es así de simple! Si desea más opciones entonces Dile y yo estaremos "
769
  #~ "encantados de añadirlo."
770
 
771
+ #~ msgid "Click \"Save changes\" to update this preview."
772
  #~ msgstr ""
773
  #~ "Haz clic en \"Guardar los cambios\" para actualizar esta previsualización."
774
 
782
  #~ msgid ""
783
  #~ "You have several methods for display the social media follow buttons bar "
784
  #~ "(further just \"toolbar\") on your website. But first, fill in the required "
785
+ #~ "fields, then click \"Save changes\"."
786
  #~ msgstr ""
787
  #~ "Tienes varios métodos para mostrar la barra de botones de social media (en "
788
  #~ "adelante, la llamaremos sencillamente \"barra\") en tu sitio web. Pero primero, "
791
  #~ msgid ""
792
  #~ "<b>A)</b> For display the toolbar below content on every Posts or/and Pages, "
793
  #~ "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the "
794
+ #~ "section \"Display options\", then click \"Save changes\". It's that simple!"
795
  #~ msgstr ""
796
  #~ "<b>A)</b> Para mosrar la barra después del contenido de cada Entrada y/o de "
797
  #~ "cada Página, sólo marca la casilla \"Mostrar en Entradas\" y/o \"Mostrar en "
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-06-04 20:38+0300\n"
5
- "PO-Revision-Date: 2017-06-04 20:38+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: inc/php/core.php:31 inc/php/page.php:40
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
@@ -50,108 +50,124 @@ msgstr "Вы установили устаревшую версию этого
50
  msgid "Please update the plugin to the latest version, and all will be fine."
51
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
52
 
53
- #: inc/php/page.php:28
54
  #, php-format
55
  msgid "by %s Arthur Gareginyan %s"
56
  msgstr "от %s Артура Гарегинян %s"
57
 
58
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
59
  msgid "Usage"
60
  msgstr "Применение"
61
 
62
- #: inc/php/page.php:42
63
  msgid "F.A.Q."
64
  msgstr "F.A.Q."
65
 
66
- #: inc/php/page.php:43 inc/php/page.php:169
67
  msgid "Author"
68
  msgstr "Автор"
69
 
70
- #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:29
71
- #: inc/php/settings.php:535
72
  msgid "Support"
73
  msgstr "Поддержка"
74
 
75
- #: inc/php/page.php:45
76
  msgid "Family"
77
  msgstr "Семья"
78
 
79
- #: inc/php/page.php:62
80
  msgid ""
81
  "To display the social media follow buttons bar on the front end of your "
82
  "website, simply follow these steps:"
83
  msgstr ""
84
 
85
- #: inc/php/page.php:64
86
  msgid "Go to the \"Settings\" tab."
87
  msgstr "Перейдите на вкладку «Настройки»."
88
 
89
- #: inc/php/page.php:65
90
- msgid ""
91
- "Fill in the required fields, select the desired settings and click the "
92
- "\"Save Changes\" button."
93
- msgstr ""
 
 
94
 
95
- #: inc/php/page.php:66
 
 
 
 
96
  msgid ""
97
  "Now you have several methods for display the social media follow buttons bar "
98
  "(further just \"buttons\"). Just choose the one that is more suitable for "
99
  "your case."
100
  msgstr ""
101
 
102
- #: inc/php/page.php:67
103
  msgid ""
104
  "<b>A)</b> For display the buttons below a content on every Posts or/and "
105
  "Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in "
106
- "the section \"Display options\", then click the \"Save Changes\" button."
107
  msgstr ""
108
 
109
- #: inc/php/page.php:68
110
  msgid ""
111
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
112
  "following shortcode:"
113
  msgstr ""
114
 
115
- #: inc/php/page.php:70
116
  msgid ""
117
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) "
118
  "use the \"Text\" widget and add inside it the following shortcode:"
119
  msgstr ""
120
 
121
- #: inc/php/page.php:72
122
  msgid ""
123
  "<b>D)</b> For add the buttons directly to a theme files, just add the "
124
  "following code to needed place (where you want to display the buttons) in "
125
  "your theme files:"
126
  msgstr ""
127
 
128
- #: inc/php/page.php:75
129
  msgid "Enjoy your fancy social media follow buttons."
130
  msgstr ""
131
 
132
- #: inc/php/page.php:75
133
  msgid "It's that simple!"
134
  msgstr "Вот так просто!"
135
 
136
- #: inc/php/page.php:77 inc/php/settings.php:437
137
  msgid "Note!"
138
  msgstr "Примечание!"
139
 
140
- #: inc/php/page.php:77
141
  msgid "If you want more options then tell me and I will be happy to add it."
142
  msgstr ""
143
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
144
  "добавить их."
145
 
146
- #: inc/php/page.php:86
147
  msgid "Frequently Asked Questions"
148
  msgstr "Частые вопросы"
149
 
150
- #: inc/php/page.php:108
 
 
 
 
 
 
151
  msgid "Will this plugin work on my WordPress.COM website?"
152
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
153
 
154
- #: inc/php/page.php:109
155
  msgid ""
156
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
157
  "websites."
@@ -159,37 +175,44 @@ msgstr ""
159
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
160
  "размещённых веб-сайтах (WordPress.ORG)."
161
 
162
- #: inc/php/page.php:111
163
  msgid "Can I use this plugin on my language?"
164
  msgstr "Можно ли использовать этот плагин на моём языке?"
165
 
166
- #: inc/php/page.php:113
167
  #, php-format
168
  msgid ""
169
- "Yes. But If your language is not available then you can make one. This "
170
- "plugin is ready for translation. The<code>.pot</code>file is included and "
171
- "placed in the <code>languages</code> folder. Many of plugin users would be "
172
- "delighted if you shared your translation with the community. Just send the "
173
- "translation files (<code>*.po, *.mo</code>) to me at the %s and I will "
174
- "include the translation within the next plugin update."
 
 
 
 
 
 
 
175
  msgstr ""
176
 
177
- #: inc/php/page.php:118
178
  msgid "How does it work?"
179
  msgstr "Как оно работает?"
180
 
181
- #: inc/php/page.php:119
182
  msgid ""
183
  "On the \"Settings\" tab, select the desired settings and click the \"Save "
184
- "Changes\" button. Enjoy your fancy social media follow buttons. It's that "
185
  "simple!"
186
  msgstr ""
187
 
188
- #: inc/php/page.php:121
189
  msgid "Does this plugin requires any modification of the theme?"
190
  msgstr "Этот плагин требует изменения темы?"
191
 
192
- #: inc/php/page.php:122
193
  msgid ""
194
  "Absolutely not. This plugin is configurable entirely from the plugin "
195
  "settings page."
@@ -197,11 +220,11 @@ msgstr ""
197
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
198
  "плагина."
199
 
200
- #: inc/php/page.php:124
201
  msgid "Does this require any knowledge of HTML or CSS?"
202
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
203
 
204
- #: inc/php/page.php:125
205
  msgid ""
206
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
207
  "CSS, using an easy-to-use plugin settings page."
@@ -209,24 +232,24 @@ msgstr ""
209
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
210
  "помощью простой в использовании страницы настройки плагина."
211
 
212
- #: inc/php/page.php:127
213
  msgid ""
214
  "What I need to do if the Google PageSpeed test says that this plugin images "
215
  "must be compressed?"
216
  msgstr ""
217
 
218
- #: inc/php/page.php:128
219
  msgid ""
220
  "The images that uses in this plugin are already compressed, but I will do my "
221
  "best to find out what else can be done with the images in order to compress "
222
  "them even better."
223
  msgstr ""
224
 
225
- #: inc/php/page.php:130
226
  msgid "It's not working. What could be wrong?"
227
  msgstr "Оно не работает. Что может быть не так?"
228
 
229
- #: inc/php/page.php:131
230
  msgid ""
231
  "As with every plugin, it's possible that things don't work. The most common "
232
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -235,7 +258,7 @@ msgid ""
235
  "browser's cache may solve the problem."
236
  msgstr ""
237
 
238
- #: inc/php/page.php:132
239
  msgid ""
240
  "It's impossible to tell what could be wrong exactly, but if you post a "
241
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -243,13 +266,13 @@ msgid ""
243
  "possible, including a link to your website where the problem can be seen."
244
  msgstr ""
245
 
246
- #: inc/php/page.php:134
247
  msgid ""
248
  "The last WordPress update is preventing me from editing my website that is "
249
  "using this plugin. Why is this?"
250
  msgstr ""
251
 
252
- #: inc/php/page.php:135
253
  msgid ""
254
  "This plugin can not cause such problem. More likely, the problem are related "
255
  "to the settings of the website. It could just be a cache, so please try to "
@@ -258,39 +281,50 @@ msgid ""
258
  "please try to re-login to the website, this too can help."
259
  msgstr ""
260
 
261
- #: inc/php/page.php:137
262
  msgid "Where to report bug if found?"
263
  msgstr "Где можно сообщить об ошибке?"
264
 
265
- #: inc/php/page.php:139
266
  #, php-format
267
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
268
  msgstr ""
269
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
270
 
271
- #: inc/php/page.php:145
272
  msgid "Where to share any ideas or suggestions to make the plugin better?"
273
  msgstr ""
274
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
275
 
276
- #: inc/php/page.php:147
277
  #, php-format
278
  msgid ""
279
- "Any suggestions are very welcome! Please send me an email to %s "
280
- "arthurgareginyan@gmail.com %s. Thank you!"
281
  msgstr ""
282
 
283
- #: inc/php/page.php:153
284
  msgid "I love this plugin! Can I help somehow?"
285
  msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
286
 
287
- #: inc/php/page.php:155
288
  #, php-format
289
  msgid ""
290
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
291
  "click on the donate button, and thank you!"
292
  msgstr ""
293
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  #: inc/php/settings.php:21
295
  msgid "About"
296
  msgstr "О плагине"
@@ -303,11 +337,7 @@ msgstr ""
303
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
304
  "место на вашем веб-сайте."
305
 
306
- #: inc/php/settings.php:24
307
- msgid "Version"
308
- msgstr "Версия"
309
-
310
- #: inc/php/settings.php:31 inc/php/settings.php:537
311
  msgid ""
312
  "I'm an independent developer, without a regular income, so every little "
313
  "contribution helps cover my costs and lets me spend more time building "
@@ -317,27 +347,27 @@ msgstr ""
317
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
318
  "создание программ для людей как вы."
319
 
320
- #: inc/php/settings.php:32 inc/php/settings.php:538
321
  msgid "Donate with PayPal"
322
  msgstr ""
323
 
324
- #: inc/php/settings.php:33 inc/php/settings.php:539
325
  msgid "Thanks for your support!"
326
  msgstr "Спасибо за вашу поддержку!"
327
 
328
- #: inc/php/settings.php:38
329
  msgid "Help"
330
  msgstr "Помощь"
331
 
332
- #: inc/php/settings.php:40
333
- msgid "Got something to say? Need help?"
334
  msgstr "Есть что сказать? Нужна помощь?"
335
 
336
- #: inc/php/settings.php:66
337
  msgid "Buttons"
338
  msgstr "Кнопки"
339
 
340
- #: inc/php/settings.php:68
341
  msgid ""
342
  "Just fill in the required fields to make a buttons. The social networking "
343
  "buttons will lead directly to your profile pages. If you don't want to use "
@@ -349,195 +379,211 @@ msgstr ""
349
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
350
  "и тогда они не появятся."
351
 
352
- #: inc/php/settings.php:75
353
  msgid "Enter the link to your Facebook profile page"
354
  msgstr "Введите ссылку на вашу страницу профиля Facebook"
355
 
356
- #: inc/php/settings.php:82
357
  msgid "Enter the link to your Twitter profile page"
358
  msgstr "Введите ссылку на вашу страницу профиля Twitter"
359
 
360
- #: inc/php/settings.php:89
361
  msgid "Enter the link to your Instagram profile page"
362
  msgstr "Введите ссылку на вашу страницу профиля Instagram"
363
 
364
- #: inc/php/settings.php:96
365
  msgid "Enter the link to your Google+ profile page"
366
  msgstr "Введите ссылку на вашу страницу профиля Google+"
367
 
368
- #: inc/php/settings.php:103
369
  msgid "Enter the link to your YouTube profile page"
370
  msgstr "Введите ссылку на вашу страницу профиля YouTube"
371
 
372
- #: inc/php/settings.php:110
373
  msgid "Enter the link to your YouTube Gaming profile page"
374
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
375
 
376
- #: inc/php/settings.php:117
 
 
 
 
 
 
 
 
377
  msgid "Enter the link to your Periscope profile page"
378
  msgstr "Введите ссылку на вашу страницу профиля Periscope"
379
 
380
- #: inc/php/settings.php:124
381
  msgid "Enter the link to your Vimeo profile page"
382
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
383
 
384
- #: inc/php/settings.php:131
385
  msgid "Enter the link to your Blogger profile page"
386
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
387
 
388
- #: inc/php/settings.php:138
389
  msgid "Enter the link to your Buzzsprout profile page"
390
  msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
391
 
392
- #: inc/php/settings.php:145
393
  msgid "Enter the link to your LiveJournal profile page"
394
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
395
 
396
- #: inc/php/settings.php:152
397
  msgid "Enter the link to your Reddit profile page"
398
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
399
 
400
- #: inc/php/settings.php:159
401
  msgid "Enter the link to your LinkedIn profile page"
402
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
403
 
404
- #: inc/php/settings.php:166
405
  msgid "Enter the link to your Diaspora profile page"
406
  msgstr "Введите ссылку на вашу страницу профиля Diaspora"
407
 
408
- #: inc/php/settings.php:173
409
  msgid "Enter the link to your DeviantArt profile page"
410
  msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
411
 
412
- #: inc/php/settings.php:180
413
  msgid "Enter the link to your XING profile page"
414
  msgstr "Введите ссылку на вашу страницу профиля XING"
415
 
416
- #: inc/php/settings.php:187
417
  msgid "Enter the link to your Pinterest profile page"
418
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
419
 
420
- #: inc/php/settings.php:194
421
  msgid "Enter the link to your Flickr profile page"
422
  msgstr "Введите ссылку на вашу страницу профиля Flickr"
423
 
424
- #: inc/php/settings.php:201
425
  msgid "Enter the link to your Tumblr profile page"
426
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
427
 
428
- #: inc/php/settings.php:208
429
  msgid "Enter the link to your Snapchat profile page"
430
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
431
 
432
- #: inc/php/settings.php:215
433
  msgid "Enter the link to your Twitch profile page"
434
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
435
 
436
- #: inc/php/settings.php:222
437
  msgid "Enter the link to your Patreon profile page"
438
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
439
 
440
- #: inc/php/settings.php:229
441
  msgid "Enter the link to your IMDb profile page"
442
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
443
 
444
- #: inc/php/settings.php:236
445
  msgid "Enter the link to your SoundCloud profile page"
446
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
447
 
448
- #: inc/php/settings.php:243
449
  msgid "Enter the link to your Plug.dj profile page"
450
  msgstr "Введите ссылку на вашу страницу профиля Plug.dj"
451
 
452
- #: inc/php/settings.php:250
453
  msgid "Enter the link to your Spotify profile page"
454
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
455
 
456
- #: inc/php/settings.php:257
457
  msgid "Enter the link to your Bandcamp profile page"
458
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
459
 
460
- #: inc/php/settings.php:264
461
  msgid "Enter the link to your Dloky profile page"
462
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
463
 
464
- #: inc/php/settings.php:271
465
  msgid "Enter the link to your Amazon profile page"
466
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
467
 
468
- #: inc/php/settings.php:278
469
  msgid "Enter the link to your BookBub profile page"
470
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
471
 
472
- #: inc/php/settings.php:285
473
  msgid "Enter the link to your Goodreads profile page"
474
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
475
 
476
- #: inc/php/settings.php:292
477
  msgid "Enter the link to your MeetVibe profile page"
478
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
479
 
480
- #: inc/php/settings.php:299
481
  msgid "Enter the link to your Meetup profile page"
482
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
483
 
484
- #: inc/php/settings.php:306
485
  msgid "Enter the link to your Steam profile page"
486
  msgstr "Введите ссылку на вашу страницу профиля Steam"
487
 
488
- #: inc/php/settings.php:313
489
  msgid "Enter the link to your Mixer profile page"
490
  msgstr "Введите ссылку на вашу страницу профиля Mixer"
491
 
492
- #: inc/php/settings.php:320
493
  msgid "Enter the link to your Discord profile page"
494
  msgstr "Введите ссылку на вашу страницу профиля Discord"
495
 
496
- #: inc/php/settings.php:327
497
  msgid "Enter the link to your Yelp profile page"
498
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
499
 
500
- #: inc/php/settings.php:334
501
  msgid "Enter the link to your StumbleUpon profile page"
502
  msgstr "Введите ссылку на вашу страницу профиля StumbleUpon"
503
 
504
- #: inc/php/settings.php:341
505
  msgid "Enter the link to your Bloglovin profile page"
506
  msgstr "Введите ссылку на вашу страницу профиля Bloglovin"
507
 
508
- #: inc/php/settings.php:348
509
  msgid "Enter the link to your WhatsApp profile page"
510
  msgstr "Введите ссылку на вашу страницу профиля WhatsApp"
511
 
512
- #: inc/php/settings.php:355
 
 
 
 
 
 
 
 
513
  msgid "Enter the link to your LINE profile page"
514
  msgstr "Введите ссылку на вашу страницу профиля LINE"
515
 
516
- #: inc/php/settings.php:362
517
  msgid "Enter the link to your VKontakte profile page"
518
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
519
 
520
- #: inc/php/settings.php:369
521
  msgid "Enter the link to your Odnoklassniki profile page"
522
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
523
 
524
- #: inc/php/settings.php:376
525
  msgid "Enter the link to your Telegram profile page"
526
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
527
 
528
- #: inc/php/settings.php:383
529
  msgid "Enter the link to your GitHub profile page"
530
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
531
 
532
- #: inc/php/settings.php:390
533
  msgid "Enter the link to your WordPress profile page"
534
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
535
 
536
- #: inc/php/settings.php:397
537
  msgid "Enter the link to your CodePen profile page"
538
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
539
 
540
- #: inc/php/settings.php:404
541
  msgid ""
542
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
543
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
@@ -546,116 +592,116 @@ msgstr ""
546
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
547
  "профиля"
548
 
549
- #: inc/php/settings.php:411
550
  msgid "Enter the link to your personal website"
551
  msgstr "Введите ссылку на ваш персональный сайт"
552
 
553
- #: inc/php/settings.php:418
554
  msgid "Enter your email address with prefix <b>mailto:</b>"
555
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
556
 
557
- #: inc/php/settings.php:425
558
  msgid "Enter your telephone number with prefix <b>tel://</b>"
559
  msgstr "Введите номер телефона с префиксом <b>tel://</b>"
560
 
561
- #: inc/php/settings.php:432
562
  msgid "Enter the link to your RSS Feed"
563
  msgstr "Введите ссылку на ваш RSS поток"
564
 
565
- #: inc/php/settings.php:437
566
  msgid ""
567
  "If you did not find the button you need, then tell me and I will gladly add "
568
  "it for you."
569
  msgstr ""
570
 
571
- #: inc/php/settings.php:438 inc/php/settings.php:521
572
- msgid "Save Changes"
573
  msgstr "Сохранить изменения"
574
 
575
- #: inc/php/settings.php:443
576
  msgid "Display options"
577
  msgstr "Настройки отображения"
578
 
579
- #: inc/php/settings.php:445
580
  msgid "There you can configure this plugin."
581
  msgstr "Здесь вы можете настроить этот плагин."
582
 
583
- #: inc/php/settings.php:449
584
  msgid "Show on Posts"
585
  msgstr "Показать в записях"
586
 
587
- #: inc/php/settings.php:450
588
  msgid "Display toolbar below content on Posts."
589
  msgstr "Показывать кнопки под содержанием в записях"
590
 
591
- #: inc/php/settings.php:455
592
  msgid "Show on Pages"
593
  msgstr "Показывать на страницах"
594
 
595
- #: inc/php/settings.php:456
596
  msgid "Display toolbar below content on Pages."
597
  msgstr "Показывать кнопки под содержанием на страницах"
598
 
599
- #: inc/php/settings.php:461
600
  msgid "Open in new tab"
601
  msgstr "Открыть в новой вкладке"
602
 
603
- #: inc/php/settings.php:462
604
  msgid "Open link in a new tab/window."
605
  msgstr "Открыть ссылку в новом окне/вкладке"
606
 
607
- #: inc/php/settings.php:467
608
  msgid "Tooltips"
609
  msgstr "Подсказки"
610
 
611
- #: inc/php/settings.php:468
612
  msgid ""
613
  "Enable/disable a tooltips with name of the social media above every button."
614
  msgstr ""
615
  "Включить/отключить всплывающие подсказки с названием социальных медиа над "
616
  "каждой кнопкой."
617
 
618
- #: inc/php/settings.php:473
619
  msgid "Icon size"
620
  msgstr "Размер иконки"
621
 
622
- #: inc/php/settings.php:474
623
  msgid ""
624
  "Enter the size of icons (in px) in your social media follow buttons bar."
625
  msgstr ""
626
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
627
 
628
- #: inc/php/settings.php:481
629
  msgid "Margin"
630
  msgstr "Отступ"
631
 
632
- #: inc/php/settings.php:482
633
  msgid ""
634
  "Enter the size of space (in px) between icons in your social media follow "
635
  "buttons bar."
636
  msgstr ""
637
 
638
- #: inc/php/settings.php:491
639
  msgid "Alignment"
640
  msgstr "Выравнивание"
641
 
642
- #: inc/php/settings.php:497
643
  msgid "Left"
644
  msgstr "Слева"
645
 
646
- #: inc/php/settings.php:501
647
  msgid "Center"
648
  msgstr "По центру"
649
 
650
- #: inc/php/settings.php:505
651
  msgid "Right"
652
  msgstr "Справа"
653
 
654
- #: inc/php/settings.php:512
655
  msgid "Caption"
656
  msgstr "Заголовок"
657
 
658
- #: inc/php/settings.php:513
659
  msgid ""
660
  "Enter the caption to your social media follow buttons bar. It will be "
661
  "displays before the toolbar."
@@ -663,12 +709,12 @@ msgstr ""
663
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
664
  "над панелью."
665
 
666
- #: inc/php/settings.php:527
667
  msgid "Preview"
668
  msgstr "Предварительный просмотр"
669
 
670
- #: inc/php/settings.php:529
671
- msgid "Click the \"Save Changes\" button to update this preview."
672
  msgstr ""
673
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
674
 
@@ -694,6 +740,9 @@ msgstr "Артур Гарегинян"
694
  msgid "http://www.arthurgareginyan.com"
695
  msgstr "http://www.arthurgareginyan.com"
696
 
 
 
 
697
  #~ msgid "Thank you for installing my plugin! I hope you will love it %s"
698
  #~ msgstr ""
699
  #~ "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
@@ -714,7 +763,7 @@ msgstr "http://www.arthurgareginyan.com"
714
  #~ msgid ""
715
  #~ "You have several methods for display the social media follow buttons bar "
716
  #~ "(further just \"bar\") on your website. But first, fill in the required "
717
- #~ "fields, then click \"Save Changes\"."
718
  #~ msgstr ""
719
  #~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
720
  #~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
@@ -728,7 +777,7 @@ msgstr "http://www.arthurgareginyan.com"
728
  #~ "Это так просто! Если вы хотите иметь больше опций, то скажите мне об этом "
729
  #~ "и я буду счастлив добавить их."
730
 
731
- #~ msgid "Click \"Save Changes\" to update this preview."
732
  #~ msgstr ""
733
  #~ "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
734
 
@@ -742,7 +791,7 @@ msgstr "http://www.arthurgareginyan.com"
742
  #~ msgid ""
743
  #~ "You have several methods for display the social media follow buttons bar "
744
  #~ "(further just \"toolbar\") on your website. But first, fill in the "
745
- #~ "required fields, then click \"Save Changes\"."
746
  #~ msgstr ""
747
  #~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
748
  #~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
@@ -815,7 +864,7 @@ msgstr "http://www.arthurgareginyan.com"
815
  #~ "них."
816
 
817
  #~ msgid ""
818
- #~ "Enter your User ID's, then click \"Save Changes\" to update this preview."
819
  #~ msgstr ""
820
  #~ "Введите ваши ID пользователя, а затем нажмите кнопку “Сохранить "
821
  #~ "изменения”, чтобы обновить этот просмотр."
@@ -823,7 +872,7 @@ msgstr "http://www.arthurgareginyan.com"
823
  #~ msgid ""
824
  #~ "You have several methods for display the social media follow buttons bar "
825
  #~ "(further just \"toolbar\") on your website. But first, enter a links for "
826
- #~ "each buttons, then click \"Save Changes\"."
827
  #~ msgstr ""
828
  #~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
829
  #~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
@@ -878,7 +927,7 @@ msgstr "http://www.arthurgareginyan.com"
878
  #~ "место на вашем веб-сайте."
879
 
880
  #~ msgid ""
881
- #~ "To use, enter your User ID's, then click \"Save Changes\". It's that "
882
  #~ "simple!"
883
  #~ msgstr ""
884
  #~ "Для использования, введите ваши ID пользователя, затем нажмите кнопку "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
+ "POT-Creation-Date: 2017-06-16 03:36+0300\n"
5
+ "PO-Revision-Date: 2017-06-16 03:36+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: inc/php/core.php:31 inc/php/page.php:47
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
50
  msgid "Please update the plugin to the latest version, and all will be fine."
51
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
52
 
53
+ #: inc/php/page.php:34
54
  #, php-format
55
  msgid "by %s Arthur Gareginyan %s"
56
  msgstr "от %s Артура Гарегинян %s"
57
 
58
+ #: inc/php/page.php:40
59
+ msgid "Version"
60
+ msgstr "Версия"
61
+
62
+ #: inc/php/page.php:48 inc/php/page.php:67
63
  msgid "Usage"
64
  msgstr "Применение"
65
 
66
+ #: inc/php/page.php:49
67
  msgid "F.A.Q."
68
  msgstr "F.A.Q."
69
 
70
+ #: inc/php/page.php:50 inc/php/page.php:189
71
  msgid "Author"
72
  msgstr "Автор"
73
 
74
+ #: inc/php/page.php:51 inc/php/page.php:198 inc/php/settings.php:28
75
+ #: inc/php/settings.php:563
76
  msgid "Support"
77
  msgstr "Поддержка"
78
 
79
+ #: inc/php/page.php:52
80
  msgid "Family"
81
  msgstr "Семья"
82
 
83
+ #: inc/php/page.php:69
84
  msgid ""
85
  "To display the social media follow buttons bar on the front end of your "
86
  "website, simply follow these steps:"
87
  msgstr ""
88
 
89
+ #: inc/php/page.php:71
90
  msgid "Go to the \"Settings\" tab."
91
  msgstr "Перейдите на вкладку «Настройки»."
92
 
93
+ #: inc/php/page.php:72
94
+ msgid "Fill in the required fields."
95
+ msgstr "Заполните необходимые поля."
96
+
97
+ #: inc/php/page.php:73
98
+ msgid "Select the desired settings."
99
+ msgstr "Выберите нужные настройки."
100
 
101
+ #: inc/php/page.php:74
102
+ msgid "Click the \"Save changes\" button."
103
+ msgstr "Нажмите кнопку «Сохранить изменения»."
104
+
105
+ #: inc/php/page.php:75
106
  msgid ""
107
  "Now you have several methods for display the social media follow buttons bar "
108
  "(further just \"buttons\"). Just choose the one that is more suitable for "
109
  "your case."
110
  msgstr ""
111
 
112
+ #: inc/php/page.php:76
113
  msgid ""
114
  "<b>A)</b> For display the buttons below a content on every Posts or/and "
115
  "Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in "
116
+ "the section \"Display options\", then click the \"Save changes\" button."
117
  msgstr ""
118
 
119
+ #: inc/php/page.php:77
120
  msgid ""
121
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
122
  "following shortcode:"
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:79
126
  msgid ""
127
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) "
128
  "use the \"Text\" widget and add inside it the following shortcode:"
129
  msgstr ""
130
 
131
+ #: inc/php/page.php:81
132
  msgid ""
133
  "<b>D)</b> For add the buttons directly to a theme files, just add the "
134
  "following code to needed place (where you want to display the buttons) in "
135
  "your theme files:"
136
  msgstr ""
137
 
138
+ #: inc/php/page.php:84
139
  msgid "Enjoy your fancy social media follow buttons."
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:84
143
  msgid "It's that simple!"
144
  msgstr "Вот так просто!"
145
 
146
+ #: inc/php/page.php:86 inc/php/settings.php:463
147
  msgid "Note!"
148
  msgstr "Примечание!"
149
 
150
+ #: inc/php/page.php:86
151
  msgid "If you want more options then tell me and I will be happy to add it."
152
  msgstr ""
153
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
154
  "добавить их."
155
 
156
+ #: inc/php/page.php:95
157
  msgid "Frequently Asked Questions"
158
  msgstr "Частые вопросы"
159
 
160
+ #: inc/php/page.php:99
161
+ msgid ""
162
+ "If you have a question, please read the Frequently Asked Questions below to "
163
+ "see if the answer is here."
164
+ msgstr ""
165
+
166
+ #: inc/php/page.php:121
167
  msgid "Will this plugin work on my WordPress.COM website?"
168
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
169
 
170
+ #: inc/php/page.php:122
171
  msgid ""
172
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
173
  "websites."
175
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
176
  "размещённых веб-сайтах (WordPress.ORG)."
177
 
178
+ #: inc/php/page.php:124
179
  msgid "Can I use this plugin on my language?"
180
  msgstr "Можно ли использовать этот плагин на моём языке?"
181
 
182
+ #: inc/php/page.php:126
183
  #, php-format
184
  msgid ""
185
+ "Yes. This plugin is ready for translation and has already been translated "
186
+ "into several languages. But If your language is not available then you can "
187
+ "make one. The POT file is included and placed in the <code>languages</code> "
188
+ "folder. Just send the PO file to me at the %s and I will include this "
189
+ "translation within the next plugin update. Many of plugin users would be "
190
+ "delighted if you share your translation with the community. Thanks for your "
191
+ "contribution!"
192
+ msgstr ""
193
+
194
+ #: inc/php/page.php:130
195
+ msgid ""
196
+ "Maybe not all existed translations are up to date. You are welcome to "
197
+ "contribute corrections!"
198
  msgstr ""
199
 
200
+ #: inc/php/page.php:132
201
  msgid "How does it work?"
202
  msgstr "Как оно работает?"
203
 
204
+ #: inc/php/page.php:133
205
  msgid ""
206
  "On the \"Settings\" tab, select the desired settings and click the \"Save "
207
+ "changes\" button. Enjoy your fancy social media follow buttons. It's that "
208
  "simple!"
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:135
212
  msgid "Does this plugin requires any modification of the theme?"
213
  msgstr "Этот плагин требует изменения темы?"
214
 
215
+ #: inc/php/page.php:136
216
  msgid ""
217
  "Absolutely not. This plugin is configurable entirely from the plugin "
218
  "settings page."
220
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
221
  "плагина."
222
 
223
+ #: inc/php/page.php:138
224
  msgid "Does this require any knowledge of HTML or CSS?"
225
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
226
 
227
+ #: inc/php/page.php:139
228
  msgid ""
229
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
230
  "CSS, using an easy-to-use plugin settings page."
232
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
233
  "помощью простой в использовании страницы настройки плагина."
234
 
235
+ #: inc/php/page.php:141
236
  msgid ""
237
  "What I need to do if the Google PageSpeed test says that this plugin images "
238
  "must be compressed?"
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:142
242
  msgid ""
243
  "The images that uses in this plugin are already compressed, but I will do my "
244
  "best to find out what else can be done with the images in order to compress "
245
  "them even better."
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:144
249
  msgid "It's not working. What could be wrong?"
250
  msgstr "Оно не работает. Что может быть не так?"
251
 
252
+ #: inc/php/page.php:145
253
  msgid ""
254
  "As with every plugin, it's possible that things don't work. The most common "
255
  "reason for this is a web browser's cache. Every web browser stores a cache "
258
  "browser's cache may solve the problem."
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:146
262
  msgid ""
263
  "It's impossible to tell what could be wrong exactly, but if you post a "
264
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
266
  "possible, including a link to your website where the problem can be seen."
267
  msgstr ""
268
 
269
+ #: inc/php/page.php:148
270
  msgid ""
271
  "The last WordPress update is preventing me from editing my website that is "
272
  "using this plugin. Why is this?"
273
  msgstr ""
274
 
275
+ #: inc/php/page.php:149
276
  msgid ""
277
  "This plugin can not cause such problem. More likely, the problem are related "
278
  "to the settings of the website. It could just be a cache, so please try to "
281
  "please try to re-login to the website, this too can help."
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:151
285
  msgid "Where to report bug if found?"
286
  msgstr "Где можно сообщить об ошибке?"
287
 
288
+ #: inc/php/page.php:153
289
  #, php-format
290
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
291
  msgstr ""
292
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
293
 
294
+ #: inc/php/page.php:159
295
  msgid "Where to share any ideas or suggestions to make the plugin better?"
296
  msgstr ""
297
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
298
 
299
+ #: inc/php/page.php:161
300
  #, php-format
301
  msgid ""
302
+ "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
303
  msgstr ""
304
 
305
+ #: inc/php/page.php:166
306
  msgid "I love this plugin! Can I help somehow?"
307
  msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
308
 
309
+ #: inc/php/page.php:168
310
  #, php-format
311
  msgid ""
312
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
313
  "click on the donate button, and thank you!"
314
  msgstr ""
315
 
316
+ #: inc/php/page.php:174
317
+ msgid "My question wasn't answered here."
318
+ msgstr "Моего вопроса здесь нет."
319
+
320
+ #: inc/php/page.php:176
321
+ #, php-format
322
+ msgid ""
323
+ "You can ask your question on the plugin support page %s. But please keep in "
324
+ "mind that this plugin is free, and there is no a special support team, so I "
325
+ "have no way to answer everyone."
326
+ msgstr ""
327
+
328
  #: inc/php/settings.php:21
329
  msgid "About"
330
  msgstr "О плагине"
337
  "Этот плагин позволяет легко добавить блок социальных медиа кнопок в любое "
338
  "место на вашем веб-сайте."
339
 
340
+ #: inc/php/settings.php:30 inc/php/settings.php:565
 
 
 
 
341
  msgid ""
342
  "I'm an independent developer, without a regular income, so every little "
343
  "contribution helps cover my costs and lets me spend more time building "
347
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
348
  "создание программ для людей как вы."
349
 
350
+ #: inc/php/settings.php:31 inc/php/settings.php:566
351
  msgid "Donate with PayPal"
352
  msgstr ""
353
 
354
+ #: inc/php/settings.php:32 inc/php/settings.php:567
355
  msgid "Thanks for your support!"
356
  msgstr "Спасибо за вашу поддержку!"
357
 
358
+ #: inc/php/settings.php:37
359
  msgid "Help"
360
  msgstr "Помощь"
361
 
362
+ #: inc/php/settings.php:39
363
+ msgid "If you have a question, please read the information in the FAQ section."
364
  msgstr "Есть что сказать? Нужна помощь?"
365
 
366
+ #: inc/php/settings.php:64
367
  msgid "Buttons"
368
  msgstr "Кнопки"
369
 
370
+ #: inc/php/settings.php:66
371
  msgid ""
372
  "Just fill in the required fields to make a buttons. The social networking "
373
  "buttons will lead directly to your profile pages. If you don't want to use "
379
  "хотите использовать любой из следующих кнопок, то вы можете не заполнить их "
380
  "и тогда они не появятся."
381
 
382
+ #: inc/php/settings.php:73
383
  msgid "Enter the link to your Facebook profile page"
384
  msgstr "Введите ссылку на вашу страницу профиля Facebook"
385
 
386
+ #: inc/php/settings.php:80
387
  msgid "Enter the link to your Twitter profile page"
388
  msgstr "Введите ссылку на вашу страницу профиля Twitter"
389
 
390
+ #: inc/php/settings.php:87
391
  msgid "Enter the link to your Instagram profile page"
392
  msgstr "Введите ссылку на вашу страницу профиля Instagram"
393
 
394
+ #: inc/php/settings.php:94
395
  msgid "Enter the link to your Google+ profile page"
396
  msgstr "Введите ссылку на вашу страницу профиля Google+"
397
 
398
+ #: inc/php/settings.php:101
399
  msgid "Enter the link to your YouTube profile page"
400
  msgstr "Введите ссылку на вашу страницу профиля YouTube"
401
 
402
+ #: inc/php/settings.php:108
403
  msgid "Enter the link to your YouTube Gaming profile page"
404
  msgstr "Введите ссылку на вашу страницу профиля YouTube Gaming"
405
 
406
+ #: inc/php/settings.php:115
407
+ msgid "Enter the link to your iTunes profile page"
408
+ msgstr ""
409
+
410
+ #: inc/php/settings.php:122
411
+ msgid "Enter the link to your Apple Music profile page"
412
+ msgstr ""
413
+
414
+ #: inc/php/settings.php:129
415
  msgid "Enter the link to your Periscope profile page"
416
  msgstr "Введите ссылку на вашу страницу профиля Periscope"
417
 
418
+ #: inc/php/settings.php:136
419
  msgid "Enter the link to your Vimeo profile page"
420
  msgstr "Введите ссылку на вашу страницу профиля Vimeo"
421
 
422
+ #: inc/php/settings.php:143
423
  msgid "Enter the link to your Blogger profile page"
424
  msgstr "Введите ссылку на вашу страницу профиля Blogger"
425
 
426
+ #: inc/php/settings.php:150
427
  msgid "Enter the link to your Buzzsprout profile page"
428
  msgstr "Введите ссылку на вашу страницу профиля Buzzsprout"
429
 
430
+ #: inc/php/settings.php:157
431
  msgid "Enter the link to your LiveJournal profile page"
432
  msgstr "Введите ссылку на вашу страницу профиля LiveJournal"
433
 
434
+ #: inc/php/settings.php:164
435
  msgid "Enter the link to your Reddit profile page"
436
  msgstr "Введите ссылку на вашу страницу профиля Reddit"
437
 
438
+ #: inc/php/settings.php:171
439
  msgid "Enter the link to your LinkedIn profile page"
440
  msgstr "Введите ссылку на вашу страницу профиля LinkedIn"
441
 
442
+ #: inc/php/settings.php:178
443
  msgid "Enter the link to your Diaspora profile page"
444
  msgstr "Введите ссылку на вашу страницу профиля Diaspora"
445
 
446
+ #: inc/php/settings.php:185
447
  msgid "Enter the link to your DeviantArt profile page"
448
  msgstr "Введите ссылку на вашу страницу профиля DeviantArt"
449
 
450
+ #: inc/php/settings.php:192
451
  msgid "Enter the link to your XING profile page"
452
  msgstr "Введите ссылку на вашу страницу профиля XING"
453
 
454
+ #: inc/php/settings.php:199
455
  msgid "Enter the link to your Pinterest profile page"
456
  msgstr "Введите ссылку на вашу страницу профиля Pinterest"
457
 
458
+ #: inc/php/settings.php:206
459
  msgid "Enter the link to your Flickr profile page"
460
  msgstr "Введите ссылку на вашу страницу профиля Flickr"
461
 
462
+ #: inc/php/settings.php:213
463
  msgid "Enter the link to your Tumblr profile page"
464
  msgstr "Введите ссылку на вашу страницу профиля Tumblr"
465
 
466
+ #: inc/php/settings.php:220
467
  msgid "Enter the link to your Snapchat profile page"
468
  msgstr "Введите ссылку на вашу страницу профиля Snapchat"
469
 
470
+ #: inc/php/settings.php:227
471
  msgid "Enter the link to your Twitch profile page"
472
  msgstr "Введите ссылку на вашу страницу профиля Twitch"
473
 
474
+ #: inc/php/settings.php:234
475
  msgid "Enter the link to your Patreon profile page"
476
  msgstr "Введите ссылку на вашу страницу профиля Patreon"
477
 
478
+ #: inc/php/settings.php:241
479
  msgid "Enter the link to your IMDb profile page"
480
  msgstr "Введите ссылку на вашу страницу профиля IMDb"
481
 
482
+ #: inc/php/settings.php:248
483
  msgid "Enter the link to your SoundCloud profile page"
484
  msgstr "Введите ссылку на вашу страницу профиля SoundCloud"
485
 
486
+ #: inc/php/settings.php:255
487
  msgid "Enter the link to your Plug.dj profile page"
488
  msgstr "Введите ссылку на вашу страницу профиля Plug.dj"
489
 
490
+ #: inc/php/settings.php:262
491
  msgid "Enter the link to your Spotify profile page"
492
  msgstr "Введите ссылку на вашу страницу профиля Spotify"
493
 
494
+ #: inc/php/settings.php:269
495
  msgid "Enter the link to your Bandcamp profile page"
496
  msgstr "Введите ссылку на вашу страницу профиля Bandcamp"
497
 
498
+ #: inc/php/settings.php:276
499
  msgid "Enter the link to your Dloky profile page"
500
  msgstr "Введите ссылку на вашу страницу профиля Dloky"
501
 
502
+ #: inc/php/settings.php:283
503
  msgid "Enter the link to your Amazon profile page"
504
  msgstr "Введите ссылку на вашу страницу профиля Amazon"
505
 
506
+ #: inc/php/settings.php:290
507
  msgid "Enter the link to your BookBub profile page"
508
  msgstr "Введите ссылку на вашу страницу профиля BookBub"
509
 
510
+ #: inc/php/settings.php:297
511
  msgid "Enter the link to your Goodreads profile page"
512
  msgstr "Введите ссылку на вашу страницу профиля Goodreads"
513
 
514
+ #: inc/php/settings.php:304
515
  msgid "Enter the link to your MeetVibe profile page"
516
  msgstr "Введите ссылку на вашу страницу профиля MeetVibe"
517
 
518
+ #: inc/php/settings.php:311
519
  msgid "Enter the link to your Meetup profile page"
520
  msgstr "Введите ссылку на вашу страницу профиля Meetup"
521
 
522
+ #: inc/php/settings.php:318
523
  msgid "Enter the link to your Steam profile page"
524
  msgstr "Введите ссылку на вашу страницу профиля Steam"
525
 
526
+ #: inc/php/settings.php:325
527
  msgid "Enter the link to your Mixer profile page"
528
  msgstr "Введите ссылку на вашу страницу профиля Mixer"
529
 
530
+ #: inc/php/settings.php:332
531
  msgid "Enter the link to your Discord profile page"
532
  msgstr "Введите ссылку на вашу страницу профиля Discord"
533
 
534
+ #: inc/php/settings.php:339
535
  msgid "Enter the link to your Yelp profile page"
536
  msgstr "Введите ссылку на вашу страницу профиля Yelp"
537
 
538
+ #: inc/php/settings.php:346
539
  msgid "Enter the link to your StumbleUpon profile page"
540
  msgstr "Введите ссылку на вашу страницу профиля StumbleUpon"
541
 
542
+ #: inc/php/settings.php:353
543
  msgid "Enter the link to your Bloglovin profile page"
544
  msgstr "Введите ссылку на вашу страницу профиля Bloglovin"
545
 
546
+ #: inc/php/settings.php:360
547
  msgid "Enter the link to your WhatsApp profile page"
548
  msgstr "Введите ссылку на вашу страницу профиля WhatsApp"
549
 
550
+ #: inc/php/settings.php:367
551
+ msgid "Enter the link to your Medium profile page"
552
+ msgstr "Введите ссылку на вашу страницу профиля Medium"
553
+
554
+ #: inc/php/settings.php:374
555
+ msgid "Enter the link to your 500px profile page"
556
+ msgstr "Введите ссылку на вашу страницу профиля 500px"
557
+
558
+ #: inc/php/settings.php:381
559
  msgid "Enter the link to your LINE profile page"
560
  msgstr "Введите ссылку на вашу страницу профиля LINE"
561
 
562
+ #: inc/php/settings.php:388
563
  msgid "Enter the link to your VKontakte profile page"
564
  msgstr "Введите ссылку на вашу страницу профиля ВКонтакте"
565
 
566
+ #: inc/php/settings.php:395
567
  msgid "Enter the link to your Odnoklassniki profile page"
568
  msgstr "Введите ссылку на вашу страницу профиля Одноклассники"
569
 
570
+ #: inc/php/settings.php:402
571
  msgid "Enter the link to your Telegram profile page"
572
  msgstr "Введите ссылку на вашу страницу профиля Telegram"
573
 
574
+ #: inc/php/settings.php:409
575
  msgid "Enter the link to your GitHub profile page"
576
  msgstr "Введите ссылку на вашу страницу профиля GitHub"
577
 
578
+ #: inc/php/settings.php:416
579
  msgid "Enter the link to your WordPress profile page"
580
  msgstr "Введите ссылку на вашу страницу профиля WordPress"
581
 
582
+ #: inc/php/settings.php:423
583
  msgid "Enter the link to your CodePen profile page"
584
  msgstr "Введите ссылку на вашу страницу профиля CodePen"
585
 
586
+ #: inc/php/settings.php:430
587
  msgid ""
588
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or "
589
  "<b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile"
592
  "b>, или <b>?add</b>, или <b>?chat</b>, или <b>?userinfo</b> для просмотра "
593
  "профиля"
594
 
595
+ #: inc/php/settings.php:437
596
  msgid "Enter the link to your personal website"
597
  msgstr "Введите ссылку на ваш персональный сайт"
598
 
599
+ #: inc/php/settings.php:444
600
  msgid "Enter your email address with prefix <b>mailto:</b>"
601
  msgstr "Введите адрес электронной почты с префиксом <b>mailto:</b>"
602
 
603
+ #: inc/php/settings.php:451
604
  msgid "Enter your telephone number with prefix <b>tel://</b>"
605
  msgstr "Введите номер телефона с префиксом <b>tel://</b>"
606
 
607
+ #: inc/php/settings.php:458
608
  msgid "Enter the link to your RSS Feed"
609
  msgstr "Введите ссылку на ваш RSS поток"
610
 
611
+ #: inc/php/settings.php:463
612
  msgid ""
613
  "If you did not find the button you need, then tell me and I will gladly add "
614
  "it for you."
615
  msgstr ""
616
 
617
+ #: inc/php/settings.php:465 inc/php/settings.php:549
618
+ msgid "Save changes"
619
  msgstr "Сохранить изменения"
620
 
621
+ #: inc/php/settings.php:471
622
  msgid "Display options"
623
  msgstr "Настройки отображения"
624
 
625
+ #: inc/php/settings.php:473
626
  msgid "There you can configure this plugin."
627
  msgstr "Здесь вы можете настроить этот плагин."
628
 
629
+ #: inc/php/settings.php:477
630
  msgid "Show on Posts"
631
  msgstr "Показать в записях"
632
 
633
+ #: inc/php/settings.php:478
634
  msgid "Display toolbar below content on Posts."
635
  msgstr "Показывать кнопки под содержанием в записях"
636
 
637
+ #: inc/php/settings.php:483
638
  msgid "Show on Pages"
639
  msgstr "Показывать на страницах"
640
 
641
+ #: inc/php/settings.php:484
642
  msgid "Display toolbar below content on Pages."
643
  msgstr "Показывать кнопки под содержанием на страницах"
644
 
645
+ #: inc/php/settings.php:489
646
  msgid "Open in new tab"
647
  msgstr "Открыть в новой вкладке"
648
 
649
+ #: inc/php/settings.php:490
650
  msgid "Open link in a new tab/window."
651
  msgstr "Открыть ссылку в новом окне/вкладке"
652
 
653
+ #: inc/php/settings.php:495
654
  msgid "Tooltips"
655
  msgstr "Подсказки"
656
 
657
+ #: inc/php/settings.php:496
658
  msgid ""
659
  "Enable/disable a tooltips with name of the social media above every button."
660
  msgstr ""
661
  "Включить/отключить всплывающие подсказки с названием социальных медиа над "
662
  "каждой кнопкой."
663
 
664
+ #: inc/php/settings.php:501
665
  msgid "Icon size"
666
  msgstr "Размер иконки"
667
 
668
+ #: inc/php/settings.php:502
669
  msgid ""
670
  "Enter the size of icons (in px) in your social media follow buttons bar."
671
  msgstr ""
672
  "Введите размер иконок (в пикселях) для вашей панели социальных медиа кнопок."
673
 
674
+ #: inc/php/settings.php:509
675
  msgid "Margin"
676
  msgstr "Отступ"
677
 
678
+ #: inc/php/settings.php:510
679
  msgid ""
680
  "Enter the size of space (in px) between icons in your social media follow "
681
  "buttons bar."
682
  msgstr ""
683
 
684
+ #: inc/php/settings.php:519
685
  msgid "Alignment"
686
  msgstr "Выравнивание"
687
 
688
+ #: inc/php/settings.php:525
689
  msgid "Left"
690
  msgstr "Слева"
691
 
692
+ #: inc/php/settings.php:529
693
  msgid "Center"
694
  msgstr "По центру"
695
 
696
+ #: inc/php/settings.php:533
697
  msgid "Right"
698
  msgstr "Справа"
699
 
700
+ #: inc/php/settings.php:540
701
  msgid "Caption"
702
  msgstr "Заголовок"
703
 
704
+ #: inc/php/settings.php:541
705
  msgid ""
706
  "Enter the caption to your social media follow buttons bar. It will be "
707
  "displays before the toolbar."
709
  "Введите заголовок для блока с кнопками социальных медиа. Он будет отображает "
710
  "над панелью."
711
 
712
+ #: inc/php/settings.php:555
713
  msgid "Preview"
714
  msgstr "Предварительный просмотр"
715
 
716
+ #: inc/php/settings.php:557
717
+ msgid "Click the \"Save changes\" button to update this preview."
718
  msgstr ""
719
  "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
720
 
740
  msgid "http://www.arthurgareginyan.com"
741
  msgstr "http://www.arthurgareginyan.com"
742
 
743
+ #~ msgid "You can contact me by email %s"
744
+ #~ msgstr "Вы можете связаться со мной по электронной почте %s"
745
+
746
  #~ msgid "Thank you for installing my plugin! I hope you will love it %s"
747
  #~ msgstr ""
748
  #~ "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
763
  #~ msgid ""
764
  #~ "You have several methods for display the social media follow buttons bar "
765
  #~ "(further just \"bar\") on your website. But first, fill in the required "
766
+ #~ "fields, then click \"Save changes\"."
767
  #~ msgstr ""
768
  #~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
769
  #~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
777
  #~ "Это так просто! Если вы хотите иметь больше опций, то скажите мне об этом "
778
  #~ "и я буду счастлив добавить их."
779
 
780
+ #~ msgid "Click \"Save changes\" to update this preview."
781
  #~ msgstr ""
782
  #~ "Нажмите кнопку «Сохранить изменения», чтобы обновить этот пред. просмотр."
783
 
791
  #~ msgid ""
792
  #~ "You have several methods for display the social media follow buttons bar "
793
  #~ "(further just \"toolbar\") on your website. But first, fill in the "
794
+ #~ "required fields, then click \"Save changes\"."
795
  #~ msgstr ""
796
  #~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
797
  #~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
864
  #~ "них."
865
 
866
  #~ msgid ""
867
+ #~ "Enter your User ID's, then click \"Save changes\" to update this preview."
868
  #~ msgstr ""
869
  #~ "Введите ваши ID пользователя, а затем нажмите кнопку “Сохранить "
870
  #~ "изменения”, чтобы обновить этот просмотр."
872
  #~ msgid ""
873
  #~ "You have several methods for display the social media follow buttons bar "
874
  #~ "(further just \"toolbar\") on your website. But first, enter a links for "
875
+ #~ "each buttons, then click \"Save changes\"."
876
  #~ msgstr ""
877
  #~ "У вас есть несколько способов для того, чтобы отобразить блок социальных "
878
  #~ "медиа кнопок (далее просто “кнопки”) на вашем вебсайте. Но сначала "
927
  #~ "место на вашем веб-сайте."
928
 
929
  #~ msgid ""
930
+ #~ "To use, enter your User ID's, then click \"Save changes\". It's that "
931
  #~ "simple!"
932
  #~ msgstr ""
933
  #~ "Для использования, введите ваши ID пользователя, затем нажмите кнопку "
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-06-04 20:38+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -19,7 +19,7 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: inc/php/core.php:31 inc/php/page.php:40
23
  msgid "Settings"
24
  msgstr ""
25
 
@@ -48,160 +48,181 @@ msgstr ""
48
  msgid "Please update the plugin to the latest version, and all will be fine."
49
  msgstr ""
50
 
51
- #: inc/php/page.php:28
52
  #, php-format
53
  msgid "by %s Arthur Gareginyan %s"
54
  msgstr ""
55
 
56
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
57
  msgid "Usage"
58
  msgstr ""
59
 
60
- #: inc/php/page.php:42
61
  msgid "F.A.Q."
62
  msgstr ""
63
 
64
- #: inc/php/page.php:43 inc/php/page.php:169
65
  msgid "Author"
66
  msgstr ""
67
 
68
- #: inc/php/page.php:44 inc/php/page.php:178 inc/php/settings.php:29 inc/php/settings.php:535
69
  msgid "Support"
70
  msgstr ""
71
 
72
- #: inc/php/page.php:45
73
  msgid "Family"
74
  msgstr ""
75
 
76
- #: inc/php/page.php:62
77
  msgid ""
78
  "To display the social media follow buttons bar on the front end of your website, simply follow these "
79
  "steps:"
80
  msgstr ""
81
 
82
- #: inc/php/page.php:64
83
  msgid "Go to the \"Settings\" tab."
84
  msgstr ""
85
 
86
- #: inc/php/page.php:65
87
- msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:66
 
 
 
 
 
 
 
 
91
  msgid ""
92
  "Now you have several methods for display the social media follow buttons bar (further just \"buttons"
93
  "\"). Just choose the one that is more suitable for your case."
94
  msgstr ""
95
 
96
- #: inc/php/page.php:67
97
  msgid ""
98
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the "
99
  "checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click "
100
- "the \"Save Changes\" button."
101
  msgstr ""
102
 
103
- #: inc/php/page.php:68
104
  msgid ""
105
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
106
  msgstr ""
107
 
108
- #: inc/php/page.php:70
109
  msgid ""
110
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget "
111
  "and add inside it the following shortcode:"
112
  msgstr ""
113
 
114
- #: inc/php/page.php:72
115
  msgid ""
116
  "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
117
  "(where you want to display the buttons) in your theme files:"
118
  msgstr ""
119
 
120
- #: inc/php/page.php:75
121
  msgid "Enjoy your fancy social media follow buttons."
122
  msgstr ""
123
 
124
- #: inc/php/page.php:75
125
  msgid "It's that simple!"
126
  msgstr ""
127
 
128
- #: inc/php/page.php:77 inc/php/settings.php:437
129
  msgid "Note!"
130
  msgstr ""
131
 
132
- #: inc/php/page.php:77
133
  msgid "If you want more options then tell me and I will be happy to add it."
134
  msgstr ""
135
 
136
- #: inc/php/page.php:86
137
  msgid "Frequently Asked Questions"
138
  msgstr ""
139
 
140
- #: inc/php/page.php:108
 
 
 
 
 
141
  msgid "Will this plugin work on my WordPress.COM website?"
142
  msgstr ""
143
 
144
- #: inc/php/page.php:109
145
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
146
  msgstr ""
147
 
148
- #: inc/php/page.php:111
149
  msgid "Can I use this plugin on my language?"
150
  msgstr ""
151
 
152
- #: inc/php/page.php:113
153
  #, php-format
154
  msgid ""
155
- "Yes. But If your language is not available then you can make one. This plugin is ready for "
156
- "translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. "
157
- "Many of plugin users would be delighted if you shared your translation with the community. Just send "
158
- "the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the translation "
159
- "within the next plugin update."
160
  msgstr ""
161
 
162
- #: inc/php/page.php:118
 
 
 
 
163
  msgid "How does it work?"
164
  msgstr ""
165
 
166
- #: inc/php/page.php:119
167
  msgid ""
168
- "On the \"Settings\" tab, select the desired settings and click the \"Save Changes\" button. Enjoy "
169
  "your fancy social media follow buttons. It's that simple!"
170
  msgstr ""
171
 
172
- #: inc/php/page.php:121
173
  msgid "Does this plugin requires any modification of the theme?"
174
  msgstr ""
175
 
176
- #: inc/php/page.php:122
177
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
178
  msgstr ""
179
 
180
- #: inc/php/page.php:124
181
  msgid "Does this require any knowledge of HTML or CSS?"
182
  msgstr ""
183
 
184
- #: inc/php/page.php:125
185
  msgid ""
186
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
187
  "plugin settings page."
188
  msgstr ""
189
 
190
- #: inc/php/page.php:127
191
  msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
192
  msgstr ""
193
 
194
- #: inc/php/page.php:128
195
  msgid ""
196
  "The images that uses in this plugin are already compressed, but I will do my best to find out what "
197
  "else can be done with the images in order to compress them even better."
198
  msgstr ""
199
 
200
- #: inc/php/page.php:130
201
  msgid "It's not working. What could be wrong?"
202
  msgstr ""
203
 
204
- #: inc/php/page.php:131
205
  msgid ""
206
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
207
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) "
@@ -209,7 +230,7 @@ msgid ""
209
  "browser's cache may solve the problem."
210
  msgstr ""
211
 
212
- #: inc/php/page.php:132
213
  msgid ""
214
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
215
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
@@ -217,13 +238,13 @@ msgid ""
217
  "seen."
218
  msgstr ""
219
 
220
- #: inc/php/page.php:134
221
  msgid ""
222
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is "
223
  "this?"
224
  msgstr ""
225
 
226
- #: inc/php/page.php:135
227
  msgid ""
228
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
229
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
@@ -231,37 +252,46 @@ msgid ""
231
  "Also please try to re-login to the website, this too can help."
232
  msgstr ""
233
 
234
- #: inc/php/page.php:137
235
  msgid "Where to report bug if found?"
236
  msgstr ""
237
 
238
- #: inc/php/page.php:139
239
  #, php-format
240
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
241
  msgstr ""
242
 
243
- #: inc/php/page.php:145
244
  msgid "Where to share any ideas or suggestions to make the plugin better?"
245
  msgstr ""
246
 
247
- #: inc/php/page.php:147
248
  #, php-format
249
- msgid ""
250
- "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank "
251
- "you!"
252
  msgstr ""
253
 
254
- #: inc/php/page.php:153
255
  msgid "I love this plugin! Can I help somehow?"
256
  msgstr ""
257
 
258
- #: inc/php/page.php:155
259
  #, php-format
260
  msgid ""
261
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
262
  "button, and thank you!"
263
  msgstr ""
264
 
 
 
 
 
 
 
 
 
 
 
 
265
  #: inc/php/settings.php:21
266
  msgid "About"
267
  msgstr ""
@@ -271,348 +301,360 @@ 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:24
275
- msgid "Version"
276
- msgstr ""
277
-
278
- #: inc/php/settings.php:31 inc/php/settings.php:537
279
  msgid ""
280
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
281
  "costs and lets me spend more time building things for people like you to enjoy."
282
  msgstr ""
283
 
284
- #: inc/php/settings.php:32 inc/php/settings.php:538
285
  msgid "Donate with PayPal"
286
  msgstr ""
287
 
288
- #: inc/php/settings.php:33 inc/php/settings.php:539
289
  msgid "Thanks for your support!"
290
  msgstr ""
291
 
292
- #: inc/php/settings.php:38
293
  msgid "Help"
294
  msgstr ""
295
 
296
- #: inc/php/settings.php:40
297
- msgid "Got something to say? Need help?"
298
  msgstr ""
299
 
300
- #: inc/php/settings.php:66
301
  msgid "Buttons"
302
  msgstr ""
303
 
304
- #: inc/php/settings.php:68
305
  msgid ""
306
  "Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
307
  "to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
308
  "and then they do not appear."
309
  msgstr ""
310
 
311
- #: inc/php/settings.php:75
312
  msgid "Enter the link to your Facebook profile page"
313
  msgstr ""
314
 
315
- #: inc/php/settings.php:82
316
  msgid "Enter the link to your Twitter profile page"
317
  msgstr ""
318
 
319
- #: inc/php/settings.php:89
320
  msgid "Enter the link to your Instagram profile page"
321
  msgstr ""
322
 
323
- #: inc/php/settings.php:96
324
  msgid "Enter the link to your Google+ profile page"
325
  msgstr ""
326
 
327
- #: inc/php/settings.php:103
328
  msgid "Enter the link to your YouTube profile page"
329
  msgstr ""
330
 
331
- #: inc/php/settings.php:110
332
  msgid "Enter the link to your YouTube Gaming profile page"
333
  msgstr ""
334
 
335
- #: inc/php/settings.php:117
 
 
 
 
 
 
 
 
336
  msgid "Enter the link to your Periscope profile page"
337
  msgstr ""
338
 
339
- #: inc/php/settings.php:124
340
  msgid "Enter the link to your Vimeo profile page"
341
  msgstr ""
342
 
343
- #: inc/php/settings.php:131
344
  msgid "Enter the link to your Blogger profile page"
345
  msgstr ""
346
 
347
- #: inc/php/settings.php:138
348
  msgid "Enter the link to your Buzzsprout profile page"
349
  msgstr ""
350
 
351
- #: inc/php/settings.php:145
352
  msgid "Enter the link to your LiveJournal profile page"
353
  msgstr ""
354
 
355
- #: inc/php/settings.php:152
356
  msgid "Enter the link to your Reddit profile page"
357
  msgstr ""
358
 
359
- #: inc/php/settings.php:159
360
  msgid "Enter the link to your LinkedIn profile page"
361
  msgstr ""
362
 
363
- #: inc/php/settings.php:166
364
  msgid "Enter the link to your Diaspora profile page"
365
  msgstr ""
366
 
367
- #: inc/php/settings.php:173
368
  msgid "Enter the link to your DeviantArt profile page"
369
  msgstr ""
370
 
371
- #: inc/php/settings.php:180
372
  msgid "Enter the link to your XING profile page"
373
  msgstr ""
374
 
375
- #: inc/php/settings.php:187
376
  msgid "Enter the link to your Pinterest profile page"
377
  msgstr ""
378
 
379
- #: inc/php/settings.php:194
380
  msgid "Enter the link to your Flickr profile page"
381
  msgstr ""
382
 
383
- #: inc/php/settings.php:201
384
  msgid "Enter the link to your Tumblr profile page"
385
  msgstr ""
386
 
387
- #: inc/php/settings.php:208
388
  msgid "Enter the link to your Snapchat profile page"
389
  msgstr ""
390
 
391
- #: inc/php/settings.php:215
392
  msgid "Enter the link to your Twitch profile page"
393
  msgstr ""
394
 
395
- #: inc/php/settings.php:222
396
  msgid "Enter the link to your Patreon profile page"
397
  msgstr ""
398
 
399
- #: inc/php/settings.php:229
400
  msgid "Enter the link to your IMDb profile page"
401
  msgstr ""
402
 
403
- #: inc/php/settings.php:236
404
  msgid "Enter the link to your SoundCloud profile page"
405
  msgstr ""
406
 
407
- #: inc/php/settings.php:243
408
  msgid "Enter the link to your Plug.dj profile page"
409
  msgstr ""
410
 
411
- #: inc/php/settings.php:250
412
  msgid "Enter the link to your Spotify profile page"
413
  msgstr ""
414
 
415
- #: inc/php/settings.php:257
416
  msgid "Enter the link to your Bandcamp profile page"
417
  msgstr ""
418
 
419
- #: inc/php/settings.php:264
420
  msgid "Enter the link to your Dloky profile page"
421
  msgstr ""
422
 
423
- #: inc/php/settings.php:271
424
  msgid "Enter the link to your Amazon profile page"
425
  msgstr ""
426
 
427
- #: inc/php/settings.php:278
428
  msgid "Enter the link to your BookBub profile page"
429
  msgstr ""
430
 
431
- #: inc/php/settings.php:285
432
  msgid "Enter the link to your Goodreads profile page"
433
  msgstr ""
434
 
435
- #: inc/php/settings.php:292
436
  msgid "Enter the link to your MeetVibe profile page"
437
  msgstr ""
438
 
439
- #: inc/php/settings.php:299
440
  msgid "Enter the link to your Meetup profile page"
441
  msgstr ""
442
 
443
- #: inc/php/settings.php:306
444
  msgid "Enter the link to your Steam profile page"
445
  msgstr ""
446
 
447
- #: inc/php/settings.php:313
448
  msgid "Enter the link to your Mixer profile page"
449
  msgstr ""
450
 
451
- #: inc/php/settings.php:320
452
  msgid "Enter the link to your Discord profile page"
453
  msgstr ""
454
 
455
- #: inc/php/settings.php:327
456
  msgid "Enter the link to your Yelp profile page"
457
  msgstr ""
458
 
459
- #: inc/php/settings.php:334
460
  msgid "Enter the link to your StumbleUpon profile page"
461
  msgstr ""
462
 
463
- #: inc/php/settings.php:341
464
  msgid "Enter the link to your Bloglovin profile page"
465
  msgstr ""
466
 
467
- #: inc/php/settings.php:348
468
  msgid "Enter the link to your WhatsApp profile page"
469
  msgstr ""
470
 
471
- #: inc/php/settings.php:355
 
 
 
 
 
 
 
 
472
  msgid "Enter the link to your LINE profile page"
473
  msgstr ""
474
 
475
- #: inc/php/settings.php:362
476
  msgid "Enter the link to your VKontakte profile page"
477
  msgstr ""
478
 
479
- #: inc/php/settings.php:369
480
  msgid "Enter the link to your Odnoklassniki profile page"
481
  msgstr ""
482
 
483
- #: inc/php/settings.php:376
484
  msgid "Enter the link to your Telegram profile page"
485
  msgstr ""
486
 
487
- #: inc/php/settings.php:383
488
  msgid "Enter the link to your GitHub profile page"
489
  msgstr ""
490
 
491
- #: inc/php/settings.php:390
492
  msgid "Enter the link to your WordPress profile page"
493
  msgstr ""
494
 
495
- #: inc/php/settings.php:397
496
  msgid "Enter the link to your CodePen profile page"
497
  msgstr ""
498
 
499
- #: inc/php/settings.php:404
500
  msgid ""
501
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
502
  "b>, or <b>?userinfo</b> for view profile"
503
  msgstr ""
504
 
505
- #: inc/php/settings.php:411
506
  msgid "Enter the link to your personal website"
507
  msgstr ""
508
 
509
- #: inc/php/settings.php:418
510
  msgid "Enter your email address with prefix <b>mailto:</b>"
511
  msgstr ""
512
 
513
- #: inc/php/settings.php:425
514
  msgid "Enter your telephone number with prefix <b>tel://</b>"
515
  msgstr ""
516
 
517
- #: inc/php/settings.php:432
518
  msgid "Enter the link to your RSS Feed"
519
  msgstr ""
520
 
521
- #: inc/php/settings.php:437
522
  msgid "If you did not find the button you need, then tell me and I will gladly add it for you."
523
  msgstr ""
524
 
525
- #: inc/php/settings.php:438 inc/php/settings.php:521
526
- msgid "Save Changes"
527
  msgstr ""
528
 
529
- #: inc/php/settings.php:443
530
  msgid "Display options"
531
  msgstr ""
532
 
533
- #: inc/php/settings.php:445
534
  msgid "There you can configure this plugin."
535
  msgstr ""
536
 
537
- #: inc/php/settings.php:449
538
  msgid "Show on Posts"
539
  msgstr ""
540
 
541
- #: inc/php/settings.php:450
542
  msgid "Display toolbar below content on Posts."
543
  msgstr ""
544
 
545
- #: inc/php/settings.php:455
546
  msgid "Show on Pages"
547
  msgstr ""
548
 
549
- #: inc/php/settings.php:456
550
  msgid "Display toolbar below content on Pages."
551
  msgstr ""
552
 
553
- #: inc/php/settings.php:461
554
  msgid "Open in new tab"
555
  msgstr ""
556
 
557
- #: inc/php/settings.php:462
558
  msgid "Open link in a new tab/window."
559
  msgstr ""
560
 
561
- #: inc/php/settings.php:467
562
  msgid "Tooltips"
563
  msgstr ""
564
 
565
- #: inc/php/settings.php:468
566
  msgid "Enable/disable a tooltips with name of the social media above every button."
567
  msgstr ""
568
 
569
- #: inc/php/settings.php:473
570
  msgid "Icon size"
571
  msgstr ""
572
 
573
- #: inc/php/settings.php:474
574
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
575
  msgstr ""
576
 
577
- #: inc/php/settings.php:481
578
  msgid "Margin"
579
  msgstr ""
580
 
581
- #: inc/php/settings.php:482
582
  msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
583
  msgstr ""
584
 
585
- #: inc/php/settings.php:491
586
  msgid "Alignment"
587
  msgstr ""
588
 
589
- #: inc/php/settings.php:497
590
  msgid "Left"
591
  msgstr ""
592
 
593
- #: inc/php/settings.php:501
594
  msgid "Center"
595
  msgstr ""
596
 
597
- #: inc/php/settings.php:505
598
  msgid "Right"
599
  msgstr ""
600
 
601
- #: inc/php/settings.php:512
602
  msgid "Caption"
603
  msgstr ""
604
 
605
- #: inc/php/settings.php:513
606
  msgid ""
607
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
608
  msgstr ""
609
 
610
- #: inc/php/settings.php:527
611
  msgid "Preview"
612
  msgstr ""
613
 
614
- #: inc/php/settings.php:529
615
- msgid "Click the \"Save Changes\" button to update this preview."
616
  msgstr ""
617
 
618
  #. Plugin Name of the plugin/theme
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
+ "POT-Creation-Date: 2017-06-16 03:36+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: inc/php/core.php:31 inc/php/page.php:47
23
  msgid "Settings"
24
  msgstr ""
25
 
48
  msgid "Please update the plugin to the latest version, and all will be fine."
49
  msgstr ""
50
 
51
+ #: inc/php/page.php:34
52
  #, php-format
53
  msgid "by %s Arthur Gareginyan %s"
54
  msgstr ""
55
 
56
+ #: inc/php/page.php:40
57
+ msgid "Version"
58
+ msgstr ""
59
+
60
+ #: inc/php/page.php:48 inc/php/page.php:67
61
  msgid "Usage"
62
  msgstr ""
63
 
64
+ #: inc/php/page.php:49
65
  msgid "F.A.Q."
66
  msgstr ""
67
 
68
+ #: inc/php/page.php:50 inc/php/page.php:189
69
  msgid "Author"
70
  msgstr ""
71
 
72
+ #: inc/php/page.php:51 inc/php/page.php:198 inc/php/settings.php:28 inc/php/settings.php:563
73
  msgid "Support"
74
  msgstr ""
75
 
76
+ #: inc/php/page.php:52
77
  msgid "Family"
78
  msgstr ""
79
 
80
+ #: inc/php/page.php:69
81
  msgid ""
82
  "To display the social media follow buttons bar on the front end of your website, simply follow these "
83
  "steps:"
84
  msgstr ""
85
 
86
+ #: inc/php/page.php:71
87
  msgid "Go to the \"Settings\" tab."
88
  msgstr ""
89
 
90
+ #: inc/php/page.php:72
91
+ msgid "Fill in the required fields."
92
  msgstr ""
93
 
94
+ #: inc/php/page.php:73
95
+ msgid "Select the desired settings."
96
+ msgstr ""
97
+
98
+ #: inc/php/page.php:74
99
+ msgid "Click the \"Save changes\" button."
100
+ msgstr ""
101
+
102
+ #: inc/php/page.php:75
103
  msgid ""
104
  "Now you have several methods for display the social media follow buttons bar (further just \"buttons"
105
  "\"). Just choose the one that is more suitable for your case."
106
  msgstr ""
107
 
108
+ #: inc/php/page.php:76
109
  msgid ""
110
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the "
111
  "checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click "
112
+ "the \"Save changes\" button."
113
  msgstr ""
114
 
115
+ #: inc/php/page.php:77
116
  msgid ""
117
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
118
  msgstr ""
119
 
120
+ #: inc/php/page.php:79
121
  msgid ""
122
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget "
123
  "and add inside it the following shortcode:"
124
  msgstr ""
125
 
126
+ #: inc/php/page.php:81
127
  msgid ""
128
  "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
129
  "(where you want to display the buttons) in your theme files:"
130
  msgstr ""
131
 
132
+ #: inc/php/page.php:84
133
  msgid "Enjoy your fancy social media follow buttons."
134
  msgstr ""
135
 
136
+ #: inc/php/page.php:84
137
  msgid "It's that simple!"
138
  msgstr ""
139
 
140
+ #: inc/php/page.php:86 inc/php/settings.php:463
141
  msgid "Note!"
142
  msgstr ""
143
 
144
+ #: inc/php/page.php:86
145
  msgid "If you want more options then tell me and I will be happy to add it."
146
  msgstr ""
147
 
148
+ #: inc/php/page.php:95
149
  msgid "Frequently Asked Questions"
150
  msgstr ""
151
 
152
+ #: inc/php/page.php:99
153
+ msgid ""
154
+ "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
155
+ msgstr ""
156
+
157
+ #: inc/php/page.php:121
158
  msgid "Will this plugin work on my WordPress.COM website?"
159
  msgstr ""
160
 
161
+ #: inc/php/page.php:122
162
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
163
  msgstr ""
164
 
165
+ #: inc/php/page.php:124
166
  msgid "Can I use this plugin on my language?"
167
  msgstr ""
168
 
169
+ #: inc/php/page.php:126
170
  #, php-format
171
  msgid ""
172
+ "Yes. This plugin is ready for translation and has already been translated into several languages. But "
173
+ "If your language is not available then you can make one. The POT file is included and placed in the "
174
+ "<code>languages</code> folder. Just send the PO file to me at the %s and I will include this "
175
+ "translation within the next plugin update. Many of plugin users would be delighted if you share your "
176
+ "translation with the community. Thanks for your contribution!"
177
  msgstr ""
178
 
179
+ #: inc/php/page.php:130
180
+ msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
181
+ msgstr ""
182
+
183
+ #: inc/php/page.php:132
184
  msgid "How does it work?"
185
  msgstr ""
186
 
187
+ #: inc/php/page.php:133
188
  msgid ""
189
+ "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy "
190
  "your fancy social media follow buttons. It's that simple!"
191
  msgstr ""
192
 
193
+ #: inc/php/page.php:135
194
  msgid "Does this plugin requires any modification of the theme?"
195
  msgstr ""
196
 
197
+ #: inc/php/page.php:136
198
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
199
  msgstr ""
200
 
201
+ #: inc/php/page.php:138
202
  msgid "Does this require any knowledge of HTML or CSS?"
203
  msgstr ""
204
 
205
+ #: inc/php/page.php:139
206
  msgid ""
207
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
208
  "plugin settings page."
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:141
212
  msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
213
  msgstr ""
214
 
215
+ #: inc/php/page.php:142
216
  msgid ""
217
  "The images that uses in this plugin are already compressed, but I will do my best to find out what "
218
  "else can be done with the images in order to compress them even better."
219
  msgstr ""
220
 
221
+ #: inc/php/page.php:144
222
  msgid "It's not working. What could be wrong?"
223
  msgstr ""
224
 
225
+ #: inc/php/page.php:145
226
  msgid ""
227
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
228
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) "
230
  "browser's cache may solve the problem."
231
  msgstr ""
232
 
233
+ #: inc/php/page.php:146
234
  msgid ""
235
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
236
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
238
  "seen."
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:148
242
  msgid ""
243
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is "
244
  "this?"
245
  msgstr ""
246
 
247
+ #: inc/php/page.php:149
248
  msgid ""
249
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
250
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
252
  "Also please try to re-login to the website, this too can help."
253
  msgstr ""
254
 
255
+ #: inc/php/page.php:151
256
  msgid "Where to report bug if found?"
257
  msgstr ""
258
 
259
+ #: inc/php/page.php:153
260
  #, php-format
261
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
262
  msgstr ""
263
 
264
+ #: inc/php/page.php:159
265
  msgid "Where to share any ideas or suggestions to make the plugin better?"
266
  msgstr ""
267
 
268
+ #: inc/php/page.php:161
269
  #, php-format
270
+ msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
 
271
  msgstr ""
272
 
273
+ #: inc/php/page.php:166
274
  msgid "I love this plugin! Can I help somehow?"
275
  msgstr ""
276
 
277
+ #: inc/php/page.php:168
278
  #, php-format
279
  msgid ""
280
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
281
  "button, and thank you!"
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:174
285
+ msgid "My question wasn't answered here."
286
+ msgstr ""
287
+
288
+ #: inc/php/page.php:176
289
+ #, php-format
290
+ msgid ""
291
+ "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is "
292
+ "free, and there is no a special support team, so I have no way to answer everyone."
293
+ msgstr ""
294
+
295
  #: inc/php/settings.php:21
296
  msgid "About"
297
  msgstr ""
301
  "This plugin allows you to easily add the social media follow buttons bar to any place of your website."
302
  msgstr ""
303
 
304
+ #: inc/php/settings.php:30 inc/php/settings.php:565
 
 
 
 
305
  msgid ""
306
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
307
  "costs and lets me spend more time building things for people like you to enjoy."
308
  msgstr ""
309
 
310
+ #: inc/php/settings.php:31 inc/php/settings.php:566
311
  msgid "Donate with PayPal"
312
  msgstr ""
313
 
314
+ #: inc/php/settings.php:32 inc/php/settings.php:567
315
  msgid "Thanks for your support!"
316
  msgstr ""
317
 
318
+ #: inc/php/settings.php:37
319
  msgid "Help"
320
  msgstr ""
321
 
322
+ #: inc/php/settings.php:39
323
+ msgid "If you have a question, please read the information in the FAQ section."
324
  msgstr ""
325
 
326
+ #: inc/php/settings.php:64
327
  msgid "Buttons"
328
  msgstr ""
329
 
330
+ #: inc/php/settings.php:66
331
  msgid ""
332
  "Just fill in the required fields to make a buttons. The social networking buttons will lead directly "
333
  "to your profile pages. If you don't want to use any of the following buttons, you can not fill them "
334
  "and then they do not appear."
335
  msgstr ""
336
 
337
+ #: inc/php/settings.php:73
338
  msgid "Enter the link to your Facebook profile page"
339
  msgstr ""
340
 
341
+ #: inc/php/settings.php:80
342
  msgid "Enter the link to your Twitter profile page"
343
  msgstr ""
344
 
345
+ #: inc/php/settings.php:87
346
  msgid "Enter the link to your Instagram profile page"
347
  msgstr ""
348
 
349
+ #: inc/php/settings.php:94
350
  msgid "Enter the link to your Google+ profile page"
351
  msgstr ""
352
 
353
+ #: inc/php/settings.php:101
354
  msgid "Enter the link to your YouTube profile page"
355
  msgstr ""
356
 
357
+ #: inc/php/settings.php:108
358
  msgid "Enter the link to your YouTube Gaming profile page"
359
  msgstr ""
360
 
361
+ #: inc/php/settings.php:115
362
+ msgid "Enter the link to your iTunes profile page"
363
+ msgstr ""
364
+
365
+ #: inc/php/settings.php:122
366
+ msgid "Enter the link to your Apple Music profile page"
367
+ msgstr ""
368
+
369
+ #: inc/php/settings.php:129
370
  msgid "Enter the link to your Periscope profile page"
371
  msgstr ""
372
 
373
+ #: inc/php/settings.php:136
374
  msgid "Enter the link to your Vimeo profile page"
375
  msgstr ""
376
 
377
+ #: inc/php/settings.php:143
378
  msgid "Enter the link to your Blogger profile page"
379
  msgstr ""
380
 
381
+ #: inc/php/settings.php:150
382
  msgid "Enter the link to your Buzzsprout profile page"
383
  msgstr ""
384
 
385
+ #: inc/php/settings.php:157
386
  msgid "Enter the link to your LiveJournal profile page"
387
  msgstr ""
388
 
389
+ #: inc/php/settings.php:164
390
  msgid "Enter the link to your Reddit profile page"
391
  msgstr ""
392
 
393
+ #: inc/php/settings.php:171
394
  msgid "Enter the link to your LinkedIn profile page"
395
  msgstr ""
396
 
397
+ #: inc/php/settings.php:178
398
  msgid "Enter the link to your Diaspora profile page"
399
  msgstr ""
400
 
401
+ #: inc/php/settings.php:185
402
  msgid "Enter the link to your DeviantArt profile page"
403
  msgstr ""
404
 
405
+ #: inc/php/settings.php:192
406
  msgid "Enter the link to your XING profile page"
407
  msgstr ""
408
 
409
+ #: inc/php/settings.php:199
410
  msgid "Enter the link to your Pinterest profile page"
411
  msgstr ""
412
 
413
+ #: inc/php/settings.php:206
414
  msgid "Enter the link to your Flickr profile page"
415
  msgstr ""
416
 
417
+ #: inc/php/settings.php:213
418
  msgid "Enter the link to your Tumblr profile page"
419
  msgstr ""
420
 
421
+ #: inc/php/settings.php:220
422
  msgid "Enter the link to your Snapchat profile page"
423
  msgstr ""
424
 
425
+ #: inc/php/settings.php:227
426
  msgid "Enter the link to your Twitch profile page"
427
  msgstr ""
428
 
429
+ #: inc/php/settings.php:234
430
  msgid "Enter the link to your Patreon profile page"
431
  msgstr ""
432
 
433
+ #: inc/php/settings.php:241
434
  msgid "Enter the link to your IMDb profile page"
435
  msgstr ""
436
 
437
+ #: inc/php/settings.php:248
438
  msgid "Enter the link to your SoundCloud profile page"
439
  msgstr ""
440
 
441
+ #: inc/php/settings.php:255
442
  msgid "Enter the link to your Plug.dj profile page"
443
  msgstr ""
444
 
445
+ #: inc/php/settings.php:262
446
  msgid "Enter the link to your Spotify profile page"
447
  msgstr ""
448
 
449
+ #: inc/php/settings.php:269
450
  msgid "Enter the link to your Bandcamp profile page"
451
  msgstr ""
452
 
453
+ #: inc/php/settings.php:276
454
  msgid "Enter the link to your Dloky profile page"
455
  msgstr ""
456
 
457
+ #: inc/php/settings.php:283
458
  msgid "Enter the link to your Amazon profile page"
459
  msgstr ""
460
 
461
+ #: inc/php/settings.php:290
462
  msgid "Enter the link to your BookBub profile page"
463
  msgstr ""
464
 
465
+ #: inc/php/settings.php:297
466
  msgid "Enter the link to your Goodreads profile page"
467
  msgstr ""
468
 
469
+ #: inc/php/settings.php:304
470
  msgid "Enter the link to your MeetVibe profile page"
471
  msgstr ""
472
 
473
+ #: inc/php/settings.php:311
474
  msgid "Enter the link to your Meetup profile page"
475
  msgstr ""
476
 
477
+ #: inc/php/settings.php:318
478
  msgid "Enter the link to your Steam profile page"
479
  msgstr ""
480
 
481
+ #: inc/php/settings.php:325
482
  msgid "Enter the link to your Mixer profile page"
483
  msgstr ""
484
 
485
+ #: inc/php/settings.php:332
486
  msgid "Enter the link to your Discord profile page"
487
  msgstr ""
488
 
489
+ #: inc/php/settings.php:339
490
  msgid "Enter the link to your Yelp profile page"
491
  msgstr ""
492
 
493
+ #: inc/php/settings.php:346
494
  msgid "Enter the link to your StumbleUpon profile page"
495
  msgstr ""
496
 
497
+ #: inc/php/settings.php:353
498
  msgid "Enter the link to your Bloglovin profile page"
499
  msgstr ""
500
 
501
+ #: inc/php/settings.php:360
502
  msgid "Enter the link to your WhatsApp profile page"
503
  msgstr ""
504
 
505
+ #: inc/php/settings.php:367
506
+ msgid "Enter the link to your Medium profile page"
507
+ msgstr ""
508
+
509
+ #: inc/php/settings.php:374
510
+ msgid "Enter the link to your 500px profile page"
511
+ msgstr ""
512
+
513
+ #: inc/php/settings.php:381
514
  msgid "Enter the link to your LINE profile page"
515
  msgstr ""
516
 
517
+ #: inc/php/settings.php:388
518
  msgid "Enter the link to your VKontakte profile page"
519
  msgstr ""
520
 
521
+ #: inc/php/settings.php:395
522
  msgid "Enter the link to your Odnoklassniki profile page"
523
  msgstr ""
524
 
525
+ #: inc/php/settings.php:402
526
  msgid "Enter the link to your Telegram profile page"
527
  msgstr ""
528
 
529
+ #: inc/php/settings.php:409
530
  msgid "Enter the link to your GitHub profile page"
531
  msgstr ""
532
 
533
+ #: inc/php/settings.php:416
534
  msgid "Enter the link to your WordPress profile page"
535
  msgstr ""
536
 
537
+ #: inc/php/settings.php:423
538
  msgid "Enter the link to your CodePen profile page"
539
  msgstr ""
540
 
541
+ #: inc/php/settings.php:430
542
  msgid ""
543
  "Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</"
544
  "b>, or <b>?userinfo</b> for view profile"
545
  msgstr ""
546
 
547
+ #: inc/php/settings.php:437
548
  msgid "Enter the link to your personal website"
549
  msgstr ""
550
 
551
+ #: inc/php/settings.php:444
552
  msgid "Enter your email address with prefix <b>mailto:</b>"
553
  msgstr ""
554
 
555
+ #: inc/php/settings.php:451
556
  msgid "Enter your telephone number with prefix <b>tel://</b>"
557
  msgstr ""
558
 
559
+ #: inc/php/settings.php:458
560
  msgid "Enter the link to your RSS Feed"
561
  msgstr ""
562
 
563
+ #: inc/php/settings.php:463
564
  msgid "If you did not find the button you need, then tell me and I will gladly add it for you."
565
  msgstr ""
566
 
567
+ #: inc/php/settings.php:465 inc/php/settings.php:549
568
+ msgid "Save changes"
569
  msgstr ""
570
 
571
+ #: inc/php/settings.php:471
572
  msgid "Display options"
573
  msgstr ""
574
 
575
+ #: inc/php/settings.php:473
576
  msgid "There you can configure this plugin."
577
  msgstr ""
578
 
579
+ #: inc/php/settings.php:477
580
  msgid "Show on Posts"
581
  msgstr ""
582
 
583
+ #: inc/php/settings.php:478
584
  msgid "Display toolbar below content on Posts."
585
  msgstr ""
586
 
587
+ #: inc/php/settings.php:483
588
  msgid "Show on Pages"
589
  msgstr ""
590
 
591
+ #: inc/php/settings.php:484
592
  msgid "Display toolbar below content on Pages."
593
  msgstr ""
594
 
595
+ #: inc/php/settings.php:489
596
  msgid "Open in new tab"
597
  msgstr ""
598
 
599
+ #: inc/php/settings.php:490
600
  msgid "Open link in a new tab/window."
601
  msgstr ""
602
 
603
+ #: inc/php/settings.php:495
604
  msgid "Tooltips"
605
  msgstr ""
606
 
607
+ #: inc/php/settings.php:496
608
  msgid "Enable/disable a tooltips with name of the social media above every button."
609
  msgstr ""
610
 
611
+ #: inc/php/settings.php:501
612
  msgid "Icon size"
613
  msgstr ""
614
 
615
+ #: inc/php/settings.php:502
616
  msgid "Enter the size of icons (in px) in your social media follow buttons bar."
617
  msgstr ""
618
 
619
+ #: inc/php/settings.php:509
620
  msgid "Margin"
621
  msgstr ""
622
 
623
+ #: inc/php/settings.php:510
624
  msgid "Enter the size of space (in px) between icons in your social media follow buttons bar."
625
  msgstr ""
626
 
627
+ #: inc/php/settings.php:519
628
  msgid "Alignment"
629
  msgstr ""
630
 
631
+ #: inc/php/settings.php:525
632
  msgid "Left"
633
  msgstr ""
634
 
635
+ #: inc/php/settings.php:529
636
  msgid "Center"
637
  msgstr ""
638
 
639
+ #: inc/php/settings.php:533
640
  msgid "Right"
641
  msgstr ""
642
 
643
+ #: inc/php/settings.php:540
644
  msgid "Caption"
645
  msgstr ""
646
 
647
+ #: inc/php/settings.php:541
648
  msgid ""
649
  "Enter the caption to your social media follow buttons bar. It will be displays before the toolbar."
650
  msgstr ""
651
 
652
+ #: inc/php/settings.php:555
653
  msgid "Preview"
654
  msgstr ""
655
 
656
+ #: inc/php/settings.php:557
657
+ msgid "Click the \"Save changes\" button to update this preview."
658
  msgstr ""
659
 
660
  #. Plugin Name of the plugin/theme
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, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin.png, line.png, stumbleupon.png, whatsapp.png, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
- Stable tag: 4.10
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -48,6 +48,8 @@ It give you finer control over buttons. You can configure they on plugins settin
48
  * Google+
49
  * YouTube
50
  * YouTube Gaming
 
 
51
  * Periscope
52
  * Vimeo
53
  * Blogger
@@ -81,6 +83,8 @@ It give you finer control over buttons. You can configure they on plugins settin
81
  * StumbleUpon
82
  * Bloglovin
83
  * WhatsApp
 
 
84
  * LINE
85
  * VKontakte (vk.com)
86
  * Odnoklassniki (ok.ru)
@@ -98,11 +102,15 @@ It give you finer control over buttons. You can configure they on plugins settin
98
 
99
  = Translation =
100
 
 
 
101
  * English (default)
102
  * Russian
103
  * Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
104
 
105
- If you would like to add a translation to this plugin then please head to our [Translating WordPress](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar) page.
 
 
106
 
107
  >**Contribution**
108
  >
@@ -131,9 +139,9 @@ Manually via FTP access:
131
  4. Log into Admin Panel of your WordPress website.
132
  5. Activate this plugin through the "`Plugins`" tab.
133
 
134
- After installation, a "`Social Media Follow Buttons`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
135
 
136
- [More help installing Plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
137
 
138
 
139
  == Frequently Asked Questions ==
@@ -141,10 +149,10 @@ After installation, a "`Social Media Follow Buttons`" menu item will appear in
141
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
142
 
143
  = Q. Can I use this plugin on my language? =
144
- A. Yes. But If your language is not available then you can make one. This plugin is ready for translation. The `.pot` file is included and placed in the "`languages`" folder. Many of plugin users would be delighted if you shared your translation with the community. Just send the translation files (`*.po, *.mo`) to me at the [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com) and I will include the translation within the next plugin update.
145
 
146
  = Q. How does it work? =
147
- A. Simply go to the plugin settings page, select the desired settings and click the "Save Changes" button. Enjoy your fancy social media follow buttons. It's that simple!
148
  You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`Social Buttons`".
149
 
150
  = Q. Does this plugin requires any modification of the theme? =
@@ -199,7 +207,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
199
  * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
200
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
201
  * 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).
202
- * Icons [mixer.png, telephone.png, bloglovin.png, line.png, stumbleupon.png, whatsapp.png, plugdj.png, deviantart.png, buzzsprout.png, periscope.png, youtube.png, meetvibe.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](http://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
203
  * 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/).
204
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
205
  * [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).
@@ -212,6 +220,17 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
212
 
213
  == Changelog ==
214
 
 
 
 
 
 
 
 
 
 
 
 
215
  = 4.10 =
216
  * The Beam icon and name replaced with rebranded.
217
  * Added option for the telephone button.
1
  === Social Media Follow Buttons Bar ===
2
  Contributors: Arthur Gareginyan
3
+ Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin.png, medium.png, 500px.png, line.png, stumbleupon.png, whatsapp.png, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
+ Stable tag: 4.11
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
48
  * Google+
49
  * YouTube
50
  * YouTube Gaming
51
+ * iTunes
52
+ * Apple Music
53
  * Periscope
54
  * Vimeo
55
  * Blogger
83
  * StumbleUpon
84
  * Bloglovin
85
  * WhatsApp
86
+ * Medium
87
+ * 500px
88
  * LINE
89
  * VKontakte (vk.com)
90
  * Odnoklassniki (ok.ru)
102
 
103
  = Translation =
104
 
105
+ This plugin is ready for translation and has already been translated into several languages.
106
+
107
  * English (default)
108
  * Russian
109
  * Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
110
 
111
+ Maybe not all existed translations are up to date. You are welcome to contribute corrections!
112
+
113
+ If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/social-media-buttons-toolbar).
114
 
115
  >**Contribution**
116
  >
139
  4. Log into Admin Panel of your WordPress website.
140
  5. Activate this plugin through the "`Plugins`" tab.
141
 
142
+ After installation and activation, the "`Social Media Follow Buttons`" menu item will appear in the "`Settings`" section of Admin Panel. Click on it in order to view the plugin settings page.
143
 
144
+ [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
145
 
146
 
147
  == Frequently Asked Questions ==
149
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
150
 
151
  = Q. Can I use this plugin on my language? =
152
+ A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just send the PO file to me at the arthurgareginyan@gmail.com and I will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
153
 
154
  = Q. How does it work? =
155
+ A. Simply go to the plugin settings page, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It's that simple!
156
  You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`Social Buttons`".
157
 
158
  = Q. Does this plugin requires any modification of the theme? =
207
  * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
208
  * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
209
  * 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).
210
+ * Icons [itunes.png, apple-music.png, medium.png, 500px.png, mixer.png, telephone.png, bloglovin.png, line.png, stumbleupon.png, whatsapp.png, plugdj.png, deviantart.png, buzzsprout.png, periscope.png, youtube.png, meetvibe.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](http://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
211
  * 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/).
212
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
213
  * [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).
220
 
221
  == Changelog ==
222
 
223
+ = 4.11 =
224
+ * Added option for the iTunes social media.
225
+ * Added option for the Apple Music social media.
226
+ * Added option for the Medium social media.
227
+ * Added option for the 500px social network.
228
+ * On the plugin settings page, text of buttons are corrected.
229
+ * On the plugin settings page, the information about the plugin version number moved to header section.
230
+ * Some mention of constants replaced with variables for easier access.
231
+ * Content of the "Usage" tab updated.
232
+ * Content of the "FAQ" tab updated.
233
+
234
  = 4.10 =
235
  * The Beam icon and name replaced with rebranded.
236
  * Added option for the telephone button.
social-media-buttons-toolbar.php CHANGED
@@ -5,12 +5,12 @@
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.10
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
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.11
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2015-2017 Arthur Gareginyan ( website : http://www.arthurgareginyan.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