Social Share WordPress Plugin – AccessPress Social Share - Version 3.0.6

Version Description

  • Done the text domain change.
  • Done the removal of the submenu page from the plugin.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Share WordPress Plugin – AccessPress Social Share
Version 3.0.6
Comparing to
See all releases

Code changes from version 3.0.5 to 3.0.6

accesspress-social-share.php CHANGED
@@ -4,10 +4,10 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
4
  Plugin name: AccessPress Social Share
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
6
  Description: A plugin to add various social media shares to a site with dynamic configuration options.
7
- Version: 3.0.5
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
- Text Domain:apss-share
11
  Domain Path: /languages/
12
  License: GPLv2 or later
13
  */
@@ -30,11 +30,11 @@ if ( !defined( 'APSS_LANG_DIR' ) ) {
30
  }
31
 
32
  if ( !defined( 'APSS_VERSION' ) ) {
33
- define( 'APSS_VERSION', '3.0.5' );
34
  }
35
 
36
  if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
37
- define( 'APSS_TEXT_DOMAIN', 'apss-share' );
38
  }
39
 
40
  if ( !defined( 'APSS_SETTING_NAME' ) ) {
@@ -95,7 +95,7 @@ if ( !class_exists( 'APSS_Class' ) ) {
95
 
96
  //loads the text domain for translation
97
  function plugin_text_domain() {
98
- load_plugin_textdomain( APSS_TEXT_DOMAIN, false, APSS_LANG_DIR );
99
  }
100
 
101
  //starts the session with the call of init hook
@@ -110,7 +110,7 @@ if ( !class_exists( 'APSS_Class' ) ) {
110
  /**
111
  * Backend CSS
112
  * */
113
- if ( isset( $_GET['page'] ) && $_GET['page'] == 'apss-share' ) {
114
  wp_enqueue_style( 'aps-admin-css', APSS_CSS_DIR . '/backend.css', false, APSS_VERSION ); //registering plugin admin css
115
  wp_enqueue_style( 'fontawesome-css', '//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css', false, APSS_VERSION );
116
 
@@ -200,8 +200,8 @@ if ( !class_exists( 'APSS_Class' ) ) {
200
 
201
  //add plugins menu in backend
202
  function add_apss_menu() {
203
- add_menu_page( 'AccessPress Social Share', 'AccessPress Social Share', 'manage_options', 'apss-share', array( $this, 'main_page' ), APSS_IMAGE_DIR . '/apss-icon.png' );
204
- add_submenu_page( 'apss-share', __( 'Social Icons Settings', APSS_TEXT_DOMAIN ), __( 'Social Icons Settings', APSS_TEXT_DOMAIN ), 'manage_options', 'apss-share', array( $this, 'main_page' ) );
205
  }
206
 
207
  //for saving the plugin settings
@@ -219,8 +219,8 @@ if ( !class_exists( 'APSS_Class' ) ) {
219
  if ( !empty( $_GET ) && wp_verify_nonce( $nonce, 'apss-restore-default-settings-nonce' ) ) {
220
  //restore the default plugin activation settings from the activation page.
221
  include( 'inc/backend/activation.php' );
222
- $_SESSION['apss_message'] = __( 'Settings restored Successfully.', APSS_TEXT_DOMAIN );
223
- wp_redirect( admin_url() . 'admin.php?page=apss-share' );
224
  exit;
225
  } else {
226
  die( 'No script kiddies please!' );
@@ -242,8 +242,8 @@ if ( !class_exists( 'APSS_Class' ) ) {
242
  foreach ( $transient_array as $transient ) {
243
  delete_transient( $transient );
244
  }
245
- $_SESSION['apss_message'] = __( 'Cache cleared Successfully', APSS_TEXT_DOMAIN );
246
- wp_redirect( admin_url() . 'admin.php?page=apss-share' );
247
  }
248
  }
249
 
@@ -300,7 +300,7 @@ if ( !class_exists( 'APSS_Class' ) ) {
300
  wp_nonce_field( 'save_meta_values', 'ap_share_meta_nonce' );
301
  $content_flag = get_post_meta( $post->ID, 'apss_content_flag', true );
302
  ?>
303
- <label><input type="checkbox" value="1" name="apss_content_flag" <?php checked( $content_flag, true ) ?>/><?php _e( 'Hide share icons in content', APSS_TEXT_DOMAIN ); ?></label><br>
304
  <?php
305
  }
306
 
4
  Plugin name: AccessPress Social Share
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
6
  Description: A plugin to add various social media shares to a site with dynamic configuration options.
7
+ Version: 3.0.6
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
+ Text Domain: accesspress-social-share
11
  Domain Path: /languages/
12
  License: GPLv2 or later
13
  */
30
  }
31
 
32
  if ( !defined( 'APSS_VERSION' ) ) {
33
+ define( 'APSS_VERSION', '3.0.6' );
34
  }
35
 
36
  if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
37
+ define( 'APSS_TEXT_DOMAIN', 'accesspress-social-share' );
38
  }
39
 
40
  if ( !defined( 'APSS_SETTING_NAME' ) ) {
95
 
96
  //loads the text domain for translation
97
  function plugin_text_domain() {
98
+ load_plugin_textdomain( 'accesspress-social-share', false, APSS_LANG_DIR );
99
  }
100
 
101
  //starts the session with the call of init hook
110
  /**
111
  * Backend CSS
112
  * */
113
+ if ( isset( $_GET['page'] ) && $_GET['page'] == 'accesspress-social-share' ) {
114
  wp_enqueue_style( 'aps-admin-css', APSS_CSS_DIR . '/backend.css', false, APSS_VERSION ); //registering plugin admin css
115
  wp_enqueue_style( 'fontawesome-css', '//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css', false, APSS_VERSION );
116
 
200
 
201
  //add plugins menu in backend
202
  function add_apss_menu() {
203
+ add_menu_page( 'AccessPress Social Share', 'AccessPress Social Share', 'manage_options', 'accesspress-social-share', array( $this, 'main_page' ), APSS_IMAGE_DIR . '/apss-icon.png' );
204
+ //add_submenu_page( 'accesspress-social-share', __( 'SAccessPress Social Share', 'accesspress-social-share' ), __( 'Social Icons Settings', 'accesspress-social-share' ), 'manage_options', 'accesspress-social-share', array( $this, 'main_page' ) );
205
  }
206
 
207
  //for saving the plugin settings
219
  if ( !empty( $_GET ) && wp_verify_nonce( $nonce, 'apss-restore-default-settings-nonce' ) ) {
220
  //restore the default plugin activation settings from the activation page.
221
  include( 'inc/backend/activation.php' );
222
+ $_SESSION['apss_message'] = __( 'Settings restored Successfully.', 'accesspress-social-share' );
223
+ wp_redirect( admin_url() . 'admin.php?page=accesspress-social-share' );
224
  exit;
225
  } else {
226
  die( 'No script kiddies please!' );
242
  foreach ( $transient_array as $transient ) {
243
  delete_transient( $transient );
244
  }
245
+ $_SESSION['apss_message'] = __( 'Cache cleared Successfully', 'accesspress-social-share' );
246
+ wp_redirect( admin_url() . 'admin.php?page=accesspress-social-share' );
247
  }
248
  }
249
 
300
  wp_nonce_field( 'save_meta_values', 'ap_share_meta_nonce' );
301
  $content_flag = get_post_meta( $post->ID, 'apss_content_flag', true );
302
  ?>
303
+ <label><input type="checkbox" value="1" name="apss_content_flag" <?php checked( $content_flag, true ) ?>/><?php _e( 'Hide share icons in content', 'accesspress-social-share' ); ?></label><br>
304
  <?php
305
  }
306
 
inc/backend/about-apss.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php defined('ABSPATH') or die("No script kiddies please!"); ?>
2
- <h2><?php _e( 'About Us', APSS_TEXT_DOMAIN );?></h2>
3
  <div class="ap-tab-wrapper">
4
  <p><strong>AccessPress Social Share</strong> - is a FREE WordPress Plugin by AccessPress Themes. </p>
5
 
@@ -26,14 +26,14 @@
26
  <h3>Other products by AccessPress themes </h3>
27
  <div class="other-products-inner">
28
  <div class="product">
29
- <div class="logo-product"><img src="<?php echo APSS_IMAGE_DIR;?>/aplite.png" alt="<?php esc_attr_e( 'AccessPress Social Share', APSS_TEXT_DOMAIN ); ?>" /></div>
30
  <div class="productext"><p><strong>AccessPress Lite</strong> - A very popular Free WordPress theme, available in WordPress.org<br />
31
  <a href="http://accesspressthemes.com/wordpress-themes/accesspress-lite/" target="_blank">http://accesspressthemes.com/wordpress-themes/accesspress-lite/</a></p>
32
  </div>
33
  </div>
34
 
35
  <div class="product">
36
- <div class="logo-product"><img src="<?php echo APSS_IMAGE_DIR;?>/appro.png" alt="<?php esc_attr_e( 'AccessPress Social Share', APSS_TEXT_DOMAIN ); ?>" /></div>
37
  <div class="productext"><p><strong>AccessPress Pro</strong> - Premium version of AccessPress lite<br />
38
  <a href="http://accesspressthemes.com/wordpress-themes/accesspress-lite/" target="_blank">http://accesspressthemes.com/wordpress-themes/accesspress-pro/</a></p>
39
  </div>
1
  <?php defined('ABSPATH') or die("No script kiddies please!"); ?>
2
+ <h2><?php _e( 'About Us', 'accesspress-social-share' );?></h2>
3
  <div class="ap-tab-wrapper">
4
  <p><strong>AccessPress Social Share</strong> - is a FREE WordPress Plugin by AccessPress Themes. </p>
5
 
26
  <h3>Other products by AccessPress themes </h3>
27
  <div class="other-products-inner">
28
  <div class="product">
29
+ <div class="logo-product"><img src="<?php echo APSS_IMAGE_DIR;?>/aplite.png" alt="<?php esc_attr_e( 'AccessPress Social Share', 'accesspress-social-share' ); ?>" /></div>
30
  <div class="productext"><p><strong>AccessPress Lite</strong> - A very popular Free WordPress theme, available in WordPress.org<br />
31
  <a href="http://accesspressthemes.com/wordpress-themes/accesspress-lite/" target="_blank">http://accesspressthemes.com/wordpress-themes/accesspress-lite/</a></p>
32
  </div>
33
  </div>
34
 
35
  <div class="product">
36
+ <div class="logo-product"><img src="<?php echo APSS_IMAGE_DIR;?>/appro.png" alt="<?php esc_attr_e( 'AccessPress Social Share', 'accesspress-social-share' ); ?>" /></div>
37
  <div class="productext"><p><strong>AccessPress Pro</strong> - Premium version of AccessPress lite<br />
38
  <a href="http://accesspressthemes.com/wordpress-themes/accesspress-lite/" target="_blank">http://accesspressthemes.com/wordpress-themes/accesspress-pro/</a></p>
39
  </div>
inc/backend/main-page.php CHANGED
@@ -2,7 +2,7 @@
2
  <div class="apss-wrapper-block">
3
  <div class="apss-setting-header clearfix">
4
  <div class="apss-headerlogo">
5
- <img src="<?php echo APSS_IMAGE_DIR; ?>/logo-old.png" alt="<?php esc_attr_e( 'AccessPress Social Share', APSS_TEXT_DOMAIN ); ?>" />
6
  </div>
7
  <div class="apss-header-icons">
8
  <p><?php _e( 'Follow us for new updates' ); ?></p>
@@ -22,7 +22,7 @@
22
  </div>
23
  </div>
24
  <div class="apss-header-title">
25
- <?php _e( 'AccessPress Social Share', APSS_TEXT_DOMAIN ); ?>
26
  </div>
27
  </div>
28
  <?php $options = get_option( APSS_SETTING_NAME );
@@ -41,17 +41,17 @@
41
  <input type="hidden" name="action" value="apss_save_options"/>
42
 
43
  <ul class="apss-setting-tabs clearfix">
44
- <li><a href="javascript:void(0)" id="apss-social-networks" class="apss-tabs-trigger apss-active-tab "><?php _e( 'Social Networks', APSS_TEXT_DOMAIN ); ?></a></li>
45
- <li><a href="javascript:void(0)" id="apss-share-options" class="apss-tabs-trigger "><?php _e( 'Share Options', APSS_TEXT_DOMAIN ) ?></a></li>
46
- <li><a href="javascript:void(0)" id="apss-display-settings" class="apss-tabs-trigger"><?php _e( 'Display Settings', APSS_TEXT_DOMAIN ); ?></a></li>
47
- <li><a href="javascript:void(0)" id="apss-miscellaneous" class="apss-tabs-trigger"><?php _e( 'Miscellaneous', APSS_TEXT_DOMAIN ); ?></a></li>
48
- <li><a href="javascript:void(0)" id="apss-how-to-use" class="apss-tabs-trigger"><?php _e( 'How To Use', APSS_TEXT_DOMAIN ); ?></a></li>
49
- <li><a href="javascript:void(0)" id="apss-about" class="apss-tabs-trigger"><?php _e( 'About', APSS_TEXT_DOMAIN ); ?></a></li>
50
  </ul>
51
  <div class="apss-wrapper">
52
  <div class="apss-tab-contents apss-social-networks" id="tab-apss-social-networks" style='display:block'>
53
- <h2><?php _e( 'Social Media chooser:', APSS_TEXT_DOMAIN ); ?> </h2>
54
- <span class="social-text"><?php _e( 'Please choose the social media you want to display. Also you can order these social media\'s by drag and drop:', APSS_TEXT_DOMAIN ); ?></span>
55
  <div class="apps-opt-wrap clearfix">
56
  <?php
57
  $label_array = array(
@@ -80,141 +80,141 @@
80
  </div>
81
 
82
  <div class="apss-tab-contents apss-share-options" id="tab-apss-share-options" style='display:none'>
83
- <h2><?php _e( 'Share options:', APSS_TEXT_DOMAIN ); ?> </h2>
84
- <span class="social-text"><?php _e( 'Please choose the options where you want to display social share icons:', APSS_TEXT_DOMAIN ); ?></span>
85
  <p><input type="checkbox" id="apss_posts" value="post" name="apss_share_settings[share_options][]" <?php if ( in_array( "post", $options['share_options'] ) || in_array( "posts", $options['share_options'] ) ) {
86
  echo "checked='checked'";
87
- } ?> ><label for="apss_posts"><?php _e( 'Posts', APSS_TEXT_DOMAIN ); ?> </label></p>
88
  <p><input type="checkbox" id="apss_pages" value="page" name="apss_share_settings[share_options][]" <?php if ( in_array( "page", $options['share_options'] ) || in_array( "pages", $options['share_options'] ) ) {
89
  echo "checked='checked'";
90
- } ?> ><label for="apss_pages"><?php _e( 'Pages', APSS_TEXT_DOMAIN ); ?> </label></p>
91
 
92
  <p><input type="checkbox" id="apss_front_page" value="front_page" name="apss_share_settings[share_options][]" <?php if ( in_array( "front_page", $options['share_options'] ) ) {
93
  echo "checked='checked'";
94
- } ?> ><label for="apss_front_page"><?php _e( 'Front Page', APSS_TEXT_DOMAIN ); ?></label></p>
95
  <p><input type="checkbox" id="apss_archives" value="archives" name="apss_share_settings[share_options][]" <?php if ( in_array( "archives", $options['share_options'] ) ) {
96
  echo "checked='checked'";
97
- } ?> ><label for="apss_archives"><?php _e( 'Archives', APSS_TEXT_DOMAIN ); ?></label></p>
98
 
99
  <p><input type="checkbox" id="apss_attachement" value="attachment" name="apss_share_settings[share_options][]" <?php if ( in_array( "attachment", $options['share_options'] ) ) {
100
  echo "checked='checked'";
101
- } ?> ><label for="apss_attachment"><?php _e( 'Attachment pages', APSS_TEXT_DOMAIN ); ?></label></p>
102
 
103
  <p><input type="checkbox" id="apss_categories" value="categories" name="apss_share_settings[share_options][]" <?php if ( in_array( "categories", $options['share_options'] ) ) {
104
  echo "checked='checked'";
105
- } ?> ><label for="apss_categories"><?php _e( 'Categories', APSS_TEXT_DOMAIN ); ?></label></p>
106
  <p><input type="checkbox" id="apss_all" value="all" name="apss_share_settings[share_options][]" <?php if ( in_array( "all", $options['share_options'] ) ) {
107
  echo "checked='checked'";
108
- } ?> ><label for="apss_all"><?php _e( 'Other (search results, etc)', APSS_TEXT_DOMAIN ); ?></label></p>
109
 
110
  </div>
111
 
112
  <div class="apss-tab-contents apss-display-settings" id="tab-apss-display-settings" style='display:none'>
113
  <div class=' apss-display-positions'>
114
- <h2><?php _e( 'Display position:', APSS_TEXT_DOMAIN ); ?></h2>
115
- <span class='social-text'><?php _e( 'Please choose the option where you want to display the social share:', APSS_TEXT_DOMAIN ); ?></span>
116
  <p><input type="radio" id="apss_below_content" name="apss_share_settings[social_share_position_options]" value="below_content" <?php if ( $options['share_positions'] == 'below_content' ) {
117
  echo "checked='checked'";
118
- } ?> /><label for='apss_below_content'><?php _e( 'Below content', APSS_TEXT_DOMAIN ); ?></label></p>
119
  <p><input type="radio" id="apss_above_content" name="apss_share_settings[social_share_position_options]"/ value="above_content" <?php if ( $options['share_positions'] == 'above_content' ) {
120
  echo "checked='checked'";
121
- } ?> /><label for='apss_above_content'><?php _e( 'Above content', APSS_TEXT_DOMAIN ); ?></label></p>
122
  <p><input type="radio" id="apss_below_above_content" id="below_above_content" name="apss_share_settings[social_share_position_options]" value="on_both" <?php if ( $options['share_positions'] == 'on_both' ) {
123
  echo "checked='checked'";
124
- } ?> /><label for='apss_below_above_content'><?php _e( 'Both(Below content and Above content)', APSS_TEXT_DOMAIN ); ?></label></p>
125
  </div>
126
  <div class=" apss-icon-sets">
127
- <h2><?php _e( 'Social icons sets: ', APSS_TEXT_DOMAIN ); ?> </h2>
128
- <?php _e( 'Please choose any one out of available icon themes:', APSS_TEXT_DOMAIN ); ?>
129
  <?php for ( $i = 1; $i <= 6; $i++ ) { ?>
130
  <p><input id="apss_icon_set_<?php echo $i; ?>" value="<?php echo $i; ?>" name="apss_share_settings[social_icon_set]" type="radio" <?php if ( $options['social_icon_set'] == $i ) {
131
  echo "checked='checked'";
132
- } ?> ><label for="apss_icon_set_<?php echo $i; ?>"><span class="apss_demo_icon apss_demo_icons_<?php echo $i; ?>"></span><?php _e( "Theme $i", APSS_TEXT_DOMAIN ); ?><div class="apss-theme-image"><img src='<?php echo APSS_IMAGE_DIR . "/theme/theme$i.jpg"; ?>'/></div></label></p>
133
  <?php } ?>
134
  </div>
135
  </div>
136
 
137
  <div class="apss-tab-contents apss-miscellaneous" id="tab-apss-miscellaneous" style='display:none'>
138
- <h2><?php _e( 'Miscellaneous settings: ', APSS_TEXT_DOMAIN ); ?> </h2>
139
- <h4><?php _e( 'Please setup these additional settings:', APSS_TEXT_DOMAIN ); ?></h4>
140
 
141
  <div class="apss-share-text-settings clearfix">
142
- <h4><?php _e( 'Disable the plugins frontend assets?', APSS_TEXT_DOMAIN ); ?> </h4>
143
  <div class="misc-opt"><input type="radio" id='disable_frontend_assets_n' name="apss_share_settings[disable_frontend_assets]" value="0" <?php if ( isset( $options['disable_frontend_assets'] ) && $options['disable_frontend_assets'] == '0' ) {
144
  echo "checked='checked'";
145
- } ?> /><label for="disable_frontend_assets_n"><?php _e( 'No', APSS_TEXT_DOMAIN ); ?></label></div>
146
  <div class="misc-opt"><input type="radio" id='disable_frontend_assets_y' name="apss_share_settings[disable_frontend_assets]" value="1" <?php if ( isset( $options['disable_frontend_assets'] ) && $options['disable_frontend_assets'] == '1' ) {
147
  echo "checked='checked'";
148
- } ?> /><label for="disable_frontend_assets_y"><?php _e( 'Yes', APSS_TEXT_DOMAIN ); ?></label></div>
149
  <br />
150
  <div class="apss_notes_cache_settings">
151
- <?php _e( 'Please set this value if you don\'t want to use plguins frontend assets(js and css files).', APSS_TEXT_DOMAIN ); ?>
152
  </div>
153
  </div>
154
  <br />
155
  <div class="apss-share-text-settings clearfix">
156
- <?php _e( 'Share text:', APSS_TEXT_DOMAIN ); ?> <input type="text" name="apss_share_settings[share_text]" value="<?php if ( isset( $options['share_text'] ) ) {
157
  echo $options['share_text'];
158
  } ?>" />
159
  <div class="apss_notes_cache_settings">
160
- <?php _e( 'Please enter the share text to make it appear above social share icons. Leave blank if you don\'t want to use share text.', APSS_TEXT_DOMAIN ); ?>
161
  </div>
162
  </div>
163
  <br />
164
  <div class="apss-twitter-settings clearfix">
165
- <?php _e( 'Twitter username:', APSS_TEXT_DOMAIN ); ?> <input type="text" name="apss_share_settings[twitter_username]" value="<?php echo $options['twitter_username']; ?>" />
166
  </div>
167
 
168
  <div class="apss-counter-settings clearfix">
169
- <h4><?php _e( 'Social share counter enable?', APSS_TEXT_DOMAIN ); ?> </h4>
170
  <div class="misc-opt"><input type="radio" id='counter_enable_options_n' name="apss_share_settings[counter_enable_options]" value="0" <?php if ( $options['counter_enable_options'] == '0' ) {
171
  echo "checked='checked'";
172
- } ?> /><label for="counter_enable_options_n"><?php _e( 'No', APSS_TEXT_DOMAIN ); ?></label></div>
173
  <div class="misc-opt"><input type="radio" id='counter_enable_options_y' name="apss_share_settings[counter_enable_options]" value="1" <?php if ( $options['counter_enable_options'] == '1' ) {
174
  echo "checked='checked'";
175
- } ?> /><label for="counter_enable_options_y"><?php _e( 'Yes', APSS_TEXT_DOMAIN ); ?></label></div>
176
  </div>
177
 
178
  <div class="apss-total-counter-settings clearfix">
179
- <h4><?php _e( 'Social share total counter enable?', APSS_TEXT_DOMAIN ); ?> </h4>
180
  <div class="misc-opt"><input type="radio" id='total_counter_enable_options_n' name="apss_share_settings[total_counter_enable_options]" value="0" <?php if ( isset( $options['total_counter_enable_options'] ) && $options['total_counter_enable_options'] == '0' ) {
181
  echo "checked='checked'";
182
- } ?> /><label for="total_counter_enable_options_n"><?php _e( 'No', APSS_TEXT_DOMAIN ); ?></label></div>
183
  <div class="misc-opt"><input type="radio" id='total_counter_enable_options_y' name="apss_share_settings[total_counter_enable_options]" value="1" <?php if ( isset( $options['total_counter_enable_options'] ) && $options['total_counter_enable_options'] == '1' ) {
184
  echo "checked='checked'";
185
- } ?> /><label for="total_counter_enable_options_y"><?php _e( 'Yes', APSS_TEXT_DOMAIN ); ?></label></div>
186
  </div>
187
 
188
  <div class="apss-dialog-boxs clearfix">
189
- <h4><?php _e( 'Social share link options:', APSS_TEXT_DOMAIN ); ?> </h4>
190
  <div class="misc-opt"><input type="radio" id='dialog_box_options_1' name="apss_share_settings[dialog_box_options]" value="0" <?php if ( $options['dialog_box_options'] == '0' ) {
191
  echo "checked='checked'";
192
- } ?> /><label for="dialog_box_options_1"><?php _e( 'Open in same window', APSS_TEXT_DOMAIN ); ?></label></div>
193
  <div class="misc-opt"><input type="radio" id='dialog_box_options_2' name="apss_share_settings[dialog_box_options]" value="1" <?php if ( $options['dialog_box_options'] == '1' ) {
194
  echo "checked='checked'";
195
- } ?> /><label for="dialog_box_options_2"><?php _e( 'Open in new window/Tab', APSS_TEXT_DOMAIN ); ?></label></div>
196
  </div>
197
 
198
  <div class='cache-settings'>
199
- <h4><?php _e( 'Cache Settings: ', APSS_TEXT_DOMAIN ); ?> </h4>
200
- <label for="apss_cache_settings"><?php _e( 'Cache Period:', APSS_TEXT_DOMAIN ); ?></label>
201
  <input type='number' id="apss_cache_period" name='apss_share_settings[cache_settings]' value="<?php if ( isset( $options['cache_period'] ) ) {
202
  echo $options['cache_period'];
203
  } ?>" onkeyup="removeMe('invalid_cache_period');"/>
204
  <span class="error invalid_cache_period"></span>
205
  <div class="apss_notes_cache_settings">
206
- <?php _e( 'Please enter the time in hours in which the social share counter should be updated from social networks. Default is 24 hours.', APSS_TEXT_DOMAIN ); ?>
207
  </div>
208
  </div>
209
 
210
  <div class="apss-email-settings">
211
- <h4><?php _e( 'Email Settings:', APSS_TEXT_DOMAIN ); ?></h4>
212
  <div class="app-email-sub email-setg">
213
- <label for='apss-email-subject'><?php _e( 'Email subject:', APSS_TEXT_DOMAIN ); ?></label>
214
  <input type='text' name="apss_share_settings[apss_email_subject]" value="<?php echo $options['apss_email_subject'] ?>" />
215
  </div>
216
  <div class="app-email-body email-setg">
217
- <label for='apss-email-body'><?php _e( 'Email body:', APSS_TEXT_DOMAIN ); ?></label>
218
  <textarea rows='30' cols='30' name="apss_share_settings[apss_email_body]"><?php echo $options['apss_email_body'] ?></textarea>
219
  </div>
220
  </div>
@@ -228,7 +228,7 @@
228
 
229
  </div>
230
  <?php wp_nonce_field( 'apss_nonce_save_settings', 'apss_add_nonce_save_settings' ); ?>
231
- <input type="submit" class="submit_settings button primary-button" value="<?php _e( 'Save settings', APSS_TEXT_DOMAIN ); ?>" name="apss_submit_settings" id="apss_submit_settings"/>
232
  <?php
233
  /**
234
  * Nonce field
@@ -237,8 +237,8 @@ wp_nonce_field( 'apss_settings_action', 'apss_settings_action' );
237
  ?>
238
  <?php $nonce = wp_create_nonce( 'apss-restore-default-settings-nonce' ); ?>
239
  <?php $nonce_clear = wp_create_nonce( 'apss-clear-cache-nonce' ); ?>
240
- <a href="<?php echo admin_url() . 'admin-post.php?action=apss_restore_default_settings&_wpnonce=' . $nonce; ?>" onclick="return confirm('<?php _e( 'Are you sure you want to restore default settings?', APSS_TEXT_DOMAIN ); ?>')"><input type="button" value="Restore Default Settings" class="apss-reset-button button primary-button"/></a>
241
- <a href="<?php echo admin_url() . 'admin-post.php?action=apss_clear_cache&_wpnonce=' . $nonce_clear; ?>" onclick="return confirm('<?php _e( 'Are you sure you want to clear cache share counter?', APSS_TEXT_DOMAIN ); ?>')"><input type="button" value="Clear Cache" class="apss-reset-button button primary-button"/></a>
242
  </div>
243
  </form>
244
  </div>
2
  <div class="apss-wrapper-block">
3
  <div class="apss-setting-header clearfix">
4
  <div class="apss-headerlogo">
5
+ <img src="<?php echo APSS_IMAGE_DIR; ?>/logo-old.png" alt="<?php esc_attr_e( 'AccessPress Social Share', 'accesspress-social-share' ); ?>" />
6
  </div>
7
  <div class="apss-header-icons">
8
  <p><?php _e( 'Follow us for new updates' ); ?></p>
22
  </div>
23
  </div>
24
  <div class="apss-header-title">
25
+ <?php _e( 'AccessPress Social Share', 'accesspress-social-share' ); ?>
26
  </div>
27
  </div>
28
  <?php $options = get_option( APSS_SETTING_NAME );
41
  <input type="hidden" name="action" value="apss_save_options"/>
42
 
43
  <ul class="apss-setting-tabs clearfix">
44
+ <li><a href="javascript:void(0)" id="apss-social-networks" class="apss-tabs-trigger apss-active-tab "><?php _e( 'Social Networks', 'accesspress-social-share' ); ?></a></li>
45
+ <li><a href="javascript:void(0)" id="apss-share-options" class="apss-tabs-trigger "><?php _e( 'Share Options', 'accesspress-social-share' ) ?></a></li>
46
+ <li><a href="javascript:void(0)" id="apss-display-settings" class="apss-tabs-trigger"><?php _e( 'Display Settings', 'accesspress-social-share' ); ?></a></li>
47
+ <li><a href="javascript:void(0)" id="apss-miscellaneous" class="apss-tabs-trigger"><?php _e( 'Miscellaneous', 'accesspress-social-share' ); ?></a></li>
48
+ <li><a href="javascript:void(0)" id="apss-how-to-use" class="apss-tabs-trigger"><?php _e( 'How To Use', 'accesspress-social-share' ); ?></a></li>
49
+ <li><a href="javascript:void(0)" id="apss-about" class="apss-tabs-trigger"><?php _e( 'About', 'accesspress-social-share' ); ?></a></li>
50
  </ul>
51
  <div class="apss-wrapper">
52
  <div class="apss-tab-contents apss-social-networks" id="tab-apss-social-networks" style='display:block'>
53
+ <h2><?php _e( 'Social Media chooser:', 'accesspress-social-share' ); ?> </h2>
54
+ <span class="social-text"><?php _e( 'Please choose the social media you want to display. Also you can order these social media\'s by drag and drop:', 'accesspress-social-share' ); ?></span>
55
  <div class="apps-opt-wrap clearfix">
56
  <?php
57
  $label_array = array(
80
  </div>
81
 
82
  <div class="apss-tab-contents apss-share-options" id="tab-apss-share-options" style='display:none'>
83
+ <h2><?php _e( 'Share options:', 'accesspress-social-share' ); ?> </h2>
84
+ <span class="social-text"><?php _e( 'Please choose the options where you want to display social share icons:', 'accesspress-social-share' ); ?></span>
85
  <p><input type="checkbox" id="apss_posts" value="post" name="apss_share_settings[share_options][]" <?php if ( in_array( "post", $options['share_options'] ) || in_array( "posts", $options['share_options'] ) ) {
86
  echo "checked='checked'";
87
+ } ?> ><label for="apss_posts"><?php _e( 'Posts', 'accesspress-social-share' ); ?> </label></p>
88
  <p><input type="checkbox" id="apss_pages" value="page" name="apss_share_settings[share_options][]" <?php if ( in_array( "page", $options['share_options'] ) || in_array( "pages", $options['share_options'] ) ) {
89
  echo "checked='checked'";
90
+ } ?> ><label for="apss_pages"><?php _e( 'Pages', 'accesspress-social-share' ); ?> </label></p>
91
 
92
  <p><input type="checkbox" id="apss_front_page" value="front_page" name="apss_share_settings[share_options][]" <?php if ( in_array( "front_page", $options['share_options'] ) ) {
93
  echo "checked='checked'";
94
+ } ?> ><label for="apss_front_page"><?php _e( 'Front Page', 'accesspress-social-share' ); ?></label></p>
95
  <p><input type="checkbox" id="apss_archives" value="archives" name="apss_share_settings[share_options][]" <?php if ( in_array( "archives", $options['share_options'] ) ) {
96
  echo "checked='checked'";
97
+ } ?> ><label for="apss_archives"><?php _e( 'Archives', 'accesspress-social-share' ); ?></label></p>
98
 
99
  <p><input type="checkbox" id="apss_attachement" value="attachment" name="apss_share_settings[share_options][]" <?php if ( in_array( "attachment", $options['share_options'] ) ) {
100
  echo "checked='checked'";
101
+ } ?> ><label for="apss_attachment"><?php _e( 'Attachment pages', 'accesspress-social-share' ); ?></label></p>
102
 
103
  <p><input type="checkbox" id="apss_categories" value="categories" name="apss_share_settings[share_options][]" <?php if ( in_array( "categories", $options['share_options'] ) ) {
104
  echo "checked='checked'";
105
+ } ?> ><label for="apss_categories"><?php _e( 'Categories', 'accesspress-social-share' ); ?></label></p>
106
  <p><input type="checkbox" id="apss_all" value="all" name="apss_share_settings[share_options][]" <?php if ( in_array( "all", $options['share_options'] ) ) {
107
  echo "checked='checked'";
108
+ } ?> ><label for="apss_all"><?php _e( 'Other (search results, etc)', 'accesspress-social-share' ); ?></label></p>
109
 
110
  </div>
111
 
112
  <div class="apss-tab-contents apss-display-settings" id="tab-apss-display-settings" style='display:none'>
113
  <div class=' apss-display-positions'>
114
+ <h2><?php _e( 'Display position:', 'accesspress-social-share' ); ?></h2>
115
+ <span class='social-text'><?php _e( 'Please choose the option where you want to display the social share:', 'accesspress-social-share' ); ?></span>
116
  <p><input type="radio" id="apss_below_content" name="apss_share_settings[social_share_position_options]" value="below_content" <?php if ( $options['share_positions'] == 'below_content' ) {
117
  echo "checked='checked'";
118
+ } ?> /><label for='apss_below_content'><?php _e( 'Below content', 'accesspress-social-share' ); ?></label></p>
119
  <p><input type="radio" id="apss_above_content" name="apss_share_settings[social_share_position_options]"/ value="above_content" <?php if ( $options['share_positions'] == 'above_content' ) {
120
  echo "checked='checked'";
121
+ } ?> /><label for='apss_above_content'><?php _e( 'Above content', 'accesspress-social-share' ); ?></label></p>
122
  <p><input type="radio" id="apss_below_above_content" id="below_above_content" name="apss_share_settings[social_share_position_options]" value="on_both" <?php if ( $options['share_positions'] == 'on_both' ) {
123
  echo "checked='checked'";
124
+ } ?> /><label for='apss_below_above_content'><?php _e( 'Both(Below content and Above content)', 'accesspress-social-share' ); ?></label></p>
125
  </div>
126
  <div class=" apss-icon-sets">
127
+ <h2><?php _e( 'Social icons sets: ', 'accesspress-social-share' ); ?> </h2>
128
+ <?php _e( 'Please choose any one out of available icon themes:', 'accesspress-social-share' ); ?>
129
  <?php for ( $i = 1; $i <= 6; $i++ ) { ?>
130
  <p><input id="apss_icon_set_<?php echo $i; ?>" value="<?php echo $i; ?>" name="apss_share_settings[social_icon_set]" type="radio" <?php if ( $options['social_icon_set'] == $i ) {
131
  echo "checked='checked'";
132
+ } ?> ><label for="apss_icon_set_<?php echo $i; ?>"><span class="apss_demo_icon apss_demo_icons_<?php echo $i; ?>"></span><?php _e( "Theme $i", 'accesspress-social-share' ); ?><div class="apss-theme-image"><img src='<?php echo APSS_IMAGE_DIR . "/theme/theme$i.jpg"; ?>'/></div></label></p>
133
  <?php } ?>
134
  </div>
135
  </div>
136
 
137
  <div class="apss-tab-contents apss-miscellaneous" id="tab-apss-miscellaneous" style='display:none'>
138
+ <h2><?php _e( 'Miscellaneous settings: ', 'accesspress-social-share' ); ?> </h2>
139
+ <h4><?php _e( 'Please setup these additional settings:', 'accesspress-social-share' ); ?></h4>
140
 
141
  <div class="apss-share-text-settings clearfix">
142
+ <h4><?php _e( 'Disable the plugins frontend assets?', 'accesspress-social-share' ); ?> </h4>
143
  <div class="misc-opt"><input type="radio" id='disable_frontend_assets_n' name="apss_share_settings[disable_frontend_assets]" value="0" <?php if ( isset( $options['disable_frontend_assets'] ) && $options['disable_frontend_assets'] == '0' ) {
144
  echo "checked='checked'";
145
+ } ?> /><label for="disable_frontend_assets_n"><?php _e( 'No', 'accesspress-social-share' ); ?></label></div>
146
  <div class="misc-opt"><input type="radio" id='disable_frontend_assets_y' name="apss_share_settings[disable_frontend_assets]" value="1" <?php if ( isset( $options['disable_frontend_assets'] ) && $options['disable_frontend_assets'] == '1' ) {
147
  echo "checked='checked'";
148
+ } ?> /><label for="disable_frontend_assets_y"><?php _e( 'Yes', 'accesspress-social-share' ); ?></label></div>
149
  <br />
150
  <div class="apss_notes_cache_settings">
151
+ <?php _e( 'Please set this value if you don\'t want to use plguins frontend assets(js and css files).', 'accesspress-social-share' ); ?>
152
  </div>
153
  </div>
154
  <br />
155
  <div class="apss-share-text-settings clearfix">
156
+ <?php _e( 'Share text:', 'accesspress-social-share' ); ?> <input type="text" name="apss_share_settings[share_text]" value="<?php if ( isset( $options['share_text'] ) ) {
157
  echo $options['share_text'];
158
  } ?>" />
159
  <div class="apss_notes_cache_settings">
160
+ <?php _e( 'Please enter the share text to make it appear above social share icons. Leave blank if you don\'t want to use share text.', 'accesspress-social-share' ); ?>
161
  </div>
162
  </div>
163
  <br />
164
  <div class="apss-twitter-settings clearfix">
165
+ <?php _e( 'Twitter username:', 'accesspress-social-share' ); ?> <input type="text" name="apss_share_settings[twitter_username]" value="<?php echo $options['twitter_username']; ?>" />
166
  </div>
167
 
168
  <div class="apss-counter-settings clearfix">
169
+ <h4><?php _e( 'Social share counter enable?', 'accesspress-social-share' ); ?> </h4>
170
  <div class="misc-opt"><input type="radio" id='counter_enable_options_n' name="apss_share_settings[counter_enable_options]" value="0" <?php if ( $options['counter_enable_options'] == '0' ) {
171
  echo "checked='checked'";
172
+ } ?> /><label for="counter_enable_options_n"><?php _e( 'No', 'accesspress-social-share' ); ?></label></div>
173
  <div class="misc-opt"><input type="radio" id='counter_enable_options_y' name="apss_share_settings[counter_enable_options]" value="1" <?php if ( $options['counter_enable_options'] == '1' ) {
174
  echo "checked='checked'";
175
+ } ?> /><label for="counter_enable_options_y"><?php _e( 'Yes', 'accesspress-social-share' ); ?></label></div>
176
  </div>
177
 
178
  <div class="apss-total-counter-settings clearfix">
179
+ <h4><?php _e( 'Social share total counter enable?', 'accesspress-social-share' ); ?> </h4>
180
  <div class="misc-opt"><input type="radio" id='total_counter_enable_options_n' name="apss_share_settings[total_counter_enable_options]" value="0" <?php if ( isset( $options['total_counter_enable_options'] ) && $options['total_counter_enable_options'] == '0' ) {
181
  echo "checked='checked'";
182
+ } ?> /><label for="total_counter_enable_options_n"><?php _e( 'No', 'accesspress-social-share' ); ?></label></div>
183
  <div class="misc-opt"><input type="radio" id='total_counter_enable_options_y' name="apss_share_settings[total_counter_enable_options]" value="1" <?php if ( isset( $options['total_counter_enable_options'] ) && $options['total_counter_enable_options'] == '1' ) {
184
  echo "checked='checked'";
185
+ } ?> /><label for="total_counter_enable_options_y"><?php _e( 'Yes', 'accesspress-social-share' ); ?></label></div>
186
  </div>
187
 
188
  <div class="apss-dialog-boxs clearfix">
189
+ <h4><?php _e( 'Social share link options:', 'accesspress-social-share' ); ?> </h4>
190
  <div class="misc-opt"><input type="radio" id='dialog_box_options_1' name="apss_share_settings[dialog_box_options]" value="0" <?php if ( $options['dialog_box_options'] == '0' ) {
191
  echo "checked='checked'";
192
+ } ?> /><label for="dialog_box_options_1"><?php _e( 'Open in same window', 'accesspress-social-share' ); ?></label></div>
193
  <div class="misc-opt"><input type="radio" id='dialog_box_options_2' name="apss_share_settings[dialog_box_options]" value="1" <?php if ( $options['dialog_box_options'] == '1' ) {
194
  echo "checked='checked'";
195
+ } ?> /><label for="dialog_box_options_2"><?php _e( 'Open in new window/Tab', 'accesspress-social-share' ); ?></label></div>
196
  </div>
197
 
198
  <div class='cache-settings'>
199
+ <h4><?php _e( 'Cache Settings: ', 'accesspress-social-share' ); ?> </h4>
200
+ <label for="apss_cache_settings"><?php _e( 'Cache Period:', 'accesspress-social-share' ); ?></label>
201
  <input type='number' id="apss_cache_period" name='apss_share_settings[cache_settings]' value="<?php if ( isset( $options['cache_period'] ) ) {
202
  echo $options['cache_period'];
203
  } ?>" onkeyup="removeMe('invalid_cache_period');"/>
204
  <span class="error invalid_cache_period"></span>
205
  <div class="apss_notes_cache_settings">
206
+ <?php _e( 'Please enter the time in hours in which the social share counter should be updated from social networks. Default is 24 hours.', 'accesspress-social-share' ); ?>
207
  </div>
208
  </div>
209
 
210
  <div class="apss-email-settings">
211
+ <h4><?php _e( 'Email Settings:', 'accesspress-social-share' ); ?></h4>
212
  <div class="app-email-sub email-setg">
213
+ <label for='apss-email-subject'><?php _e( 'Email subject:', 'accesspress-social-share' ); ?></label>
214
  <input type='text' name="apss_share_settings[apss_email_subject]" value="<?php echo $options['apss_email_subject'] ?>" />
215
  </div>
216
  <div class="app-email-body email-setg">
217
+ <label for='apss-email-body'><?php _e( 'Email body:', 'accesspress-social-share' ); ?></label>
218
  <textarea rows='30' cols='30' name="apss_share_settings[apss_email_body]"><?php echo $options['apss_email_body'] ?></textarea>
219
  </div>
220
  </div>
228
 
229
  </div>
230
  <?php wp_nonce_field( 'apss_nonce_save_settings', 'apss_add_nonce_save_settings' ); ?>
231
+ <input type="submit" class="submit_settings button primary-button" value="<?php _e( 'Save settings', 'accesspress-social-share' ); ?>" name="apss_submit_settings" id="apss_submit_settings"/>
232
  <?php
233
  /**
234
  * Nonce field
237
  ?>
238
  <?php $nonce = wp_create_nonce( 'apss-restore-default-settings-nonce' ); ?>
239
  <?php $nonce_clear = wp_create_nonce( 'apss-clear-cache-nonce' ); ?>
240
+ <a href="<?php echo admin_url() . 'admin-post.php?action=apss_restore_default_settings&_wpnonce=' . $nonce; ?>" onclick="return confirm('<?php _e( 'Are you sure you want to restore default settings?', 'accesspress-social-share' ); ?>')"><input type="button" value="Restore Default Settings" class="apss-reset-button button primary-button"/></a>
241
+ <a href="<?php echo admin_url() . 'admin-post.php?action=apss_clear_cache&_wpnonce=' . $nonce_clear; ?>" onclick="return confirm('<?php _e( 'Are you sure you want to clear cache share counter?', 'accesspress-social-share' ); ?>')"><input type="button" value="Clear Cache" class="apss-reset-button button primary-button"/></a>
242
  </div>
243
  </form>
244
  </div>
inc/backend/save-settings.php CHANGED
@@ -35,7 +35,7 @@ if ( !isset( $apss_share_settings['apss_social_counts_transients'] ) ) {
35
 
36
  // The option already exists, so we just update it.
37
  update_option( APSS_SETTING_NAME, $apss_share_settings );
38
- $_SESSION['apss_message'] = __( 'Settings Saved Successfully.', APSS_TEXT_DOMAIN );
39
- wp_redirect( admin_url() . 'admin.php?page=apss-share' );
40
  exit;
41
 
35
 
36
  // The option already exists, so we just update it.
37
  update_option( APSS_SETTING_NAME, $apss_share_settings );
38
+ $_SESSION['apss_message'] = __( 'Settings Saved Successfully.', 'accesspress-social-share' );
39
+ wp_redirect( admin_url() . 'admin.php?page=accesspress-social-share' );
40
  exit;
41
 
inc/frontend/content-filter.php CHANGED
@@ -33,11 +33,11 @@ foreach ( $options['social_networks'] as $key => $value ) {
33
  $count = $this->get_count( $key, $url );
34
  ?>
35
  <div class='apss-facebook apss-single-icon'>
36
- <a rel='nofollow' title="<?php _e( 'Share on Facebook', APSS_TEXT_DOMAIN ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
37
  <div class='apss-icon-block clearfix'>
38
  <i class='fa fa-facebook'></i>
39
- <span class='apss-social-text'><?php _e( 'Share on Facebook', APSS_TEXT_DOMAIN ); ?></span>
40
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
41
  </div>
42
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
43
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -58,10 +58,10 @@ foreach ( $options['social_networks'] as $key => $value ) {
58
  $count = $this->get_count( $key, $url );
59
  ?>
60
  <div class='apss-twitter apss-single-icon'>
61
- <a rel='nofollow' title="<?php _e( 'Share on Twitter', APSS_TEXT_DOMAIN ); ?>" target='<?php echo $apss_link_open_option; ?>' href="<?php echo $link; ?>">
62
  <div class='apss-icon-block clearfix'>
63
  <i class='fa fa-twitter'></i>
64
- <span class='apss-social-text'><?php _e( 'Share on Twitter', APSS_TEXT_DOMAIN ); ?></span><span class='apss-share'><?php _e( 'Tweet', APSS_TEXT_DOMAIN ); ?></span>
65
  </div>
66
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
67
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -77,11 +77,11 @@ foreach ( $options['social_networks'] as $key => $value ) {
77
  $count = $this->get_count( $key, $url );
78
  ?>
79
  <div class='apss-google-plus apss-single-icon'>
80
- <a rel='nofollow' title="<?php _e( 'Share on Google Plus', APSS_TEXT_DOMAIN ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
81
  <div class='apss-icon-block clearfix'>
82
  <i class='fa fa-google-plus'></i>
83
- <span class='apss-social-text'><?php _e( 'Share on Google Plus', APSS_TEXT_DOMAIN ); ?></span>
84
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
85
  </div>
86
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
87
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -97,11 +97,11 @@ foreach ( $options['social_networks'] as $key => $value ) {
97
  ?>
98
 
99
  <div class='apss-pinterest apss-single-icon'>
100
- <a rel='nofollow' title="<?php _e( 'Share on Pinterest', APSS_TEXT_DOMAIN ); ?>" href='javascript:pinIt();'>
101
  <div class='apss-icon-block clearfix'>
102
  <i class='fa fa-pinterest'></i>
103
- <span class='apss-social-text'><?php _e( 'Share on Pinterest', APSS_TEXT_DOMAIN ); ?></span>
104
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
105
  </div>
106
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
107
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -119,10 +119,10 @@ foreach ( $options['social_networks'] as $key => $value ) {
119
  ?>
120
 
121
  <div class='apss-linkedin apss-single-icon'>
122
- <a rel='nofollow' title="<?php _e( 'Share on LinkedIn', APSS_TEXT_DOMAIN ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
123
  <div class='apss-icon-block clearfix'><i class='fa fa-linkedin'></i>
124
- <span class='apss-social-text'><?php _e( 'Share on LinkedIn', APSS_TEXT_DOMAIN ); ?></span>
125
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
126
  </div>
127
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
128
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -137,11 +137,11 @@ foreach ( $options['social_networks'] as $key => $value ) {
137
  $link = "http://digg.com/submit?phase=2%20&amp;url=" . $url . "&amp;title=" . $title;
138
  ?>
139
  <div class='apss-digg apss-single-icon'>
140
- <a rel='nofollow' title="<?php _e( 'Share on Digg', APSS_TEXT_DOMAIN ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
141
  <div class='apss-icon-block clearfix'>
142
  <i class='fa fa-digg'></i>
143
- <span class='apss-social-text'><?php _e( 'Share on Digg', APSS_TEXT_DOMAIN ); ?></span>
144
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
145
  </div>
146
  </a>
147
  </div>
@@ -158,11 +158,11 @@ foreach ( $options['social_networks'] as $key => $value ) {
158
  }
159
  ?>
160
  <div class='apss-email apss-single-icon'>
161
- <a rel='nofollow' class='share-email-popup' title="<?php _e( 'Share it on Email', APSS_TEXT_DOMAIN ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
162
  <div class='apss-icon-block clearfix'>
163
  <i class='fa fa-envelope'></i>
164
- <span class='apss-social-text'><?php _e( 'Send email', APSS_TEXT_DOMAIN ); ?></span>
165
- <span class='apss-share'><?php _e( 'Mail', APSS_TEXT_DOMAIN ); ?></span>
166
  </div>
167
  </a>
168
  </div>
@@ -173,11 +173,11 @@ foreach ( $options['social_networks'] as $key => $value ) {
173
  case 'print':
174
  ?>
175
  <div class='apss-print apss-single-icon'>
176
- <a rel='nofollow' title="<?php _e( 'Print', APSS_TEXT_DOMAIN ); ?>" href='javascript:void(0);' onclick='window.print();
177
  return false;'>
178
  <div class='apss-icon-block clearfix'><i class='fa fa-print'></i>
179
- <span class='apss-social-text'><?php _e( 'Print', APSS_TEXT_DOMAIN ); ?></span>
180
- <span class='apss-share'><?php _e( 'Print', APSS_TEXT_DOMAIN ); ?></span>
181
  </div>
182
  </a>
183
  </div>
@@ -190,8 +190,8 @@ if ( isset( $enable_counter ) && $enable_counter == '1' ) {
190
  ?>
191
  <div class='apss-total-share-count'>
192
  <span class='apss-count-number'><?php echo $total_count; ?></span>
193
- <div class="apss-total-shares"><span class='apss-total-text'><?php echo _e( ' Total', APSS_TEXT_DOMAIN ); ?></span>
194
- <span class='apss-shares-text'><?php echo _e( ' Shares', APSS_TEXT_DOMAIN ); ?></span></div>
195
  </div>
196
  <?php
197
  }
33
  $count = $this->get_count( $key, $url );
34
  ?>
35
  <div class='apss-facebook apss-single-icon'>
36
+ <a rel='nofollow' title="<?php _e( 'Share on Facebook', 'accesspress-social-share' ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
37
  <div class='apss-icon-block clearfix'>
38
  <i class='fa fa-facebook'></i>
39
+ <span class='apss-social-text'><?php _e( 'Share on Facebook', 'accesspress-social-share' ); ?></span>
40
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
41
  </div>
42
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
43
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
58
  $count = $this->get_count( $key, $url );
59
  ?>
60
  <div class='apss-twitter apss-single-icon'>
61
+ <a rel='nofollow' title="<?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?>" target='<?php echo $apss_link_open_option; ?>' href="<?php echo $link; ?>">
62
  <div class='apss-icon-block clearfix'>
63
  <i class='fa fa-twitter'></i>
64
+ <span class='apss-social-text'><?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?></span><span class='apss-share'><?php _e( 'Tweet', 'accesspress-social-share' ); ?></span>
65
  </div>
66
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
67
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
77
  $count = $this->get_count( $key, $url );
78
  ?>
79
  <div class='apss-google-plus apss-single-icon'>
80
+ <a rel='nofollow' title="<?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
81
  <div class='apss-icon-block clearfix'>
82
  <i class='fa fa-google-plus'></i>
83
+ <span class='apss-social-text'><?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?></span>
84
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
85
  </div>
86
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
87
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
97
  ?>
98
 
99
  <div class='apss-pinterest apss-single-icon'>
100
+ <a rel='nofollow' title="<?php _e( 'Share on Pinterest', 'accesspress-social-share' ); ?>" href='javascript:pinIt();'>
101
  <div class='apss-icon-block clearfix'>
102
  <i class='fa fa-pinterest'></i>
103
+ <span class='apss-social-text'><?php _e( 'Share on Pinterest', 'accesspress-social-share' ); ?></span>
104
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
105
  </div>
106
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
107
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
119
  ?>
120
 
121
  <div class='apss-linkedin apss-single-icon'>
122
+ <a rel='nofollow' title="<?php _e( 'Share on LinkedIn', 'accesspress-social-share' ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
123
  <div class='apss-icon-block clearfix'><i class='fa fa-linkedin'></i>
124
+ <span class='apss-social-text'><?php _e( 'Share on LinkedIn', 'accesspress-social-share' ); ?></span>
125
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
126
  </div>
127
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
128
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
137
  $link = "http://digg.com/submit?phase=2%20&amp;url=" . $url . "&amp;title=" . $title;
138
  ?>
139
  <div class='apss-digg apss-single-icon'>
140
+ <a rel='nofollow' title="<?php _e( 'Share on Digg', 'accesspress-social-share' ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
141
  <div class='apss-icon-block clearfix'>
142
  <i class='fa fa-digg'></i>
143
+ <span class='apss-social-text'><?php _e( 'Share on Digg', 'accesspress-social-share' ); ?></span>
144
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
145
  </div>
146
  </a>
147
  </div>
158
  }
159
  ?>
160
  <div class='apss-email apss-single-icon'>
161
+ <a rel='nofollow' class='share-email-popup' title="<?php _e( 'Share it on Email', 'accesspress-social-share' ); ?>" target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
162
  <div class='apss-icon-block clearfix'>
163
  <i class='fa fa-envelope'></i>
164
+ <span class='apss-social-text'><?php _e( 'Send email', 'accesspress-social-share' ); ?></span>
165
+ <span class='apss-share'><?php _e( 'Mail', 'accesspress-social-share' ); ?></span>
166
  </div>
167
  </a>
168
  </div>
173
  case 'print':
174
  ?>
175
  <div class='apss-print apss-single-icon'>
176
+ <a rel='nofollow' title="<?php _e( 'Print', 'accesspress-social-share' ); ?>" href='javascript:void(0);' onclick='window.print();
177
  return false;'>
178
  <div class='apss-icon-block clearfix'><i class='fa fa-print'></i>
179
+ <span class='apss-social-text'><?php _e( 'Print', 'accesspress-social-share' ); ?></span>
180
+ <span class='apss-share'><?php _e( 'Print', 'accesspress-social-share' ); ?></span>
181
  </div>
182
  </a>
183
  </div>
190
  ?>
191
  <div class='apss-total-share-count'>
192
  <span class='apss-count-number'><?php echo $total_count; ?></span>
193
+ <div class="apss-total-shares"><span class='apss-total-text'><?php echo _e( ' Total', 'accesspress-social-share' ); ?></span>
194
+ <span class='apss-shares-text'><?php echo _e( ' Shares', 'accesspress-social-share' ); ?></span></div>
195
  </div>
196
  <?php
197
  }
inc/frontend/shortcode.php CHANGED
@@ -60,11 +60,11 @@ if ( strlen( $content ) >= 100 ) {
60
  $count = $this->get_count( $key, $url );
61
  ?>
62
  <div class='apss-facebook apss-single-icon'>
63
- <a rel='nofollow' title='<?php _e( 'Share on Facebook', APSS_TEXT_DOMAIN ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
64
  <div class='apss-icon-block clearfix'>
65
  <i class='fa fa-facebook'></i>
66
- <span class='apss-social-text'><?php _e( 'Share on Facebook', APSS_TEXT_DOMAIN ); ?></span>
67
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
68
  </div>
69
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
70
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -85,10 +85,10 @@ if ( strlen( $content ) >= 100 ) {
85
  $count = $this->get_count( $key, $url );
86
  ?>
87
  <div class='apss-twitter apss-single-icon'>
88
- <a rel='nofollow' title='<?php _e( 'Share on Twitter', APSS_TEXT_DOMAIN ); ?>' target='<?php echo $apss_link_open_option; ?>' href="<?php echo $link; ?>">
89
  <div class='apss-icon-block clearfix'>
90
  <i class='fa fa-twitter'></i>
91
- <span class='apss-social-text'><?php _e( 'Share on Twitter', APSS_TEXT_DOMAIN ); ?></span><span class='apss-share'><?php _e( 'Tweet', APSS_TEXT_DOMAIN ); ?></span>
92
  </div>
93
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
94
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -104,11 +104,11 @@ if ( strlen( $content ) >= 100 ) {
104
  $count = $this->get_count( $key, $url );
105
  ?>
106
  <div class='apss-google-plus apss-single-icon'>
107
- <a rel='nofollow' title='<?php _e( 'Share on Google Plus', APSS_TEXT_DOMAIN ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
108
  <div class='apss-icon-block clearfix'>
109
  <i class='fa fa-google-plus'></i>
110
- <span class='apss-social-text'><?php _e( 'Share on Google Plus', APSS_TEXT_DOMAIN ); ?> </span>
111
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
112
  </div>
113
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
114
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -123,11 +123,11 @@ if ( strlen( $content ) >= 100 ) {
123
  $count = $this->get_count( $key, $url );
124
  ?>
125
  <div class='apss-pinterest apss-single-icon'>
126
- <a rel='nofollow' title='<?php _e( 'Share on Pinterest', APSS_TEXT_DOMAIN ); ?>' href='javascript:pinIt();'>
127
  <div class='apss-icon-block clearfix'>
128
  <i class='fa fa-pinterest'></i>
129
- <span class='apss-social-text'><?php _e( 'Share on Pinterest', APSS_TEXT_DOMAIN ); ?></span>
130
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
131
  </div>
132
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
133
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
@@ -143,10 +143,10 @@ if ( strlen( $content ) >= 100 ) {
143
  $count = $this->get_count( $key, $url );
144
  ?>
145
  <div class='apss-linkedin apss-single-icon'>
146
- <a rel='nofollow' title='<?php _e( 'Share on LinkedIn', APSS_TEXT_DOMAIN ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
147
  <div class='apss-icon-block clearfix'><i class='fa fa-linkedin'></i>
148
- <span class='apss-social-text'><?php _e( 'Share on LinkedIn', APSS_TEXT_DOMAIN ); ?></span>
149
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
150
  </div>
151
 
152
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
@@ -163,11 +163,11 @@ if ( strlen( $content ) >= 100 ) {
163
  $link = "http://digg.com/submit?phase=2%20&amp;url=" . $url . "&amp;title=" . $title;
164
  ?>
165
  <div class='apss-digg apss-single-icon'>
166
- <a rel='nofollow' title='<?php _e( 'Share on Digg', APSS_TEXT_DOMAIN ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
167
  <div class='apss-icon-block clearfix'>
168
  <i class='fa fa-digg'></i>
169
- <span class='apss-social-text'><?php _e( 'Share on Digg', APSS_TEXT_DOMAIN ); ?></span>
170
- <span class='apss-share'><?php _e( 'Share', APSS_TEXT_DOMAIN ); ?></span>
171
  </div>
172
  </a>
173
  </div>
@@ -184,11 +184,11 @@ if ( strlen( $content ) >= 100 ) {
184
  }
185
  ?>
186
  <div class='apss-email apss-single-icon'>
187
- <a rel='nofollow' class='share-email-popup' title='<?php _e( 'Share it on Email', APSS_TEXT_DOMAIN ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
188
  <div class='apss-icon-block clearfix'>
189
  <i class='fa fa-envelope'></i>
190
- <span class='apss-social-text'><?php _e( 'Send email', APSS_TEXT_DOMAIN ); ?></span>
191
- <span class='apss-share'><?php _e( 'Mail', APSS_TEXT_DOMAIN ); ?></span>
192
  </div>
193
  </a>
194
  </div>
@@ -199,10 +199,10 @@ if ( strlen( $content ) >= 100 ) {
199
  case 'print':
200
  ?>
201
  <div class='apss-print apss-single-icon'>
202
- <a rel='nofollow' title='<?php _e( 'Print', APSS_TEXT_DOMAIN ); ?>' href='javascript:void(0);' onclick='window.print(); return false;'>
203
  <div class='apss-icon-block clearfix'><i class='fa fa-print'></i>
204
- <span class='apss-social-text'><?php _e( 'Print', APSS_TEXT_DOMAIN ); ?></span>
205
- <span class='apss-share'><?php _e( 'Print', APSS_TEXT_DOMAIN ); ?></span>
206
  </div>
207
  </a>
208
  </div>
@@ -216,8 +216,8 @@ if ( isset( $total_counter_enable_options ) && $total_counter_enable_options ==
216
  ?>
217
  <div class='apss-total-share-count'>
218
  <span class='apss-count-number'><?php echo $total_count; ?></span>
219
- <div class="apss-total-shares"><span class='apss-total-text'><?php echo _e( ' Total', APSS_TEXT_DOMAIN ); ?></span>
220
- <span class='apss-shares-text'><?php echo _e( ' Shares', APSS_TEXT_DOMAIN ); ?></span></div>
221
  </div>
222
  <?php } ?>
223
  </div>
60
  $count = $this->get_count( $key, $url );
61
  ?>
62
  <div class='apss-facebook apss-single-icon'>
63
+ <a rel='nofollow' title='<?php _e( 'Share on Facebook', 'accesspress-social-share' ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
64
  <div class='apss-icon-block clearfix'>
65
  <i class='fa fa-facebook'></i>
66
+ <span class='apss-social-text'><?php _e( 'Share on Facebook', 'accesspress-social-share' ); ?></span>
67
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
68
  </div>
69
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
70
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
85
  $count = $this->get_count( $key, $url );
86
  ?>
87
  <div class='apss-twitter apss-single-icon'>
88
+ <a rel='nofollow' title='<?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?>' target='<?php echo $apss_link_open_option; ?>' href="<?php echo $link; ?>">
89
  <div class='apss-icon-block clearfix'>
90
  <i class='fa fa-twitter'></i>
91
+ <span class='apss-social-text'><?php _e( 'Share on Twitter', 'accesspress-social-share' ); ?></span><span class='apss-share'><?php _e( 'Tweet', 'accesspress-social-share' ); ?></span>
92
  </div>
93
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
94
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
104
  $count = $this->get_count( $key, $url );
105
  ?>
106
  <div class='apss-google-plus apss-single-icon'>
107
+ <a rel='nofollow' title='<?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
108
  <div class='apss-icon-block clearfix'>
109
  <i class='fa fa-google-plus'></i>
110
+ <span class='apss-social-text'><?php _e( 'Share on Google Plus', 'accesspress-social-share' ); ?> </span>
111
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
112
  </div>
113
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
114
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
123
  $count = $this->get_count( $key, $url );
124
  ?>
125
  <div class='apss-pinterest apss-single-icon'>
126
+ <a rel='nofollow' title='<?php _e( 'Share on Pinterest', 'accesspress-social-share' ); ?>' href='javascript:pinIt();'>
127
  <div class='apss-icon-block clearfix'>
128
  <i class='fa fa-pinterest'></i>
129
+ <span class='apss-social-text'><?php _e( 'Share on Pinterest', 'accesspress-social-share' ); ?></span>
130
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
131
  </div>
132
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
133
  <div class='count apss-count' data-url='<?php echo $url; ?>' data-social-network='<?php echo $key; ?>' data-social-detail="<?php echo $url . '_' . $key; ?>"><?php echo $count; ?></div>
143
  $count = $this->get_count( $key, $url );
144
  ?>
145
  <div class='apss-linkedin apss-single-icon'>
146
+ <a rel='nofollow' title='<?php _e( 'Share on LinkedIn', 'accesspress-social-share' ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
147
  <div class='apss-icon-block clearfix'><i class='fa fa-linkedin'></i>
148
+ <span class='apss-social-text'><?php _e( 'Share on LinkedIn', 'accesspress-social-share' ); ?></span>
149
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
150
  </div>
151
 
152
  <?php if ( isset( $counter_enable_options ) && $counter_enable_options == '1' ) { ?>
163
  $link = "http://digg.com/submit?phase=2%20&amp;url=" . $url . "&amp;title=" . $title;
164
  ?>
165
  <div class='apss-digg apss-single-icon'>
166
+ <a rel='nofollow' title='<?php _e( 'Share on Digg', 'accesspress-social-share' ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
167
  <div class='apss-icon-block clearfix'>
168
  <i class='fa fa-digg'></i>
169
+ <span class='apss-social-text'><?php _e( 'Share on Digg', 'accesspress-social-share' ); ?></span>
170
+ <span class='apss-share'><?php _e( 'Share', 'accesspress-social-share' ); ?></span>
171
  </div>
172
  </a>
173
  </div>
184
  }
185
  ?>
186
  <div class='apss-email apss-single-icon'>
187
+ <a rel='nofollow' class='share-email-popup' title='<?php _e( 'Share it on Email', 'accesspress-social-share' ); ?>' target='<?php echo $apss_link_open_option; ?>' href='<?php echo $link; ?>'>
188
  <div class='apss-icon-block clearfix'>
189
  <i class='fa fa-envelope'></i>
190
+ <span class='apss-social-text'><?php _e( 'Send email', 'accesspress-social-share' ); ?></span>
191
+ <span class='apss-share'><?php _e( 'Mail', 'accesspress-social-share' ); ?></span>
192
  </div>
193
  </a>
194
  </div>
199
  case 'print':
200
  ?>
201
  <div class='apss-print apss-single-icon'>
202
+ <a rel='nofollow' title='<?php _e( 'Print', 'accesspress-social-share' ); ?>' href='javascript:void(0);' onclick='window.print(); return false;'>
203
  <div class='apss-icon-block clearfix'><i class='fa fa-print'></i>
204
+ <span class='apss-social-text'><?php _e( 'Print', 'accesspress-social-share' ); ?></span>
205
+ <span class='apss-share'><?php _e( 'Print', 'accesspress-social-share' ); ?></span>
206
  </div>
207
  </a>
208
  </div>
216
  ?>
217
  <div class='apss-total-share-count'>
218
  <span class='apss-count-number'><?php echo $total_count; ?></span>
219
+ <div class="apss-total-shares"><span class='apss-total-text'><?php echo _e( ' Total', 'accesspress-social-share' ); ?></span>
220
+ <span class='apss-shares-text'><?php echo _e( ' Shares', 'accesspress-social-share' ); ?></span></div>
221
  </div>
222
  <?php } ?>
223
  </div>
languages/accesspress-social-share.pot CHANGED
@@ -1,33 +1,32 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: AccessPress Social Share\n"
4
- "POT-Creation-Date: 2015-07-26 15:09+0545\n"
5
- "PO-Revision-Date: 2015-07-26 15:10+0545\n"
6
  "Last-Translator: \n"
7
- "Language-Team: Accesspress Themes <support@accesspressthemes.com>\n"
8
- "Language: english\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 1.5.7\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
- #: ../accesspress-social-share.php:193
20
- msgid "Social Icons Settings"
21
- msgstr ""
22
-
23
- #: ../accesspress-social-share.php:214
24
  msgid "Settings restored Successfully."
25
  msgstr ""
26
 
27
- #: ../accesspress-social-share.php:237
28
  msgid "Cache cleared Successfully"
29
  msgstr ""
30
 
 
 
 
 
31
  #: ../inc/backend/about-apss.php:2
32
  msgid "About Us"
33
  msgstr ""
@@ -40,272 +39,277 @@ msgstr ""
40
  msgid "AccessPress Social Share"
41
  msgstr ""
42
 
43
- #: ../inc/backend/main-page.php:43
44
  msgid "Social Networks"
45
  msgstr ""
46
 
47
- #: ../inc/backend/main-page.php:44
48
  msgid "Share Options"
49
  msgstr ""
50
 
51
- #: ../inc/backend/main-page.php:45
52
  msgid "Display Settings"
53
  msgstr ""
54
 
55
- #: ../inc/backend/main-page.php:46
56
  msgid "Miscellaneous"
57
  msgstr ""
58
 
59
- #: ../inc/backend/main-page.php:47
60
  msgid "How To Use"
61
  msgstr ""
62
 
63
- #: ../inc/backend/main-page.php:48
64
  msgid "About"
65
  msgstr ""
66
 
67
- #: ../inc/backend/main-page.php:52
68
  msgid "Social Media chooser:"
69
  msgstr ""
70
 
71
- #: ../inc/backend/main-page.php:53
72
  msgid ""
73
  "Please choose the social media you want to display. Also you can order these "
74
  "social media's by drag and drop:"
75
  msgstr ""
76
 
77
- #: ../inc/backend/main-page.php:79
78
  msgid "Share options:"
79
  msgstr ""
80
 
81
- #: ../inc/backend/main-page.php:80
82
  msgid "Please choose the options where you want to display social share icons:"
83
  msgstr ""
84
 
85
- #: ../inc/backend/main-page.php:81
86
  msgid "Posts"
87
  msgstr ""
88
 
89
- #: ../inc/backend/main-page.php:82
90
  msgid "Pages"
91
  msgstr ""
92
 
93
- #: ../inc/backend/main-page.php:84
94
  msgid "Front Page"
95
  msgstr ""
96
 
97
- #: ../inc/backend/main-page.php:85
98
  msgid "Archives"
99
  msgstr ""
100
 
101
- #: ../inc/backend/main-page.php:87
102
  msgid "Attachment pages"
103
  msgstr ""
104
 
105
- #: ../inc/backend/main-page.php:89
106
  msgid "Categories"
107
  msgstr ""
108
 
109
- #: ../inc/backend/main-page.php:90
110
  msgid "Other (search results, etc)"
111
  msgstr ""
112
 
113
- #: ../inc/backend/main-page.php:96
114
  msgid "Display position:"
115
  msgstr ""
116
 
117
- #: ../inc/backend/main-page.php:97
118
  msgid "Please choose the option where you want to display the social share:"
119
  msgstr ""
120
 
121
- #: ../inc/backend/main-page.php:98
122
  msgid "Below content"
123
  msgstr ""
124
 
125
- #: ../inc/backend/main-page.php:99
126
  msgid "Above content"
127
  msgstr ""
128
 
129
- #: ../inc/backend/main-page.php:100
130
  msgid "Both(Below content and Above content)"
131
  msgstr ""
132
 
133
- #: ../inc/backend/main-page.php:103
134
  msgid "Social icons sets: "
135
  msgstr ""
136
 
137
- #: ../inc/backend/main-page.php:104
138
  msgid "Please choose any one out of available icon themes:"
139
  msgstr ""
140
 
141
- #: ../inc/backend/main-page.php:105
142
- msgid "Theme 1"
143
- msgstr ""
144
-
145
- #: ../inc/backend/main-page.php:106
146
- msgid "Theme 2"
147
  msgstr ""
148
 
149
- #: ../inc/backend/main-page.php:107
150
- msgid "Theme 3"
151
  msgstr ""
152
 
153
- #: ../inc/backend/main-page.php:108
154
- msgid "Theme 4"
155
  msgstr ""
156
 
157
- #: ../inc/backend/main-page.php:109
158
- msgid "Theme 5"
 
159
  msgstr ""
160
 
161
- #: ../inc/backend/main-page.php:114
162
- msgid "Miscellaneous settings: "
 
163
  msgstr ""
164
 
165
- #: ../inc/backend/main-page.php:115
166
- msgid "Please setup these additional settings:"
 
 
167
  msgstr ""
168
 
169
- #: ../inc/backend/main-page.php:118
170
  msgid "Share text:"
171
  msgstr ""
172
 
173
- #: ../inc/backend/main-page.php:120
174
  msgid ""
175
  "Please enter the share text to make it appear above social share icons. "
176
  "Leave blank if you don't want to use share text."
177
  msgstr ""
178
 
179
- #: ../inc/backend/main-page.php:125
180
  msgid "Twitter username:"
181
  msgstr ""
182
 
183
- #: ../inc/backend/main-page.php:129
184
  msgid "Social share counter enable?"
185
  msgstr ""
186
 
187
- #: ../inc/backend/main-page.php:130
188
- msgid "No"
189
- msgstr ""
190
-
191
- #: ../inc/backend/main-page.php:131
192
- msgid "Yes"
193
  msgstr ""
194
 
195
- #: ../inc/backend/main-page.php:135
196
  msgid "Social share link options:"
197
  msgstr ""
198
 
199
- #: ../inc/backend/main-page.php:136
200
  msgid "Open in same window"
201
  msgstr ""
202
 
203
- #: ../inc/backend/main-page.php:137
204
  msgid "Open in new window/Tab"
205
  msgstr ""
206
 
207
- #: ../inc/backend/main-page.php:141
208
  msgid "Cache Settings: "
209
  msgstr ""
210
 
211
- #: ../inc/backend/main-page.php:142
212
  msgid "Cache Period:"
213
  msgstr ""
214
 
215
- #: ../inc/backend/main-page.php:146
216
  msgid ""
217
  "Please enter the time in hours in which the social share counter should be "
218
  "updated from social networks. Default is 24 hours."
219
  msgstr ""
220
 
221
- #: ../inc/backend/main-page.php:151
222
  msgid "Email Settings:"
223
  msgstr ""
224
 
225
- #: ../inc/backend/main-page.php:153
226
  msgid "Email subject:"
227
  msgstr ""
228
 
229
- #: ../inc/backend/main-page.php:157
230
  msgid "Email body:"
231
  msgstr ""
232
 
233
- #: ../inc/backend/main-page.php:171
234
  msgid "Save settings"
235
  msgstr ""
236
 
237
- #: ../inc/backend/main-page.php:180
238
  msgid "Are you sure you want to restore default settings?"
239
  msgstr ""
240
 
241
- #: ../inc/backend/main-page.php:181
242
  msgid "Are you sure you want to clear cache share counter?"
243
  msgstr ""
244
 
245
- #: ../inc/backend/save-settings.php:37
246
  msgid "Settings Saved Successfully."
247
  msgstr ""
248
 
249
- #: ../inc/frontend/content-filter.php:22 ../inc/frontend/content-filter.php:25
250
- #: ../inc/frontend/shortcode.php:39 ../inc/frontend/shortcode.php:42
251
  msgid "Share on Facebook"
252
  msgstr ""
253
 
254
- #: ../inc/frontend/content-filter.php:26 ../inc/frontend/content-filter.php:68
255
- #: ../inc/frontend/content-filter.php:87
256
- #: ../inc/frontend/content-filter.php:107
257
- #: ../inc/frontend/content-filter.php:126 ../inc/frontend/shortcode.php:43
258
- #: ../inc/frontend/shortcode.php:85 ../inc/frontend/shortcode.php:103
259
- #: ../inc/frontend/shortcode.php:121 ../inc/frontend/shortcode.php:142
260
  msgid "Share"
261
  msgstr ""
262
 
263
- #: ../inc/frontend/content-filter.php:46 ../inc/frontend/content-filter.php:49
264
- #: ../inc/frontend/shortcode.php:63 ../inc/frontend/shortcode.php:66
265
  msgid "Share on Twitter"
266
  msgstr ""
267
 
268
- #: ../inc/frontend/content-filter.php:49 ../inc/frontend/shortcode.php:66
269
  msgid "Tweet"
270
  msgstr ""
271
 
272
- #: ../inc/frontend/content-filter.php:64 ../inc/frontend/content-filter.php:67
273
- #: ../inc/frontend/shortcode.php:81 ../inc/frontend/shortcode.php:84
274
  msgid "Share on Google Plus"
275
  msgstr ""
276
 
277
- #: ../inc/frontend/content-filter.php:83 ../inc/frontend/content-filter.php:86
278
- #: ../inc/frontend/shortcode.php:99 ../inc/frontend/shortcode.php:102
 
279
  msgid "Share on Pinterest"
280
  msgstr ""
281
 
282
- #: ../inc/frontend/content-filter.php:104
283
- #: ../inc/frontend/content-filter.php:106 ../inc/frontend/shortcode.php:118
284
- #: ../inc/frontend/shortcode.php:120
285
  msgid "Share on LinkedIn"
286
  msgstr ""
287
 
288
- #: ../inc/frontend/content-filter.php:122
289
- #: ../inc/frontend/content-filter.php:125 ../inc/frontend/shortcode.php:138
290
- #: ../inc/frontend/shortcode.php:141
291
  msgid "Share on Digg"
292
  msgstr ""
293
 
294
- #: ../inc/frontend/content-filter.php:144 ../inc/frontend/shortcode.php:160
295
  msgid "Share it on Email"
296
  msgstr ""
297
 
298
- #: ../inc/frontend/content-filter.php:147 ../inc/frontend/shortcode.php:163
299
  msgid "Send email"
300
  msgstr ""
301
 
302
- #: ../inc/frontend/content-filter.php:148 ../inc/frontend/shortcode.php:164
303
  msgid "Mail"
304
  msgstr ""
305
 
306
- #: ../inc/frontend/content-filter.php:159
307
- #: ../inc/frontend/content-filter.php:161
308
- #: ../inc/frontend/content-filter.php:162 ../inc/frontend/shortcode.php:175
309
- #: ../inc/frontend/shortcode.php:177 ../inc/frontend/shortcode.php:178
310
  msgid "Print"
311
  msgstr ""
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: accesspress-social-share\n"
4
+ "POT-Creation-Date: 2015-10-05 14:46+0545\n"
5
+ "PO-Revision-Date: 2015-10-05 14:46+0545\n"
6
  "Last-Translator: \n"
7
+ "Language-Team: AccessPress Themes <devteam2070@gmail.com>\n"
8
+ "Language: English\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 1.5.7\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: .\n"
 
15
  "X-Poedit-SearchPath-0: .\n"
16
  "X-Poedit-SearchPath-1: ..\n"
17
 
18
+ #: ../accesspress-social-share.php:222
 
 
 
 
19
  msgid "Settings restored Successfully."
20
  msgstr ""
21
 
22
+ #: ../accesspress-social-share.php:245
23
  msgid "Cache cleared Successfully"
24
  msgstr ""
25
 
26
+ #: ../accesspress-social-share.php:303
27
+ msgid "Hide share icons in content"
28
+ msgstr ""
29
+
30
  #: ../inc/backend/about-apss.php:2
31
  msgid "About Us"
32
  msgstr ""
39
  msgid "AccessPress Social Share"
40
  msgstr ""
41
 
42
+ #: ../inc/backend/main-page.php:44
43
  msgid "Social Networks"
44
  msgstr ""
45
 
46
+ #: ../inc/backend/main-page.php:45
47
  msgid "Share Options"
48
  msgstr ""
49
 
50
+ #: ../inc/backend/main-page.php:46
51
  msgid "Display Settings"
52
  msgstr ""
53
 
54
+ #: ../inc/backend/main-page.php:47
55
  msgid "Miscellaneous"
56
  msgstr ""
57
 
58
+ #: ../inc/backend/main-page.php:48
59
  msgid "How To Use"
60
  msgstr ""
61
 
62
+ #: ../inc/backend/main-page.php:49
63
  msgid "About"
64
  msgstr ""
65
 
66
+ #: ../inc/backend/main-page.php:53
67
  msgid "Social Media chooser:"
68
  msgstr ""
69
 
70
+ #: ../inc/backend/main-page.php:54
71
  msgid ""
72
  "Please choose the social media you want to display. Also you can order these "
73
  "social media's by drag and drop:"
74
  msgstr ""
75
 
76
+ #: ../inc/backend/main-page.php:83
77
  msgid "Share options:"
78
  msgstr ""
79
 
80
+ #: ../inc/backend/main-page.php:84
81
  msgid "Please choose the options where you want to display social share icons:"
82
  msgstr ""
83
 
84
+ #: ../inc/backend/main-page.php:87
85
  msgid "Posts"
86
  msgstr ""
87
 
88
+ #: ../inc/backend/main-page.php:90
89
  msgid "Pages"
90
  msgstr ""
91
 
92
+ #: ../inc/backend/main-page.php:94
93
  msgid "Front Page"
94
  msgstr ""
95
 
96
+ #: ../inc/backend/main-page.php:97
97
  msgid "Archives"
98
  msgstr ""
99
 
100
+ #: ../inc/backend/main-page.php:101
101
  msgid "Attachment pages"
102
  msgstr ""
103
 
104
+ #: ../inc/backend/main-page.php:105
105
  msgid "Categories"
106
  msgstr ""
107
 
108
+ #: ../inc/backend/main-page.php:108
109
  msgid "Other (search results, etc)"
110
  msgstr ""
111
 
112
+ #: ../inc/backend/main-page.php:114
113
  msgid "Display position:"
114
  msgstr ""
115
 
116
+ #: ../inc/backend/main-page.php:115
117
  msgid "Please choose the option where you want to display the social share:"
118
  msgstr ""
119
 
120
+ #: ../inc/backend/main-page.php:118
121
  msgid "Below content"
122
  msgstr ""
123
 
124
+ #: ../inc/backend/main-page.php:121
125
  msgid "Above content"
126
  msgstr ""
127
 
128
+ #: ../inc/backend/main-page.php:124
129
  msgid "Both(Below content and Above content)"
130
  msgstr ""
131
 
132
+ #: ../inc/backend/main-page.php:127
133
  msgid "Social icons sets: "
134
  msgstr ""
135
 
136
+ #: ../inc/backend/main-page.php:128
137
  msgid "Please choose any one out of available icon themes:"
138
  msgstr ""
139
 
140
+ #: ../inc/backend/main-page.php:138
141
+ msgid "Miscellaneous settings: "
 
 
 
 
142
  msgstr ""
143
 
144
+ #: ../inc/backend/main-page.php:139
145
+ msgid "Please setup these additional settings:"
146
  msgstr ""
147
 
148
+ #: ../inc/backend/main-page.php:142
149
+ msgid "Disable the plugins frontend assets?"
150
  msgstr ""
151
 
152
+ #: ../inc/backend/main-page.php:145 ../inc/backend/main-page.php:172
153
+ #: ../inc/backend/main-page.php:182
154
+ msgid "No"
155
  msgstr ""
156
 
157
+ #: ../inc/backend/main-page.php:148 ../inc/backend/main-page.php:175
158
+ #: ../inc/backend/main-page.php:185
159
+ msgid "Yes"
160
  msgstr ""
161
 
162
+ #: ../inc/backend/main-page.php:151
163
+ msgid ""
164
+ "Please set this value if you don't want to use plguins frontend assets(js "
165
+ "and css files)."
166
  msgstr ""
167
 
168
+ #: ../inc/backend/main-page.php:156
169
  msgid "Share text:"
170
  msgstr ""
171
 
172
+ #: ../inc/backend/main-page.php:160
173
  msgid ""
174
  "Please enter the share text to make it appear above social share icons. "
175
  "Leave blank if you don't want to use share text."
176
  msgstr ""
177
 
178
+ #: ../inc/backend/main-page.php:165
179
  msgid "Twitter username:"
180
  msgstr ""
181
 
182
+ #: ../inc/backend/main-page.php:169
183
  msgid "Social share counter enable?"
184
  msgstr ""
185
 
186
+ #: ../inc/backend/main-page.php:179
187
+ msgid "Social share total counter enable?"
 
 
 
 
188
  msgstr ""
189
 
190
+ #: ../inc/backend/main-page.php:189
191
  msgid "Social share link options:"
192
  msgstr ""
193
 
194
+ #: ../inc/backend/main-page.php:192
195
  msgid "Open in same window"
196
  msgstr ""
197
 
198
+ #: ../inc/backend/main-page.php:195
199
  msgid "Open in new window/Tab"
200
  msgstr ""
201
 
202
+ #: ../inc/backend/main-page.php:199
203
  msgid "Cache Settings: "
204
  msgstr ""
205
 
206
+ #: ../inc/backend/main-page.php:200
207
  msgid "Cache Period:"
208
  msgstr ""
209
 
210
+ #: ../inc/backend/main-page.php:206
211
  msgid ""
212
  "Please enter the time in hours in which the social share counter should be "
213
  "updated from social networks. Default is 24 hours."
214
  msgstr ""
215
 
216
+ #: ../inc/backend/main-page.php:211
217
  msgid "Email Settings:"
218
  msgstr ""
219
 
220
+ #: ../inc/backend/main-page.php:213
221
  msgid "Email subject:"
222
  msgstr ""
223
 
224
+ #: ../inc/backend/main-page.php:217
225
  msgid "Email body:"
226
  msgstr ""
227
 
228
+ #: ../inc/backend/main-page.php:231
229
  msgid "Save settings"
230
  msgstr ""
231
 
232
+ #: ../inc/backend/main-page.php:240
233
  msgid "Are you sure you want to restore default settings?"
234
  msgstr ""
235
 
236
+ #: ../inc/backend/main-page.php:241
237
  msgid "Are you sure you want to clear cache share counter?"
238
  msgstr ""
239
 
240
+ #: ../inc/backend/save-settings.php:38
241
  msgid "Settings Saved Successfully."
242
  msgstr ""
243
 
244
+ #: ../inc/frontend/content-filter.php:36 ../inc/frontend/content-filter.php:39
245
+ #: ../inc/frontend/shortcode.php:63 ../inc/frontend/shortcode.php:66
246
  msgid "Share on Facebook"
247
  msgstr ""
248
 
249
+ #: ../inc/frontend/content-filter.php:40 ../inc/frontend/content-filter.php:84
250
+ #: ../inc/frontend/content-filter.php:104
251
+ #: ../inc/frontend/content-filter.php:125
252
+ #: ../inc/frontend/content-filter.php:144 ../inc/frontend/shortcode.php:67
253
+ #: ../inc/frontend/shortcode.php:111 ../inc/frontend/shortcode.php:130
254
+ #: ../inc/frontend/shortcode.php:149 ../inc/frontend/shortcode.php:170
255
  msgid "Share"
256
  msgstr ""
257
 
258
+ #: ../inc/frontend/content-filter.php:61 ../inc/frontend/content-filter.php:64
259
+ #: ../inc/frontend/shortcode.php:88 ../inc/frontend/shortcode.php:91
260
  msgid "Share on Twitter"
261
  msgstr ""
262
 
263
+ #: ../inc/frontend/content-filter.php:64 ../inc/frontend/shortcode.php:91
264
  msgid "Tweet"
265
  msgstr ""
266
 
267
+ #: ../inc/frontend/content-filter.php:80 ../inc/frontend/content-filter.php:83
268
+ #: ../inc/frontend/shortcode.php:107 ../inc/frontend/shortcode.php:110
269
  msgid "Share on Google Plus"
270
  msgstr ""
271
 
272
+ #: ../inc/frontend/content-filter.php:100
273
+ #: ../inc/frontend/content-filter.php:103 ../inc/frontend/shortcode.php:126
274
+ #: ../inc/frontend/shortcode.php:129
275
  msgid "Share on Pinterest"
276
  msgstr ""
277
 
278
+ #: ../inc/frontend/content-filter.php:122
279
+ #: ../inc/frontend/content-filter.php:124 ../inc/frontend/shortcode.php:146
280
+ #: ../inc/frontend/shortcode.php:148
281
  msgid "Share on LinkedIn"
282
  msgstr ""
283
 
284
+ #: ../inc/frontend/content-filter.php:140
285
+ #: ../inc/frontend/content-filter.php:143 ../inc/frontend/shortcode.php:166
286
+ #: ../inc/frontend/shortcode.php:169
287
  msgid "Share on Digg"
288
  msgstr ""
289
 
290
+ #: ../inc/frontend/content-filter.php:161 ../inc/frontend/shortcode.php:187
291
  msgid "Share it on Email"
292
  msgstr ""
293
 
294
+ #: ../inc/frontend/content-filter.php:164 ../inc/frontend/shortcode.php:190
295
  msgid "Send email"
296
  msgstr ""
297
 
298
+ #: ../inc/frontend/content-filter.php:165 ../inc/frontend/shortcode.php:191
299
  msgid "Mail"
300
  msgstr ""
301
 
302
+ #: ../inc/frontend/content-filter.php:176
303
+ #: ../inc/frontend/content-filter.php:179
304
+ #: ../inc/frontend/content-filter.php:180 ../inc/frontend/shortcode.php:202
305
+ #: ../inc/frontend/shortcode.php:204 ../inc/frontend/shortcode.php:205
306
  msgid "Print"
307
  msgstr ""
308
+
309
+ #: ../inc/frontend/content-filter.php:193 ../inc/frontend/shortcode.php:219
310
+ msgid " Total"
311
+ msgstr ""
312
+
313
+ #: ../inc/frontend/content-filter.php:194 ../inc/frontend/shortcode.php:220
314
+ msgid " Shares"
315
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social share counter, social share, social media share, social network sha
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
- Stable tag: 3.0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -131,6 +131,10 @@ Yes. You can use the AccessPress social share by using shortcode anywhere you wa
131
  6. Backend Miscellaneous Settings Section
132
 
133
  == Changelog ==
 
 
 
 
134
  = 3.0.5 =
135
  * Changed the input type of cache period to number.
136
  * Done the sanitization of the input texts fields in plugin backend.
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
+ Stable tag: 3.0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
131
  6. Backend Miscellaneous Settings Section
132
 
133
  == Changelog ==
134
+ = 3.0.6 =
135
+ * Done the text domain change.
136
+ * Done the removal of the submenu page from the plugin.
137
+
138
  = 3.0.5 =
139
  * Changed the input type of cache period to number.
140
  * Done the sanitization of the input texts fields in plugin backend.