Version Description
- [Bugfix] Floating sharing icons were not picking up correct title and url at archive pages
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 2.5.6 |
Comparing to | |
See all releases |
Code changes from version 2.5.5 to 2.5.6
- admin/class-sassy-social-share-admin.php +13 -11
- admin/partials/sassy-social-share-about.php +1 -0
- admin/partials/sassy-social-share-options-page.php +9 -0
- includes/class-sassy-social-share-shortcodes.php +6 -0
- includes/class-sassy-social-share-widgets.php +7 -5
- languages/sassy-social-share.pot +453 -334
- public/class-sassy-social-share-public.php +27 -4
- public/css/sassy-social-share-public.css +1 -1
- public/js/sassy-social-share-public.js +1 -1
- readme.txt +35 -36
- sassy-social-share.php +12 -10
admin/class-sassy-social-share-admin.php
CHANGED
@@ -318,19 +318,21 @@ class Sassy_Social_Share_Admin {
|
|
318 |
|
319 |
if ( $this->options[$replace_color_option] != $this->options[$logo_color_option] ) {
|
320 |
$path = plugin_dir_url( __FILE__ ) . 'css/' . $css_file . '.css';
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
}
|
328 |
-
fclose( $handle );
|
329 |
-
$this->options[$replace_color_option] = $this->options[$logo_color_option];
|
330 |
-
update_option( 'heateor_sss', $this->options );
|
331 |
-
return true;
|
332 |
}
|
333 |
-
}
|
334 |
}
|
335 |
return false;
|
336 |
|
318 |
|
319 |
if ( $this->options[$replace_color_option] != $this->options[$logo_color_option] ) {
|
320 |
$path = plugin_dir_url( __FILE__ ) . 'css/' . $css_file . '.css';
|
321 |
+
try {
|
322 |
+
$content = file( $path );
|
323 |
+
if ( $content !== false ) {
|
324 |
+
$handle = fopen( dirname( __FILE__ ) . '/css/' . $css_file . '.css','w' );
|
325 |
+
if ( $handle !== false ) {
|
326 |
+
foreach ( $content as $value ) {
|
327 |
+
fwrite( $handle, str_replace( str_replace( '#', '%23', $this->options[$replace_color_option] ), str_replace( '#', '%23', $this->options[$logo_color_option] ), $value ) );
|
328 |
+
}
|
329 |
+
fclose( $handle );
|
330 |
+
$this->options[$replace_color_option] = $this->options[$logo_color_option];
|
331 |
+
update_option( 'heateor_sss', $this->options );
|
332 |
+
return true;
|
333 |
}
|
|
|
|
|
|
|
|
|
334 |
}
|
335 |
+
} catch ( Exception $e ) { }
|
336 |
}
|
337 |
return false;
|
338 |
|
admin/partials/sassy-social-share-about.php
CHANGED
@@ -9,6 +9,7 @@
|
|
9 |
<a href="//www.facebook.com/heateor" target="_blank" title="Facebook"><img style="box-shadow:1px 1px 10px 1px #888888" class="heateorSssLoginButton heateorSssFacebookButton" /></a>
|
10 |
<a href="//twitter.com/heateor" target="_blank" title="Twitter"><img style="box-shadow:1px 1px 10px 1px #888888" class="heateorSssLoginButton heateorSssTwitterButton" ></a>
|
11 |
<a href="//plus.google.com/+Heateor" title="GooglePlus" target="_blank"><img style="box-shadow:1px 1px 10px 1px #888888" class="heateorSssLoginButton heateorSssGoogleButton" ></a>
|
|
|
12 |
</div>
|
13 |
</div>
|
14 |
</div>
|
9 |
<a href="//www.facebook.com/heateor" target="_blank" title="Facebook"><img style="box-shadow:1px 1px 10px 1px #888888" class="heateorSssLoginButton heateorSssFacebookButton" /></a>
|
10 |
<a href="//twitter.com/heateor" target="_blank" title="Twitter"><img style="box-shadow:1px 1px 10px 1px #888888" class="heateorSssLoginButton heateorSssTwitterButton" ></a>
|
11 |
<a href="//plus.google.com/+Heateor" title="GooglePlus" target="_blank"><img style="box-shadow:1px 1px 10px 1px #888888" class="heateorSssLoginButton heateorSssGoogleButton" ></a>
|
12 |
+
<a href="https://www.instagram.com/Heateor" title="Instagram" target="_blank"><div style="display:block;width:32px;height:32px;box-shadow:1px 1px 10px 1px #888888;float:left;background-color:#527FA4"><div class="heateorSssSharingSvg heateorSssInstagramSvg"></div></div></a>
|
13 |
</div>
|
14 |
</div>
|
15 |
</div>
|
admin/partials/sassy-social-share-options-page.php
CHANGED
@@ -1919,5 +1919,14 @@ defined( 'ABSPATH' ) or die("Cheating........Uh!!");
|
|
1919 |
<input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'sassy-social-share' ); ?>" />
|
1920 |
</p>
|
1921 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1922 |
</div>
|
1923 |
</div>
|
1919 |
<input style="margin-left:8px" type="submit" name="save" class="button button-primary" value="<?php _e("Save Changes", 'sassy-social-share' ); ?>" />
|
1920 |
</p>
|
1921 |
</form>
|
1922 |
+
<div class="stuffbox">
|
1923 |
+
<h3><label>Instagram</label></h3>
|
1924 |
+
<div class="inside">
|
1925 |
+
<p><?php _e( 'If you can send (to hello@heateor.com) your business story and how our plugin is helping your business, we can share it on Instagram. You can also send any relevant hashtags and people to mention in the Instagram post.', 'sassy-social-share' ) ?></p>
|
1926 |
+
<p><?php _e( '<b>Example</b> - Blah-Blah Online Coaching teaches various programming language courses through their website. They have emerged as one of the most popular online coaching websites in the past year. Anyone can become proficient in programming language of their choice in a very easy way in no time.', 'sassy-social-share' ) ?></p>
|
1927 |
+
<p><?php _e( '@blahblahonlinecoaching proudly use #SassySocialShare to share content of their website. Be sure to visit their website at
|
1928 |
+
blahblahonlinecoaching.com where you can browse a variety of progamming language courses.', 'sassy-social-share' ) ?></p>
|
1929 |
+
</div>
|
1930 |
+
</div>
|
1931 |
</div>
|
1932 |
</div>
|
includes/class-sassy-social-share-shortcodes.php
CHANGED
@@ -72,6 +72,12 @@ class Sassy_Social_Share_Shortcodes {
|
|
72 |
if ( $url ) {
|
73 |
$target_url = $url;
|
74 |
$post_id = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
} elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
|
76 |
$target_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
77 |
$post_id = $post -> ID;
|
72 |
if ( $url ) {
|
73 |
$target_url = $url;
|
74 |
$post_id = 0;
|
75 |
+
} elseif ( is_front_page() ) {
|
76 |
+
$target_url = esc_url( home_url() );
|
77 |
+
$post_id = 0;
|
78 |
+
} elseif ( ! is_singular() && $type == 'vertical' ) {
|
79 |
+
$target_url = html_entity_decode( esc_url( the_champ_get_http() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
80 |
+
$post_id = 0;
|
81 |
} elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
|
82 |
$target_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
83 |
$post_id = $post -> ID;
|
includes/class-sassy-social-share-widgets.php
CHANGED
@@ -69,15 +69,16 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
|
|
69 |
$post_id = $post -> ID;
|
70 |
if ( isset( $instance['target_url'] ) ) {
|
71 |
if ( $instance['target_url'] == 'default' ) {
|
|
|
72 |
if ( is_home() ) {
|
73 |
$sharing_url = home_url();
|
74 |
$post_id = 0;
|
|
|
|
|
75 |
} elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
|
76 |
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
77 |
} elseif ( get_permalink( $post -> ID ) ) {
|
78 |
$sharing_url = get_permalink( $post->ID );
|
79 |
-
} else {
|
80 |
-
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
81 |
}
|
82 |
} elseif ( $instance['target_url'] == 'homepage' ) {
|
83 |
$sharing_url = home_url();
|
@@ -108,7 +109,7 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
|
|
108 |
}
|
109 |
$short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
|
110 |
|
111 |
-
echo $this->public_class_object->prepare_sharing_html( $short_url ? $short_url : $sharing_url, 'horizontal', isset( $instance['show_counts'] ), isset( $instance['total_shares'] ) );
|
112 |
|
113 |
if ( ! empty( $instance['after_widget_content'] ) ) {
|
114 |
echo '<div>' . $instance['after_widget_content'] . '</div>';
|
@@ -267,15 +268,16 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
|
|
267 |
$post_id = $post -> ID;
|
268 |
if ( isset( $instance['target_url'] ) ) {
|
269 |
if ( $instance['target_url'] == 'default' ) {
|
|
|
270 |
if ( is_home() ) {
|
271 |
$sharing_url = home_url();
|
272 |
$post_id = 0;
|
|
|
|
|
273 |
} elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
|
274 |
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
275 |
} elseif ( get_permalink( $post -> ID ) ) {
|
276 |
$sharing_url = get_permalink( $post->ID );
|
277 |
-
} else {
|
278 |
-
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
279 |
}
|
280 |
} elseif ( $instance['target_url'] == 'homepage' ) {
|
281 |
$sharing_url = home_url();
|
69 |
$post_id = $post -> ID;
|
70 |
if ( isset( $instance['target_url'] ) ) {
|
71 |
if ( $instance['target_url'] == 'default' ) {
|
72 |
+
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
73 |
if ( is_home() ) {
|
74 |
$sharing_url = home_url();
|
75 |
$post_id = 0;
|
76 |
+
} elseif ( ! is_singular() ) {
|
77 |
+
$post_id = 0;
|
78 |
} elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
|
79 |
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
80 |
} elseif ( get_permalink( $post -> ID ) ) {
|
81 |
$sharing_url = get_permalink( $post->ID );
|
|
|
|
|
82 |
}
|
83 |
} elseif ( $instance['target_url'] == 'homepage' ) {
|
84 |
$sharing_url = home_url();
|
109 |
}
|
110 |
$short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
|
111 |
|
112 |
+
echo $this->public_class_object->prepare_sharing_html( $short_url ? $short_url : $sharing_url, 'horizontal', isset( $instance['show_counts'] ), isset( $instance['total_shares'] ), ! is_singular() ? true : false );
|
113 |
|
114 |
if ( ! empty( $instance['after_widget_content'] ) ) {
|
115 |
echo '<div>' . $instance['after_widget_content'] . '</div>';
|
268 |
$post_id = $post -> ID;
|
269 |
if ( isset( $instance['target_url'] ) ) {
|
270 |
if ( $instance['target_url'] == 'default' ) {
|
271 |
+
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
272 |
if ( is_home() ) {
|
273 |
$sharing_url = home_url();
|
274 |
$post_id = 0;
|
275 |
+
} elseif ( ! is_singular() ) {
|
276 |
+
$post_id = 0;
|
277 |
} elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
|
278 |
$sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
279 |
} elseif ( get_permalink( $post -> ID ) ) {
|
280 |
$sharing_url = get_permalink( $post->ID );
|
|
|
|
|
281 |
}
|
282 |
} elseif ( $instance['target_url'] == 'homepage' ) {
|
283 |
$sharing_url = home_url();
|
languages/sassy-social-share.pot
CHANGED
@@ -2,18 +2,17 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Sassy Social Share\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
|
8 |
"Language-Team: Heateor <hello@heateor.com>\n"
|
9 |
-
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-
|
16 |
-
"X-Poedit-Country: India\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
#: ../admin/class-sassy-social-share-admin.php:59
|
@@ -66,7 +65,9 @@ msgid "Dismiss this notice"
|
|
66 |
msgstr ""
|
67 |
|
68 |
#: ../admin/class-sassy-social-share-admin.php:445
|
69 |
-
msgid "
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
#: ../admin/class-sassy-social-share-admin.php:460
|
@@ -94,13 +95,13 @@ msgid "Floating Interface"
|
|
94 |
msgstr ""
|
95 |
|
96 |
#: ../admin/partials/sassy-social-share-options-page.php:22
|
97 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
98 |
msgid "Miscellaneous"
|
99 |
msgstr ""
|
100 |
|
101 |
#: ../admin/partials/sassy-social-share-options-page.php:23
|
102 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
103 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
104 |
msgid "Shortcode & Widget"
|
105 |
msgstr ""
|
106 |
|
@@ -109,744 +110,838 @@ msgid "Troubleshooter"
|
|
109 |
msgstr ""
|
110 |
|
111 |
#: ../admin/partials/sassy-social-share-options-page.php:25
|
112 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
113 |
msgid "FAQ"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
117 |
msgid "Standard interface theme"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
121 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
122 |
msgid "Icon Preview"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
126 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
127 |
-
msgid "
|
|
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
131 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
132 |
msgid "Shape"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
136 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
137 |
msgid "Round"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
141 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
142 |
msgid "Square"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
146 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
147 |
msgid "Rectangle"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
151 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
152 |
msgid "Shape of the sharing icons"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
156 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
157 |
msgid "Size (in pixels)"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
161 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
162 |
msgid "Size of the sharing icons"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
166 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
167 |
msgid "Width (in pixels)"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
171 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
172 |
msgid "Width of the sharing icons"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
176 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
177 |
msgid "Height (in pixels)"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
181 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
182 |
msgid "Height of the sharing icons"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
186 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
187 |
msgid "Border radius (in pixels)"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
191 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
192 |
-
msgid "
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
196 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
197 |
msgid "Logo Color"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
201 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
202 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
203 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
204 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
205 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
206 |
msgid "Default"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
210 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
211 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
212 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
213 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
214 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
215 |
msgid "On Hover"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
219 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
220 |
-
msgid "
|
|
|
|
|
|
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
224 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
225 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
226 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
227 |
msgid "Background Color"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
231 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
232 |
-
msgid "
|
|
|
|
|
|
|
|
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
236 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
237 |
msgid "Border"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../admin/partials/sassy-social-share-options-page.php:282
|
241 |
-
#: ../admin/partials/sassy-social-share-options-page.php:287
|
242 |
-
#: ../admin/partials/sassy-social-share-options-page.php:589
|
243 |
-
#: ../admin/partials/sassy-social-share-options-page.php:594
|
244 |
-
msgid "Border Width"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
#: ../admin/partials/sassy-social-share-options-page.php:283
|
248 |
#: ../admin/partials/sassy-social-share-options-page.php:288
|
249 |
#: ../admin/partials/sassy-social-share-options-page.php:590
|
250 |
#: ../admin/partials/sassy-social-share-options-page.php:595
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
msgid "Border Color"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
255 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
256 |
msgid "Icon border"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
260 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
261 |
msgid "Counter Position"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
265 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
266 |
msgid "(applies, if counter enabled)"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
270 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
271 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
272 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
273 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
274 |
msgid "Left"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
278 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
279 |
msgid "Top"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
283 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
284 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
285 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
286 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
287 |
msgid "Right"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
291 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
292 |
msgid "Bottom"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
296 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
297 |
msgid "Inner Left"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
301 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
302 |
msgid "Inner Top"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
306 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
307 |
msgid "Inner Right"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
311 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
312 |
msgid "Inner Bottom"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
316 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
317 |
msgid "Position of share counter"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
321 |
msgid "Floating interface theme"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
325 |
msgid "Standard Sharing Interface Options"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
329 |
msgid "Enable Standard sharing interface"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
333 |
msgid "Master control to enable standard sharing"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
337 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
338 |
msgid "Target Url"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
342 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
343 |
msgid "Url of the webpage where icons are located (default)"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
347 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
348 |
msgid "Url of the homepage of your website"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
352 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
353 |
msgid "Custom url"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
357 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
358 |
msgid "Url to share"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
362 |
msgid "Title"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
366 |
msgid "The text to display above the sharing interface"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
370 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
371 |
msgid "Instagram username"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
375 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
376 |
-
msgid "
|
|
|
|
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
380 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
381 |
msgid "Rearrange icons"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
385 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
386 |
msgid "Drag the icons to rearrange in desired order"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
390 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
391 |
msgid "Select Sharing Services"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
395 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
396 |
msgid "Select sharing services to show in social share bar"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
400 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
401 |
msgid "Horizontal alignment"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
405 |
msgid "Center"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
409 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
410 |
msgid "Horizontal alignment of the sharing interface"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
414 |
msgid "Position with respect to content"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
418 |
msgid "Top of the content"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
422 |
msgid "Bottom of the content"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
426 |
msgid "Specify position of the sharing interface with respect to the content"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
430 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
431 |
msgid "Placement"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
435 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
436 |
msgid "Homepage"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
440 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
441 |
msgid "Posts"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
445 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
446 |
msgid "Pages"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
450 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
451 |
msgid "Excerpts and Posts page"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
455 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
456 |
msgid "Category Archives"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
460 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
461 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
465 |
msgid "BuddyPress activity"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
469 |
msgid "BuddyPress group (only at top of content)"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
473 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
474 |
msgid "BBPress forum"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
478 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
479 |
msgid "BBPress topic"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
483 |
msgid "BBPress reply"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
487 |
msgid "After individual product at WooCommerce Shop page"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
491 |
msgid "WooCommerce Product Page"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
495 |
msgid "WooCommerce Thankyou Page"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
499 |
msgid "Specify the pages where you want to enable Sharing interface"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
503 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
504 |
msgid "Show share counts"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
508 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
509 |
-
msgid "
|
|
|
|
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
513 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
514 |
msgid "If enabled, share counts are displayed above sharing icons."
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1010
|
518 |
-
#: ../admin/partials/sassy-social-share-options-page.php:1422
|
519 |
-
#, php-format
|
520 |
-
msgid "Use <a href=\"%s\" target=\"_blank\">NewShareCounts</a> to show Twitter share counts"
|
521 |
-
msgstr ""
|
522 |
-
|
523 |
#: ../admin/partials/sassy-social-share-options-page.php:1012
|
524 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
525 |
#, php-format
|
526 |
-
msgid "
|
|
|
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: ../admin/partials/sassy-social-share-options-page.php:1014
|
530 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
531 |
#, php-format
|
532 |
-
msgid "
|
|
|
|
|
533 |
msgstr ""
|
534 |
|
535 |
#: ../admin/partials/sassy-social-share-options-page.php:1016
|
536 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
537 |
#, php-format
|
538 |
-
msgid "
|
|
|
|
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
542 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
msgid "Show total shares"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
547 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
548 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
552 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
553 |
msgid "Enable 'More' icon"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
557 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
558 |
-
msgid "
|
|
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
562 |
msgid "Floating Sharing Interface Options"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
566 |
msgid "Enable Floating sharing interface"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
570 |
msgid "Master control to enable floating sharing widget"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
574 |
-
msgid "
|
|
|
|
|
|
|
|
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
578 |
msgid "Left offset"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
582 |
-
msgid "
|
|
|
|
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
586 |
msgid "Right offset"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
590 |
-
msgid "
|
|
|
|
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
594 |
msgid "Top offset"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
598 |
-
msgid "
|
|
|
|
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
602 |
msgid "BuddyPress group"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
606 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
610 |
msgid "Vertical floating bar responsiveness"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
614 |
#, php-format
|
615 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
619 |
-
msgid "
|
|
|
|
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
623 |
msgid "Horizontal floating bar responsiveness"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
627 |
#, php-format
|
628 |
-
msgid "
|
|
|
|
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
632 |
-
msgid "
|
|
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
636 |
msgid "Horizontal floating bar position"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
640 |
#, php-format
|
641 |
msgid "%s pixels from %s"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
645 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
649 |
msgid "Load Javascript files in footer"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
653 |
-
msgid "
|
|
|
|
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
657 |
msgid "Delete all the options on plugin deletion"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
661 |
-
msgid "
|
|
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
665 |
msgid "Share Count Cache"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
669 |
msgid "Refresh Share Count cache every"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
673 |
-
msgid "
|
|
|
|
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
677 |
msgid "Clear Share Counts Cache"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
681 |
msgid "Share Counts cache cleared successfully."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
685 |
msgid "Use this to clear cached share counts"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
689 |
msgid "Url shortener"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
693 |
msgid "Use shortlinks already installed"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
697 |
-
msgid "
|
|
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
701 |
msgid "Enable bit.ly url shortener for sharing"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
705 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
709 |
msgid "bit.ly Login"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
713 |
#, php-format
|
714 |
-
msgid "
|
|
|
|
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
718 |
msgid "bit.ly API Key"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
722 |
#, php-format
|
723 |
-
msgid "
|
|
|
|
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
727 |
msgid "Clear Bitly Cache"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
731 |
msgid "ShortUrl cache cleared successfully."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
735 |
-
msgid "
|
|
|
|
|
|
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
739 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
740 |
msgid "Language"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
744 |
#, php-format
|
745 |
-
msgid "
|
|
|
|
|
|
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
749 |
msgid "Username in sharing"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
753 |
msgid "Twitter username (without @)"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
757 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
758 |
-
msgid "
|
|
|
|
|
|
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
762 |
msgid "Buffer username (without @)"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
766 |
msgid "AMP"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
770 |
msgid "Enable sharing on AMP pages"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
774 |
msgid "Enable this option to render sharing icons on AMP pages"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
778 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
779 |
msgid "Custom CSS"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
783 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
787 |
msgid "Facebook Sharing Troubleshooter"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
791 |
-
msgid "
|
|
|
|
|
|
|
|
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
795 |
-
msgid "
|
|
|
|
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
799 |
-
msgid "
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
803 |
msgid "How can I disable sharing on particular page/post?"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
807 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
811 |
msgid "How to share specific page?"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
815 |
msgid "How to integrate Google Analytics with sharing?"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
819 |
msgid "How to customize the look of total share counts?"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
823 |
msgid "How to customize the look of individual share counts?"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
827 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
831 |
msgid "How to hide arrow after floating sharing bar?"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
835 |
msgid "Why is share count not getting updated?"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
839 |
msgid "Why is there so much space between like buttons?"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
843 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../admin/partials/sassy-social-share-options-page.php:
|
847 |
msgid "Save Changes"
|
848 |
msgstr ""
|
849 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
850 |
#: ../admin/partials/sassy-social-share-about.php:4
|
851 |
msgid "About"
|
852 |
msgstr ""
|
@@ -860,55 +955,62 @@ msgid "by"
|
|
860 |
msgstr ""
|
861 |
|
862 |
#: ../admin/partials/sassy-social-share-about.php:7
|
863 |
-
msgid "
|
|
|
|
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
867 |
msgid "Donate"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
871 |
-
msgid "
|
|
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
875 |
msgid "Donate Now"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
879 |
msgid "Plugin Demo"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
883 |
msgid "Customization Options"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
887 |
msgid "Add-ons"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
891 |
msgid "Support Forum"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
895 |
msgid "Need Quick Help?"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
899 |
-
msgid "
|
|
|
|
|
|
|
|
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
903 |
msgid "Support Us"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../admin/partials/sassy-social-share-about.php:
|
907 |
-
#: ../admin/partials/sassy-social-share-about.php:62
|
908 |
#: ../admin/partials/sassy-social-share-about.php:63
|
909 |
#: ../admin/partials/sassy-social-share-about.php:64
|
910 |
#: ../admin/partials/sassy-social-share-about.php:65
|
911 |
#: ../admin/partials/sassy-social-share-about.php:66
|
|
|
912 |
msgid "Rate 5-star"
|
913 |
msgstr ""
|
914 |
|
@@ -917,90 +1019,107 @@ msgid "Sassy Social Share - Standard Widget"
|
|
917 |
msgstr ""
|
918 |
|
919 |
#: ../includes/class-sassy-social-share-widgets.php:51
|
920 |
-
msgid "
|
|
|
|
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
924 |
-
msgid "
|
|
|
|
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
928 |
msgid "Title:"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
932 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
933 |
msgid "Show individual share counts:"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
937 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
938 |
msgid "Show total shares:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
942 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
943 |
msgid "Target Url:"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
947 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
948 |
msgid "Select"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
952 |
msgid "Before widget content:"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
956 |
msgid "After widget content:"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
960 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
961 |
msgid "Hide for logged in users:"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
965 |
-
msgid "
|
|
|
|
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
969 |
-
msgid "
|
|
|
|
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
973 |
msgid "Alignment"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
977 |
msgid "Left Offset"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
981 |
msgid "Right Offset"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: ../includes/class-sassy-social-share-widgets.php:
|
985 |
msgid "Top Offset"
|
986 |
msgstr ""
|
987 |
|
988 |
#: ../public/class-sassy-social-share-public.php:121
|
989 |
-
#: ../public/class-sassy-social-share-public.php:
|
990 |
msgid "Shares"
|
991 |
msgstr ""
|
992 |
|
993 |
#: ../public/class-sassy-social-share-public.php:121
|
994 |
-
#: ../public/class-sassy-social-share-public.php:
|
995 |
msgid "Share"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: ../public/class-sassy-social-share-public.php:
|
999 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1000 |
msgid "Invalid request"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../public/class-sassy-social-share-public.php:
|
1004 |
msgid "Providers not selected"
|
1005 |
msgstr ""
|
1006 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Sassy Social Share\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-03-21 12:42+0530\n"
|
6 |
+
"PO-Revision-Date: 2017-03-21 12:42+0530\n"
|
7 |
"Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
|
8 |
"Language-Team: Heateor <hello@heateor.com>\n"
|
9 |
+
"Language: en_IN\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Generator: Poedit 1.5.4\n"
|
|
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../admin/class-sassy-social-share-admin.php:59
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../admin/class-sassy-social-share-admin.php:445
|
68 |
+
msgid ""
|
69 |
+
"Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
|
70 |
+
"with current version of Sassy Social Share"
|
71 |
msgstr ""
|
72 |
|
73 |
#: ../admin/class-sassy-social-share-admin.php:460
|
95 |
msgstr ""
|
96 |
|
97 |
#: ../admin/partials/sassy-social-share-options-page.php:22
|
98 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1543
|
99 |
msgid "Miscellaneous"
|
100 |
msgstr ""
|
101 |
|
102 |
#: ../admin/partials/sassy-social-share-options-page.php:23
|
103 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1862
|
104 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1864
|
105 |
msgid "Shortcode & Widget"
|
106 |
msgstr ""
|
107 |
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../admin/partials/sassy-social-share-options-page.php:25
|
113 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1895
|
114 |
msgid "FAQ"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../admin/partials/sassy-social-share-options-page.php:33
|
118 |
msgid "Standard interface theme"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../admin/partials/sassy-social-share-options-page.php:38
|
122 |
+
#: ../admin/partials/sassy-social-share-options-page.php:345
|
123 |
msgid "Icon Preview"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../admin/partials/sassy-social-share-options-page.php:110
|
127 |
+
#: ../admin/partials/sassy-social-share-options-page.php:418
|
128 |
+
msgid ""
|
129 |
+
"Do not forget to save the configuration after making changes by clicking the "
|
130 |
+
"save button below"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../admin/partials/sassy-social-share-options-page.php:117
|
134 |
+
#: ../admin/partials/sassy-social-share-options-page.php:425
|
135 |
msgid "Shape"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../admin/partials/sassy-social-share-options-page.php:121
|
139 |
+
#: ../admin/partials/sassy-social-share-options-page.php:429
|
140 |
msgid "Round"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../admin/partials/sassy-social-share-options-page.php:123
|
144 |
+
#: ../admin/partials/sassy-social-share-options-page.php:431
|
145 |
msgid "Square"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../admin/partials/sassy-social-share-options-page.php:125
|
149 |
+
#: ../admin/partials/sassy-social-share-options-page.php:433
|
150 |
msgid "Rectangle"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../admin/partials/sassy-social-share-options-page.php:132
|
154 |
+
#: ../admin/partials/sassy-social-share-options-page.php:440
|
155 |
msgid "Shape of the sharing icons"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../admin/partials/sassy-social-share-options-page.php:141
|
159 |
+
#: ../admin/partials/sassy-social-share-options-page.php:449
|
160 |
msgid "Size (in pixels)"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../admin/partials/sassy-social-share-options-page.php:157
|
164 |
+
#: ../admin/partials/sassy-social-share-options-page.php:465
|
165 |
msgid "Size of the sharing icons"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../admin/partials/sassy-social-share-options-page.php:167
|
169 |
+
#: ../admin/partials/sassy-social-share-options-page.php:475
|
170 |
msgid "Width (in pixels)"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../admin/partials/sassy-social-share-options-page.php:183
|
174 |
+
#: ../admin/partials/sassy-social-share-options-page.php:491
|
175 |
msgid "Width of the sharing icons"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../admin/partials/sassy-social-share-options-page.php:191
|
179 |
+
#: ../admin/partials/sassy-social-share-options-page.php:499
|
180 |
msgid "Height (in pixels)"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../admin/partials/sassy-social-share-options-page.php:207
|
184 |
+
#: ../admin/partials/sassy-social-share-options-page.php:515
|
185 |
msgid "Height of the sharing icons"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: ../admin/partials/sassy-social-share-options-page.php:217
|
189 |
+
#: ../admin/partials/sassy-social-share-options-page.php:525
|
190 |
msgid "Border radius (in pixels)"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../admin/partials/sassy-social-share-options-page.php:227
|
194 |
+
#: ../admin/partials/sassy-social-share-options-page.php:535
|
195 |
+
msgid ""
|
196 |
+
"Specify a value for rounded corners. More the value, more rounded will the "
|
197 |
+
"corners be. Leave empty for sharp corners."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../admin/partials/sassy-social-share-options-page.php:236
|
201 |
+
#: ../admin/partials/sassy-social-share-options-page.php:544
|
202 |
msgid "Logo Color"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../admin/partials/sassy-social-share-options-page.php:240
|
206 |
+
#: ../admin/partials/sassy-social-share-options-page.php:261
|
207 |
+
#: ../admin/partials/sassy-social-share-options-page.php:281
|
208 |
+
#: ../admin/partials/sassy-social-share-options-page.php:548
|
209 |
+
#: ../admin/partials/sassy-social-share-options-page.php:569
|
210 |
+
#: ../admin/partials/sassy-social-share-options-page.php:588
|
211 |
msgid "Default"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../admin/partials/sassy-social-share-options-page.php:242
|
215 |
+
#: ../admin/partials/sassy-social-share-options-page.php:262
|
216 |
+
#: ../admin/partials/sassy-social-share-options-page.php:286
|
217 |
+
#: ../admin/partials/sassy-social-share-options-page.php:550
|
218 |
+
#: ../admin/partials/sassy-social-share-options-page.php:570
|
219 |
+
#: ../admin/partials/sassy-social-share-options-page.php:593
|
220 |
msgid "On Hover"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../admin/partials/sassy-social-share-options-page.php:250
|
224 |
+
#: ../admin/partials/sassy-social-share-options-page.php:558
|
225 |
+
msgid ""
|
226 |
+
"Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
|
227 |
+
"empty for default. You can get the hex code of the required color from <a "
|
228 |
+
"href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../admin/partials/sassy-social-share-options-page.php:258
|
232 |
+
#: ../admin/partials/sassy-social-share-options-page.php:566
|
233 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1249
|
234 |
+
#: ../includes/class-sassy-social-share-widgets.php:412
|
235 |
msgid "Background Color"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../admin/partials/sassy-social-share-options-page.php:269
|
239 |
+
#: ../admin/partials/sassy-social-share-options-page.php:577
|
240 |
+
msgid ""
|
241 |
+
"Specify the color or hex code (example #cc78e0) for icon background. Save "
|
242 |
+
"\"transparent\" for transparent background. Leave empty for default. You can "
|
243 |
+
"get the hex code of the required color from <a href=\"http://www.colorpicker."
|
244 |
+
"com/\" target=\"_blank\">this link</a>"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../admin/partials/sassy-social-share-options-page.php:277
|
248 |
+
#: ../admin/partials/sassy-social-share-options-page.php:585
|
249 |
msgid "Border"
|
250 |
msgstr ""
|
251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
#: ../admin/partials/sassy-social-share-options-page.php:283
|
253 |
#: ../admin/partials/sassy-social-share-options-page.php:288
|
254 |
#: ../admin/partials/sassy-social-share-options-page.php:590
|
255 |
#: ../admin/partials/sassy-social-share-options-page.php:595
|
256 |
+
msgid "Border Width"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: ../admin/partials/sassy-social-share-options-page.php:284
|
260 |
+
#: ../admin/partials/sassy-social-share-options-page.php:289
|
261 |
+
#: ../admin/partials/sassy-social-share-options-page.php:591
|
262 |
+
#: ../admin/partials/sassy-social-share-options-page.php:596
|
263 |
msgid "Border Color"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../admin/partials/sassy-social-share-options-page.php:296
|
267 |
+
#: ../admin/partials/sassy-social-share-options-page.php:603
|
268 |
msgid "Icon border"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../admin/partials/sassy-social-share-options-page.php:304
|
272 |
+
#: ../admin/partials/sassy-social-share-options-page.php:611
|
273 |
msgid "Counter Position"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../admin/partials/sassy-social-share-options-page.php:304
|
277 |
+
#: ../admin/partials/sassy-social-share-options-page.php:611
|
278 |
msgid "(applies, if counter enabled)"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../admin/partials/sassy-social-share-options-page.php:308
|
282 |
+
#: ../admin/partials/sassy-social-share-options-page.php:615
|
283 |
+
#: ../admin/partials/sassy-social-share-options-page.php:866
|
284 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1271
|
285 |
+
#: ../includes/class-sassy-social-share-widgets.php:398
|
286 |
msgid "Left"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../admin/partials/sassy-social-share-options-page.php:310
|
290 |
+
#: ../admin/partials/sassy-social-share-options-page.php:617
|
291 |
msgid "Top"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../admin/partials/sassy-social-share-options-page.php:312
|
295 |
+
#: ../admin/partials/sassy-social-share-options-page.php:619
|
296 |
+
#: ../admin/partials/sassy-social-share-options-page.php:868
|
297 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1272
|
298 |
+
#: ../includes/class-sassy-social-share-widgets.php:399
|
299 |
msgid "Right"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../admin/partials/sassy-social-share-options-page.php:314
|
303 |
+
#: ../admin/partials/sassy-social-share-options-page.php:621
|
304 |
msgid "Bottom"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../admin/partials/sassy-social-share-options-page.php:316
|
308 |
+
#: ../admin/partials/sassy-social-share-options-page.php:623
|
309 |
msgid "Inner Left"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../admin/partials/sassy-social-share-options-page.php:318
|
313 |
+
#: ../admin/partials/sassy-social-share-options-page.php:625
|
314 |
msgid "Inner Top"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ../admin/partials/sassy-social-share-options-page.php:320
|
318 |
+
#: ../admin/partials/sassy-social-share-options-page.php:627
|
319 |
msgid "Inner Right"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../admin/partials/sassy-social-share-options-page.php:322
|
323 |
+
#: ../admin/partials/sassy-social-share-options-page.php:629
|
324 |
msgid "Inner Bottom"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../admin/partials/sassy-social-share-options-page.php:330
|
328 |
+
#: ../admin/partials/sassy-social-share-options-page.php:637
|
329 |
msgid "Position of share counter"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../admin/partials/sassy-social-share-options-page.php:340
|
333 |
msgid "Floating interface theme"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../admin/partials/sassy-social-share-options-page.php:653
|
337 |
msgid "Standard Sharing Interface Options"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../admin/partials/sassy-social-share-options-page.php:659
|
341 |
msgid "Enable Standard sharing interface"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../admin/partials/sassy-social-share-options-page.php:669
|
345 |
msgid "Master control to enable standard sharing"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../admin/partials/sassy-social-share-options-page.php:679
|
349 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1097
|
350 |
msgid "Target Url"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../admin/partials/sassy-social-share-options-page.php:683
|
354 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1101
|
355 |
msgid "Url of the webpage where icons are located (default)"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../admin/partials/sassy-social-share-options-page.php:685
|
359 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1103
|
360 |
msgid "Url of the homepage of your website"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../admin/partials/sassy-social-share-options-page.php:687
|
364 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1105
|
365 |
msgid "Custom url"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../admin/partials/sassy-social-share-options-page.php:694
|
369 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1112
|
370 |
msgid "Url to share"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../admin/partials/sassy-social-share-options-page.php:702
|
374 |
msgid "Title"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../admin/partials/sassy-social-share-options-page.php:712
|
378 |
msgid "The text to display above the sharing interface"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../admin/partials/sassy-social-share-options-page.php:730
|
382 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1121
|
383 |
msgid "Instagram username"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../admin/partials/sassy-social-share-options-page.php:740
|
387 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1131
|
388 |
+
msgid ""
|
389 |
+
"Username of the Instagram account you want to redirect users to, on clicking "
|
390 |
+
"the icon"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../admin/partials/sassy-social-share-options-page.php:753
|
394 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1140
|
395 |
msgid "Rearrange icons"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../admin/partials/sassy-social-share-options-page.php:812
|
399 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1199
|
400 |
msgid "Drag the icons to rearrange in desired order"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../admin/partials/sassy-social-share-options-page.php:820
|
404 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1207
|
405 |
msgid "Select Sharing Services"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../admin/partials/sassy-social-share-options-page.php:827
|
409 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1214
|
410 |
msgid "Select sharing services to show in social share bar"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../admin/partials/sassy-social-share-options-page.php:862
|
414 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1267
|
415 |
msgid "Horizontal alignment"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../admin/partials/sassy-social-share-options-page.php:867
|
419 |
msgid "Center"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ../admin/partials/sassy-social-share-options-page.php:876
|
423 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1280
|
424 |
msgid "Horizontal alignment of the sharing interface"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../admin/partials/sassy-social-share-options-page.php:884
|
428 |
msgid "Position with respect to content"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../admin/partials/sassy-social-share-options-page.php:888
|
432 |
msgid "Top of the content"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../admin/partials/sassy-social-share-options-page.php:890
|
436 |
msgid "Bottom of the content"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../admin/partials/sassy-social-share-options-page.php:897
|
440 |
msgid "Specify position of the sharing interface with respect to the content"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../admin/partials/sassy-social-share-options-page.php:905
|
444 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1346
|
445 |
msgid "Placement"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../admin/partials/sassy-social-share-options-page.php:909
|
449 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1350
|
450 |
msgid "Homepage"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../admin/partials/sassy-social-share-options-page.php:911
|
454 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1352
|
455 |
msgid "Posts"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../admin/partials/sassy-social-share-options-page.php:913
|
459 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1354
|
460 |
msgid "Pages"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../admin/partials/sassy-social-share-options-page.php:915
|
464 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1356
|
465 |
msgid "Excerpts and Posts page"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../admin/partials/sassy-social-share-options-page.php:917
|
469 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1358
|
470 |
msgid "Category Archives"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../admin/partials/sassy-social-share-options-page.php:919
|
474 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1360
|
475 |
msgid "Archive Pages (Category, Tag, Author or Date based pages)"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../admin/partials/sassy-social-share-options-page.php:935
|
479 |
msgid "BuddyPress activity"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ../admin/partials/sassy-social-share-options-page.php:937
|
483 |
msgid "BuddyPress group (only at top of content)"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../admin/partials/sassy-social-share-options-page.php:943
|
487 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1382
|
488 |
msgid "BBPress forum"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: ../admin/partials/sassy-social-share-options-page.php:946
|
492 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1385
|
493 |
msgid "BBPress topic"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ../admin/partials/sassy-social-share-options-page.php:949
|
497 |
msgid "BBPress reply"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../admin/partials/sassy-social-share-options-page.php:956
|
501 |
msgid "After individual product at WooCommerce Shop page"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: ../admin/partials/sassy-social-share-options-page.php:959
|
505 |
msgid "WooCommerce Product Page"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../admin/partials/sassy-social-share-options-page.php:962
|
509 |
msgid "WooCommerce Thankyou Page"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../admin/partials/sassy-social-share-options-page.php:973
|
513 |
msgid "Specify the pages where you want to enable Sharing interface"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../admin/partials/sassy-social-share-options-page.php:981
|
517 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1403
|
518 |
msgid "Show share counts"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../admin/partials/sassy-social-share-options-page.php:986
|
522 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1408
|
523 |
+
msgid ""
|
524 |
+
"Share counts are supported for Facebook, Twitter, Linkedin, GooglePlus, "
|
525 |
+
"Delicious, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../admin/partials/sassy-social-share-options-page.php:993
|
529 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1415
|
530 |
msgid "If enabled, share counts are displayed above sharing icons."
|
531 |
msgstr ""
|
532 |
|
|
|
|
|
|
|
|
|
|
|
|
|
533 |
#: ../admin/partials/sassy-social-share-options-page.php:1012
|
534 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1425
|
535 |
#, php-format
|
536 |
+
msgid ""
|
537 |
+
"Use <a href=\"%s\" target=\"_blank\">NewShareCounts</a> to show Twitter "
|
538 |
+
"share counts"
|
539 |
msgstr ""
|
540 |
|
541 |
#: ../admin/partials/sassy-social-share-options-page.php:1014
|
542 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1427
|
543 |
#, php-format
|
544 |
+
msgid ""
|
545 |
+
"For this to work, you have to enter your website url %s and sign in using "
|
546 |
+
"Twitter at <a href=\"%s\" target=\"_blank\">their website</a>"
|
547 |
msgstr ""
|
548 |
|
549 |
#: ../admin/partials/sassy-social-share-options-page.php:1016
|
550 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1429
|
551 |
#, php-format
|
552 |
+
msgid ""
|
553 |
+
"Use <a href=\"%s\" target=\"_blank\">OpenShareCount</a> to show Twitter "
|
554 |
+
"share counts"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1018
|
558 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1431
|
559 |
+
#, php-format
|
560 |
+
msgid ""
|
561 |
+
"For this to work, you have to sign up and register your website url %s at <a "
|
562 |
+
"href=\"%s\" target=\"_blank\">their website</a>"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1025
|
566 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1438
|
567 |
msgid "Show total shares"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1035
|
571 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1448
|
572 |
msgid "If enabled, total shares will be displayed with sharing icons"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1044
|
576 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1457
|
577 |
msgid "Enable 'More' icon"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1054
|
581 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1467
|
582 |
+
msgid ""
|
583 |
+
"If enabled, \"More\" icon will be displayed after selected sharing icons "
|
584 |
+
"which shows additional sharing networks in popup"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1071
|
588 |
msgid "Floating Sharing Interface Options"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1077
|
592 |
msgid "Enable Floating sharing interface"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1087
|
596 |
msgid "Master control to enable floating sharing widget"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1259
|
600 |
+
msgid ""
|
601 |
+
"Specify the color or hex code (example #cc78e0) for the background of "
|
602 |
+
"vertical sharing bar. Leave empty for transparent. You can get the hex code "
|
603 |
+
"of the required color from <a href=\"http://www.colorpicker.com/\" target="
|
604 |
+
"\"_blank\">this link</a>"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1289
|
608 |
msgid "Left offset"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1299
|
612 |
+
msgid ""
|
613 |
+
"Specify a number. Increase in number will shift sharing interface towards "
|
614 |
+
"right and decrease will shift it towards left. Number can be negative too."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1309
|
618 |
msgid "Right offset"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1319
|
622 |
+
msgid ""
|
623 |
+
"Specify a number. Increase in number will shift sharing interface towards "
|
624 |
+
"left and decrease will shift it towards right. Number can be negative too."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1328
|
628 |
msgid "Top offset"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1338
|
632 |
+
msgid ""
|
633 |
+
"Specify a number. Increase in number will shift sharing interface towards "
|
634 |
+
"bottom and decrease will shift it towards top."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1374
|
638 |
msgid "BuddyPress group"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1395
|
642 |
msgid "Specify the pages where you want to enable vertical Sharing interface"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1475
|
646 |
msgid "Vertical floating bar responsiveness"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1478
|
650 |
#, php-format
|
651 |
msgid "Display vertical interface only when screen is wider than %s pixels"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1485
|
655 |
+
msgid ""
|
656 |
+
"Display vertical interface only when screen is wider than the width "
|
657 |
+
"specified."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1493
|
661 |
msgid "Horizontal floating bar responsiveness"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1496
|
665 |
#, php-format
|
666 |
+
msgid ""
|
667 |
+
"Stick vertical floating interface horizontally at bottom only when screen is "
|
668 |
+
"narrower than %s pixels"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1503
|
672 |
+
msgid ""
|
673 |
+
"Stick vertical floating interface horizontally at bottom only when screen is "
|
674 |
+
"narrower than the width specified"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1513
|
678 |
msgid "Horizontal floating bar position"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1516
|
682 |
#, php-format
|
683 |
msgid "%s pixels from %s"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1523
|
687 |
msgid "Alignment of horizontal floating interface. Number can be negative too."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1549
|
691 |
msgid "Load Javascript files in footer"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1559
|
695 |
+
msgid ""
|
696 |
+
"If enabled (recommended), Javascript files will be included in the footer of "
|
697 |
+
"your website."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1567
|
701 |
msgid "Delete all the options on plugin deletion"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1577
|
705 |
+
msgid ""
|
706 |
+
"If enabled, plugin options will get deleted when plugin is deleted/"
|
707 |
+
"uninstalled and you will need to reconfigure the options when you install "
|
708 |
+
"the plugin next time."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1586
|
712 |
msgid "Share Count Cache"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1592
|
716 |
msgid "Refresh Share Count cache every"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1608
|
720 |
+
msgid ""
|
721 |
+
"Frequent cache refreshing results in slower loading of pages with share "
|
722 |
+
"counts enabled"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1616
|
726 |
msgid "Clear Share Counts Cache"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1620
|
730 |
msgid "Share Counts cache cleared successfully."
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1627
|
734 |
msgid "Use this to clear cached share counts"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1636
|
738 |
msgid "Url shortener"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1642
|
742 |
msgid "Use shortlinks already installed"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1652
|
746 |
+
msgid ""
|
747 |
+
"Use default short url permalinks without the need for any additional plugin"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1660
|
751 |
msgid "Enable bit.ly url shortener for sharing"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1670
|
755 |
msgid "Master control to enable bit.ly url shortening for sharing"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1678
|
759 |
msgid "bit.ly Login"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1688
|
763 |
#, php-format
|
764 |
+
msgid ""
|
765 |
+
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
766 |
+
"\">this link</a> to get bit.ly Login"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1697
|
770 |
msgid "bit.ly API Key"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1707
|
774 |
#, php-format
|
775 |
+
msgid ""
|
776 |
+
"Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
|
777 |
+
"\">this link</a> to get your API key"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1716
|
781 |
msgid "Clear Bitly Cache"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1720
|
785 |
msgid "ShortUrl cache cleared successfully."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1727
|
789 |
+
msgid ""
|
790 |
+
"Use this to delete short urls saved in database. Handy, if urls of your "
|
791 |
+
"website have been changed but short urls are still being generated for old "
|
792 |
+
"urls."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1736
|
796 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1742
|
797 |
msgid "Language"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1752
|
801 |
#, php-format
|
802 |
+
msgid ""
|
803 |
+
"Enter the code of the language you want to use for like buttons. You can "
|
804 |
+
"find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. "
|
805 |
+
"Leave it empty for default language(English)"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1761
|
809 |
msgid "Username in sharing"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1767
|
813 |
msgid "Twitter username (without @)"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1777
|
817 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1796
|
818 |
+
msgid ""
|
819 |
+
"Provided username will be appended after the content being shared as \"via "
|
820 |
+
"@USERNAME\". Leave empty if you do not want any username in the content "
|
821 |
+
"being shared."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1786
|
825 |
msgid "Buffer username (without @)"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1805
|
829 |
msgid "AMP"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1811
|
833 |
msgid "Enable sharing on AMP pages"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1821
|
837 |
msgid "Enable this option to render sharing icons on AMP pages"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1830
|
841 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1836
|
842 |
msgid "Custom CSS"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1846
|
846 |
msgid "You can specify any additional CSS rules (without <style> tag)"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1875
|
850 |
msgid "Facebook Sharing Troubleshooter"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1880
|
854 |
+
msgid ""
|
855 |
+
"If Facebook sharing is not working fine, click at the following link and "
|
856 |
+
"enter the problematic url (where Facebook sharing is not working properly) "
|
857 |
+
"of your website in the text field. Click \"Fetch New Scrape Information\" "
|
858 |
+
"button."
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1897
|
862 |
+
msgid ""
|
863 |
+
"Why is sharer not showing the correct image, title and other meta tags "
|
864 |
+
"content?"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1898
|
868 |
+
msgid ""
|
869 |
+
"How can I show share counts of my website rather than of individual pages/"
|
870 |
+
"posts?"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1899
|
874 |
msgid "How can I disable sharing on particular page/post?"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1900
|
878 |
msgid "How can I specify minimum sharing count for sharing networks?"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1901
|
882 |
msgid "How to share specific page?"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1902
|
886 |
msgid "How to integrate Google Analytics with sharing?"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1903
|
890 |
msgid "How to customize the look of total share counts?"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1904
|
894 |
msgid "How to customize the look of individual share counts?"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1905
|
898 |
msgid "How to show Whatsapp icon only on mobile devices?"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1906
|
902 |
msgid "How to hide arrow after floating sharing bar?"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1907
|
906 |
msgid "Why is share count not getting updated?"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1908
|
910 |
msgid "Why is there so much space between like buttons?"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1909
|
914 |
msgid "Why are floating sharing/like buttons not appearing at homepage?"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1919
|
918 |
msgid "Save Changes"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1925
|
922 |
+
msgid ""
|
923 |
+
"If you can send (to hello@heateor.com) your business story and how our "
|
924 |
+
"plugin is helping your business, we can share it on Instagram. You can also "
|
925 |
+
"send any relevant hashtags and people to mention in the Instagram post."
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1926
|
929 |
+
msgid ""
|
930 |
+
"<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
|
931 |
+
"language courses through their website. They have emerged as one of the most "
|
932 |
+
"popular online coaching websites in the past year. Anyone can become "
|
933 |
+
"proficient in programming language of their choice in a very easy way in no "
|
934 |
+
"time."
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: ../admin/partials/sassy-social-share-options-page.php:1927
|
938 |
+
msgid ""
|
939 |
+
"@blahblahonlinecoaching proudly use #SassySocialShare to share content of "
|
940 |
+
"their website. Be sure to visit their website at \n"
|
941 |
+
"\t\tblahblahonlinecoaching.com where you can browse a variety of progamming "
|
942 |
+
"language courses."
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
#: ../admin/partials/sassy-social-share-about.php:4
|
946 |
msgid "About"
|
947 |
msgstr ""
|
955 |
msgstr ""
|
956 |
|
957 |
#: ../admin/partials/sassy-social-share-about.php:7
|
958 |
+
msgid ""
|
959 |
+
"We are a creative team with unique ideas in mind and service in heart. We "
|
960 |
+
"love what we do. For more info join us at"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: ../admin/partials/sassy-social-share-about.php:18
|
964 |
msgid "Donate"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: ../admin/partials/sassy-social-share-about.php:20
|
968 |
+
msgid ""
|
969 |
+
"You can help us continue the development of this free plugin by donating"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: ../admin/partials/sassy-social-share-about.php:21
|
973 |
msgid "Donate Now"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: ../admin/partials/sassy-social-share-about.php:27
|
977 |
msgid "Plugin Demo"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../admin/partials/sassy-social-share-about.php:33
|
981 |
msgid "Customization Options"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: ../admin/partials/sassy-social-share-about.php:39
|
985 |
msgid "Add-ons"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: ../admin/partials/sassy-social-share-about.php:45
|
989 |
msgid "Support Forum"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: ../admin/partials/sassy-social-share-about.php:50
|
993 |
msgid "Need Quick Help?"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: ../admin/partials/sassy-social-share-about.php:52
|
997 |
+
msgid ""
|
998 |
+
"If you <strong>have any query</strong>, need help regarding <strong>plugin "
|
999 |
+
"setup</strong>, want <strong>custom features</strong> in the plugin or "
|
1000 |
+
"<strong>have any suggestion</strong> to improve the plugin, just drop an "
|
1001 |
+
"email at <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../admin/partials/sassy-social-share-about.php:57
|
1005 |
msgid "Support Us"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: ../admin/partials/sassy-social-share-about.php:60
|
|
|
1009 |
#: ../admin/partials/sassy-social-share-about.php:63
|
1010 |
#: ../admin/partials/sassy-social-share-about.php:64
|
1011 |
#: ../admin/partials/sassy-social-share-about.php:65
|
1012 |
#: ../admin/partials/sassy-social-share-about.php:66
|
1013 |
+
#: ../admin/partials/sassy-social-share-about.php:67
|
1014 |
msgid "Rate 5-star"
|
1015 |
msgstr ""
|
1016 |
|
1019 |
msgstr ""
|
1020 |
|
1021 |
#: ../includes/class-sassy-social-share-widgets.php:51
|
1022 |
+
msgid ""
|
1023 |
+
"Standard sharing widget. Let your website users share content on popular "
|
1024 |
+
"Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: ../includes/class-sassy-social-share-widgets.php:181
|
1028 |
+
msgid ""
|
1029 |
+
"Make sure \"Standard Sharing Interface\" is enabled in \"Standard Interface"
|
1030 |
+
"\" section at \"Sassy Social Share\" page."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: ../includes/class-sassy-social-share-widgets.php:182
|
1034 |
msgid "Title:"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: ../includes/class-sassy-social-share-widgets.php:184
|
1038 |
+
#: ../includes/class-sassy-social-share-widgets.php:384
|
1039 |
msgid "Show individual share counts:"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: ../includes/class-sassy-social-share-widgets.php:186
|
1043 |
+
#: ../includes/class-sassy-social-share-widgets.php:386
|
1044 |
msgid "Show total shares:"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: ../includes/class-sassy-social-share-widgets.php:188
|
1048 |
+
#: ../includes/class-sassy-social-share-widgets.php:388
|
1049 |
msgid "Target Url:"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: ../includes/class-sassy-social-share-widgets.php:190
|
1053 |
+
#: ../includes/class-sassy-social-share-widgets.php:390
|
1054 |
msgid "Select"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: ../includes/class-sassy-social-share-widgets.php:196
|
1058 |
msgid "Before widget content:"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: ../includes/class-sassy-social-share-widgets.php:198
|
1062 |
msgid "After widget content:"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: ../includes/class-sassy-social-share-widgets.php:200
|
1066 |
+
#: ../includes/class-sassy-social-share-widgets.php:415
|
1067 |
msgid "Hide for logged in users:"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: ../includes/class-sassy-social-share-widgets.php:249
|
1071 |
+
msgid ""
|
1072 |
+
"Floating sharing widget. Let your website users share content on popular "
|
1073 |
+
"Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: ../includes/class-sassy-social-share-widgets.php:383
|
1077 |
+
msgid ""
|
1078 |
+
"Make sure \"Floating Interface\" is enabled in \"Floating Interface\" "
|
1079 |
+
"section at \"Sassy Social Share\" page."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: ../includes/class-sassy-social-share-widgets.php:396
|
1083 |
msgid "Alignment"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../includes/class-sassy-social-share-widgets.php:402
|
1087 |
msgid "Left Offset"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../includes/class-sassy-social-share-widgets.php:406
|
1091 |
msgid "Right Offset"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: ../includes/class-sassy-social-share-widgets.php:409
|
1095 |
msgid "Top Offset"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
#: ../public/class-sassy-social-share-public.php:121
|
1099 |
+
#: ../public/class-sassy-social-share-public.php:1077
|
1100 |
msgid "Shares"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
#: ../public/class-sassy-social-share-public.php:121
|
1104 |
+
#: ../public/class-sassy-social-share-public.php:1077
|
1105 |
msgid "Share"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: ../public/class-sassy-social-share-public.php:849
|
1109 |
+
msgid "Search for"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: ../public/class-sassy-social-share-public.php:854
|
1113 |
+
#: ../public/class-sassy-social-share-public.php:856
|
1114 |
+
#: ../public/class-sassy-social-share-public.php:858
|
1115 |
+
msgid "Archives"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: ../public/class-sassy-social-share-public.php:1358
|
1119 |
+
#: ../public/class-sassy-social-share-public.php:1578
|
1120 |
msgid "Invalid request"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../public/class-sassy-social-share-public.php:1364
|
1124 |
msgid "Providers not selected"
|
1125 |
msgstr ""
|
|
public/class-sassy-social-share-public.php
CHANGED
@@ -829,19 +829,39 @@ class Sassy_Social_Share_Public {
|
|
829 |
}
|
830 |
|
831 |
/**
|
832 |
-
* Render sharing interface html
|
833 |
*
|
834 |
* @since 1.0.0
|
835 |
*/
|
836 |
-
public function prepare_sharing_html( $post_url, $sharing_type = 'horizontal', $display_count, $total_shares ) {
|
837 |
|
838 |
global $post;
|
839 |
|
840 |
-
if ( $sharing_type == 'vertical' &&
|
841 |
$post_title = get_bloginfo( 'name' ) . " - " . get_bloginfo( 'description' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
842 |
} else {
|
843 |
$post_title = $post->post_title;
|
844 |
}
|
|
|
845 |
$original_post_title = html_entity_decode( $post_title, ENT_QUOTES, 'UTF-8' );
|
846 |
$post_title = $this->sanitize_post_title( $post_title );
|
847 |
|
@@ -1243,7 +1263,10 @@ class Sassy_Social_Share_Public {
|
|
1243 |
|
1244 |
if ( $this->options['vertical_target_url'] == 'default' ) {
|
1245 |
$post_url = get_permalink( $post->ID );
|
1246 |
-
if (
|
|
|
|
|
|
|
1247 |
$post_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
1248 |
}
|
1249 |
} elseif ( $this->options['vertical_target_url'] == 'home' ) {
|
829 |
}
|
830 |
|
831 |
/**
|
832 |
+
* Render sharing interface html
|
833 |
*
|
834 |
* @since 1.0.0
|
835 |
*/
|
836 |
+
public function prepare_sharing_html( $post_url, $sharing_type = 'horizontal', $display_count, $total_shares, $standard_widget = false ) {
|
837 |
|
838 |
global $post;
|
839 |
|
840 |
+
if ( ( $sharing_type == 'vertical' && ! is_singular() ) || $standard_widget ) {
|
841 |
$post_title = get_bloginfo( 'name' ) . " - " . get_bloginfo( 'description' );
|
842 |
+
if ( is_category() ) {
|
843 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( single_cat_title( '', false ) ), true ) );
|
844 |
+
} elseif ( is_tag() ) {
|
845 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( single_tag_title( '', false ) ), true ) );
|
846 |
+
} elseif ( is_tax() ) {
|
847 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( single_term_title( '', false ) ), true ) );
|
848 |
+
} elseif ( is_search() ) {
|
849 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( __( 'Search for' ) .' "' .get_search_query() .'"' ), true ) );
|
850 |
+
} elseif ( is_author() ) {
|
851 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( get_the_author_meta( 'display_name', get_query_var( 'author' ) ) ), true ) );
|
852 |
+
} elseif ( is_archive() ) {
|
853 |
+
if ( is_day() ) {
|
854 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( get_query_var( 'day' ) . ' ' .single_month_title( ' ', false ) . ' ' . __( 'Archives' ) ), true ) );
|
855 |
+
} elseif ( is_month() ) {
|
856 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( single_month_title( ' ', false ) . ' ' . __( 'Archives' ) ), true ) );
|
857 |
+
} elseif ( is_year() ) {
|
858 |
+
$post_title = esc_attr( wp_strip_all_tags( stripslashes( get_query_var( 'year' ) . ' ' . __( 'Archives' ) ), true ) );
|
859 |
+
}
|
860 |
+
}
|
861 |
} else {
|
862 |
$post_title = $post->post_title;
|
863 |
}
|
864 |
+
|
865 |
$original_post_title = html_entity_decode( $post_title, ENT_QUOTES, 'UTF-8' );
|
866 |
$post_title = $this->sanitize_post_title( $post_title );
|
867 |
|
1263 |
|
1264 |
if ( $this->options['vertical_target_url'] == 'default' ) {
|
1265 |
$post_url = get_permalink( $post->ID );
|
1266 |
+
if ( ! is_singular() ) {
|
1267 |
+
$post_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
1268 |
+
$post_id = 0;
|
1269 |
+
} elseif ( ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) || $post_url == '' ) {
|
1270 |
$post_url = html_entity_decode( esc_url( $this->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
|
1271 |
}
|
1272 |
} elseif ( $this->options['vertical_target_url'] == 'home' ) {
|
public/css/sassy-social-share-public.css
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
@charset "utf-8";#heateor_sss_error{color:red;margin:7px 0}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#heateor_sss_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#heateor_sss_popup_bg{background:url(../../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0;}#heateor_sss_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#heateor_sss_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#heateor_sss_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#heateor_sss_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.heateor_sss_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.heateor_sss_login_ul,ul.heateor_sss_sharing_ul{list-style:none!important;padding-left:0!important}.heateorSssXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.heateorSssLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.heateorSssInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.heateorSssVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.heateor_sss_sharing_ul{margin:1px 0!important}#heateor_sss_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.heateor_sss_sharing_ul li.heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.heateor_sss_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}ul.heateor_sss_login_ul li:before,ul.heateor_sss_sharing_ul li:before{content:none!important}.heateor_sss_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share, div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share{width:120px}li.heateor_sss_facebook_share .fb-share-button span,li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}.heateor_sss_counter_container li{height:21px}.heateorSssInstagramBackground{background-color:#624E47}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssBufferBackground{background-color:#000}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleBackground{background-color:#dd4b39}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#0077B5}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStockTwitsBackground{background-color: #40576F}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssInstagramBackground{background-color:#527FA4}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssTCBackground,.heateorSssTCBackground:hover{border-width: 0!important;background-color:transparent;}.heateorSssTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.heateorSssCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}div.heateor_sss_horizontal_sharing li{width:auto}.heateorSssAIMBackground{background-color: #fff}.heateorSssAmazonWishListBackground{background-color: #fff}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #fff}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #fff}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #fff}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDZoneBackground{background-color: #fff}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFarkBackground{background-color: #555}
|
2 |
-
.heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #fff}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #FFF}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #fff}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fff}.heateorSssOutlookcomBackground{background-color: #fff}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #f0f0f0}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fff}.heateorSssSinaWeiboBackground{background-color: #fff}.heateorSssSiteJotBackground{background-color: #fff}.heateorSssSlashdotBackground{background-color: #004242}.heateorSssStumpediaBackground{background-color: #EDEDED}.heateorSssSvejoBackground{background-color: #FAFAFA}.heateorSssSymbalooFeedsBackground{background-color: #6DA8F7}.heateorSssTuentiBackground{background-color: #0075C9}.heateorSssTwiddlaBackground{background-color: #EDEDED}.heateorSssTypePadPostBackground{background-color: #2A2A2A}.heateorSssViadeoBackground{background-color: #2A2A2A}.heateorSssWaneloBackground{background-color: #fff}.heateorSssWebnewsBackground{background-color: #CC2512}.heateorSssWordPressBackground{background-color: #464646}.heateorSssWykopBackground{background-color: #367DA9}.heateorSssYahooMailBackground{background-color: #400090}.heateorSssYahooMessengerBackground{background-color: #400090}.heateorSssYoolinkBackground{background-color: #A2C538}.heateorSssYouMobBackground{background-color: #3B599D}i.heateorSssWhatsappBackground a{display: inline!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:110px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:117px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plusone{width:74px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:81px;}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly{width:81px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plus_share{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}div.heateor_sss_horizontal_sharing .heateor_sss_stumbleupon{width:80px}i.heateorSssLineBackground a{display: inline!important;}.heateor_sss_sharing_container a{box-shadow:none!important;border:none!important}.heateorSssClear{clear:both;}li.heateor_sss_google_plusone div, li.heateor_sss_google_plus_share div{display:block!important}div.course_instructor_widget .heateor_sss_vertical_sharing{display:none!important;}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
|
1 |
@charset "utf-8";#heateor_sss_error{color:red;margin:7px 0}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#heateor_sss_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#heateor_sss_popup_bg{background:url(../../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0;}#heateor_sss_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#heateor_sss_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#heateor_sss_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#heateor_sss_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.heateor_sss_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.heateor_sss_login_ul,ul.heateor_sss_sharing_ul{list-style:none!important;padding-left:0!important}.heateorSssXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.heateorSssLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.heateorSssInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.heateorSssVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.heateor_sss_sharing_ul{margin:1px 0!important}#heateor_sss_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.heateor_sss_sharing_ul li.heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.heateor_sss_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}ul.heateor_sss_login_ul li:before,ul.heateor_sss_sharing_ul li:before{content:none!important}.heateor_sss_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share, div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share{width:120px}li.heateor_sss_facebook_share .fb-share-button span,li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}.heateor_sss_counter_container li{height:21px}.heateorSssInstagramBackground{background-color:#624E47}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssBufferBackground{background-color:#000}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleBackground{background-color:#dd4b39}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#0077B5}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStockTwitsBackground{background-color: #40576F}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssInstagramBackground{background-color:#527FA4}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssTCBackground,.heateorSssTCBackground:hover{border-width: 0!important;background-color:transparent;}.heateorSssTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.heateorSssCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}div.heateor_sss_horizontal_sharing li{width:auto}.heateorSssAIMBackground{background-color: #fff}.heateorSssAmazonWishListBackground{background-color: #fff}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #fff}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #fff}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #fff}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDZoneBackground{background-color: #fff}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFarkBackground{background-color: #555}
|
2 |
+
.heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #fff}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #FFF}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #fff}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fff}.heateorSssOutlookcomBackground{background-color: #fff}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #f0f0f0}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fff}.heateorSssSinaWeiboBackground{background-color: #fff}.heateorSssSiteJotBackground{background-color: #fff}.heateorSssSlashdotBackground{background-color: #004242}.heateorSssStumpediaBackground{background-color: #EDEDED}.heateorSssSvejoBackground{background-color: #FAFAFA}.heateorSssSymbalooFeedsBackground{background-color: #6DA8F7}.heateorSssTuentiBackground{background-color: #0075C9}.heateorSssTwiddlaBackground{background-color: #EDEDED}.heateorSssTypePadPostBackground{background-color: #2A2A2A}.heateorSssViadeoBackground{background-color: #2A2A2A}.heateorSssWaneloBackground{background-color: #fff}.heateorSssWebnewsBackground{background-color: #CC2512}.heateorSssWordPressBackground{background-color: #464646}.heateorSssWykopBackground{background-color: #367DA9}.heateorSssYahooMailBackground{background-color: #400090}.heateorSssYahooMessengerBackground{background-color: #400090}.heateorSssYoolinkBackground{background-color: #A2C538}.heateorSssYouMobBackground{background-color: #3B599D}i.heateorSssWhatsappBackground a{display: inline!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:110px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:117px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plusone{width:74px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:81px;}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly{width:81px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plus_share{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}div.heateor_sss_horizontal_sharing .heateor_sss_stumbleupon{width:80px}i.heateorSssLineBackground a{display: inline!important;}.heateor_sss_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}.heateorSssClear{clear:both;}li.heateor_sss_google_plusone div, li.heateor_sss_google_plus_share div{display:block!important}div.course_instructor_widget .heateor_sss_vertical_sharing{display:none!important;}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
|
public/js/sassy-social-share-public.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
function heateorSssCallAjax(e){if(typeof jQuery!="undefined"){e()}else{heateorSssGetScript("
|
2 |
|
3 |
function heateorSssGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}
|
4 |
|
1 |
+
function heateorSssCallAjax(e){if(typeof jQuery!="undefined"){e()}else{heateorSssGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}
|
2 |
|
3 |
function heateorSssGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}
|
4 |
|
readme.txt
CHANGED
@@ -1,33 +1,33 @@
|
|
1 |
-
=== Sassy Social Share ===
|
2 |
Contributors: Heateor
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
-
Tags: social share, social sharing, social
|
5 |
Requires at least: 2.5.0
|
6 |
-
Tested up to: 4.7
|
7 |
-
Stable tag: 2.5.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
-
|
15 |
|
16 |
-
This is the Simplest and Smoothest
|
17 |
|
18 |
= Feature list =
|
19 |
-
* Around **100 Sharing/Bookmarking** services
|
20 |
+ FREE **Icon Customization** options
|
21 |
* **Url Shortening Service** integration
|
22 |
-
* **Standard and Floating** layout for
|
23 |
-
* **Customizable Target Url** for
|
24 |
-
* **Rearrange Order** of
|
25 |
-
* Specify **Position of Sharing Bar** with respect to content - Top and Bottom
|
26 |
-
* Enable/Disable
|
27 |
-
* Enable/Disable
|
28 |
-
* Enable/Disable total/individual share count(s)
|
29 |
* **Mobile Responsiveness**
|
30 |
-
* Enable **Sharing at WooCommerce** products
|
31 |
* **Official Like Buttons** (Faceboo Like, Twitter Tweet, Google +1 etc.)
|
32 |
* **Widgets and Shortcodes**
|
33 |
* Compatible with BuddyPress, BBPress, WooCommerce
|
@@ -42,22 +42,22 @@ This is the Simplest and Smoothest share plugin with optimized and great looking
|
|
42 |
4. **Absolutely Simple**: Plugin configuration is kept dead simple. Screenshots are provided with options wherever required.
|
43 |
5. **Free Icon Customization**: Icons can be customized in thousands of ways using the options available within the plugin, for FREE.
|
44 |
6. **Mobile Responsiveness**: Icons can be adjusted according to the width of mobile device, using the plugin options.
|
45 |
-
7. **Perfect Vector (SVG) Icons**: Share icons are Scalable Vector Graphics, meaning these load fast, scalable to any size, and are stunning on High-PPI screens (Retina and Retina HD displays).
|
46 |
-
8. **Optimal Loading time**: Loading time of Sharing icons is optimal and if you compare with other plugins, you will find it less than that of all those plugins.
|
47 |
9. **Lightweight Code**: Our developers follow best coding practices to ensure efficient loading and performance.
|
48 |
10. We promise to provide **best quality** among other similar plugins. If you find our plugin is lacking some feature, you can email us and we will do our best to include that feature in our plugin as soon as possible.
|
49 |
11. Our **support team is working 24/7** to answer your queries and assist you. You will find us the quickest to respond.
|
50 |
|
51 |
= Important links =
|
52 |
-
*
|
53 |
-
*
|
54 |
-
*
|
55 |
-
*
|
56 |
-
*
|
57 |
-
*
|
58 |
-
*
|
59 |
-
*
|
60 |
-
*
|
61 |
|
62 |
You can provide your feedback at hello[at]heateor[dot]com
|
63 |
|
@@ -72,21 +72,14 @@ You can provide your feedback at hello[at]heateor[dot]com
|
|
72 |
= Configuration =
|
73 |
|
74 |
After installing and activating the plugin, you will see **Sassy Social Share** in the left sidebar in your website admin panel.
|
75 |
-
There is **help** available with each option. You can see the help text by clicking the
|
76 |
|
77 |
= Widgets and Shortcodes =
|
78 |
|
79 |
* Navigate to the **Widgets** section in the **Appearance** menu.
|
80 |
* Look for the **Sassy Social Share** widgets and click/drag these to add the widgets to the desired widget area on the right.
|
81 |
* After adding the widget, you can customize it by configuring the available options in the widget.
|
82 |
-
|
83 |
-
You can use **[Sassy_Social_Share]** Shortcode in the content of required page/post where you want to display Sharing interface.
|
84 |
-
|
85 |
-
Optionally, you can use **style** attribute in the Shortcode to style the rendered Social Sharing interface.
|
86 |
-
|
87 |
-
For example
|
88 |
-
|
89 |
-
**[Sassy_Social_Share style="background-color:#000; float:right"]**
|
90 |
|
91 |
= Display Sharing interface on other pages =
|
92 |
You can enable Social Sharing anywhere in your website page/post content using **Shortcode** mentioned above.
|
@@ -115,6 +108,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
115 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
116 |
|
117 |
== Changelog ==
|
|
|
|
|
|
|
118 |
= 2.5.5 =
|
119 |
* [Bugfix] Plugin "Settings" link at "Plugins" page in admin area was redirecting to wrong page
|
120 |
|
@@ -367,4 +363,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
367 |
* [Improvement] Removed deprecated '-moz-box-shadow' from the CSS
|
368 |
|
369 |
= 2.5.5 =
|
370 |
-
* [Bugfix] Plugin "Settings" link at "Plugins" page in admin area was redirecting to wrong page
|
|
|
|
|
|
1 |
+
=== WordPress Social Share Plugin - Sassy Social Share ===
|
2 |
Contributors: Heateor
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
+
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, google +1, google plus share
|
5 |
Requires at least: 2.5.0
|
6 |
+
Tested up to: 4.7.4
|
7 |
+
Stable tag: 2.5.6
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
Sassy Social Share enables your website users to share the content over Facebook, Twitter, Google, LinkedIn, Whatsapp, Tumblr, Pinterest, Reddit and over 100 more social sharing and bookmarking services.
|
15 |
|
16 |
+
This is the Simplest and Smoothest Social Sharing plugin with optimized and great looking vector icons.
|
17 |
|
18 |
= Feature list =
|
19 |
+
* Around **100 Social Sharing/Bookmarking** services
|
20 |
+ FREE **Icon Customization** options
|
21 |
* **Url Shortening Service** integration
|
22 |
+
* **Standard and Floating** layout for Social Share icons
|
23 |
+
* **Customizable Target Url** for Social Sharing
|
24 |
+
* **Rearrange Order** of Social Share icons
|
25 |
+
* Specify **Position of Social Sharing Bar** with respect to content - Top and Bottom
|
26 |
+
* Enable/Disable Social Sharing on default/custom post types
|
27 |
+
* Enable/Disable Social Sharing on individual pages/posts
|
28 |
+
* Enable/Disable total/individual social share count(s)
|
29 |
* **Mobile Responsiveness**
|
30 |
+
* Enable **Social Sharing at WooCommerce** products
|
31 |
* **Official Like Buttons** (Faceboo Like, Twitter Tweet, Google +1 etc.)
|
32 |
* **Widgets and Shortcodes**
|
33 |
* Compatible with BuddyPress, BBPress, WooCommerce
|
42 |
4. **Absolutely Simple**: Plugin configuration is kept dead simple. Screenshots are provided with options wherever required.
|
43 |
5. **Free Icon Customization**: Icons can be customized in thousands of ways using the options available within the plugin, for FREE.
|
44 |
6. **Mobile Responsiveness**: Icons can be adjusted according to the width of mobile device, using the plugin options.
|
45 |
+
7. **Perfect Vector (SVG) Icons**: Social Share icons are Scalable Vector Graphics, meaning these load fast, scalable to any size, and are stunning on High-PPI screens (Retina and Retina HD displays).
|
46 |
+
8. **Optimal Loading time**: Loading time of Social Sharing icons is optimal and if you compare with other plugins, you will find it less than that of all those plugins.
|
47 |
9. **Lightweight Code**: Our developers follow best coding practices to ensure efficient loading and performance.
|
48 |
10. We promise to provide **best quality** among other similar plugins. If you find our plugin is lacking some feature, you can email us and we will do our best to include that feature in our plugin as soon as possible.
|
49 |
11. Our **support team is working 24/7** to answer your queries and assist you. You will find us the quickest to respond.
|
50 |
|
51 |
= Important links =
|
52 |
+
* <a target="_blank" href="https://www.heateor.com/sassy-social-share-demo">Plugin Demo</a>
|
53 |
+
* <a target="_blank" href="http://support.heateor.com/category/sassy-social-share">Customization</a>
|
54 |
+
* <a target="_blank" href="https://www.heateor.com">About Us</a>
|
55 |
+
* <a target="_blank" href="https://www.facebook.com/Heateor">Our Facebook Page</a>
|
56 |
+
* <a target="_blank" href="https://plus.google.com/+Heateor">Our GooglePlus Page</a>
|
57 |
+
* <a target="_blank" href="https://twitter.com/Heateor">Our Twitter Page</a>
|
58 |
+
* <a target="_blank" href="http://support.heateor.com">Support Documentation</a>
|
59 |
+
* <a target="_blank" href="https://www.heateor.com/social-analytics-sharing">Social Analytics</a>
|
60 |
+
* <a target="_blank" href="https://www.heateor.com/add-ons">Add-Ons</a>
|
61 |
|
62 |
You can provide your feedback at hello[at]heateor[dot]com
|
63 |
|
72 |
= Configuration =
|
73 |
|
74 |
After installing and activating the plugin, you will see **Sassy Social Share** in the left sidebar in your website admin panel.
|
75 |
+
There is **help** available with each option. You can see the help text by clicking the **(?)** icon before each option.
|
76 |
|
77 |
= Widgets and Shortcodes =
|
78 |
|
79 |
* Navigate to the **Widgets** section in the **Appearance** menu.
|
80 |
* Look for the **Sassy Social Share** widgets and click/drag these to add the widgets to the desired widget area on the right.
|
81 |
* After adding the widget, you can customize it by configuring the available options in the widget.
|
82 |
+
* <a target="_blank" href="http://support.heateor.com/sassy-social-share-shortcode-and-widget/">Sassy Social Share Shortcode</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
|
84 |
= Display Sharing interface on other pages =
|
85 |
You can enable Social Sharing anywhere in your website page/post content using **Shortcode** mentioned above.
|
108 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
109 |
|
110 |
== Changelog ==
|
111 |
+
= 2.5.6 =
|
112 |
+
* [Bugfix] Floating sharing icons were not picking up correct title and url at archive pages
|
113 |
+
|
114 |
= 2.5.5 =
|
115 |
* [Bugfix] Plugin "Settings" link at "Plugins" page in admin area was redirecting to wrong page
|
116 |
|
363 |
* [Improvement] Removed deprecated '-moz-box-shadow' from the CSS
|
364 |
|
365 |
= 2.5.5 =
|
366 |
+
* [Bugfix] Plugin "Settings" link at "Plugins" page in admin area was redirecting to wrong page
|
367 |
+
|
368 |
+
= 2.5.6 =
|
369 |
+
* [Bugfix] Floating sharing icons were not picking up correct title and url at archive pages
|
sassy-social-share.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
-
* Version: 2.5.
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
-
define( 'HEATEOR_SSS_VERSION', '2.5.
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|
@@ -32,16 +32,18 @@ $heateor_sss = null;
|
|
32 |
*/
|
33 |
function heateor_sss_update_svg_css( $color_to_be_replaced, $css_file ) {
|
34 |
$path = plugin_dir_url( __FILE__ ) . '/admin/css/' . $css_file . '.css';
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
41 |
}
|
42 |
-
fclose( $handle );
|
43 |
}
|
44 |
-
}
|
45 |
}
|
46 |
|
47 |
/**
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
+
* Version: 2.5.6
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
+
define( 'HEATEOR_SSS_VERSION', '2.5.6' );
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|
32 |
*/
|
33 |
function heateor_sss_update_svg_css( $color_to_be_replaced, $css_file ) {
|
34 |
$path = plugin_dir_url( __FILE__ ) . '/admin/css/' . $css_file . '.css';
|
35 |
+
try {
|
36 |
+
$content = file( $path );
|
37 |
+
if ( $content !== false ) {
|
38 |
+
$handle = fopen( dirname( __FILE__ ) . '/admin/css/' . $css_file . '.css','w' );
|
39 |
+
if ( $handle !== false ) {
|
40 |
+
foreach ( $content as $value ) {
|
41 |
+
fwrite( $handle, str_replace( '%23fff', str_replace( '#', '%23', $color_to_be_replaced ), $value ) );
|
42 |
+
}
|
43 |
+
fclose( $handle );
|
44 |
}
|
|
|
45 |
}
|
46 |
+
} catch ( Exception $e ) { }
|
47 |
}
|
48 |
|
49 |
/**
|