Social Media Follow Buttons Bar - Version 4.20

Version Description

  • Added the top level menu item of the brand.
  • The submenu item of the plugin has moved to the menu item of the brand.
  • The menu item of the plugin is renamed.
  • The "Author" tab on the settings page is removed.
  • Content of the "Support" tab on the settings page is updated.
  • Copyright of plugin files is changed to the "Space X-Chimp Studio".
  • The "Support" tab renamed to the "Support Me".
  • The "Usage" tab renamed to the "Usage Instructions".
Download this release

Release Info

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

Code changes from version 4.19 to 4.20

inc/css/admin.css CHANGED
@@ -3,8 +3,8 @@
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @author Arthur Gareginyan
6
- * @link https://www.arthurgareginyan.com
7
- * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
  */
9
 
10
 
@@ -50,6 +50,7 @@ h2 span {
50
  display: block;
51
  margin-top: 15px;
52
  font-size: 16px;
 
53
  text-shadow: none;
54
  line-height: 20px;
55
  }
@@ -98,8 +99,14 @@ h2 .version {
98
  width: 265px;
99
  }
100
 
101
- /* Support - addition section
102
  -------------------------------------------------------------- */
 
 
 
 
 
 
103
  #support-addition {
104
  display: none;
105
  }
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @author Arthur Gareginyan
6
+ * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2017 Space X-Chimp Studio. All Rights Reserved.
8
  */
9
 
10
 
50
  display: block;
51
  margin-top: 15px;
52
  font-size: 16px;
53
+ letter-spacing: .2em;
54
  text-shadow: none;
55
  line-height: 20px;
56
  }
99
  width: 265px;
100
  }
101
 
102
+ /* Support - Tab and Addition section
103
  -------------------------------------------------------------- */
104
+ #tab-support .inside {
105
+ min-height: 270px;
106
+ }
107
+ #tab-support .image-with-button img[alt="Thanks!"] {
108
+ display: block;
109
+ }
110
  #support-addition {
111
  display: none;
112
  }
inc/css/frontend.css CHANGED
@@ -3,8 +3,8 @@
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @author Arthur Gareginyan
6
- * @link https://www.arthurgareginyan.com
7
- * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
  */
9
 
10
 
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @author Arthur Gareginyan
6
+ * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2017 Space X-Chimp Studio. All Rights Reserved.
8
  */
9
 
10
 
inc/img/thanks.png CHANGED
Binary file
inc/js/admin.js CHANGED
@@ -3,8 +3,8 @@
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @author Arthur Gareginyan
6
- * @link https://www.arthurgareginyan.com
7
- * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
  */
9
 
10
 
@@ -20,7 +20,6 @@ jQuery(document).ready(function($) {
20
  }
21
 
22
  // Add dynamic content to page tabs. Needed for having an up to date content.
23
- $('.include-tab-author').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-author');
24
  $('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
25
 
26
  // Add questions and answers into spoilers and color them in different colors
3
  *
4
  * @package Social Media Follow Buttons Bar
5
  * @author Arthur Gareginyan
6
+ * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2017 Space X-Chimp Studio. All Rights Reserved.
8
  */
9
 
10
 
20
  }
21
 
22
  // Add dynamic content to page tabs. Needed for having an up to date content.
 
23
  $('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
24
 
25
  // Add questions and answers into spoilers and color them in different colors
inc/php/core.php CHANGED
@@ -18,12 +18,9 @@ add_action( 'init', 'spacexchimp_p005_textdomain' );
18
  *
19
  * Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
20
  * and inserts a link to the plugin admin page
21
- *
22
- * @param array $links Array of links generated by WP in Plugin Admin page.
23
- * @return array Array of links to be output on Plugin Admin page.
24
  */
25
  function spacexchimp_p005_settings_link( $links ) {
26
- $page = '<a href="' . admin_url( 'options-general.php?page=' . SPACEXCHIMP_P005_SLUG . '.php' ) .'">' . __( 'Settings', SPACEXCHIMP_P005_TEXT ) . '</a>';
27
  array_unshift( $links, $page );
28
  return $links;
29
  }
@@ -47,12 +44,38 @@ function spacexchimp_p005_plugin_row_meta( $links, $file ) {
47
  add_filter( 'plugin_row_meta', 'spacexchimp_p005_plugin_row_meta', 10, 2 );
48
 
49
  /**
50
- * Register plugin's submenu in the "Settings" Admin Menu
51
  */
52
- function spacexchimp_p005_register_submenu_page() {
53
- $menu_title = __( 'Social Media Follow Buttons', SPACEXCHIMP_P005_TEXT );
 
 
 
 
 
54
  $capability = 'manage_options';
55
- add_options_page( SPACEXCHIMP_P005_NAME, $menu_title, $capability, SPACEXCHIMP_P005_SLUG, 'spacexchimp_p005_render_submenu_page' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  }
57
  add_action( 'admin_menu', 'spacexchimp_p005_register_submenu_page' );
58
 
18
  *
19
  * Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
20
  * and inserts a link to the plugin admin page
 
 
 
21
  */
22
  function spacexchimp_p005_settings_link( $links ) {
23
+ $page = '<a href="' . admin_url( 'admin.php?page=spacexchimp/' . SPACEXCHIMP_P005_SLUG ) .'">' . __( 'Settings', SPACEXCHIMP_P005_TEXT ) . '</a>';
24
  array_unshift( $links, $page );
25
  return $links;
26
  }
44
  add_filter( 'plugin_row_meta', 'spacexchimp_p005_plugin_row_meta', 10, 2 );
45
 
46
  /**
47
+ * Register brand menu item in the Admin Menu
48
  */
49
+ function spacexchimp_p005_register_admin_menu() {
50
+
51
+ // Return if the brand menu item is already existed
52
+ if ( !empty ( $GLOBALS['admin_page_hooks']['spacexchimp'] ) ) return;
53
+
54
+ $page_title = 'Space X-Chimp';
55
+ $menu_title = 'Space X-Chimp';
56
  $capability = 'manage_options';
57
+ $menu_slug = 'spacexchimp';
58
+ $function = null;
59
+ $icon_url = 'dashicons-star-filled';
60
+ $position = 66;
61
+
62
+ add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
63
+ }
64
+ add_action( 'admin_menu', 'spacexchimp_p005_register_admin_menu' );
65
+
66
+ /**
67
+ * Register plugin's submenu item in the brand menu item
68
+ */
69
+ function spacexchimp_p005_register_submenu_page() {
70
+
71
+ $parent_slug = 'spacexchimp';
72
+ $page_title = SPACEXCHIMP_P005_NAME;
73
+ $menu_title = __( 'Social Media Follow Buttons', SPACEXCHIMP_P005_TEXT );
74
+ $capability = 'manage_options';
75
+ $menu_slug = 'spacexchimp/' . SPACEXCHIMP_P005_SLUG;
76
+ $function = 'spacexchimp_p005_render_submenu_page';
77
+
78
+ add_submenu_page( $parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function);
79
  }
80
  add_action( 'admin_menu', 'spacexchimp_p005_register_submenu_page' );
81
 
inc/php/enqueue.php CHANGED
@@ -51,10 +51,8 @@ function spacexchimp_p005_load_scripts_admin( $hook ) {
51
  $settings = SPACEXCHIMP_P005_SETTINGS;
52
 
53
  // Return if the page is not a settings page of this plugin
54
- $settings_page = 'settings_page_' . $slug;
55
- if ( $settings_page != $hook ) {
56
- return;
57
- }
58
 
59
  // Read options from database
60
  $options = get_option( $settings . '_settings' );
51
  $settings = SPACEXCHIMP_P005_SETTINGS;
52
 
53
  // Return if the page is not a settings page of this plugin
54
+ $settings_page = 'space-x-chimp_page_spacexchimp/' . $slug;
55
+ if ( $settings_page != $hook ) return;
 
 
56
 
57
  // Read options from database
58
  $options = get_option( $settings . '_settings' );
inc/php/list.php CHANGED
@@ -1,7 +1,590 @@
1
- <?php /**
 
 
2
  * Prevent Direct Access
3
  */
4
- defined( 'ABSPATH' ) or die( "Restricted access!" ); /**
 
 
5
  * List of social media and additional contact options
6
  */
7
- spacexchimp_p005_control_link( 'facebook', 'Facebook', 'https://www.facebook.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Facebook' ), '//www.facebook.com' ); spacexchimp_p005_control_link( 'twitter', 'Twitter', 'https://twitter.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitter' ), '//twitter.com' ); spacexchimp_p005_control_link( 'instagram', 'Instagram', 'http://instagram.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Instagram' ), '//instagram.com' ); spacexchimp_p005_control_link( 'google-plus', 'Google+', 'https://plus.google.com/u/0/+YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google+' ), '//plus.google.com' ); spacexchimp_p005_control_link( 'youtube', 'YouTube', 'https://www.youtube.com/channel/YourChannelIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube' ), '//www.youtube.com' ); spacexchimp_p005_control_link( 'youtube-gaming', 'YouTube Gaming', 'https://gaming.youtube.com/channel/YourChannelIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube Gaming' ), '//gaming.youtube.com' ); spacexchimp_p005_control_link( 'google-play', 'Google Play', 'https://play.google.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google Play' ), '//play.google.com' ); spacexchimp_p005_control_link( 'itunes', 'iTunes', 'https://www.apple.com/itunes/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes' ), '//www.apple.com/itunes' ); spacexchimp_p005_control_link( 'itunes-podcasts', 'iTunes Podcasts', 'https://www.apple.com/itunes/podcasts/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes Podcasts' ), '//www.apple.com/itunes/podcasts' ); spacexchimp_p005_control_link( 'apple-music', 'Apple Music', 'https://www.apple.com/lae/music/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Apple Music' ), '//www.apple.com/lae/music' ); spacexchimp_p005_control_link( 'periscope', 'Periscope', 'https://www.periscope.tv/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Periscope' ), '//www.periscope.tv' ); spacexchimp_p005_control_link( 'vimeo', 'Vimeo', 'https://vimeo.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Vimeo' ), '//vimeo.com' ); spacexchimp_p005_control_link( 'blogger', 'Blogger', 'http://YourBlogNameHere.blogspot.com', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Blogger' ), '//www.blogger.com' ); spacexchimp_p005_control_link( 'buzzsprout', 'Buzzsprout', 'https://www.buzzsprout.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Buzzsprout' ), '//www.buzzsprout.com' ); spacexchimp_p005_control_link( 'livejournal', 'LiveJournal', 'http://YourUsernameHere.livejournal.com', sprintf( __( 'Enter the link to your %s profile page', $text ), 'LiveJournal' ), '//www.livejournal.com' ); spacexchimp_p005_control_link( 'reddit', 'Reddit', 'https://www.reddit.com/user/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Reddit' ), '//www.reddit.com' ); spacexchimp_p005_control_link( 'linkedin', 'LinkedIn', 'https://linkedin.com/in/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'LinkedIn' ), '//linkedin.com' ); spacexchimp_p005_control_link( 'diaspora', 'Diaspora', 'https://diasporafoundation.org/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Diaspora' ), '//diasporafoundation.org' ); spacexchimp_p005_control_link( 'deviantart', 'DeviantArt', 'http://www.deviantart.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'DeviantArt' ), '//www.deviantart.com' ); spacexchimp_p005_control_link( 'xing', 'XING', 'https://www.xing.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'XING' ), '//www.xing.com' ); spacexchimp_p005_control_link( 'pinterest', 'Pinterest', 'https://www.pinterest.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Pinterest' ), '//www.pinterest.com' ); spacexchimp_p005_control_link( 'flickr', 'Flickr', 'https://www.flickr.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Flickr' ), '//www.flickr.com' ); spacexchimp_p005_control_link( 'tumblr', 'Tumblr', 'https://www.tumblr.com/blog/YourBlogNameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Tumblr' ), '//www.tumblr.com' ); spacexchimp_p005_control_link( 'snapchat', 'Snapchat', 'https://www.snapchat.com/add/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Snapchat' ), '//www.snapchat.com' ); spacexchimp_p005_control_link( 'twitch', 'Twitch', 'https://www.twitch.tv/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitch' ), '//www.twitch.tv' ); spacexchimp_p005_control_link( 'patreon', 'Patreon', 'https://www.patreon.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Patreon' ), '//www.patreon.com' ); spacexchimp_p005_control_link( 'imdb', 'IMDb', 'http://www.imdb.com/name/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'IMDb' ), '//www.imdb.com' ); spacexchimp_p005_control_link( 'soundcloud', 'SoundCloud', 'https://soundcloud.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundCloud' ), '//soundcloud.com' ); spacexchimp_p005_control_link( 'plugdj', 'Plug.dj', 'https://plug.dj/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Plug.dj' ), '//plug.dj' ); spacexchimp_p005_control_link( 'spotify', 'Spotify', 'http://open.spotify.com/user/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Spotify' ), '//www.spotify.com' ); spacexchimp_p005_control_link( 'bandcamp', 'Bandcamp', 'https://bandcamp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bandcamp' ), '//bandcamp.com' ); spacexchimp_p005_control_link( 'dloky', 'Dloky', 'https://dloky.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Dloky' ), '//dloky.com' ); spacexchimp_p005_control_link( 'amazon', 'Amazon', 'https://www.amazon.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Amazon' ), '//www.amazon.com' ); spacexchimp_p005_control_link( 'bookbub', 'BookBub', 'https://www.bookbub.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'BookBub' ), '//www.bookbub.com' ); spacexchimp_p005_control_link( 'goodreads', 'Goodreads', 'https://www.goodreads.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Goodreads' ), '//www.goodreads.com' ); spacexchimp_p005_control_link( 'meetvibe', 'MeetVibe', 'https://meetvibe.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'MeetVibe' ), '//meetvibe.com' ); spacexchimp_p005_control_link( 'meetup', 'Meetup', 'https://www.meetup.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Meetup' ), '//www.meetup.com' ); spacexchimp_p005_control_link( 'steam', 'Steam', 'http://store.steampowered.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steam' ), '//store.steampowered.com' ); spacexchimp_p005_control_link( 'mixer', 'Mixer', 'https://mixer.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mixer' ), '//mixer.com' ); spacexchimp_p005_control_link( 'discord', 'Discord', 'https://discordapp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Discord' ), '//discordapp.com' ); spacexchimp_p005_control_link( 'yelp', 'Yelp', 'https://www.yelp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yelp' ), '//www.yelp.com' ); spacexchimp_p005_control_link( 'stumbleupon', 'StumbleUpon', 'http://www.stumbleupon.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'StumbleUpon' ), '//www.stumbleupon.com' ); spacexchimp_p005_control_link( 'bloglovin', 'Bloglovin', 'https://www.bloglovin.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bloglovin' ), '//www.bloglovin.com' ); spacexchimp_p005_control_link( 'whatsapp', 'WhatsApp', 'https://www.whatsapp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'WhatsApp' ), '//www.whatsapp.com' ); spacexchimp_p005_control_link( 'medium', 'Medium', 'https://medium.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Medium' ), '//medium.com' ); spacexchimp_p005_control_link( '500px', '500px', 'https://500px.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), '500px' ), '//500px.com' ); spacexchimp_p005_control_link( 'behance', 'Behance', 'https://www.behance.net/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Behance' ), '//www.behance.net' ); spacexchimp_p005_control_link( 'polyvore', 'Polyvore', 'http://www.polyvore.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Polyvore' ), '//www.polyvore.com' ); spacexchimp_p005_control_link( 'yellowpages', 'Yellow Pages', 'https://www.yellowpages.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yellow Pages' ), '//www.yellowpages.com' ); spacexchimp_p005_control_link( 'line', 'LINE', 'https://line.me/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'LINE' ), '//line.me' ); spacexchimp_p005_control_link( 'itch', 'itch', 'https://itch.io/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'itch' ), '//itch.io' ); spacexchimp_p005_control_link( 'mastodon', 'Mastodon', 'https://mastodon.social/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mastodon' ), '//mastodon.social' ); spacexchimp_p005_control_link( 'remind', 'Remind', 'https://www.remind.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Remind' ), '//www.remind.com' ); spacexchimp_p005_control_link( 'trademe', 'Trade Me', 'https://www.trademe.co.nz/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trade Me' ), '//www.trademe.co.nz' ); spacexchimp_p005_control_link( 'vsco', 'VSCO', 'https://vsco.co/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'VSCO' ), '//vsco.co' ); spacexchimp_p005_control_link( 'hireology', 'Hireology', 'https://hireology.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hireology' ), '//hireology.com' ); spacexchimp_p005_control_link( 'kompoz', 'Kompoz', 'https://www.kompoz.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Kompoz' ), '//www.kompoz.com' ); spacexchimp_p005_control_link( 'soundblend', 'SoundBlend', 'https://www.soundblend.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundBlend' ), '//www.soundblend.com' ); spacexchimp_p005_control_link( 'vkontakte', 'VKontakte', 'https://vk.com/id_YourIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'VKontakte' ), '//vk.com' ); spacexchimp_p005_control_link( 'odnoklassniki', 'Odnoklassniki', 'https://ok.ru/profile/YourIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Odnoklassniki' ), '//ok.ru' ); spacexchimp_p005_control_link( 'telegram', 'Telegram', 'https://telegram.me/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Telegram' ), '//telegram.org' ); spacexchimp_p005_control_link( 'github', 'GitHub', 'https://github.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'GitHub' ), '//github.com' ); spacexchimp_p005_control_link( 'wordpress', 'WordPress', 'https://profiles.wordpress.org/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'WordPress' ), '//wordpress.org' ); spacexchimp_p005_control_link( 'codepen', 'CodePen', 'http://codepen.io/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'CodePen' ), '//codepen.io' ); spacexchimp_p005_control_link( 'askfm', 'ASKfm', 'https://ask.fm/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'ASKfm' ), '//ask.fm' ); spacexchimp_p005_control_link( 'ebay', 'eBay', 'https://www.ebay.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'eBay' ), '//www.ebay.com' ); spacexchimp_p005_control_link( 'hangouts', 'Hangouts', 'https://hangouts.google.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hangouts' ), '//hangouts.google.com' ); spacexchimp_p005_control_link( 'houzz', 'Houzz', 'https://www.houzz.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Houzz' ), '//www.houzz.com' ); spacexchimp_p005_control_link( 'quora', 'Quora', 'https://www.quora.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Quora' ), '//www.quora.com' ); spacexchimp_p005_control_link( 'steemit', 'Steemit', 'https://steemit.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steemit' ), '//steemit.com' ); spacexchimp_p005_control_link( 'theartstack', 'ArtStack', 'https://theartstack.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'ArtStack' ), '//theartstack.com' ); spacexchimp_p005_control_link( 'theknot', 'The Knot', 'https://www.theknot.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'The Knot' ), '//www.theknot.com' ); spacexchimp_p005_control_link( 'viber', 'Viber', 'https://www.viber.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Viber' ), '//www.viber.com' ); spacexchimp_p005_control_link( 'etsy', 'Etsy', 'https://www.etsy.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Etsy' ), '//www.etsy.com' ); spacexchimp_p005_control_link( 'tripadvisor', 'Trip Advisor', 'https://www.tripadvisor.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trip Advisor' ), '//www.tripadvisor.com' ); spacexchimp_p005_control_link( 'stackoverflow', 'Stack Overflow', 'https://stackoverflow.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Overflow' ), '//stackoverflow.com' ); spacexchimp_p005_control_link( 'stackexchange', 'Stack Exchange', 'https://stackexchange.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Exchange' ), '//stackexchange.com' ); spacexchimp_p005_control_link( 'wattpad', 'Wattpad', 'https://www.wattpad.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Wattpad' ), '//www.wattpad.com' ); spacexchimp_p005_control_link( 'skype', 'Skype', 'skype:YourUsernameHere?call', __( '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 ), '//www.skype.com' ); spacexchimp_p005_control_link( 'website', 'Personal website', 'https://www.arthurgareginyan.com', __( 'Enter the link to your personal website', $text ), '' ); spacexchimp_p005_control_link( 'email', 'Email', 'mailto:YourUsernameHere@gmail.com', __( 'Enter your email address with prefix <b>mailto:</b>', $text ), '' ); spacexchimp_p005_control_link( 'telephone', 'Telephone', 'tel://1-555-555-5555', __( 'Enter your telephone number with prefix <b>tel://</b>', $text ), '' ); spacexchimp_p005_control_link( 'rss-feed', 'RSS Feed', 'http://YourDomainNameHere.com/feed', __( 'Enter the link to your RSS Feed', $text ), '' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
  * Prevent Direct Access
5
  */
6
+ defined( 'ABSPATH' ) or die( "Restricted access!" );
7
+
8
+ /**
9
  * List of social media and additional contact options
10
  */
11
+ spacexchimp_p005_control_link( 'facebook',
12
+ 'Facebook',
13
+ 'https://www.facebook.com/YourUsernameHere',
14
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Facebook' ),
15
+ '//www.facebook.com'
16
+ );
17
+
18
+ spacexchimp_p005_control_link( 'twitter',
19
+ 'Twitter',
20
+ 'https://twitter.com/YourUsernameHere',
21
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitter' ),
22
+ '//twitter.com'
23
+ );
24
+
25
+ spacexchimp_p005_control_link( 'instagram',
26
+ 'Instagram',
27
+ 'http://instagram.com/YourUsernameHere',
28
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Instagram' ),
29
+ '//instagram.com'
30
+ );
31
+
32
+ spacexchimp_p005_control_link( 'google-plus',
33
+ 'Google+',
34
+ 'https://plus.google.com/u/0/+YourUsernameHere',
35
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google+' ),
36
+ '//plus.google.com'
37
+ );
38
+
39
+ spacexchimp_p005_control_link( 'youtube',
40
+ 'YouTube',
41
+ 'https://www.youtube.com/channel/YourChannelIdentifierHere',
42
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube' ),
43
+ '//www.youtube.com'
44
+ );
45
+
46
+ spacexchimp_p005_control_link( 'youtube-gaming',
47
+ 'YouTube Gaming',
48
+ 'https://gaming.youtube.com/channel/YourChannelIdentifierHere',
49
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube Gaming' ),
50
+ '//gaming.youtube.com'
51
+ );
52
+
53
+ spacexchimp_p005_control_link( 'google-play',
54
+ 'Google Play',
55
+ 'https://play.google.com/YourUsernameHere',
56
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google Play' ),
57
+ '//play.google.com'
58
+ );
59
+
60
+ spacexchimp_p005_control_link( 'itunes',
61
+ 'iTunes',
62
+ 'https://www.apple.com/itunes/YourUsernameHere',
63
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes' ),
64
+ '//www.apple.com/itunes'
65
+ );
66
+
67
+ spacexchimp_p005_control_link( 'itunes-podcasts',
68
+ 'iTunes Podcasts',
69
+ 'https://www.apple.com/itunes/podcasts/YourUsernameHere',
70
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes Podcasts' ),
71
+ '//www.apple.com/itunes/podcasts'
72
+ );
73
+
74
+ spacexchimp_p005_control_link( 'apple-music',
75
+ 'Apple Music',
76
+ 'https://www.apple.com/lae/music/YourUsernameHere',
77
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Apple Music' ),
78
+ '//www.apple.com/lae/music'
79
+ );
80
+
81
+ spacexchimp_p005_control_link( 'periscope',
82
+ 'Periscope',
83
+ 'https://www.periscope.tv/YourUsernameHere',
84
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Periscope' ),
85
+ '//www.periscope.tv'
86
+ );
87
+
88
+ spacexchimp_p005_control_link( 'vimeo',
89
+ 'Vimeo',
90
+ 'https://vimeo.com/YourUsernameHere',
91
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Vimeo' ),
92
+ '//vimeo.com'
93
+ );
94
+
95
+ spacexchimp_p005_control_link( 'blogger',
96
+ 'Blogger',
97
+ 'http://YourBlogNameHere.blogspot.com',
98
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Blogger' ),
99
+ '//www.blogger.com'
100
+ );
101
+
102
+ spacexchimp_p005_control_link( 'buzzsprout',
103
+ 'Buzzsprout',
104
+ 'https://www.buzzsprout.com/YourUsernameHere',
105
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Buzzsprout' ),
106
+ '//www.buzzsprout.com'
107
+ );
108
+
109
+ spacexchimp_p005_control_link( 'livejournal',
110
+ 'LiveJournal',
111
+ 'http://YourUsernameHere.livejournal.com',
112
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'LiveJournal' ),
113
+ '//www.livejournal.com'
114
+ );
115
+
116
+ spacexchimp_p005_control_link( 'reddit',
117
+ 'Reddit',
118
+ 'https://www.reddit.com/user/YourUsernameHere',
119
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Reddit' ),
120
+ '//www.reddit.com'
121
+ );
122
+
123
+ spacexchimp_p005_control_link( 'linkedin',
124
+ 'LinkedIn',
125
+ 'https://linkedin.com/in/YourUsernameHere',
126
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'LinkedIn' ),
127
+ '//linkedin.com'
128
+ );
129
+
130
+ spacexchimp_p005_control_link( 'diaspora',
131
+ 'Diaspora',
132
+ 'https://diasporafoundation.org/YourUsernameHere',
133
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Diaspora' ),
134
+ '//diasporafoundation.org'
135
+ );
136
+
137
+ spacexchimp_p005_control_link( 'deviantart',
138
+ 'DeviantArt',
139
+ 'http://www.deviantart.com/YourUsernameHere',
140
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'DeviantArt' ),
141
+ '//www.deviantart.com'
142
+ );
143
+
144
+ spacexchimp_p005_control_link( 'xing',
145
+ 'XING',
146
+ 'https://www.xing.com/YourUsernameHere',
147
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'XING' ),
148
+ '//www.xing.com'
149
+ );
150
+
151
+ spacexchimp_p005_control_link( 'pinterest',
152
+ 'Pinterest',
153
+ 'https://www.pinterest.com/YourUsernameHere',
154
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Pinterest' ),
155
+ '//www.pinterest.com'
156
+ );
157
+
158
+ spacexchimp_p005_control_link( 'flickr',
159
+ 'Flickr',
160
+ 'https://www.flickr.com/YourUsernameHere',
161
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Flickr' ),
162
+ '//www.flickr.com'
163
+ );
164
+
165
+ spacexchimp_p005_control_link( 'tumblr',
166
+ 'Tumblr',
167
+ 'https://www.tumblr.com/blog/YourBlogNameHere',
168
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Tumblr' ),
169
+ '//www.tumblr.com'
170
+ );
171
+
172
+ spacexchimp_p005_control_link( 'snapchat',
173
+ 'Snapchat',
174
+ 'https://www.snapchat.com/add/YourUsernameHere',
175
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Snapchat' ),
176
+ '//www.snapchat.com'
177
+ );
178
+
179
+ spacexchimp_p005_control_link( 'twitch',
180
+ 'Twitch',
181
+ 'https://www.twitch.tv/YourUsernameHere',
182
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitch' ),
183
+ '//www.twitch.tv'
184
+ );
185
+
186
+ spacexchimp_p005_control_link( 'patreon',
187
+ 'Patreon',
188
+ 'https://www.patreon.com/YourUsernameHere',
189
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Patreon' ),
190
+ '//www.patreon.com'
191
+ );
192
+
193
+ spacexchimp_p005_control_link( 'imdb',
194
+ 'IMDb',
195
+ 'http://www.imdb.com/name/YourUsernameHere',
196
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'IMDb' ),
197
+ '//www.imdb.com'
198
+ );
199
+
200
+ spacexchimp_p005_control_link( 'soundcloud',
201
+ 'SoundCloud',
202
+ 'https://soundcloud.com/YourUsernameHere',
203
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundCloud' ),
204
+ '//soundcloud.com'
205
+ );
206
+
207
+ spacexchimp_p005_control_link( 'plugdj',
208
+ 'Plug.dj',
209
+ 'https://plug.dj/YourUsernameHere',
210
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Plug.dj' ),
211
+ '//plug.dj'
212
+ );
213
+
214
+ spacexchimp_p005_control_link( 'spotify',
215
+ 'Spotify',
216
+ 'http://open.spotify.com/user/YourUsernameHere',
217
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Spotify' ),
218
+ '//www.spotify.com'
219
+ );
220
+
221
+ spacexchimp_p005_control_link( 'bandcamp',
222
+ 'Bandcamp',
223
+ 'https://bandcamp.com/YourUsernameHere',
224
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bandcamp' ),
225
+ '//bandcamp.com'
226
+ );
227
+
228
+ spacexchimp_p005_control_link( 'dloky',
229
+ 'Dloky',
230
+ 'https://dloky.com/YourUsernameHere',
231
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Dloky' ),
232
+ '//dloky.com'
233
+ );
234
+
235
+ spacexchimp_p005_control_link( 'amazon',
236
+ 'Amazon',
237
+ 'https://www.amazon.com/YourUsernameHere',
238
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Amazon' ),
239
+ '//www.amazon.com'
240
+ );
241
+
242
+ spacexchimp_p005_control_link( 'bookbub',
243
+ 'BookBub',
244
+ 'https://www.bookbub.com/YourUsernameHere',
245
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'BookBub' ),
246
+ '//www.bookbub.com'
247
+ );
248
+
249
+ spacexchimp_p005_control_link( 'goodreads',
250
+ 'Goodreads',
251
+ 'https://www.goodreads.com/YourUsernameHere',
252
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Goodreads' ),
253
+ '//www.goodreads.com'
254
+ );
255
+
256
+ spacexchimp_p005_control_link( 'meetvibe',
257
+ 'MeetVibe',
258
+ 'https://meetvibe.com/YourUsernameHere',
259
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'MeetVibe' ),
260
+ '//meetvibe.com'
261
+ );
262
+
263
+ spacexchimp_p005_control_link( 'meetup',
264
+ 'Meetup',
265
+ 'https://www.meetup.com/YourUsernameHere',
266
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Meetup' ),
267
+ '//www.meetup.com'
268
+ );
269
+
270
+ spacexchimp_p005_control_link( 'steam',
271
+ 'Steam',
272
+ 'http://store.steampowered.com/YourUsernameHere',
273
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steam' ),
274
+ '//store.steampowered.com'
275
+ );
276
+
277
+ spacexchimp_p005_control_link( 'mixer',
278
+ 'Mixer',
279
+ 'https://mixer.com/YourUsernameHere',
280
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mixer' ),
281
+ '//mixer.com'
282
+ );
283
+
284
+ spacexchimp_p005_control_link( 'discord',
285
+ 'Discord',
286
+ 'https://discordapp.com/YourUsernameHere',
287
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Discord' ),
288
+ '//discordapp.com'
289
+ );
290
+
291
+ spacexchimp_p005_control_link( 'yelp',
292
+ 'Yelp',
293
+ 'https://www.yelp.com/YourUsernameHere',
294
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yelp' ),
295
+ '//www.yelp.com'
296
+ );
297
+
298
+ spacexchimp_p005_control_link( 'stumbleupon',
299
+ 'StumbleUpon',
300
+ 'http://www.stumbleupon.com/YourUsernameHere',
301
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'StumbleUpon' ),
302
+ '//www.stumbleupon.com'
303
+ );
304
+
305
+ spacexchimp_p005_control_link( 'bloglovin',
306
+ 'Bloglovin',
307
+ 'https://www.bloglovin.com/YourUsernameHere',
308
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bloglovin' ),
309
+ '//www.bloglovin.com'
310
+ );
311
+
312
+ spacexchimp_p005_control_link( 'whatsapp',
313
+ 'WhatsApp',
314
+ 'https://www.whatsapp.com/YourUsernameHere',
315
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'WhatsApp' ),
316
+ '//www.whatsapp.com'
317
+ );
318
+
319
+ spacexchimp_p005_control_link( 'medium',
320
+ 'Medium',
321
+ 'https://medium.com/YourUsernameHere',
322
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Medium' ),
323
+ '//medium.com'
324
+ );
325
+
326
+ spacexchimp_p005_control_link( '500px',
327
+ '500px',
328
+ 'https://500px.com/YourUsernameHere',
329
+ sprintf( __( 'Enter the link to your %s profile page', $text ), '500px' ),
330
+ '//500px.com'
331
+ );
332
+
333
+ spacexchimp_p005_control_link( 'behance',
334
+ 'Behance',
335
+ 'https://www.behance.net/YourUsernameHere',
336
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Behance' ),
337
+ '//www.behance.net'
338
+ );
339
+
340
+ spacexchimp_p005_control_link( 'polyvore',
341
+ 'Polyvore',
342
+ 'http://www.polyvore.com/YourUsernameHere',
343
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Polyvore' ),
344
+ '//www.polyvore.com'
345
+ );
346
+
347
+ spacexchimp_p005_control_link( 'yellowpages',
348
+ 'Yellow Pages',
349
+ 'https://www.yellowpages.com/YourUsernameHere',
350
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yellow Pages' ),
351
+ '//www.yellowpages.com'
352
+ );
353
+
354
+ spacexchimp_p005_control_link( 'line',
355
+ 'LINE',
356
+ 'https://line.me/YourUsernameHere',
357
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'LINE' ),
358
+ '//line.me'
359
+ );
360
+
361
+ spacexchimp_p005_control_link( 'itch',
362
+ 'itch',
363
+ 'https://itch.io/YourUsernameHere',
364
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'itch' ),
365
+ '//itch.io'
366
+ );
367
+
368
+ spacexchimp_p005_control_link( 'mastodon',
369
+ 'Mastodon',
370
+ 'https://mastodon.social/YourUsernameHere',
371
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mastodon' ),
372
+ '//mastodon.social'
373
+ );
374
+
375
+ spacexchimp_p005_control_link( 'remind',
376
+ 'Remind',
377
+ 'https://www.remind.com/YourUsernameHere',
378
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Remind' ),
379
+ '//www.remind.com'
380
+ );
381
+
382
+ spacexchimp_p005_control_link( 'trademe',
383
+ 'Trade Me',
384
+ 'https://www.trademe.co.nz/YourUsernameHere',
385
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trade Me' ),
386
+ '//www.trademe.co.nz'
387
+ );
388
+
389
+ spacexchimp_p005_control_link( 'vsco',
390
+ 'VSCO',
391
+ 'https://vsco.co/YourUsernameHere',
392
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'VSCO' ),
393
+ '//vsco.co'
394
+ );
395
+
396
+ spacexchimp_p005_control_link( 'hireology',
397
+ 'Hireology',
398
+ 'https://hireology.com/YourUsernameHere',
399
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hireology' ),
400
+ '//hireology.com'
401
+ );
402
+
403
+ spacexchimp_p005_control_link( 'kompoz',
404
+ 'Kompoz',
405
+ 'https://www.kompoz.com/YourUsernameHere',
406
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Kompoz' ),
407
+ '//www.kompoz.com'
408
+ );
409
+
410
+ spacexchimp_p005_control_link( 'soundblend',
411
+ 'SoundBlend',
412
+ 'https://www.soundblend.com/YourUsernameHere',
413
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundBlend' ),
414
+ '//www.soundblend.com'
415
+ );
416
+
417
+ spacexchimp_p005_control_link( 'vkontakte',
418
+ 'VKontakte',
419
+ 'https://vk.com/id_YourIdentifierHere',
420
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'VKontakte' ),
421
+ '//vk.com'
422
+ );
423
+
424
+ spacexchimp_p005_control_link( 'odnoklassniki',
425
+ 'Odnoklassniki',
426
+ 'https://ok.ru/profile/YourIdentifierHere',
427
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Odnoklassniki' ),
428
+ '//ok.ru'
429
+ );
430
+
431
+ spacexchimp_p005_control_link( 'telegram',
432
+ 'Telegram',
433
+ 'https://telegram.me/YourUsernameHere',
434
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Telegram' ),
435
+ '//telegram.org'
436
+ );
437
+
438
+ spacexchimp_p005_control_link( 'github',
439
+ 'GitHub',
440
+ 'https://github.com/YourUsernameHere',
441
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'GitHub' ),
442
+ '//github.com'
443
+ );
444
+
445
+ spacexchimp_p005_control_link( 'wordpress',
446
+ 'WordPress',
447
+ 'https://profiles.wordpress.org/YourUsernameHere',
448
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'WordPress' ),
449
+ '//wordpress.org'
450
+ );
451
+
452
+ spacexchimp_p005_control_link( 'codepen',
453
+ 'CodePen',
454
+ 'http://codepen.io/YourUsernameHere',
455
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'CodePen' ),
456
+ '//codepen.io'
457
+ );
458
+
459
+ spacexchimp_p005_control_link( 'askfm',
460
+ 'ASKfm',
461
+ 'https://ask.fm/YourUsernameHere',
462
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'ASKfm' ),
463
+ '//ask.fm'
464
+ );
465
+
466
+ spacexchimp_p005_control_link( 'ebay',
467
+ 'eBay',
468
+ 'https://www.ebay.com/YourUsernameHere',
469
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'eBay' ),
470
+ '//www.ebay.com'
471
+ );
472
+
473
+ spacexchimp_p005_control_link( 'hangouts',
474
+ 'Hangouts',
475
+ 'https://hangouts.google.com/YourUsernameHere',
476
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hangouts' ),
477
+ '//hangouts.google.com'
478
+ );
479
+
480
+ spacexchimp_p005_control_link( 'houzz',
481
+ 'Houzz',
482
+ 'https://www.houzz.com/YourUsernameHere',
483
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Houzz' ),
484
+ '//www.houzz.com'
485
+ );
486
+
487
+ spacexchimp_p005_control_link( 'quora',
488
+ 'Quora',
489
+ 'https://www.quora.com/YourUsernameHere',
490
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Quora' ),
491
+ '//www.quora.com'
492
+ );
493
+
494
+ spacexchimp_p005_control_link( 'steemit',
495
+ 'Steemit',
496
+ 'https://steemit.com/YourUsernameHere',
497
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steemit' ),
498
+ '//steemit.com'
499
+ );
500
+
501
+ spacexchimp_p005_control_link( 'theartstack',
502
+ 'ArtStack',
503
+ 'https://theartstack.com/YourUsernameHere',
504
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'ArtStack' ),
505
+ '//theartstack.com'
506
+ );
507
+
508
+ spacexchimp_p005_control_link( 'theknot',
509
+ 'The Knot',
510
+ 'https://www.theknot.com/YourUsernameHere',
511
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'The Knot' ),
512
+ '//www.theknot.com'
513
+ );
514
+
515
+ spacexchimp_p005_control_link( 'viber',
516
+ 'Viber',
517
+ 'https://www.viber.com/YourUsernameHere',
518
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Viber' ),
519
+ '//www.viber.com'
520
+ );
521
+
522
+ spacexchimp_p005_control_link( 'etsy',
523
+ 'Etsy',
524
+ 'https://www.etsy.com/YourUsernameHere',
525
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Etsy' ),
526
+ '//www.etsy.com'
527
+ );
528
+
529
+ spacexchimp_p005_control_link( 'tripadvisor',
530
+ 'Trip Advisor',
531
+ 'https://www.tripadvisor.com/YourUsernameHere',
532
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trip Advisor' ),
533
+ '//www.tripadvisor.com'
534
+ );
535
+
536
+ spacexchimp_p005_control_link( 'stackoverflow',
537
+ 'Stack Overflow',
538
+ 'https://stackoverflow.com/YourUsernameHere',
539
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Overflow' ),
540
+ '//stackoverflow.com'
541
+ );
542
+
543
+ spacexchimp_p005_control_link( 'stackexchange',
544
+ 'Stack Exchange',
545
+ 'https://stackexchange.com/YourUsernameHere',
546
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Exchange' ),
547
+ '//stackexchange.com'
548
+ );
549
+
550
+ spacexchimp_p005_control_link( 'wattpad',
551
+ 'Wattpad',
552
+ 'https://www.wattpad.com/YourUsernameHere',
553
+ sprintf( __( 'Enter the link to your %s profile page', $text ), 'Wattpad' ),
554
+ '//www.wattpad.com'
555
+ );
556
+
557
+ spacexchimp_p005_control_link( 'skype',
558
+ 'Skype',
559
+ 'skype:YourUsernameHere?call',
560
+ __( '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 ),
561
+ '//www.skype.com'
562
+ );
563
+
564
+ spacexchimp_p005_control_link( 'website',
565
+ 'Personal website',
566
+ 'https://www.arthurgareginyan.com',
567
+ __( 'Enter the link to your personal website', $text ),
568
+ ''
569
+ );
570
+
571
+ spacexchimp_p005_control_link( 'email',
572
+ 'Email',
573
+ 'mailto:YourUsernameHere@gmail.com',
574
+ __( 'Enter your email address with prefix <b>mailto:</b>', $text ),
575
+ ''
576
+ );
577
+
578
+ spacexchimp_p005_control_link( 'telephone',
579
+ 'Telephone',
580
+ 'tel://1-555-555-5555',
581
+ __( 'Enter your telephone number with prefix <b>tel://</b>', $text ),
582
+ ''
583
+ );
584
+
585
+ spacexchimp_p005_control_link( 'rss-feed',
586
+ 'RSS Feed',
587
+ 'http://YourDomainNameHere.com/feed',
588
+ __( 'Enter the link to your RSS Feed', $text ),
589
+ ''
590
+ );
inc/php/page.php CHANGED
@@ -27,8 +27,8 @@ function spacexchimp_p005_render_submenu_page() {
27
  <?php echo $name; ?>
28
  <span>
29
  <?php printf(
30
- __( 'by %s Arthur Gareginyan %s', $text ),
31
- '<a href="https://www.arthurgareginyan.com" target="_blank">',
32
  '</a>'
33
  );
34
  ?>
@@ -44,7 +44,6 @@ function spacexchimp_p005_render_submenu_page() {
44
  <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
45
  <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
46
  <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
47
- <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
48
  <li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
49
  </ul>
50
  <!-- END-TABS NAVIGATION MENU -->
@@ -61,7 +60,7 @@ function spacexchimp_p005_render_submenu_page() {
61
  <!-- TAB 2 -->
62
  <div class="tab-page fade" id="tab-usage">
63
  <div class="postbox">
64
- <h3 class="title"><?php _e( 'Usage', $text ); ?></h3>
65
  <div class="inside">
66
  <p><?php _e( 'To display the social media follow buttons bar on the front end of your website, simply follow these steps:', $text ); ?></p>
67
  <ol class="custom-counter">
@@ -186,17 +185,30 @@ function spacexchimp_p005_render_submenu_page() {
186
  <!-- TAB 4 -->
187
  <div class="tab-page fade" id="tab-support">
188
  <div class="postbox">
189
- <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
190
  <div class="inside">
191
- <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!" class="pull-right">
192
- <p><?php _e( 'If you appreciate my work, you can buy me a coffee!', $text ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  <p><?php _e( 'I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, 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>
194
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
195
- <span class="btn-label">
196
- <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
197
- </span>
198
- <?php _e( 'Donate with PayPal', $text ); ?>
199
- </a>
200
  <p><?php _e( 'Thank you for your support!', $text ); ?></p>
201
  </div>
202
  </div>
@@ -204,19 +216,10 @@ function spacexchimp_p005_render_submenu_page() {
204
  <!-- END-TAB 4 -->
205
 
206
  <!-- TAB 5 -->
207
- <div class="tab-page fade" id="tab-author">
208
- <div class="postbox">
209
- <h3 class="title"><?php _e( 'Author', $text ); ?></h3>
210
- <div class="inside include-tab-author"></div>
211
- </div>
212
- </div>
213
- <!-- END-TAB 5 -->
214
-
215
- <!-- TAB 6 -->
216
  <div class="tab-page fade" id="tab-store">
217
  <div class="include-tab-store"></div>
218
  </div>
219
- <!-- END-TAB 6 -->
220
 
221
  </div>
222
 
27
  <?php echo $name; ?>
28
  <span>
29
  <?php printf(
30
+ __( 'by %s Space X-Chimp Studio %s', $text ),
31
+ '<a href="https://www.spacexchimp.com" target="_blank">',
32
  '</a>'
33
  );
34
  ?>
44
  <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
45
  <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
46
  <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
 
47
  <li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
48
  </ul>
49
  <!-- END-TABS NAVIGATION MENU -->
60
  <!-- TAB 2 -->
61
  <div class="tab-page fade" id="tab-usage">
62
  <div class="postbox">
63
+ <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
64
  <div class="inside">
65
  <p><?php _e( 'To display the social media follow buttons bar on the front end of your website, simply follow these steps:', $text ); ?></p>
66
  <ol class="custom-counter">
185
  <!-- TAB 4 -->
186
  <div class="tab-page fade" id="tab-support">
187
  <div class="postbox">
188
+ <h3 class="title"><?php _e( 'Support Me', $text ); ?></h3>
189
  <div class="inside">
190
+ <span class="image-with-button pull-left">
191
+ <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
192
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
193
+ <span class="btn-label">
194
+ <img src="<?php echo SPACEXCHIMP_P005_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
195
+ </span>
196
+ <?php _e( 'Donate with PayPal', $text ); ?>
197
+ </a>
198
+ </span>
199
+ <p><?php
200
+ printf(
201
+ __( 'Hello! My name is %s Arthur Gareginyan %s and I\'m the founder of %s Space X-Chimp Studio %s.', $text ),
202
+ '<a href="https://www.arthurgareginyan.com" target="_blank">',
203
+ '</a>',
204
+ '<a href="https://www.spacexchimp.com" target="_blank">',
205
+ '</a>'
206
+ );
207
+ ?>
208
+ </p>
209
+ <p><?php _e( 'My intention is to create projects that will make this world a better place. I\'m really passionate about my work, I like what I\'m doing and hope that you will be enriched by my projects too.', $text ); ?></p>
210
  <p><?php _e( 'I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, 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>
211
+ <p><?php _e( 'If you appreciate my work, you can buy me a coffee!', $text ); ?></p>
 
 
 
 
 
212
  <p><?php _e( 'Thank you for your support!', $text ); ?></p>
213
  </div>
214
  </div>
216
  <!-- END-TAB 4 -->
217
 
218
  <!-- TAB 5 -->
 
 
 
 
 
 
 
 
 
219
  <div class="tab-page fade" id="tab-store">
220
  <div class="include-tab-store"></div>
221
  </div>
222
+ <!-- END-TAB 5 -->
223
 
224
  </div>
225
 
languages/social-media-buttons-toolbar-es_ES.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
- "POT-Creation-Date: 2017-09-08 11:23+0300\n"
7
- "PO-Revision-Date: 2017-09-08 11:23+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -22,15 +22,15 @@ msgstr ""
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
 
25
- #: inc/php/core.php:26 inc/php/page.php:43
26
  msgid "Settings"
27
  msgstr "Ajustes"
28
 
29
- #: inc/php/core.php:40
30
  msgid "Donate"
31
  msgstr "Donar"
32
 
33
- #: inc/php/core.php:53
34
  msgid "Social Media Follow Buttons"
35
  msgstr "Social Media Follow Buttons"
36
 
@@ -106,14 +106,14 @@ msgstr "Actualiza el complemento a la versión más reciente y todo estará bien
106
 
107
  #: inc/php/page.php:30
108
  #, php-format
109
- msgid "by %s Arthur Gareginyan %s"
110
- msgstr "por %s Arthur Gareginyan %s"
111
 
112
  #: inc/php/page.php:36
113
  msgid "Version"
114
  msgstr "Versión"
115
 
116
- #: inc/php/page.php:44 inc/php/page.php:64
117
  msgid "Usage"
118
  msgstr "Uso"
119
 
@@ -121,56 +121,55 @@ msgstr "Uso"
121
  msgid "F.A.Q."
122
  msgstr "Preguntas ?"
123
 
124
- #: inc/php/page.php:46 inc/php/page.php:189 inc/php/settings.php:128
125
- #: inc/php/sidebar.php:23
126
  msgid "Support"
127
  msgstr "Soporte"
128
 
129
- #: inc/php/page.php:47 inc/php/page.php:209
130
- msgid "Author"
131
- msgstr "Autor"
132
-
133
- #: inc/php/page.php:48
134
  msgid "Store"
135
  msgstr "Tienda"
136
 
137
- #: inc/php/page.php:66
 
 
 
 
138
  msgid ""
139
  "To display the social media follow buttons bar on the front end of your website, "
140
  "simply follow these steps:"
141
  msgstr ""
142
 
143
- #: inc/php/page.php:68
144
  msgid "Go to the \"Settings\" tab."
145
  msgstr "Debes ir a la pestaña “Ajustes”."
146
 
147
- #: inc/php/page.php:69
148
  msgid "Fill in the required fields."
149
  msgstr ""
150
 
151
- #: inc/php/page.php:70
152
  msgid "Select the desired settings."
153
  msgstr "Seleccione la configuración deseada."
154
 
155
- #: inc/php/page.php:71
156
  msgid "Click the \"Save changes\" button."
157
  msgstr "Clic en el botón \"Guardar Cambios\"."
158
 
159
- #: inc/php/page.php:72
160
  msgid ""
161
  "Now you have several methods for display the social media follow buttons bar "
162
  "(further just \"buttons\"). Just choose the one that is more suitable for your "
163
  "case."
164
  msgstr ""
165
 
166
- #: inc/php/page.php:73
167
  msgid ""
168
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
169
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
170
  "\"Display options\", then click the \"Save changes\" button."
171
  msgstr ""
172
 
173
- #: inc/php/page.php:74
174
  msgid ""
175
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
176
  "following shortcode:"
@@ -178,7 +177,7 @@ msgstr ""
178
  "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
179
  "Páginas de Wordpress usa el siguiente shortcode:"
180
 
181
- #: inc/php/page.php:76
182
  msgid ""
183
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "
184
  "\"Text\" widget and add inside it the following shortcode:"
@@ -186,33 +185,33 @@ msgstr ""
186
  "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
187
  "u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
188
 
189
- #: inc/php/page.php:78
190
  msgid ""
191
  "<b>D)</b> For add the buttons directly to a theme files, just add the following "
192
  "code to needed place (where you want to display the buttons) in your theme files:"
193
  msgstr ""
194
 
195
- #: inc/php/page.php:81
196
  msgid "Enjoy your fancy social media follow buttons."
197
  msgstr ""
198
 
199
- #: inc/php/page.php:81
200
  msgid "It's that simple!"
201
  msgstr "¡Es así de simple!"
202
 
203
- #: inc/php/page.php:83 inc/php/settings.php:39
204
  msgid "Note!"
205
  msgstr "¡Nota!"
206
 
207
- #: inc/php/page.php:83
208
  msgid "If you want more options then tell me and I will be happy to add it."
209
  msgstr "Si quieres más opciones, dímelo y estaré encantado de añadirlo."
210
 
211
- #: inc/php/page.php:92
212
  msgid "Frequently Asked Questions"
213
  msgstr "Preguntas Frecuentes"
214
 
215
- #: inc/php/page.php:96
216
  msgid ""
217
  "If you have a question, please read the Frequently Asked Questions below to see if "
218
  "the answer is here."
@@ -220,11 +219,11 @@ msgstr ""
220
  "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, "
221
  "para ver si la respuesta está aquí."
222
 
223
- #: inc/php/page.php:118
224
  msgid "Will this plugin work on my WordPress.COM website?"
225
  msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
226
 
227
- #: inc/php/page.php:119
228
  msgid ""
229
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
230
  "websites."
@@ -232,11 +231,11 @@ msgstr ""
232
  "Lo sentimos, este complemento está disponible para su uso solo en sitios web "
233
  "alojados (WordPress.ORG)."
234
 
235
- #: inc/php/page.php:121
236
  msgid "Can I use this plugin on my language?"
237
  msgstr "¿Puedo usar este complemento en mi idioma?"
238
 
239
- #: inc/php/page.php:122
240
  msgid ""
241
  "Yes. This plugin is ready for translation and has already been translated into "
242
  "several languages."
@@ -244,7 +243,7 @@ msgstr ""
244
  "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a varios "
245
  "idiomas."
246
 
247
- #: inc/php/page.php:124
248
  #, php-format
249
  msgid ""
250
  "If you want to help translate this plugin then please visit the %s. You can also "
@@ -257,7 +256,7 @@ msgstr ""
257
  "crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e "
258
  "incluiré esta traducción en la siguiente actualización del complemento."
259
 
260
- #: inc/php/page.php:129
261
  msgid ""
262
  "Maybe not all existed translations are up to date. You are welcome to contribute "
263
  "corrections!"
@@ -265,7 +264,7 @@ msgstr ""
265
  "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a "
266
  "contribuir correcciones!"
267
 
268
- #: inc/php/page.php:130
269
  msgid ""
270
  "Many of plugin users would be delighted if you share your translation with the "
271
  "community. Thanks for your contribution!"
@@ -273,32 +272,32 @@ msgstr ""
273
  "Muchos de los usuarios de este complemento estarían encantados si compartes tu "
274
  "traducción con la comunidad. ¡Gracias por tu contribución!"
275
 
276
- #: inc/php/page.php:132
277
  msgid "How does it work?"
278
  msgstr "¿Como funciona?"
279
 
280
- #: inc/php/page.php:133
281
  msgid ""
282
  "On the \"Settings\" tab, select the desired settings and click the \"Save changes"
283
  "\" button. Enjoy your fancy social media follow buttons. It's that simple!"
284
  msgstr ""
285
 
286
- #: inc/php/page.php:135
287
  msgid "Does this plugin requires any modification of the theme?"
288
  msgstr "¿Este complemento requiere alguna modificación del tema?"
289
 
290
- #: inc/php/page.php:136
291
  msgid ""
292
  "Absolutely not. This plugin is configurable entirely from the plugin settings page."
293
  msgstr ""
294
  "Absolutamente NO. Este complemento se puede configurar completamente desde su "
295
  "página de configuración."
296
 
297
- #: inc/php/page.php:138
298
  msgid "Does this require any knowledge of HTML or CSS?"
299
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
300
 
301
- #: inc/php/page.php:139
302
  msgid ""
303
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, "
304
  "using an easy-to-use plugin settings page."
@@ -306,24 +305,24 @@ msgstr ""
306
  "Absolutamente no. Este complemento se puede configurar sin conocimientos de HTML o "
307
  "CSS, utilizando su página de configuración la cual es fácil de usar."
308
 
309
- #: inc/php/page.php:141
310
  msgid ""
311
  "What I need to do if the Google PageSpeed test says that this plugin images must "
312
  "be compressed?"
313
  msgstr ""
314
 
315
- #: inc/php/page.php:142
316
  msgid ""
317
  "The images that uses in this plugin are already compressed, but I will do my best "
318
  "to find out what else can be done with the images in order to compress them even "
319
  "better."
320
  msgstr ""
321
 
322
- #: inc/php/page.php:144
323
  msgid "It's not working. What could be wrong?"
324
  msgstr "No funciona. ¿Qué podría estar mal?"
325
 
326
- #: inc/php/page.php:145
327
  msgid ""
328
  "As with every plugin, it's possible that things don't work. The most common reason "
329
  "for this is a web browser's cache. Every web browser stores a cache of the "
@@ -337,7 +336,7 @@ msgstr ""
337
  "uso del ancho de banda y la carga del servidor. Esto se denomina caché del "
338
  "navegador. Limpiar la caché del navegador puede resolver el problema."
339
 
340
- #: inc/php/page.php:146
341
  msgid ""
342
  "It's impossible to tell what could be wrong exactly, but if you post a support "
343
  "request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
@@ -350,7 +349,7 @@ msgstr ""
350
  "información como sea posible, incluyendo un enlace a tu sitio web donde se pueda "
351
  "ver el problema."
352
 
353
- #: inc/php/page.php:148
354
  msgid ""
355
  "The last WordPress update is preventing me from editing my website that is using "
356
  "this plugin. Why is this?"
@@ -358,7 +357,7 @@ msgstr ""
358
  "La última actualización de WordPress me impide editar mi sitio web que está "
359
  "utilizando este complemento. ¿Porqué sucede esto?"
360
 
361
- #: inc/php/page.php:149
362
  msgid ""
363
  "This plugin can not cause such problem. More likely, the problem are related to "
364
  "the settings of the website. It could just be a cache, so please try to clear your "
@@ -372,31 +371,31 @@ msgstr ""
372
  "de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador "
373
  "web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
374
 
375
- #: inc/php/page.php:151
376
  msgid "Where to report bug if found?"
377
  msgstr "¿Dónde informar el error si se encuentra?"
378
 
379
- #: inc/php/page.php:153
380
  #, php-format
381
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
382
  msgstr "Visita la página dedicada del complemento %s en GitHub %s e informa."
383
 
384
- #: inc/php/page.php:159
385
  msgid "Where to share any ideas or suggestions to make the plugin better?"
386
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
387
 
388
- #: inc/php/page.php:161
389
  #, php-format
390
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
391
  msgstr ""
392
  "¡Cualquier sugerencia es muy bienvenida! Por favor envíame un correo electrónico a "
393
  "%s. ¡Muchas Gracias!"
394
 
395
- #: inc/php/page.php:166
396
  msgid "I love this plugin! Can I help somehow?"
397
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
398
 
399
- #: inc/php/page.php:168
400
  #, php-format
401
  msgid ""
402
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click "
@@ -405,11 +404,11 @@ msgstr ""
405
  "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi "
406
  "sitio web %s, has clic en el botón DONAR y gracias!"
407
 
408
- #: inc/php/page.php:174
409
  msgid "My question wasn't answered here."
410
  msgstr "Mi pregunta no fue contestada aquí."
411
 
412
- #: inc/php/page.php:176
413
  #, php-format
414
  msgid ""
415
  "You can ask your question on the plugin support page %s. But please keep in mind "
@@ -420,11 +419,29 @@ msgstr ""
420
  "cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, "
421
  "así que no tengo forma de responder a todos."
422
 
423
- #: inc/php/page.php:192
424
- msgid "If you appreciate my work, you can buy me a coffee!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  msgstr ""
426
 
427
- #: inc/php/page.php:193
428
  msgid ""
429
  "I spend a lot of time and effort trying to make sure that the themes, plugins and "
430
  "other things I build are useful, and the ultimate proof of that for me is that you "
@@ -433,11 +450,11 @@ msgid ""
433
  "time building things for people like you to enjoy."
434
  msgstr ""
435
 
436
- #: inc/php/page.php:198 inc/php/settings.php:135 inc/php/sidebar.php:30
437
- msgid "Donate with PayPal"
438
- msgstr "Donar con PayPal"
439
 
440
- #: inc/php/page.php:200
441
  msgid "Thank you for your support!"
442
  msgstr "¡Gracias por tu apoyo!"
443
 
@@ -626,6 +643,12 @@ msgstr "Arthur Gareginyan"
626
  msgid "https://www.arthurgareginyan.com"
627
  msgstr "https://www.arthurgareginyan.com"
628
 
 
 
 
 
 
 
629
  #~ msgid "Enter the link to your Facebook profile page"
630
  #~ msgstr "Ingresa el enlace a tu página de perfil de Facebook"
631
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-09-15 14:27+0300\n"
7
+ "PO-Revision-Date: 2017-09-15 14:27+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
 
25
+ #: inc/php/core.php:23 inc/php/page.php:43
26
  msgid "Settings"
27
  msgstr "Ajustes"
28
 
29
+ #: inc/php/core.php:37
30
  msgid "Donate"
31
  msgstr "Donar"
32
 
33
+ #: inc/php/core.php:73
34
  msgid "Social Media Follow Buttons"
35
  msgstr "Social Media Follow Buttons"
36
 
106
 
107
  #: inc/php/page.php:30
108
  #, php-format
109
+ msgid "by %s Space X-Chimp Studio %s"
110
+ msgstr ""
111
 
112
  #: inc/php/page.php:36
113
  msgid "Version"
114
  msgstr "Versión"
115
 
116
+ #: inc/php/page.php:44
117
  msgid "Usage"
118
  msgstr "Uso"
119
 
121
  msgid "F.A.Q."
122
  msgstr "Preguntas ?"
123
 
124
+ #: inc/php/page.php:46 inc/php/settings.php:128 inc/php/sidebar.php:23
 
125
  msgid "Support"
126
  msgstr "Soporte"
127
 
128
+ #: inc/php/page.php:47
 
 
 
 
129
  msgid "Store"
130
  msgstr "Tienda"
131
 
132
+ #: inc/php/page.php:63
133
+ msgid "Usage Instructions"
134
+ msgstr ""
135
+
136
+ #: inc/php/page.php:65
137
  msgid ""
138
  "To display the social media follow buttons bar on the front end of your website, "
139
  "simply follow these steps:"
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:67
143
  msgid "Go to the \"Settings\" tab."
144
  msgstr "Debes ir a la pestaña “Ajustes”."
145
 
146
+ #: inc/php/page.php:68
147
  msgid "Fill in the required fields."
148
  msgstr ""
149
 
150
+ #: inc/php/page.php:69
151
  msgid "Select the desired settings."
152
  msgstr "Seleccione la configuración deseada."
153
 
154
+ #: inc/php/page.php:70
155
  msgid "Click the \"Save changes\" button."
156
  msgstr "Clic en el botón \"Guardar Cambios\"."
157
 
158
+ #: inc/php/page.php:71
159
  msgid ""
160
  "Now you have several methods for display the social media follow buttons bar "
161
  "(further just \"buttons\"). Just choose the one that is more suitable for your "
162
  "case."
163
  msgstr ""
164
 
165
+ #: inc/php/page.php:72
166
  msgid ""
167
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, "
168
  "just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section "
169
  "\"Display options\", then click the \"Save changes\" button."
170
  msgstr ""
171
 
172
+ #: inc/php/page.php:73
173
  msgid ""
174
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
175
  "following shortcode:"
177
  "<b>B)</b>Para añadir la barra dentro de una entrada desde el Editor de Entradas/"
178
  "Páginas de Wordpress usa el siguiente shortcode:"
179
 
180
+ #: inc/php/page.php:75
181
  msgid ""
182
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the "
183
  "\"Text\" widget and add inside it the following shortcode:"
185
  "<b>C)</b> Para añadir la barra al área de widgets (en la barra lateral, en el pie, "
186
  "u otro) usa el widget \"Text\" y agregálo dentro del siguiente shortcode:"
187
 
188
+ #: inc/php/page.php:77
189
  msgid ""
190
  "<b>D)</b> For add the buttons directly to a theme files, just add the following "
191
  "code to needed place (where you want to display the buttons) in your theme files:"
192
  msgstr ""
193
 
194
+ #: inc/php/page.php:80
195
  msgid "Enjoy your fancy social media follow buttons."
196
  msgstr ""
197
 
198
+ #: inc/php/page.php:80
199
  msgid "It's that simple!"
200
  msgstr "¡Es así de simple!"
201
 
202
+ #: inc/php/page.php:82 inc/php/settings.php:39
203
  msgid "Note!"
204
  msgstr "¡Nota!"
205
 
206
+ #: inc/php/page.php:82
207
  msgid "If you want more options then tell me and I will be happy to add it."
208
  msgstr "Si quieres más opciones, dímelo y estaré encantado de añadirlo."
209
 
210
+ #: inc/php/page.php:91
211
  msgid "Frequently Asked Questions"
212
  msgstr "Preguntas Frecuentes"
213
 
214
+ #: inc/php/page.php:95
215
  msgid ""
216
  "If you have a question, please read the Frequently Asked Questions below to see if "
217
  "the answer is here."
219
  "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, "
220
  "para ver si la respuesta está aquí."
221
 
222
+ #: inc/php/page.php:117
223
  msgid "Will this plugin work on my WordPress.COM website?"
224
  msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
225
 
226
+ #: inc/php/page.php:118
227
  msgid ""
228
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
229
  "websites."
231
  "Lo sentimos, este complemento está disponible para su uso solo en sitios web "
232
  "alojados (WordPress.ORG)."
233
 
234
+ #: inc/php/page.php:120
235
  msgid "Can I use this plugin on my language?"
236
  msgstr "¿Puedo usar este complemento en mi idioma?"
237
 
238
+ #: inc/php/page.php:121
239
  msgid ""
240
  "Yes. This plugin is ready for translation and has already been translated into "
241
  "several languages."
243
  "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a varios "
244
  "idiomas."
245
 
246
+ #: inc/php/page.php:123
247
  #, php-format
248
  msgid ""
249
  "If you want to help translate this plugin then please visit the %s. You can also "
256
  "crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e "
257
  "incluiré esta traducción en la siguiente actualización del complemento."
258
 
259
+ #: inc/php/page.php:128
260
  msgid ""
261
  "Maybe not all existed translations are up to date. You are welcome to contribute "
262
  "corrections!"
264
  "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a "
265
  "contribuir correcciones!"
266
 
267
+ #: inc/php/page.php:129
268
  msgid ""
269
  "Many of plugin users would be delighted if you share your translation with the "
270
  "community. Thanks for your contribution!"
272
  "Muchos de los usuarios de este complemento estarían encantados si compartes tu "
273
  "traducción con la comunidad. ¡Gracias por tu contribución!"
274
 
275
+ #: inc/php/page.php:131
276
  msgid "How does it work?"
277
  msgstr "¿Como funciona?"
278
 
279
+ #: inc/php/page.php:132
280
  msgid ""
281
  "On the \"Settings\" tab, select the desired settings and click the \"Save changes"
282
  "\" button. Enjoy your fancy social media follow buttons. It's that simple!"
283
  msgstr ""
284
 
285
+ #: inc/php/page.php:134
286
  msgid "Does this plugin requires any modification of the theme?"
287
  msgstr "¿Este complemento requiere alguna modificación del tema?"
288
 
289
+ #: inc/php/page.php:135
290
  msgid ""
291
  "Absolutely not. This plugin is configurable entirely from the plugin settings page."
292
  msgstr ""
293
  "Absolutamente NO. Este complemento se puede configurar completamente desde su "
294
  "página de configuración."
295
 
296
+ #: inc/php/page.php:137
297
  msgid "Does this require any knowledge of HTML or CSS?"
298
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
299
 
300
+ #: inc/php/page.php:138
301
  msgid ""
302
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, "
303
  "using an easy-to-use plugin settings page."
305
  "Absolutamente no. Este complemento se puede configurar sin conocimientos de HTML o "
306
  "CSS, utilizando su página de configuración la cual es fácil de usar."
307
 
308
+ #: inc/php/page.php:140
309
  msgid ""
310
  "What I need to do if the Google PageSpeed test says that this plugin images must "
311
  "be compressed?"
312
  msgstr ""
313
 
314
+ #: inc/php/page.php:141
315
  msgid ""
316
  "The images that uses in this plugin are already compressed, but I will do my best "
317
  "to find out what else can be done with the images in order to compress them even "
318
  "better."
319
  msgstr ""
320
 
321
+ #: inc/php/page.php:143
322
  msgid "It's not working. What could be wrong?"
323
  msgstr "No funciona. ¿Qué podría estar mal?"
324
 
325
+ #: inc/php/page.php:144
326
  msgid ""
327
  "As with every plugin, it's possible that things don't work. The most common reason "
328
  "for this is a web browser's cache. Every web browser stores a cache of the "
336
  "uso del ancho de banda y la carga del servidor. Esto se denomina caché del "
337
  "navegador. Limpiar la caché del navegador puede resolver el problema."
338
 
339
+ #: inc/php/page.php:145
340
  msgid ""
341
  "It's impossible to tell what could be wrong exactly, but if you post a support "
342
  "request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
349
  "información como sea posible, incluyendo un enlace a tu sitio web donde se pueda "
350
  "ver el problema."
351
 
352
+ #: inc/php/page.php:147
353
  msgid ""
354
  "The last WordPress update is preventing me from editing my website that is using "
355
  "this plugin. Why is this?"
357
  "La última actualización de WordPress me impide editar mi sitio web que está "
358
  "utilizando este complemento. ¿Porqué sucede esto?"
359
 
360
+ #: inc/php/page.php:148
361
  msgid ""
362
  "This plugin can not cause such problem. More likely, the problem are related to "
363
  "the settings of the website. It could just be a cache, so please try to clear your "
371
  "de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador "
372
  "web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
373
 
374
+ #: inc/php/page.php:150
375
  msgid "Where to report bug if found?"
376
  msgstr "¿Dónde informar el error si se encuentra?"
377
 
378
+ #: inc/php/page.php:152
379
  #, php-format
380
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
381
  msgstr "Visita la página dedicada del complemento %s en GitHub %s e informa."
382
 
383
+ #: inc/php/page.php:158
384
  msgid "Where to share any ideas or suggestions to make the plugin better?"
385
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
386
 
387
+ #: inc/php/page.php:160
388
  #, php-format
389
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
390
  msgstr ""
391
  "¡Cualquier sugerencia es muy bienvenida! Por favor envíame un correo electrónico a "
392
  "%s. ¡Muchas Gracias!"
393
 
394
+ #: inc/php/page.php:165
395
  msgid "I love this plugin! Can I help somehow?"
396
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
397
 
398
+ #: inc/php/page.php:167
399
  #, php-format
400
  msgid ""
401
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click "
404
  "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi "
405
  "sitio web %s, has clic en el botón DONAR y gracias!"
406
 
407
+ #: inc/php/page.php:173
408
  msgid "My question wasn't answered here."
409
  msgstr "Mi pregunta no fue contestada aquí."
410
 
411
+ #: inc/php/page.php:175
412
  #, php-format
413
  msgid ""
414
  "You can ask your question on the plugin support page %s. But please keep in mind "
419
  "cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, "
420
  "así que no tengo forma de responder a todos."
421
 
422
+ #: inc/php/page.php:188
423
+ msgid "Support Me"
424
+ msgstr ""
425
+
426
+ #: inc/php/page.php:196 inc/php/settings.php:135 inc/php/sidebar.php:30
427
+ msgid "Donate with PayPal"
428
+ msgstr "Donar con PayPal"
429
+
430
+ #: inc/php/page.php:201
431
+ #, php-format
432
+ msgid ""
433
+ "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp "
434
+ "Studio %s."
435
+ msgstr ""
436
+
437
+ #: inc/php/page.php:209
438
+ msgid ""
439
+ "My intention is to create projects that will make this world a better place. I'm "
440
+ "really passionate about my work, I like what I'm doing and hope that you will be "
441
+ "enriched by my projects too."
442
  msgstr ""
443
 
444
+ #: inc/php/page.php:210
445
  msgid ""
446
  "I spend a lot of time and effort trying to make sure that the themes, plugins and "
447
  "other things I build are useful, and the ultimate proof of that for me is that you "
450
  "time building things for people like you to enjoy."
451
  msgstr ""
452
 
453
+ #: inc/php/page.php:211
454
+ msgid "If you appreciate my work, you can buy me a coffee!"
455
+ msgstr ""
456
 
457
+ #: inc/php/page.php:212
458
  msgid "Thank you for your support!"
459
  msgstr "¡Gracias por tu apoyo!"
460
 
643
  msgid "https://www.arthurgareginyan.com"
644
  msgstr "https://www.arthurgareginyan.com"
645
 
646
+ #~ msgid "by %s Arthur Gareginyan %s"
647
+ #~ msgstr "por %s Arthur Gareginyan %s"
648
+
649
+ #~ msgid "Author"
650
+ #~ msgstr "Autor"
651
+
652
  #~ msgid "Enter the link to your Facebook profile page"
653
  #~ msgstr "Ingresa el enlace a tu página de perfil de Facebook"
654
 
languages/social-media-buttons-toolbar-ru_RU.mo CHANGED
Binary file
languages/social-media-buttons-toolbar-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
- "POT-Creation-Date: 2017-09-08 11:23+0300\n"
5
- "PO-Revision-Date: 2017-09-08 11:23+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -21,15 +21,15 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: inc/php/core.php:26 inc/php/page.php:43
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
28
- #: inc/php/core.php:40
29
  msgid "Donate"
30
  msgstr "Поддержать"
31
 
32
- #: inc/php/core.php:53
33
  msgid "Social Media Follow Buttons"
34
  msgstr "Социальные Медиа Кнопки Следования"
35
 
@@ -107,14 +107,14 @@ msgstr "Пожалуйста, обновите плагин до последн
107
 
108
  #: inc/php/page.php:30
109
  #, php-format
110
- msgid "by %s Arthur Gareginyan %s"
111
- msgstr "от %s Артура Гарегинян %s"
112
 
113
  #: inc/php/page.php:36
114
  msgid "Version"
115
  msgstr "Версия"
116
 
117
- #: inc/php/page.php:44 inc/php/page.php:64
118
  msgid "Usage"
119
  msgstr "Применение"
120
 
@@ -122,20 +122,19 @@ msgstr "Применение"
122
  msgid "F.A.Q."
123
  msgstr "F.A.Q."
124
 
125
- #: inc/php/page.php:46 inc/php/page.php:189 inc/php/settings.php:128
126
- #: inc/php/sidebar.php:23
127
  msgid "Support"
128
  msgstr "Поддержка"
129
 
130
- #: inc/php/page.php:47 inc/php/page.php:209
131
- msgid "Author"
132
- msgstr "Автор"
133
-
134
- #: inc/php/page.php:48
135
  msgid "Store"
136
  msgstr "Магазин"
137
 
138
- #: inc/php/page.php:66
 
 
 
 
139
  msgid ""
140
  "To display the social media follow buttons bar on the front end of your "
141
  "website, simply follow these steps:"
@@ -143,23 +142,23 @@ msgstr ""
143
  "Чтобы отобразить панель социальных кнопок на передней панели вашего веб-"
144
  "сайта, просто выполните следующие действия:"
145
 
146
- #: inc/php/page.php:68
147
  msgid "Go to the \"Settings\" tab."
148
  msgstr "Перейдите на вкладку «Настройки»."
149
 
150
- #: inc/php/page.php:69
151
  msgid "Fill in the required fields."
152
  msgstr "Заполните необходимые поля."
153
 
154
- #: inc/php/page.php:70
155
  msgid "Select the desired settings."
156
  msgstr "Выберите нужные настройки."
157
 
158
- #: inc/php/page.php:71
159
  msgid "Click the \"Save changes\" button."
160
  msgstr "Нажмите кнопку «Сохранить изменения»."
161
 
162
- #: inc/php/page.php:72
163
  msgid ""
164
  "Now you have several methods for display the social media follow buttons bar "
165
  "(further just \"buttons\"). Just choose the one that is more suitable for "
@@ -169,7 +168,7 @@ msgstr ""
169
  "(далее просто «кнопки»). Просто выберите ту, которая больше подходит для "
170
  "вашего дела."
171
 
172
- #: inc/php/page.php:73
173
  msgid ""
174
  "<b>A)</b> For display the buttons below a content on every Posts or/and "
175
  "Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in "
@@ -180,7 +179,7 @@ msgstr ""
180
  "на страницах” в разделе “Настройки отображения”, затем нажмите кнопку "
181
  "“Сохранить изменения”."
182
 
183
- #: inc/php/page.php:74
184
  msgid ""
185
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
186
  "following shortcode:"
@@ -188,7 +187,7 @@ msgstr ""
188
  "<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WP Post/Page "
189
  "используйте следующий короткий код:"
190
 
191
- #: inc/php/page.php:76
192
  msgid ""
193
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) "
194
  "use the \"Text\" widget and add inside it the following shortcode:"
@@ -197,7 +196,7 @@ msgstr ""
197
  "колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий "
198
  "короткий код:"
199
 
200
- #: inc/php/page.php:78
201
  msgid ""
202
  "<b>D)</b> For add the buttons directly to a theme files, just add the "
203
  "following code to needed place (where you want to display the buttons) in "
@@ -207,39 +206,39 @@ msgstr ""
207
  "добавьте следующий код в нужное место (где вы хотите отображать кнопки) в "
208
  "файлах темы:"
209
 
210
- #: inc/php/page.php:81
211
  msgid "Enjoy your fancy social media follow buttons."
212
  msgstr "Наслаждайтесь своими модными социальными медиа кнопками следования."
213
 
214
- #: inc/php/page.php:81
215
  msgid "It's that simple!"
216
  msgstr "Вот так просто!"
217
 
218
- #: inc/php/page.php:83 inc/php/settings.php:39
219
  msgid "Note!"
220
  msgstr "Примечание!"
221
 
222
- #: inc/php/page.php:83
223
  msgid "If you want more options then tell me and I will be happy to add it."
224
  msgstr ""
225
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
226
  "добавить их."
227
 
228
- #: inc/php/page.php:92
229
  msgid "Frequently Asked Questions"
230
  msgstr "Частые вопросы"
231
 
232
- #: inc/php/page.php:96
233
  msgid ""
234
  "If you have a question, please read the Frequently Asked Questions below to "
235
  "see if the answer is here."
236
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
237
 
238
- #: inc/php/page.php:118
239
  msgid "Will this plugin work on my WordPress.COM website?"
240
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
241
 
242
- #: inc/php/page.php:119
243
  msgid ""
244
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
245
  "websites."
@@ -247,17 +246,17 @@ msgstr ""
247
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
248
  "размещённых веб-сайтах (WordPress.ORG)."
249
 
250
- #: inc/php/page.php:121
251
  msgid "Can I use this plugin on my language?"
252
  msgstr "Можно ли использовать этот плагин на моём языке?"
253
 
254
- #: inc/php/page.php:122
255
  msgid ""
256
  "Yes. This plugin is ready for translation and has already been translated "
257
  "into several languages."
258
  msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
259
 
260
- #: inc/php/page.php:124
261
  #, php-format
262
  msgid ""
263
  "If you want to help translate this plugin then please visit the %s. You can "
@@ -271,13 +270,13 @@ msgstr ""
271
  "папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
272
  "PO на %s и Я включу этот перевод в следующее обновление плагина."
273
 
274
- #: inc/php/page.php:129
275
  msgid ""
276
  "Maybe not all existed translations are up to date. You are welcome to "
277
  "contribute corrections!"
278
  msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
279
 
280
- #: inc/php/page.php:130
281
  msgid ""
282
  "Many of plugin users would be delighted if you share your translation with "
283
  "the community. Thanks for your contribution!"
@@ -285,11 +284,11 @@ msgstr ""
285
  "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
286
  "с сообществом. Спасибо за ваш вклад!"
287
 
288
- #: inc/php/page.php:132
289
  msgid "How does it work?"
290
  msgstr "Как оно работает?"
291
 
292
- #: inc/php/page.php:133
293
  msgid ""
294
  "On the \"Settings\" tab, select the desired settings and click the \"Save "
295
  "changes\" button. Enjoy your fancy social media follow buttons. It's that "
@@ -299,11 +298,11 @@ msgstr ""
299
  "изменения». Наслаждайтесь вашими модными Социальными медиа кнопками "
300
  "следования. Это так просто!"
301
 
302
- #: inc/php/page.php:135
303
  msgid "Does this plugin requires any modification of the theme?"
304
  msgstr "Этот плагин требует изменения темы?"
305
 
306
- #: inc/php/page.php:136
307
  msgid ""
308
  "Absolutely not. This plugin is configurable entirely from the plugin "
309
  "settings page."
@@ -311,11 +310,11 @@ msgstr ""
311
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
312
  "плагина."
313
 
314
- #: inc/php/page.php:138
315
  msgid "Does this require any knowledge of HTML or CSS?"
316
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
317
 
318
- #: inc/php/page.php:139
319
  msgid ""
320
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
321
  "CSS, using an easy-to-use plugin settings page."
@@ -323,7 +322,7 @@ msgstr ""
323
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
324
  "помощью простой в использовании страницы настройки плагина."
325
 
326
- #: inc/php/page.php:141
327
  msgid ""
328
  "What I need to do if the Google PageSpeed test says that this plugin images "
329
  "must be compressed?"
@@ -331,7 +330,7 @@ msgstr ""
331
  "Что делать, если в тесте Google Page Speed сказано, что изображения этого "
332
  "плагина должны быть сжаты?"
333
 
334
- #: inc/php/page.php:142
335
  msgid ""
336
  "The images that uses in this plugin are already compressed, but I will do my "
337
  "best to find out what else can be done with the images in order to compress "
@@ -341,11 +340,11 @@ msgstr ""
341
  "возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать "
342
  "их ещё лучше."
343
 
344
- #: inc/php/page.php:144
345
  msgid "It's not working. What could be wrong?"
346
  msgstr "Оно не работает. Что может быть не так?"
347
 
348
- #: inc/php/page.php:145
349
  msgid ""
350
  "As with every plugin, it's possible that things don't work. The most common "
351
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -360,7 +359,7 @@ msgstr ""
360
  "сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
361
  "проблему."
362
 
363
- #: inc/php/page.php:146
364
  msgid ""
365
  "It's impossible to tell what could be wrong exactly, but if you post a "
366
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -373,7 +372,7 @@ msgstr ""
373
  "больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
374
  "проблему."
375
 
376
- #: inc/php/page.php:148
377
  msgid ""
378
  "The last WordPress update is preventing me from editing my website that is "
379
  "using this plugin. Why is this?"
@@ -381,7 +380,7 @@ msgstr ""
381
  "Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
382
  "который использует этот плагин. Почему так?"
383
 
384
- #: inc/php/page.php:149
385
  msgid ""
386
  "This plugin can not cause such problem. More likely, the problem are related "
387
  "to the settings of the website. It could just be a cache, so please try to "
@@ -395,22 +394,22 @@ msgstr ""
395
  "веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
396
  "попробуйте повторно войти на сайт, это тоже может помочь."
397
 
398
- #: inc/php/page.php:151
399
  msgid "Where to report bug if found?"
400
  msgstr "Где можно сообщить об ошибке?"
401
 
402
- #: inc/php/page.php:153
403
  #, php-format
404
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
405
  msgstr ""
406
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
407
 
408
- #: inc/php/page.php:159
409
  msgid "Where to share any ideas or suggestions to make the plugin better?"
410
  msgstr ""
411
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
412
 
413
- #: inc/php/page.php:161
414
  #, php-format
415
  msgid ""
416
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
@@ -418,11 +417,11 @@ msgstr ""
418
  "Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
419
  "письмо на адрес %s. Спасибо!"
420
 
421
- #: inc/php/page.php:166
422
  msgid "I love this plugin! Can I help somehow?"
423
  msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
424
 
425
- #: inc/php/page.php:168
426
  #, php-format
427
  msgid ""
428
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
@@ -431,11 +430,11 @@ msgstr ""
431
  "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
432
  "нажмите на кнопку пожертвования. Спасибо!"
433
 
434
- #: inc/php/page.php:174
435
  msgid "My question wasn't answered here."
436
  msgstr "Моего вопроса здесь нет."
437
 
438
- #: inc/php/page.php:176
439
  #, php-format
440
  msgid ""
441
  "You can ask your question on the plugin support page %s. But please keep in "
@@ -446,11 +445,34 @@ msgstr ""
446
  "виду, что этот плагин является бесплатным и без специальной поддержки, "
447
  "поэтому у меня нет возможности ответить на все вопросы."
448
 
449
- #: inc/php/page.php:192
450
- msgid "If you appreciate my work, you can buy me a coffee!"
451
- msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
 
 
 
 
452
 
453
- #: inc/php/page.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid ""
455
  "I spend a lot of time and effort trying to make sure that the themes, "
456
  "plugins and other things I build are useful, and the ultimate proof of that "
@@ -466,11 +488,11 @@ msgstr ""
466
  "вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
467
  "создание программ для людей как вы."
468
 
469
- #: inc/php/page.php:198 inc/php/settings.php:135 inc/php/sidebar.php:30
470
- msgid "Donate with PayPal"
471
- msgstr "Пожертвовать через PayPal"
472
 
473
- #: inc/php/page.php:200
474
  msgid "Thank you for your support!"
475
  msgstr "Спасибо за вашу поддержку!"
476
 
@@ -666,6 +688,12 @@ msgstr "Артур Гарегинян"
666
  msgid "https://www.arthurgareginyan.com"
667
  msgstr "https://www.arthurgareginyan.com"
668
 
 
 
 
 
 
 
669
  #~ msgid "Enter the link to your Facebook profile page"
670
  #~ msgstr "Введите ссылку на вашу страницу профиля Facebook"
671
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Social Media Buttons Toolbar\n"
4
+ "POT-Creation-Date: 2017-09-15 14:22+0300\n"
5
+ "PO-Revision-Date: 2017-09-15 14:23+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: inc/php/core.php:23 inc/php/page.php:43
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
28
+ #: inc/php/core.php:37
29
  msgid "Donate"
30
  msgstr "Поддержать"
31
 
32
+ #: inc/php/core.php:73
33
  msgid "Social Media Follow Buttons"
34
  msgstr "Социальные Медиа Кнопки Следования"
35
 
107
 
108
  #: inc/php/page.php:30
109
  #, php-format
110
+ msgid "by %s Space X-Chimp Studio %s"
111
+ msgstr "от %s Space X-Chimp Studio %s"
112
 
113
  #: inc/php/page.php:36
114
  msgid "Version"
115
  msgstr "Версия"
116
 
117
+ #: inc/php/page.php:44
118
  msgid "Usage"
119
  msgstr "Применение"
120
 
122
  msgid "F.A.Q."
123
  msgstr "F.A.Q."
124
 
125
+ #: inc/php/page.php:46 inc/php/settings.php:128 inc/php/sidebar.php:23
 
126
  msgid "Support"
127
  msgstr "Поддержка"
128
 
129
+ #: inc/php/page.php:47
 
 
 
 
130
  msgid "Store"
131
  msgstr "Магазин"
132
 
133
+ #: inc/php/page.php:63
134
+ msgid "Usage Instructions"
135
+ msgstr "Инструкция по использованию"
136
+
137
+ #: inc/php/page.php:65
138
  msgid ""
139
  "To display the social media follow buttons bar on the front end of your "
140
  "website, simply follow these steps:"
142
  "Чтобы отобразить панель социальных кнопок на передней панели вашего веб-"
143
  "сайта, просто выполните следующие действия:"
144
 
145
+ #: inc/php/page.php:67
146
  msgid "Go to the \"Settings\" tab."
147
  msgstr "Перейдите на вкладку «Настройки»."
148
 
149
+ #: inc/php/page.php:68
150
  msgid "Fill in the required fields."
151
  msgstr "Заполните необходимые поля."
152
 
153
+ #: inc/php/page.php:69
154
  msgid "Select the desired settings."
155
  msgstr "Выберите нужные настройки."
156
 
157
+ #: inc/php/page.php:70
158
  msgid "Click the \"Save changes\" button."
159
  msgstr "Нажмите кнопку «Сохранить изменения»."
160
 
161
+ #: inc/php/page.php:71
162
  msgid ""
163
  "Now you have several methods for display the social media follow buttons bar "
164
  "(further just \"buttons\"). Just choose the one that is more suitable for "
168
  "(далее просто «кнопки»). Просто выберите ту, которая больше подходит для "
169
  "вашего дела."
170
 
171
+ #: inc/php/page.php:72
172
  msgid ""
173
  "<b>A)</b> For display the buttons below a content on every Posts or/and "
174
  "Pages, just check the checkbox \"Show on Posts\" or/and \"Show on Pages\" in "
179
  "на страницах” в разделе “Настройки отображения”, затем нажмите кнопку "
180
  "“Сохранить изменения”."
181
 
182
+ #: inc/php/page.php:73
183
  msgid ""
184
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the "
185
  "following shortcode:"
187
  "<b>Б)</b> Для добавления кнопок внутри сообщения из редактора WP Post/Page "
188
  "используйте следующий короткий код:"
189
 
190
+ #: inc/php/page.php:75
191
  msgid ""
192
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) "
193
  "use the \"Text\" widget and add inside it the following shortcode:"
196
  "колонтитуле и т.д.) используйте виджет «Текст» и добавьте в него следующий "
197
  "короткий код:"
198
 
199
+ #: inc/php/page.php:77
200
  msgid ""
201
  "<b>D)</b> For add the buttons directly to a theme files, just add the "
202
  "following code to needed place (where you want to display the buttons) in "
206
  "добавьте следующий код в нужное место (где вы хотите отображать кнопки) в "
207
  "файлах темы:"
208
 
209
+ #: inc/php/page.php:80
210
  msgid "Enjoy your fancy social media follow buttons."
211
  msgstr "Наслаждайтесь своими модными социальными медиа кнопками следования."
212
 
213
+ #: inc/php/page.php:80
214
  msgid "It's that simple!"
215
  msgstr "Вот так просто!"
216
 
217
+ #: inc/php/page.php:82 inc/php/settings.php:39
218
  msgid "Note!"
219
  msgstr "Примечание!"
220
 
221
+ #: inc/php/page.php:82
222
  msgid "If you want more options then tell me and I will be happy to add it."
223
  msgstr ""
224
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
225
  "добавить их."
226
 
227
+ #: inc/php/page.php:91
228
  msgid "Frequently Asked Questions"
229
  msgstr "Частые вопросы"
230
 
231
+ #: inc/php/page.php:95
232
  msgid ""
233
  "If you have a question, please read the Frequently Asked Questions below to "
234
  "see if the answer is here."
235
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
236
 
237
+ #: inc/php/page.php:117
238
  msgid "Will this plugin work on my WordPress.COM website?"
239
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
240
 
241
+ #: inc/php/page.php:118
242
  msgid ""
243
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
244
  "websites."
246
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
247
  "размещённых веб-сайтах (WordPress.ORG)."
248
 
249
+ #: inc/php/page.php:120
250
  msgid "Can I use this plugin on my language?"
251
  msgstr "Можно ли использовать этот плагин на моём языке?"
252
 
253
+ #: inc/php/page.php:121
254
  msgid ""
255
  "Yes. This plugin is ready for translation and has already been translated "
256
  "into several languages."
257
  msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
258
 
259
+ #: inc/php/page.php:123
260
  #, php-format
261
  msgid ""
262
  "If you want to help translate this plugin then please visit the %s. You can "
270
  "папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
271
  "PO на %s и Я включу этот перевод в следующее обновление плагина."
272
 
273
+ #: inc/php/page.php:128
274
  msgid ""
275
  "Maybe not all existed translations are up to date. You are welcome to "
276
  "contribute corrections!"
277
  msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
278
 
279
+ #: inc/php/page.php:129
280
  msgid ""
281
  "Many of plugin users would be delighted if you share your translation with "
282
  "the community. Thanks for your contribution!"
284
  "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
285
  "с сообществом. Спасибо за ваш вклад!"
286
 
287
+ #: inc/php/page.php:131
288
  msgid "How does it work?"
289
  msgstr "Как оно работает?"
290
 
291
+ #: inc/php/page.php:132
292
  msgid ""
293
  "On the \"Settings\" tab, select the desired settings and click the \"Save "
294
  "changes\" button. Enjoy your fancy social media follow buttons. It's that "
298
  "изменения». Наслаждайтесь вашими модными Социальными медиа кнопками "
299
  "следования. Это так просто!"
300
 
301
+ #: inc/php/page.php:134
302
  msgid "Does this plugin requires any modification of the theme?"
303
  msgstr "Этот плагин требует изменения темы?"
304
 
305
+ #: inc/php/page.php:135
306
  msgid ""
307
  "Absolutely not. This plugin is configurable entirely from the plugin "
308
  "settings page."
310
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
311
  "плагина."
312
 
313
+ #: inc/php/page.php:137
314
  msgid "Does this require any knowledge of HTML or CSS?"
315
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
316
 
317
+ #: inc/php/page.php:138
318
  msgid ""
319
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
320
  "CSS, using an easy-to-use plugin settings page."
322
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
323
  "помощью простой в использовании страницы настройки плагина."
324
 
325
+ #: inc/php/page.php:140
326
  msgid ""
327
  "What I need to do if the Google PageSpeed test says that this plugin images "
328
  "must be compressed?"
330
  "Что делать, если в тесте Google Page Speed сказано, что изображения этого "
331
  "плагина должны быть сжаты?"
332
 
333
+ #: inc/php/page.php:141
334
  msgid ""
335
  "The images that uses in this plugin are already compressed, but I will do my "
336
  "best to find out what else can be done with the images in order to compress "
340
  "возможное, чтобы узнать, что ещё можно сделать с изображениями, чтобы сжать "
341
  "их ещё лучше."
342
 
343
+ #: inc/php/page.php:143
344
  msgid "It's not working. What could be wrong?"
345
  msgstr "Оно не работает. Что может быть не так?"
346
 
347
+ #: inc/php/page.php:144
348
  msgid ""
349
  "As with every plugin, it's possible that things don't work. The most common "
350
  "reason for this is a web browser's cache. Every web browser stores a cache "
359
  "сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
360
  "проблему."
361
 
362
+ #: inc/php/page.php:145
363
  msgid ""
364
  "It's impossible to tell what could be wrong exactly, but if you post a "
365
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
372
  "больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
373
  "проблему."
374
 
375
+ #: inc/php/page.php:147
376
  msgid ""
377
  "The last WordPress update is preventing me from editing my website that is "
378
  "using this plugin. Why is this?"
380
  "Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
381
  "который использует этот плагин. Почему так?"
382
 
383
+ #: inc/php/page.php:148
384
  msgid ""
385
  "This plugin can not cause such problem. More likely, the problem are related "
386
  "to the settings of the website. It could just be a cache, so please try to "
394
  "веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
395
  "попробуйте повторно войти на сайт, это тоже может помочь."
396
 
397
+ #: inc/php/page.php:150
398
  msgid "Where to report bug if found?"
399
  msgstr "Где можно сообщить об ошибке?"
400
 
401
+ #: inc/php/page.php:152
402
  #, php-format
403
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
404
  msgstr ""
405
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
406
 
407
+ #: inc/php/page.php:158
408
  msgid "Where to share any ideas or suggestions to make the plugin better?"
409
  msgstr ""
410
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
411
 
412
+ #: inc/php/page.php:160
413
  #, php-format
414
  msgid ""
415
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
417
  "Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
418
  "письмо на адрес %s. Спасибо!"
419
 
420
+ #: inc/php/page.php:165
421
  msgid "I love this plugin! Can I help somehow?"
422
  msgstr "Я очень люблю этот плагин! Могу Я чем-то помочь?"
423
 
424
+ #: inc/php/page.php:167
425
  #, php-format
426
  msgid ""
427
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
430
  "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
431
  "нажмите на кнопку пожертвования. Спасибо!"
432
 
433
+ #: inc/php/page.php:173
434
  msgid "My question wasn't answered here."
435
  msgstr "Моего вопроса здесь нет."
436
 
437
+ #: inc/php/page.php:175
438
  #, php-format
439
  msgid ""
440
  "You can ask your question on the plugin support page %s. But please keep in "
445
  "виду, что этот плагин является бесплатным и без специальной поддержки, "
446
  "поэтому у меня нет возможности ответить на все вопросы."
447
 
448
+ #: inc/php/page.php:188
449
+ msgid "Support Me"
450
+ msgstr "Поддержать меня"
451
+
452
+ #: inc/php/page.php:196 inc/php/settings.php:135 inc/php/sidebar.php:30
453
+ msgid "Donate with PayPal"
454
+ msgstr "Пожертвовать через PayPal"
455
 
456
+ #: inc/php/page.php:201
457
+ #, php-format
458
+ msgid ""
459
+ "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
460
+ "Chimp Studio %s."
461
+ msgstr ""
462
+ "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp "
463
+ "Studio %s."
464
+
465
+ #: inc/php/page.php:209
466
+ msgid ""
467
+ "My intention is to create projects that will make this world a better place. "
468
+ "I'm really passionate about my work, I like what I'm doing and hope that you "
469
+ "will be enriched by my projects too."
470
+ msgstr ""
471
+ "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень "
472
+ "увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже "
473
+ "станете лучше благодаря моим проектам."
474
+
475
+ #: inc/php/page.php:210
476
  msgid ""
477
  "I spend a lot of time and effort trying to make sure that the themes, "
478
  "plugins and other things I build are useful, and the ultimate proof of that "
488
  "вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
489
  "создание программ для людей как вы."
490
 
491
+ #: inc/php/page.php:211
492
+ msgid "If you appreciate my work, you can buy me a coffee!"
493
+ msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
494
 
495
+ #: inc/php/page.php:212
496
  msgid "Thank you for your support!"
497
  msgstr "Спасибо за вашу поддержку!"
498
 
688
  msgid "https://www.arthurgareginyan.com"
689
  msgstr "https://www.arthurgareginyan.com"
690
 
691
+ #~ msgid "by %s Arthur Gareginyan %s"
692
+ #~ msgstr "от %s Артура Гарегинян %s"
693
+
694
+ #~ msgid "Author"
695
+ #~ msgstr "Автор"
696
+
697
  #~ msgid "Enter the link to your Facebook profile page"
698
  #~ msgstr "Введите ссылку на вашу страницу профиля Facebook"
699
 
languages/social-media-buttons-toolbar.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
- "POT-Creation-Date: 2017-09-08 11:23+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -19,15 +19,15 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: inc/php/core.php:26 inc/php/page.php:43
23
  msgid "Settings"
24
  msgstr ""
25
 
26
- #: inc/php/core.php:40
27
  msgid "Donate"
28
  msgstr ""
29
 
30
- #: inc/php/core.php:53
31
  msgid "Social Media Follow Buttons"
32
  msgstr ""
33
 
@@ -95,14 +95,14 @@ msgstr ""
95
 
96
  #: inc/php/page.php:30
97
  #, php-format
98
- msgid "by %s Arthur Gareginyan %s"
99
  msgstr ""
100
 
101
  #: inc/php/page.php:36
102
  msgid "Version"
103
  msgstr ""
104
 
105
- #: inc/php/page.php:44 inc/php/page.php:64
106
  msgid "Usage"
107
  msgstr ""
108
 
@@ -110,113 +110,113 @@ msgstr ""
110
  msgid "F.A.Q."
111
  msgstr ""
112
 
113
- #: inc/php/page.php:46 inc/php/page.php:189 inc/php/settings.php:128 inc/php/sidebar.php:23
114
  msgid "Support"
115
  msgstr ""
116
 
117
- #: inc/php/page.php:47 inc/php/page.php:209
118
- msgid "Author"
119
  msgstr ""
120
 
121
- #: inc/php/page.php:48
122
- msgid "Store"
123
  msgstr ""
124
 
125
- #: inc/php/page.php:66
126
  msgid ""
127
  "To display the social media follow buttons bar on the front end of your website, simply follow these "
128
  "steps:"
129
  msgstr ""
130
 
131
- #: inc/php/page.php:68
132
  msgid "Go to the \"Settings\" tab."
133
  msgstr ""
134
 
135
- #: inc/php/page.php:69
136
  msgid "Fill in the required fields."
137
  msgstr ""
138
 
139
- #: inc/php/page.php:70
140
  msgid "Select the desired settings."
141
  msgstr ""
142
 
143
- #: inc/php/page.php:71
144
  msgid "Click the \"Save changes\" button."
145
  msgstr ""
146
 
147
- #: inc/php/page.php:72
148
  msgid ""
149
  "Now you have several methods for display the social media follow buttons bar (further just \"buttons"
150
  "\"). Just choose the one that is more suitable for your case."
151
  msgstr ""
152
 
153
- #: inc/php/page.php:73
154
  msgid ""
155
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the "
156
  "checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click "
157
  "the \"Save changes\" button."
158
  msgstr ""
159
 
160
- #: inc/php/page.php:74
161
  msgid ""
162
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
163
  msgstr ""
164
 
165
- #: inc/php/page.php:76
166
  msgid ""
167
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget "
168
  "and add inside it the following shortcode:"
169
  msgstr ""
170
 
171
- #: inc/php/page.php:78
172
  msgid ""
173
  "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
174
  "(where you want to display the buttons) in your theme files:"
175
  msgstr ""
176
 
177
- #: inc/php/page.php:81
178
  msgid "Enjoy your fancy social media follow buttons."
179
  msgstr ""
180
 
181
- #: inc/php/page.php:81
182
  msgid "It's that simple!"
183
  msgstr ""
184
 
185
- #: inc/php/page.php:83 inc/php/settings.php:39
186
  msgid "Note!"
187
  msgstr ""
188
 
189
- #: inc/php/page.php:83
190
  msgid "If you want more options then tell me and I will be happy to add it."
191
  msgstr ""
192
 
193
- #: inc/php/page.php:92
194
  msgid "Frequently Asked Questions"
195
  msgstr ""
196
 
197
- #: inc/php/page.php:96
198
  msgid ""
199
  "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
200
  msgstr ""
201
 
202
- #: inc/php/page.php:118
203
  msgid "Will this plugin work on my WordPress.COM website?"
204
  msgstr ""
205
 
206
- #: inc/php/page.php:119
207
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
208
  msgstr ""
209
 
210
- #: inc/php/page.php:121
211
  msgid "Can I use this plugin on my language?"
212
  msgstr ""
213
 
214
- #: inc/php/page.php:122
215
  msgid ""
216
  "Yes. This plugin is ready for translation and has already been translated into several languages."
217
  msgstr ""
218
 
219
- #: inc/php/page.php:124
220
  #, php-format
221
  msgid ""
222
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
@@ -225,59 +225,59 @@ msgid ""
225
  "update."
226
  msgstr ""
227
 
228
- #: inc/php/page.php:129
229
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
230
  msgstr ""
231
 
232
- #: inc/php/page.php:130
233
  msgid ""
234
  "Many of plugin users would be delighted if you share your translation with the community. Thanks for "
235
  "your contribution!"
236
  msgstr ""
237
 
238
- #: inc/php/page.php:132
239
  msgid "How does it work?"
240
  msgstr ""
241
 
242
- #: inc/php/page.php:133
243
  msgid ""
244
  "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy "
245
  "your fancy social media follow buttons. It's that simple!"
246
  msgstr ""
247
 
248
- #: inc/php/page.php:135
249
  msgid "Does this plugin requires any modification of the theme?"
250
  msgstr ""
251
 
252
- #: inc/php/page.php:136
253
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
254
  msgstr ""
255
 
256
- #: inc/php/page.php:138
257
  msgid "Does this require any knowledge of HTML or CSS?"
258
  msgstr ""
259
 
260
- #: inc/php/page.php:139
261
  msgid ""
262
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
263
  "plugin settings page."
264
  msgstr ""
265
 
266
- #: inc/php/page.php:141
267
  msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
268
  msgstr ""
269
 
270
- #: inc/php/page.php:142
271
  msgid ""
272
  "The images that uses in this plugin are already compressed, but I will do my best to find out what "
273
  "else can be done with the images in order to compress them even better."
274
  msgstr ""
275
 
276
- #: inc/php/page.php:144
277
  msgid "It's not working. What could be wrong?"
278
  msgstr ""
279
 
280
- #: inc/php/page.php:145
281
  msgid ""
282
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
283
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) "
@@ -285,7 +285,7 @@ msgid ""
285
  "browser's cache may solve the problem."
286
  msgstr ""
287
 
288
- #: inc/php/page.php:146
289
  msgid ""
290
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
291
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
@@ -293,13 +293,13 @@ msgid ""
293
  "seen."
294
  msgstr ""
295
 
296
- #: inc/php/page.php:148
297
  msgid ""
298
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is "
299
  "this?"
300
  msgstr ""
301
 
302
- #: inc/php/page.php:149
303
  msgid ""
304
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
305
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
@@ -307,51 +307,66 @@ msgid ""
307
  "Also please try to re-login to the website, this too can help."
308
  msgstr ""
309
 
310
- #: inc/php/page.php:151
311
  msgid "Where to report bug if found?"
312
  msgstr ""
313
 
314
- #: inc/php/page.php:153
315
  #, php-format
316
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
317
  msgstr ""
318
 
319
- #: inc/php/page.php:159
320
  msgid "Where to share any ideas or suggestions to make the plugin better?"
321
  msgstr ""
322
 
323
- #: inc/php/page.php:161
324
  #, php-format
325
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
326
  msgstr ""
327
 
328
- #: inc/php/page.php:166
329
  msgid "I love this plugin! Can I help somehow?"
330
  msgstr ""
331
 
332
- #: inc/php/page.php:168
333
  #, php-format
334
  msgid ""
335
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
336
  "button, and thank you!"
337
  msgstr ""
338
 
339
- #: inc/php/page.php:174
340
  msgid "My question wasn't answered here."
341
  msgstr ""
342
 
343
- #: inc/php/page.php:176
344
  #, php-format
345
  msgid ""
346
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is "
347
  "free, and there is no a special support team, so I have no way to answer everyone."
348
  msgstr ""
349
 
350
- #: inc/php/page.php:192
351
- msgid "If you appreciate my work, you can buy me a coffee!"
352
  msgstr ""
353
 
354
- #: inc/php/page.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  msgid ""
356
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I "
357
  "build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
@@ -359,11 +374,11 @@ msgid ""
359
  "costs and lets me spend more time building things for people like you to enjoy."
360
  msgstr ""
361
 
362
- #: inc/php/page.php:198 inc/php/settings.php:135 inc/php/sidebar.php:30
363
- msgid "Donate with PayPal"
364
  msgstr ""
365
 
366
- #: inc/php/page.php:200
367
  msgid "Thank you for your support!"
368
  msgstr ""
369
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Social Media Buttons Toolbar\n"
6
+ "POT-Creation-Date: 2017-09-15 14:08+0300\n"
7
  "PO-Revision-Date: 2015-12-17 02:16+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: inc/php/core.php:23 inc/php/page.php:43
23
  msgid "Settings"
24
  msgstr ""
25
 
26
+ #: inc/php/core.php:37
27
  msgid "Donate"
28
  msgstr ""
29
 
30
+ #: inc/php/core.php:73
31
  msgid "Social Media Follow Buttons"
32
  msgstr ""
33
 
95
 
96
  #: inc/php/page.php:30
97
  #, php-format
98
+ msgid "by %s Space X-Chimp Studio %s"
99
  msgstr ""
100
 
101
  #: inc/php/page.php:36
102
  msgid "Version"
103
  msgstr ""
104
 
105
+ #: inc/php/page.php:44
106
  msgid "Usage"
107
  msgstr ""
108
 
110
  msgid "F.A.Q."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:46 inc/php/settings.php:128 inc/php/sidebar.php:23
114
  msgid "Support"
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:47
118
+ msgid "Store"
119
  msgstr ""
120
 
121
+ #: inc/php/page.php:63
122
+ msgid "Usage Instructions"
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:65
126
  msgid ""
127
  "To display the social media follow buttons bar on the front end of your website, simply follow these "
128
  "steps:"
129
  msgstr ""
130
 
131
+ #: inc/php/page.php:67
132
  msgid "Go to the \"Settings\" tab."
133
  msgstr ""
134
 
135
+ #: inc/php/page.php:68
136
  msgid "Fill in the required fields."
137
  msgstr ""
138
 
139
+ #: inc/php/page.php:69
140
  msgid "Select the desired settings."
141
  msgstr ""
142
 
143
+ #: inc/php/page.php:70
144
  msgid "Click the \"Save changes\" button."
145
  msgstr ""
146
 
147
+ #: inc/php/page.php:71
148
  msgid ""
149
  "Now you have several methods for display the social media follow buttons bar (further just \"buttons"
150
  "\"). Just choose the one that is more suitable for your case."
151
  msgstr ""
152
 
153
+ #: inc/php/page.php:72
154
  msgid ""
155
  "<b>A)</b> For display the buttons below a content on every Posts or/and Pages, just check the "
156
  "checkbox \"Show on Posts\" or/and \"Show on Pages\" in the section \"Display options\", then click "
157
  "the \"Save changes\" button."
158
  msgstr ""
159
 
160
+ #: inc/php/page.php:73
161
  msgid ""
162
  "<b>B)</b> For add the buttons inside a post from WP Post/Page Editor use the following shortcode:"
163
  msgstr ""
164
 
165
+ #: inc/php/page.php:75
166
  msgid ""
167
  "<b>C)</b> For add the buttons to the widget area (in sidebar, footer etc.) use the \"Text\" widget "
168
  "and add inside it the following shortcode:"
169
  msgstr ""
170
 
171
+ #: inc/php/page.php:77
172
  msgid ""
173
  "<b>D)</b> For add the buttons directly to a theme files, just add the following code to needed place "
174
  "(where you want to display the buttons) in your theme files:"
175
  msgstr ""
176
 
177
+ #: inc/php/page.php:80
178
  msgid "Enjoy your fancy social media follow buttons."
179
  msgstr ""
180
 
181
+ #: inc/php/page.php:80
182
  msgid "It's that simple!"
183
  msgstr ""
184
 
185
+ #: inc/php/page.php:82 inc/php/settings.php:39
186
  msgid "Note!"
187
  msgstr ""
188
 
189
+ #: inc/php/page.php:82
190
  msgid "If you want more options then tell me and I will be happy to add it."
191
  msgstr ""
192
 
193
+ #: inc/php/page.php:91
194
  msgid "Frequently Asked Questions"
195
  msgstr ""
196
 
197
+ #: inc/php/page.php:95
198
  msgid ""
199
  "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
200
  msgstr ""
201
 
202
+ #: inc/php/page.php:117
203
  msgid "Will this plugin work on my WordPress.COM website?"
204
  msgstr ""
205
 
206
+ #: inc/php/page.php:118
207
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
208
  msgstr ""
209
 
210
+ #: inc/php/page.php:120
211
  msgid "Can I use this plugin on my language?"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:121
215
  msgid ""
216
  "Yes. This plugin is ready for translation and has already been translated into several languages."
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:123
220
  #, php-format
221
  msgid ""
222
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
225
  "update."
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:128
229
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
230
  msgstr ""
231
 
232
+ #: inc/php/page.php:129
233
  msgid ""
234
  "Many of plugin users would be delighted if you share your translation with the community. Thanks for "
235
  "your contribution!"
236
  msgstr ""
237
 
238
+ #: inc/php/page.php:131
239
  msgid "How does it work?"
240
  msgstr ""
241
 
242
+ #: inc/php/page.php:132
243
  msgid ""
244
  "On the \"Settings\" tab, select the desired settings and click the \"Save changes\" button. Enjoy "
245
  "your fancy social media follow buttons. It's that simple!"
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:134
249
  msgid "Does this plugin requires any modification of the theme?"
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:135
253
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
254
  msgstr ""
255
 
256
+ #: inc/php/page.php:137
257
  msgid "Does this require any knowledge of HTML or CSS?"
258
  msgstr ""
259
 
260
+ #: inc/php/page.php:138
261
  msgid ""
262
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use "
263
  "plugin settings page."
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:140
267
  msgid "What I need to do if the Google PageSpeed test says that this plugin images must be compressed?"
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:141
271
  msgid ""
272
  "The images that uses in this plugin are already compressed, but I will do my best to find out what "
273
  "else can be done with the images in order to compress them even better."
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:143
277
  msgid "It's not working. What could be wrong?"
278
  msgstr ""
279
 
280
+ #: inc/php/page.php:144
281
  msgid ""
282
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
283
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) "
285
  "browser's cache may solve the problem."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:145
289
  msgid ""
290
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
291
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
293
  "seen."
294
  msgstr ""
295
 
296
+ #: inc/php/page.php:147
297
  msgid ""
298
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is "
299
  "this?"
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:148
303
  msgid ""
304
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
305
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
307
  "Also please try to re-login to the website, this too can help."
308
  msgstr ""
309
 
310
+ #: inc/php/page.php:150
311
  msgid "Where to report bug if found?"
312
  msgstr ""
313
 
314
+ #: inc/php/page.php:152
315
  #, php-format
316
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
317
  msgstr ""
318
 
319
+ #: inc/php/page.php:158
320
  msgid "Where to share any ideas or suggestions to make the plugin better?"
321
  msgstr ""
322
 
323
+ #: inc/php/page.php:160
324
  #, php-format
325
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
326
  msgstr ""
327
 
328
+ #: inc/php/page.php:165
329
  msgid "I love this plugin! Can I help somehow?"
330
  msgstr ""
331
 
332
+ #: inc/php/page.php:167
333
  #, php-format
334
  msgid ""
335
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
336
  "button, and thank you!"
337
  msgstr ""
338
 
339
+ #: inc/php/page.php:173
340
  msgid "My question wasn't answered here."
341
  msgstr ""
342
 
343
+ #: inc/php/page.php:175
344
  #, php-format
345
  msgid ""
346
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is "
347
  "free, and there is no a special support team, so I have no way to answer everyone."
348
  msgstr ""
349
 
350
+ #: inc/php/page.php:188
351
+ msgid "Support Me"
352
  msgstr ""
353
 
354
+ #: inc/php/page.php:196 inc/php/settings.php:135 inc/php/sidebar.php:30
355
+ msgid "Donate with PayPal"
356
+ msgstr ""
357
+
358
+ #: inc/php/page.php:201
359
+ #, php-format
360
+ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp Studio %s."
361
+ msgstr ""
362
+
363
+ #: inc/php/page.php:209
364
+ msgid ""
365
+ "My intention is to create projects that will make this world a better place. I'm really passionate "
366
+ "about my work, I like what I'm doing and hope that you will be enriched by my projects too."
367
+ msgstr ""
368
+
369
+ #: inc/php/page.php:210
370
  msgid ""
371
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I "
372
  "build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
374
  "costs and lets me spend more time building things for people like you to enjoy."
375
  msgstr ""
376
 
377
+ #: inc/php/page.php:211
378
+ msgid "If you appreciate my work, you can buy me a coffee!"
379
  msgstr ""
380
 
381
+ #: inc/php/page.php:212
382
  msgid "Thank you for your support!"
383
  msgstr ""
384
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: icon, icon set, button, social, media, social button, social media, social
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
- Stable tag: 4.19
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -166,7 +166,7 @@ Manually via FTP access:
166
  4. Log into Admin Panel of your WordPress website.
167
  5. Activate this plugin through the "`Plugins`" tab.
168
 
169
- After installation and activation, the "`Social Media Follow Buttons`" menu item will appear in the "`Settings`" section of Admin Panel. Click on it in order to view the plugin settings page.
170
 
171
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
172
 
@@ -181,7 +181,7 @@ A. Yes. This plugin is ready for translation and has already been translated int
181
 
182
  = Q. How does it work? =
183
  A. Simply go to the plugin settings page, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It's that simple!
184
- You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`Social Buttons`".
185
 
186
  = Q. Does this plugin requires any modification of the theme? =
187
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Panel of your WordPress website.
@@ -251,6 +251,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
251
 
252
  == Changelog ==
253
 
 
 
 
 
 
 
 
 
 
 
254
  = 4.19 =
255
  * Plugin data that saved in the database upgraded to version 0001.
256
 
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.20
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
166
  4. Log into Admin Panel of your WordPress website.
167
  5. Activate this plugin through the "`Plugins`" tab.
168
 
169
+ After installation and activation, the "`Social Media Follow Buttons`" menu item will appear in the "`Space X-Chimp`" section of Admin Panel. Click on it in order to view the plugin settings page.
170
 
171
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
172
 
181
 
182
  = Q. How does it work? =
183
  A. Simply go to the plugin settings page, select the desired settings and click the "Save changes" button. Enjoy your fancy social media follow buttons. It's that simple!
184
+ You can find the plugin settings page at "`WP Admin Panel`" -> "`Space X-Chimp`" -> "`Social Media Follow Buttons`".
185
 
186
  = Q. Does this plugin requires any modification of the theme? =
187
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Panel of your WordPress website.
251
 
252
  == Changelog ==
253
 
254
+ = 4.20 =
255
+ * Added the top level menu item of the brand.
256
+ * The submenu item of the plugin has moved to the menu item of the brand.
257
+ * The menu item of the plugin is renamed.
258
+ * The "Author" tab on the settings page is removed.
259
+ * Content of the "Support" tab on the settings page is updated.
260
+ * Copyright of plugin files is changed to the "Space X-Chimp Studio".
261
+ * The "Support" tab renamed to the "Support Me".
262
+ * The "Usage" tab renamed to the "Usage Instructions".
263
+
264
  = 4.19 =
265
  * Plugin data that saved in the database upgraded to version 0001.
266
 
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: https://www.arthurgareginyan.com
8
- * Version: 4.19
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
12
  *
13
- * Copyright 2015-2017 Arthur Gareginyan ( website : https://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
5
  * Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
+ * Version: 4.20
9
  * License: GPL3
10
  * Text Domain: social-media-buttons-toolbar
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2015-2017 Space X-Chimp Studio ( website : https://www.spacexchimp.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