WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer - Version 5.0.0

Version Description

  • Improved Social Sharing icons
  • Two themes for sharing icons (round and square)
  • Option to change size of sharing icons (ranging between 16x16px and 35x35px)
  • Option to disable/enable "More" icon in sharing
  • Improved Social Login icons
  • Feature to slide in/out vertical sharing/counter interface
  • Option to use already enabled shortlinks with sharing
  • GooglePlus and Disqus included in Social Commenting
  • [Bugfix] Cached short urls were not being removed on deletion of plugin
Download this release

Release Info

Developer the_champ
Plugin Icon 128x128 WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer
Version 5.0.0
Comparing to
See all releases

Code changes from version 4.3.0 to 5.0.0

Files changed (60) hide show
  1. admin/admin.php +2 -2
  2. admin/help.php +67 -77
  3. admin/index.php +1 -1
  4. admin/{social_counter.php → like_buttons.php} +43 -103
  5. admin/social_commenting.php +198 -62
  6. admin/social_login.php +11 -27
  7. admin/social_sharing.php +266 -103
  8. css/admin.css +1 -1
  9. css/front.css +1 -2
  10. css/index.php +1 -1
  11. helper.php +46 -18
  12. images/index.php +1 -1
  13. images/login/index.php +1 -1
  14. images/sharing/index.php +1 -1
  15. images/sharing/pullout.png +0 -0
  16. images/sharing/pushin.png +0 -0
  17. images/snaps/FB_commenting.png +0 -0
  18. images/snaps/comment_title.png +0 -0
  19. images/snaps/index.php +1 -1
  20. images/snaps/sc_disqus_shortname.png +0 -0
  21. images/snaps/ss_disable_sharing.png +0 -0
  22. inc/index.php +1 -1
  23. inc/shortcode.php +31 -15
  24. inc/social_login.php +2 -2
  25. inc/social_sharing.php +40 -17
  26. index.php +1 -1
  27. js/admin/admin.js +1 -66
  28. js/admin/counter/admin.js +1 -57
  29. js/admin/counter/index.php +1 -1
  30. js/admin/fb_sdk.js +1 -1
  31. js/admin/index.php +1 -1
  32. js/admin/sharing/admin.js +1 -75
  33. js/admin/sharing/index.php +1 -1
  34. js/front/facebook/commenting.js +1 -1
  35. js/front/facebook/index.php +1 -1
  36. js/front/facebook/sdk.js +1 -1
  37. js/front/index.php +1 -1
  38. js/front/sharing/index.php +1 -1
  39. js/front/sharing/sharing.js +68 -11
  40. js/front/social_login/common.js +1 -1
  41. js/front/social_login/google.js +1 -1
  42. js/front/social_login/index.php +1 -1
  43. js/front/social_login/linkedin.js +1 -1
  44. js/front/social_login/vkontakte.js +1 -1
  45. js/index.php +1 -1
  46. js/modernizr.custom.82187.js +4 -0
  47. languages/Super-Socializer-de_DE.mo +0 -0
  48. languages/Super-Socializer-de_DE.po +1056 -732
  49. languages/Super-Socializer-es_ES.mo +0 -0
  50. languages/Super-Socializer-es_ES.po +1061 -759
  51. languages/Super-Socializer-fr_FR.mo +0 -0
  52. languages/Super-Socializer-fr_FR.po +1051 -735
  53. languages/Super-Socializer-hu_HU.mo +0 -0
  54. languages/Super-Socializer-hu_HU.po +1056 -754
  55. languages/Super-Socializer-it_IT.mo +0 -0
  56. languages/Super-Socializer-it_IT.po +1063 -755
  57. library/index.php +1 -1
  58. readme.txt +27 -5
  59. super_socializer.php +90 -25
  60. uninstall.php +1 -0
admin/admin.php CHANGED
@@ -9,11 +9,11 @@
9
  <div class="inside">
10
  <p><?php _e('You are ready to Socialize your website.', 'Super-Socializer') ?></p>
11
  <h4><?php _e('Getting Started', 'Super-Socializer') ?></h4>
12
- <p><?php _e('Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left pan. <strong>Social Sharing</strong> is enabled at your website by default.', 'Super-Socializer') ?></p>
13
  <p><?php _e('In <strong>Social Commenting</strong> section, you can configure Social Commenting.', 'Super-Socializer') ?></p>
14
  <p><?php _e('In <strong>Social Login</strong> section, you can select Social ID provders and configure the Social Login options.', 'Super-Socializer') ?></p>
15
  <p><?php _e('In <strong>Social Sharing</strong> section, you can choose the Social Networks for Sharing and configure the options for sharing.', 'Super-Socializer') ?></p>
16
- <p><?php _e('In <strong>Social Counter</strong> section, you can choose the like/+1 buttons and configure the options for the same', 'Super-Socializer') ?></p>
17
  </div>
18
  </div>
19
 
9
  <div class="inside">
10
  <p><?php _e('You are ready to Socialize your website.', 'Super-Socializer') ?></p>
11
  <h4><?php _e('Getting Started', 'Super-Socializer') ?></h4>
12
+ <p><?php _e('Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default.', 'Super-Socializer') ?></p>
13
  <p><?php _e('In <strong>Social Commenting</strong> section, you can configure Social Commenting.', 'Super-Socializer') ?></p>
14
  <p><?php _e('In <strong>Social Login</strong> section, you can select Social ID provders and configure the Social Login options.', 'Super-Socializer') ?></p>
15
  <p><?php _e('In <strong>Social Sharing</strong> section, you can choose the Social Networks for Sharing and configure the options for sharing.', 'Super-Socializer') ?></p>
16
+ <p><?php _e('In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same', 'Super-Socializer') ?></p>
17
  </div>
18
  </div>
19
 
admin/help.php CHANGED
@@ -1,78 +1,68 @@
1
- <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
2
- <div class="the_champ_right_column">
3
- <div class="stuffbox">
4
- <h3><label><?php _e('About', 'Super-Socializer');?></label><label style="float:right"><?php _e('Version', 'Super-Socializer');?> <?php echo get_option('the_champ_ss_version'); ?></label></h3>
5
- <div class="inside">
6
- <p><strong>Super Socializer</strong> <?php _e('by', 'Super-Socializer') ?> <strong>The Champ</strong></p>
7
- <p><?php _e('I am a tech enthusiast. I like to play with code and build great stuff (and like to call myself - The Champ....:) ). You can connect with me (and my upcoming work) via:', 'Super-Socializer') ?></p>
8
- <div>
9
- <a href="//thechamplord.wordpress.com" target="_blank" title="WordPress Blog"><img style="box-shadow:1px 1px 10px 1px #888888" class="theChampLoginButton theChampWordpressButton" /></a>
10
- <a href="https://www.facebook.com/thechamp.lord" target="_blank" title="Facebook"><img style="box-shadow:1px 1px 10px 1px #888888" class="theChampLoginButton theChampFacebookButton" /></a>
11
- <a href="https://twitter.com/l0rd_champ" target="_blank" title="Twitter"><img style="box-shadow:1px 1px 10px 1px #888888" class="theChampLoginButton theChampTwitterButton" ></a>
12
- <a href="//www.linkedin.com/pub/champ-lord/8b/aa2/352" title="LinkedIn" target="_blank"><img style="box-shadow:1px 1px 10px 1px #888888" class="theChampLoginButton theChampLinkedinButton" ></a>
13
- </div>
14
- </div>
15
- </div>
16
-
17
- <div class="stuffbox">
18
- <h3><label><?php _e('Plugin Demo', 'Super-Socializer');?></label></h3>
19
- <div class="inside">
20
- <p><?php _e('You can see the plugin in action at following link', 'Super-Socializer') ?></p>
21
- <p><a target="_blank" href="http://super-socializer-wordpress.pyrovolt.com/">http://super-socializer-wordpress.pyrovolt.com/</a></p>
22
- </div>
23
- </div>
24
-
25
- <div class="stuffbox">
26
- <h3><label><?php _e('Support', 'Super-Socializer');?></label></h3>
27
- <div class="inside">
28
- <p><?php _e('If you like my plugin or have any query, you can drop me an email at <a href="mailto:lordofthechamps@gmail.com">lordofthechamps@gmail.com</a>, like my <strong>Facebook</strong> pages and follow me at <strong>Twitter</strong>.', 'Super-Socializer') ?></p>
29
- <div style="height: 24px;">
30
- <div style="float: left;margin-right: 36px;"><strong><?php _e('Rate 5-star', 'Super-Socializer'); ?></strong></div>
31
- <div style="float: left; margin-left: 28px;">
32
- <a style="text-decoration: none" href="//wordpress.org/support/view/plugin-reviews/super-socializer" target="_blank">
33
- <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
34
- <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
35
- <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
36
- <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
37
- <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
38
- </a>
39
- </div>
40
- </div>
41
-
42
- <div class="the_champ_clear"></div>
43
-
44
- <div style="height: 24px;">
45
- <div style="float: left;margin-right: 36px;"><strong><?php _e('Plugin Fan Page', 'Super-Socializer'); ?></strong></div>
46
- <div style="float: left; width: 40px;">
47
- <div class="fb-like" data-href="https://www.facebook.com/SocializerChamp" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
48
- </div>
49
- </div>
50
-
51
- <div class="the_champ_clear"></div>
52
-
53
- <div style="height: 24px;">
54
- <div style="float: left;margin-right: 56px;"><strong><?php _e('My Fan Page', 'Super-Socializer'); ?></strong></div>
55
- <div style="float: left; width: 40px;">
56
- <div class="fb-like" data-href="https://www.facebook.com/pages/The-Champ/196278200561984" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
57
- </div>
58
- </div>
59
-
60
- <div class="the_champ_clear"></div>
61
-
62
- <div style="height: 24px;">
63
- <div style="float: left;margin-right: 89px;"><strong>Twitter</strong></div>
64
- <div style="float: left; width: 40px;">
65
- <iframe allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=l0rd_champ" style="width:250px; height:20px;"></iframe>
66
- </div>
67
- </div>
68
-
69
- </div>
70
- </div>
71
-
72
- <div class="stuffbox">
73
- <h3><label><?php _e('Want plugin customization?', 'Super-Socializer');?></label></h3>
74
- <div class="inside">
75
- <p><?php _e('If you want custom features in the plugin, I can do it for you. Just drop me an email at <a href="mailto:lordofthechamps@gmail.com">lordofthechamps@gmail.com</a>', 'Super-Socializer'); ?></p>
76
- </div>
77
- </div>
78
  </div>
1
+ <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
2
+ <div class="the_champ_right_column">
3
+ <div class="stuffbox">
4
+ <h3><label><?php _e('About', 'Super-Socializer');?></label><label style="float:right"><?php _e('Version', 'Super-Socializer');?> <?php echo get_option('the_champ_ss_version'); ?></label></h3>
5
+ <div class="inside">
6
+ <p><strong>Super Socializer</strong> <?php _e('by', 'Super-Socializer') ?> <strong><a href="//www.heateor.com" target="_blank">Heateor</a></strong></p>
7
+ <p><?php _e('We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at', 'Super-Socializer') ?></p>
8
+ <div>
9
+ <a href="//www.facebook.com/heateor" target="_blank" title="Facebook"><img style="box-shadow:1px 1px 10px 1px #888888" class="theChampLoginButton theChampFacebookButton" /></a>
10
+ <a href="//twitter.com/heateor" target="_blank" title="Twitter"><img style="box-shadow:1px 1px 10px 1px #888888" class="theChampLoginButton theChampTwitterButton" ></a>
11
+ <a href="//plus.google.com/u/0/b/108269557664834008011/108269557664834008011/about/" title="GooglePlus" target="_blank"><img style="box-shadow:1px 1px 10px 1px #888888" class="theChampLoginButton theChampGoogleButton" ></a>
12
+ </div>
13
+ </div>
14
+ </div>
15
+
16
+ <div class="stuffbox">
17
+ <h3><label><?php _e('Plugin Demo', 'Super-Socializer');?></label></h3>
18
+ <div class="inside">
19
+ <p><?php _e('You can see the plugin in action at following link', 'Super-Socializer') ?></p>
20
+ <p><a target="_blank" href="//super-socializer-wordpress.heateor.com/">http://super-socializer-wordpress.heateor.com/</a></p>
21
+ </div>
22
+ </div>
23
+
24
+ <div class="stuffbox">
25
+ <h3><label><?php _e('Support', 'Super-Socializer');?></label></h3>
26
+ <div class="inside">
27
+ <p><?php _e('If you like the plugin or have any query, drop an email at <a href="mailto:hello@heateor.com">hello@heateor.com</a> or <a href="mailto:heateor@gmail.com">heateor@gmail.com</a>, like our <strong>Facebook</strong> page and follow us at <strong>Twitter</strong>.', 'Super-Socializer') ?></p>
28
+ <div style="height: 24px;">
29
+ <div style="float: left;margin-right: 36px;"><strong><?php _e('Rate 5-star', 'Super-Socializer'); ?></strong></div>
30
+ <div style="float: left; margin-left: 28px;">
31
+ <a style="text-decoration: none" href="//wordpress.org/support/view/plugin-reviews/super-socializer" target="_blank">
32
+ <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
33
+ <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
34
+ <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
35
+ <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
36
+ <img title="<?php _e('Rate 5-star', 'Super-Socializer'); ?>" src="<?php echo plugins_url('../images/star.png', __FILE__) ?>" />
37
+ </a>
38
+ </div>
39
+ </div>
40
+
41
+ <div class="the_champ_clear"></div>
42
+
43
+ <div style="height: 24px;">
44
+ <div style="float: left;margin-right: 75px;"><strong><?php _e('Facebook', 'Super-Socializer'); ?></strong></div>
45
+ <div style="float: left; width: 40px;">
46
+ <div class="fb-like" data-href="https://facebook.com/heateor" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
47
+ </div>
48
+ </div>
49
+
50
+ <div class="the_champ_clear"></div>
51
+
52
+ <div style="height: 24px;">
53
+ <div style="float: left;margin-right: 89px;"><strong>Twitter</strong></div>
54
+ <div style="float: left; width: 40px;">
55
+ <iframe allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=heateor" style="width:250px; height:20px;"></iframe>
56
+ </div>
57
+ </div>
58
+
59
+ </div>
60
+ </div>
61
+
62
+ <div class="stuffbox">
63
+ <h3><label><?php _e('Want plugin customization?', 'Super-Socializer');?></label></h3>
64
+ <div class="inside">
65
+ <p><?php _e('If you want custom features in the plugin, just drop an email at <a href="mailto:hello@heateor.com">hello@heateor.com</a> or <a href="mailto:heateor@gmail.com">heateor@gmail.com</a>', 'Super-Socializer'); ?></p>
66
+ </div>
67
+ </div>
 
 
 
 
 
 
 
 
 
 
68
  </div>
admin/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
admin/{social_counter.php → like_buttons.php} RENAMED
@@ -9,9 +9,8 @@
9
  <h2 class="nav-tab-wrapper" style="height:36px">
10
  <ul>
11
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
12
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Social Counter', 'Super-Socializer') ?></a></li>
13
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></li>
14
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-4"><?php _e('FAQ', 'Super-Socializer') ?></a></li>
15
  </ul>
16
  </h2>
17
  <div class="menu_containt_div" id="tabs-1">
@@ -23,7 +22,7 @@
23
  <tr>
24
  <th>
25
  <img id="the_champ_sc_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
26
- <label for="the_champ_counter_enable"><?php _e("Enable Social Counter", 'Super-Socializer'); ?></label>
27
  </th>
28
  <td>
29
  <input id="the_champ_counter_enable" name="the_champ_counter[enable]" type="checkbox" <?php echo isset($theChampCounterOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
@@ -33,7 +32,7 @@
33
  <tr class="the_champ_help_content" id="the_champ_sc_enable_help_cont">
34
  <td colspan="2">
35
  <div>
36
- <?php _e('Master control for Social Counter. It must be checked to enable Social Counter functionality', 'Super-Socializer') ?>
37
  </div>
38
  </td>
39
  </tr>
@@ -41,21 +40,6 @@
41
  </div>
42
  </div>
43
 
44
- <div class="stuffbox">
45
- <div class="inside">
46
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
47
- <tr>
48
- <td colspan="2">
49
- <div>
50
- <?php _e('<strong>Note:</strong> To disable counter on particular page/post, edit that page/post and check the options at the bottom in <strong>"Super Socializer"</strong> section', 'Super-Socializer') ?>
51
- </div>
52
- <img style="box-shadow: 4px 4px 4px 4px #888888; margin: 8px 0" width="550" id="the_champ_sl_emailver_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/snaps/ss_disable_sharing.png', __FILE__) ?>" />
53
- </td>
54
- </tr>
55
- </table>
56
- </div>
57
- </div>
58
-
59
  </div>
60
  <?php include 'help.php'; ?>
61
  </div>
@@ -64,9 +48,27 @@
64
  <div class="the_champ_left_column">
65
 
66
  <div class="stuffbox">
67
- <h3><label><?php _e('bit.ly url shortener', 'Super-Socializer');?></label></h3>
68
  <div class="inside">
69
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  <tr>
71
  <th>
72
  <img id="the_champ_sc_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
@@ -178,13 +180,13 @@
178
  </div>
179
 
180
  <div class="stuffbox">
181
- <h3><label><?php _e('Horizontal Counter Interface Options', 'Super-Socializer');?></label></h3>
182
  <div class="inside">
183
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
184
  <tr>
185
  <th>
186
  <img id="the_champ_sc_horizontal_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
187
- <label for="the_champ_sc_horizontal_enable"><?php _e("Enable horizontal counter interface", 'Super-Socializer'); ?></label>
188
  </th>
189
  <td>
190
  <input id="the_champ_sc_horizontal_enable" onclick="theChampHorizontalCounterOptionsToggle(this)" name="the_champ_counter[hor_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['hor_enable']) ? 'checked = "checked"' : '';?> value="1" />
@@ -194,7 +196,7 @@
194
  <tr class="the_champ_help_content" id="the_champ_sc_horizontal_enable_help_cont">
195
  <td colspan="2">
196
  <div>
197
- <?php _e('Master control to enable horizontal counter', 'Super-Socializer') ?>
198
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_horizontal_counter.png', __FILE__); ?>" />
199
  </div>
200
  </td>
@@ -237,7 +239,7 @@
237
  <tr class="the_champ_help_content" id="the_champ_sc_title_help_cont">
238
  <td colspan="2">
239
  <div>
240
- <?php _e('The text to display above the counter interface', 'Super-Socializer') ?>
241
  </div>
242
  </td>
243
  </tr>
@@ -289,7 +291,7 @@
289
  <tr class="the_champ_help_content" id="the_champ_sc_providers_help_cont">
290
  <td colspan="2">
291
  <div>
292
- <?php _e('Select the providers for counter interface. Drag them to rearrange.', 'Super-Socializer') ?>
293
  </div>
294
  </td>
295
  </tr>
@@ -311,7 +313,7 @@
311
  <tr class="the_champ_help_content" id="the_champ_sc_hor_alignment_help_cont">
312
  <td colspan="2">
313
  <div>
314
- <?php _e('Horizontal alignment of the counter interface', 'Super-Socializer') ?>
315
  </div>
316
  </td>
317
  </tr>
@@ -332,7 +334,7 @@
332
  <tr class="the_champ_help_content" id="the_champ_sc_position_help_cont">
333
  <td colspan="2">
334
  <div>
335
- <?php _e('Specify position of the counter interface with respect to the content', 'Super-Socializer') ?>
336
  </div>
337
  </td>
338
  </tr>
@@ -340,7 +342,7 @@
340
  <tr>
341
  <th>
342
  <img id="the_champ_sc_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
343
- <label><?php _e("Counter location", 'Super-Socializer'); ?></label>
344
  </th>
345
  <td>
346
  <input id="the_champ_counter_home" name="the_champ_counter[home]" type="checkbox" <?php echo isset($theChampCounterOptions['home']) ? 'checked = "checked"' : '';?> value="1" />
@@ -383,7 +385,7 @@
383
  <tr class="the_champ_help_content" id="the_champ_sc_location_help_cont">
384
  <td colspan="2">
385
  <div>
386
- <?php _e('Specify the pages where you want to enable counter interface', 'Super-Socializer') ?>
387
  </div>
388
  </td>
389
  </tr>
@@ -393,13 +395,13 @@
393
  </div>
394
 
395
  <div class="stuffbox">
396
- <h3><label><?php _e('Vertical (Floating) counter interface Options', 'Super-Socializer');?></label></h3>
397
  <div class="inside">
398
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
399
  <tr>
400
  <th>
401
  <img id="the_champ_sc_vertical_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
402
- <label for="the_champ_sc_vertical_enable"><?php _e("Enable vertical (floating) counter interface", 'Super-Socializer'); ?></label>
403
  </th>
404
  <td>
405
  <input id="the_champ_sc_vertical_enable" onclick="theChampVerticalCounterOptionsToggle(this)" name="the_champ_counter[vertical_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['vertical_enable']) ? 'checked = "checked"' : '';?> value="1" />
@@ -485,7 +487,7 @@
485
  <tr class="the_champ_help_content" id="the_champ_sc_vertical_providers_help_cont">
486
  <td colspan="2">
487
  <div>
488
- <?php _e('Select the providers for counter interface. Drag them to rearrange.', 'Super-Socializer') ?>
489
  </div>
490
  </td>
491
  </tr>
@@ -503,7 +505,7 @@
503
  <tr class="the_champ_help_content" id="the_champ_sc_vertical_bg_color_help_cont">
504
  <td colspan="2">
505
  <div>
506
- <?php _e('Specify the color or hex code (example #cc78e0) for the background of vertical counter bar. Leave empty for transparent. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer') ?>
507
  </div>
508
  </td>
509
  </tr>
@@ -524,7 +526,7 @@
524
  <tr class="the_champ_help_content" id="the_champ_sc_alignment_help_cont">
525
  <td colspan="2">
526
  <div>
527
- <?php _e('Horizontal alignment of the counter interface', 'Super-Socializer') ?>
528
  </div>
529
  </td>
530
  </tr>
@@ -543,7 +545,7 @@
543
  <tr class="the_champ_help_content" id="the_champ_sc_left_offset_help_cont">
544
  <td colspan="2">
545
  <div>
546
- <?php _e('Specify a number. Increase in number will shift counter interface towards right and decrease will shift it towards left.', 'Super-Socializer') ?>
547
  </div>
548
  </td>
549
  </tr>
@@ -563,7 +565,7 @@
563
  <tr class="the_champ_help_content" id="the_champ_sc_right_offset_help_cont">
564
  <td colspan="2">
565
  <div>
566
- <?php _e('Specify a number. Increase in number will shift counter interface towards left and decrease will shift it towards right.', 'Super-Socializer') ?>
567
  </div>
568
  </td>
569
  </tr>
@@ -582,7 +584,7 @@
582
  <tr class="the_champ_help_content" id="the_champ_sc_top_offset_help_cont">
583
  <td colspan="2">
584
  <div>
585
- <?php _e('Specify a number. Increase in number will shift counter interface towards bottom and decrease will shift it towards top.', 'Super-Socializer') ?>
586
  </div>
587
  </td>
588
  </tr>
@@ -590,7 +592,7 @@
590
  <tr>
591
  <th>
592
  <img id="the_champ_sc_vertical_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
593
- <label><?php _e("Counter location", 'Super-Socializer'); ?></label>
594
  </th>
595
  <td>
596
  <input id="the_champ_counter_vertical_home" name="the_champ_counter[vertical_home]" type="checkbox" <?php echo isset($theChampCounterOptions['vertical_home']) ? 'checked = "checked"' : '';?> value="1" />
@@ -623,7 +625,7 @@
623
  <tr class="the_champ_help_content" id="the_champ_sc_vertical_location_help_cont">
624
  <td colspan="2">
625
  <div>
626
- <?php _e('Specify the pages where you want to enable vertical counter interface', 'Super-Socializer') ?>
627
  </div>
628
  </td>
629
  </tr>
@@ -639,71 +641,9 @@
639
  <div class="menu_containt_div" id="tabs-3">
640
  <div class="the_champ_left_column">
641
  <div class="stuffbox">
642
- <h3><label><?php _e('Shortcode', 'Super-Socializer');?></label></h3>
643
- <div class="inside">
644
- <p><?php _e('You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content of required page/post where you want to display Social Counter interface.', 'Super-Socializer') ?></p>
645
- <p><?php _e('Example', 'Super-Socializer') ?></p>
646
- <p><strong>[TheChamp-Counter]</strong></p>
647
- <p><?php _e('You can use following attributes in the Shortcode', 'Super-Socializer') ?></p>
648
- <strong style="font-size: 16px">Style</strong>
649
- <p><?php _e('Use <strong>style</strong> attribute to style the rendered Social Counter interface', 'Super-Socializer') ?></p>
650
- <p><?php _e('Example', 'Super-Socializer') ?></p>
651
- <p><strong>[TheChamp-Counter style="background-color:#000;"]</strong></p>
652
-
653
- <strong style="font-size: 16px">Type</strong>
654
- <p><?php _e('Use <strong>type</strong> attribute to specify the type ("horizontal" or "vertical") of Social Counter interface. Default type is "horizontal".', 'Super-Socializer') ?></p>
655
- <p><?php _e('Example', 'Super-Socializer') ?></p>
656
- <p><strong>[TheChamp-Counter type="vertical"]</strong></p>
657
-
658
- <strong style="font-size: 16px"><?php _e('Left (Works with "Vertical" type interface only)', 'Super-Socializer') ?></strong>
659
- <p><?php _e('Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Counter interface.', 'Super-Socializer') ?></p>
660
- <p><?php _e('Example', 'Super-Socializer') ?></p>
661
- <p><strong>[TheChamp-Counter type="vertical" left="500"]</strong></p>
662
-
663
- <strong style="font-size: 16px"><?php _e('Top (Works with "Vertical" type interface only)', 'Super-Socializer') ?></strong>
664
- <p><?php _e('Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Counter interface.', 'Super-Socializer') ?></p>
665
- <p><?php _e('Example', 'Super-Socializer') ?></p>
666
- <p><strong>[TheChamp-Counter type="vertical" top="200"]</strong></p>
667
- <p><?php _e('You can use shortcode in PHP file as following', 'Super-Socializer') ?></p>
668
- <p><strong>&lt;?php echo do_shortcode('SHORTCODE') ?&gt;</strong></p>
669
- <p><?php _e('Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Counter style="background-color:#000;"]</strong>, so the final code looks like following', 'Super-Socializer') ?></p>
670
- <p><strong>&lt;?php echo do_shortcode('[TheChamp-Counter style="background-color:#000;"]') ?&gt;</strong></p>
671
- </div>
672
- </div>
673
-
674
- <div class="stuffbox">
675
- <h3><label><?php _e('Widget', 'Super-Socializer');?></label></h3>
676
- <div class="inside">
677
- <p><?php _e('You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Counter (Horizontal Widget)</strong> and <strong>Super Socializer - Counter (Vertical Floating Widget)</strong> widgets in the required area.', 'Super-Socializer') ?></p>
678
- </div>
679
- </div>
680
- </div>
681
- <?php include 'help.php'; ?>
682
- </div>
683
-
684
- <div class="menu_containt_div" id="tabs-4">
685
- <div class="the_champ_left_column">
686
- <div class="stuffbox">
687
- <h3><label><?php _e('How can I show like counts of my website rather than of individual pages/posts?', 'Super-Socializer') ?></label></h3>
688
  <div class="inside">
689
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
690
- <tr>
691
- <td><?php _e('Choose "Url of the homepage of your website" in "Target Url" option', 'Super-Socializer') ?></td>
692
- </tr>
693
- </table>
694
- </div>
695
- </div>
696
-
697
- <div class="stuffbox">
698
- <h3><label><?php _e('How can I disable social counter on particular page/post?', 'Super-Socializer') ?></label></h3>
699
- <div class="inside">
700
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
701
- <tr>
702
- <td><?php _e('Edit that page/post and check the options at the bottom in "Super Socializer" section', 'Super-Socializer') ?><br/>
703
- <img style="box-shadow: 4px 4px 4px 4px #888888; margin: 8px 0" width="550" id="the_champ_sl_emailver_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/snaps/ss_disable_sharing.png', __FILE__) ?>" />
704
- </td>
705
- </tr>
706
- </table>
707
  </div>
708
  </div>
709
  </div>
9
  <h2 class="nav-tab-wrapper" style="height:36px">
10
  <ul>
11
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
12
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Like Buttons', 'Super-Socializer') ?></a></li>
13
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></li>
 
14
  </ul>
15
  </h2>
16
  <div class="menu_containt_div" id="tabs-1">
22
  <tr>
23
  <th>
24
  <img id="the_champ_sc_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
25
+ <label for="the_champ_counter_enable"><?php _e("Enable Like Buttons", 'Super-Socializer'); ?></label>
26
  </th>
27
  <td>
28
  <input id="the_champ_counter_enable" name="the_champ_counter[enable]" type="checkbox" <?php echo isset($theChampCounterOptions['enable']) ? 'checked = "checked"' : '';?> value="1" />
32
  <tr class="the_champ_help_content" id="the_champ_sc_enable_help_cont">
33
  <td colspan="2">
34
  <div>
35
+ <?php _e('Master control for like buttons. It must be checked to enable like buttons functionality', 'Super-Socializer') ?>
36
  </div>
37
  </td>
38
  </tr>
40
  </div>
41
  </div>
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  </div>
44
  <?php include 'help.php'; ?>
45
  </div>
48
  <div class="the_champ_left_column">
49
 
50
  <div class="stuffbox">
51
+ <h3><label><?php _e('Url shortener', 'Super-Socializer');?></label></h3>
52
  <div class="inside">
53
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
54
+ <tr>
55
+ <th>
56
+ <img id="the_champ_surl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
57
+ <label for="the_champ_surl_enable"><?php _e("Use shortlinks already installed, for tweet button", 'Super-Socializer'); ?></label>
58
+ </th>
59
+ <td>
60
+ <input id="the_champ_surl_enable" name="the_champ_counter[use_shortlinks]" type="checkbox" <?php echo isset($theChampCounterOptions['use_shortlinks']) ? 'checked = "checked"' : '';?> value="1" />
61
+ </td>
62
+ </tr>
63
+
64
+ <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
65
+ <td colspan="2">
66
+ <div>
67
+ <?php _e('Allows for shortened URLs to be used when sharing content if a shortening plugin is installed', 'Super-Socializer') ?>
68
+ </div>
69
+ </td>
70
+ </tr>
71
+
72
  <tr>
73
  <th>
74
  <img id="the_champ_sc_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
180
  </div>
181
 
182
  <div class="stuffbox">
183
+ <h3><label><?php _e('Horizontal Interface Options', 'Super-Socializer');?></label></h3>
184
  <div class="inside">
185
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
186
  <tr>
187
  <th>
188
  <img id="the_champ_sc_horizontal_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
189
+ <label for="the_champ_sc_horizontal_enable"><?php _e("Enable horizontal interface", 'Super-Socializer'); ?></label>
190
  </th>
191
  <td>
192
  <input id="the_champ_sc_horizontal_enable" onclick="theChampHorizontalCounterOptionsToggle(this)" name="the_champ_counter[hor_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['hor_enable']) ? 'checked = "checked"' : '';?> value="1" />
196
  <tr class="the_champ_help_content" id="the_champ_sc_horizontal_enable_help_cont">
197
  <td colspan="2">
198
  <div>
199
+ <?php _e('Master control to enable horizontal like buttons', 'Super-Socializer') ?>
200
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_horizontal_counter.png', __FILE__); ?>" />
201
  </div>
202
  </td>
239
  <tr class="the_champ_help_content" id="the_champ_sc_title_help_cont">
240
  <td colspan="2">
241
  <div>
242
+ <?php _e('The text to display above the interface', 'Super-Socializer') ?>
243
  </div>
244
  </td>
245
  </tr>
291
  <tr class="the_champ_help_content" id="the_champ_sc_providers_help_cont">
292
  <td colspan="2">
293
  <div>
294
+ <?php _e('Select the providers for interface. Drag them to rearrange.', 'Super-Socializer') ?>
295
  </div>
296
  </td>
297
  </tr>
313
  <tr class="the_champ_help_content" id="the_champ_sc_hor_alignment_help_cont">
314
  <td colspan="2">
315
  <div>
316
+ <?php _e('Horizontal alignment of the interface', 'Super-Socializer') ?>
317
  </div>
318
  </td>
319
  </tr>
334
  <tr class="the_champ_help_content" id="the_champ_sc_position_help_cont">
335
  <td colspan="2">
336
  <div>
337
+ <?php _e('Specify position of the interface with respect to the content', 'Super-Socializer') ?>
338
  </div>
339
  </td>
340
  </tr>
342
  <tr>
343
  <th>
344
  <img id="the_champ_sc_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
345
+ <label><?php _e("Interface location", 'Super-Socializer'); ?></label>
346
  </th>
347
  <td>
348
  <input id="the_champ_counter_home" name="the_champ_counter[home]" type="checkbox" <?php echo isset($theChampCounterOptions['home']) ? 'checked = "checked"' : '';?> value="1" />
385
  <tr class="the_champ_help_content" id="the_champ_sc_location_help_cont">
386
  <td colspan="2">
387
  <div>
388
+ <?php _e('Specify the pages where you want to enable interface', 'Super-Socializer') ?>
389
  </div>
390
  </td>
391
  </tr>
395
  </div>
396
 
397
  <div class="stuffbox">
398
+ <h3><label><?php _e('Vertical (Floating) like buttons Options', 'Super-Socializer');?></label></h3>
399
  <div class="inside">
400
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
401
  <tr>
402
  <th>
403
  <img id="the_champ_sc_vertical_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
404
+ <label for="the_champ_sc_vertical_enable"><?php _e("Enable vertical (floating) like buttons", 'Super-Socializer'); ?></label>
405
  </th>
406
  <td>
407
  <input id="the_champ_sc_vertical_enable" onclick="theChampVerticalCounterOptionsToggle(this)" name="the_champ_counter[vertical_enable]" type="checkbox" <?php echo isset($theChampCounterOptions['vertical_enable']) ? 'checked = "checked"' : '';?> value="1" />
487
  <tr class="the_champ_help_content" id="the_champ_sc_vertical_providers_help_cont">
488
  <td colspan="2">
489
  <div>
490
+ <?php _e('Select the providers for interface. Drag them to rearrange.', 'Super-Socializer') ?>
491
  </div>
492
  </td>
493
  </tr>
505
  <tr class="the_champ_help_content" id="the_champ_sc_vertical_bg_color_help_cont">
506
  <td colspan="2">
507
  <div>
508
+ <?php _e('Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href="http://www.colorpicker.com/" target="_blank">this link</a>', 'Super-Socializer') ?>
509
  </div>
510
  </td>
511
  </tr>
526
  <tr class="the_champ_help_content" id="the_champ_sc_alignment_help_cont">
527
  <td colspan="2">
528
  <div>
529
+ <?php _e('Horizontal alignment of the interface', 'Super-Socializer') ?>
530
  </div>
531
  </td>
532
  </tr>
545
  <tr class="the_champ_help_content" id="the_champ_sc_left_offset_help_cont">
546
  <td colspan="2">
547
  <div>
548
+ <?php _e('Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left.', 'Super-Socializer') ?>
549
  </div>
550
  </td>
551
  </tr>
565
  <tr class="the_champ_help_content" id="the_champ_sc_right_offset_help_cont">
566
  <td colspan="2">
567
  <div>
568
+ <?php _e('Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right.', 'Super-Socializer') ?>
569
  </div>
570
  </td>
571
  </tr>
584
  <tr class="the_champ_help_content" id="the_champ_sc_top_offset_help_cont">
585
  <td colspan="2">
586
  <div>
587
+ <?php _e('Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top.', 'Super-Socializer') ?>
588
  </div>
589
  </td>
590
  </tr>
592
  <tr>
593
  <th>
594
  <img id="the_champ_sc_vertical_location_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
595
+ <label><?php _e("Interface location", 'Super-Socializer'); ?></label>
596
  </th>
597
  <td>
598
  <input id="the_champ_counter_vertical_home" name="the_champ_counter[vertical_home]" type="checkbox" <?php echo isset($theChampCounterOptions['vertical_home']) ? 'checked = "checked"' : '';?> value="1" />
625
  <tr class="the_champ_help_content" id="the_champ_sc_vertical_location_help_cont">
626
  <td colspan="2">
627
  <div>
628
+ <?php _e('Specify the pages where you want to enable vertical interface', 'Super-Socializer') ?>
629
  </div>
630
  </td>
631
  </tr>
641
  <div class="menu_containt_div" id="tabs-3">
642
  <div class="the_champ_left_column">
643
  <div class="stuffbox">
644
+ <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645
  <div class="inside">
646
+ <p><a href="//support.heateor.com/like-buttons-shortcode-and-widget/" target="_blank"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
647
  </div>
648
  </div>
649
  </div>
admin/social_commenting.php CHANGED
@@ -7,7 +7,7 @@
7
  <?php settings_fields('the_champ_facebook_options'); ?>
8
  <h2 class="nav-tab-wrapper" style="height:36px">
9
  <ul>
10
- <li><a style="margin:0; height: 23px" class="nav-tab" href="#tabs-1"><?php _e('Facebook Commenting', 'Super-Socializer') ?></a></li>
11
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Shortcode', 'Super-Socializer') ?></a></li>
12
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('FAQ', 'Super-Socializer') ?></a></li>
13
  </ul>
@@ -15,49 +15,123 @@
15
  <div class="menu_containt_div" id="tabs-1">
16
  <div class="the_champ_left_column">
17
  <div class="stuffbox">
18
- <h3><label><?php _e('Enable Facebook Commenting', 'Super-Socializer');?></label></h3>
19
  <div class="inside">
20
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
21
  <tr>
22
  <th>
23
- <img id="the_champ_fb_comment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
24
- <label for="the_champ_enable_fbcomments"><?php _e("Enable Facebook Commenting", 'Super-Socializer'); ?></label>
25
  </th>
26
  <td>
27
- <input id="the_champ_enable_fbcomments" name="the_champ_facebook[enable_fbcomments]" type="checkbox" <?php echo isset($theChampFacebookOptions['enable_fbcomments']) ? 'checked = "checked"' : '';?> value="1" />
28
  </td>
29
  </tr>
30
 
31
- <tr class="the_champ_help_content" id="the_champ_fb_comment_help_cont">
32
  <td colspan="2">
33
  <div>
34
- <?php _e('After enabling this option, Facebook commenting will appear before Wordpress comment form at your website', 'Super-Socializer') ?>
35
  </div>
36
- <img width="562" src="<?php echo plugins_url('../images/snaps/FB_commenting.png', __FILE__); ?>" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  </td>
38
  </tr>
39
  </table>
40
  </div>
41
  </div>
42
-
43
  <div class="stuffbox">
44
- <h3><label><?php _e('Facebook Commenting Options', 'Super-Socializer');?></label></h3>
45
  <div class="inside">
46
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
47
  <tr>
48
  <th>
49
- <img id="the_champ_force_fb_comment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
50
- <label for="the_champ_force_fb_comment"><?php _e('Keep only Facebook Commenting', 'Super-Socializer'); ?></label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  </th>
52
  <td>
53
- <input id="the_champ_force_fb_comment" name="the_champ_facebook[force_enable]" type="checkbox" <?php echo isset($theChampFacebookOptions['force_enable']) ? 'checked = "checked"' : '';?> value="1" />
54
  </td>
55
  </tr>
56
 
57
- <tr class="the_champ_help_content" id="the_champ_force_fb_comment_help_cont">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  <td colspan="2">
59
  <div>
60
- <?php _e('If enabled, only Facebook commenting would be visible without default comment form', 'Super-Socializer') ?>
61
  </div>
62
  </td>
63
  </tr>
@@ -201,72 +275,134 @@
201
  </table>
202
  </div>
203
  </div>
204
- </div>
205
- <?php include 'help.php'; ?>
206
- </div>
207
-
208
- <div class="menu_containt_div" id="tabs-2">
209
- <div class="the_champ_left_column">
210
  <div class="stuffbox">
211
- <h3><label><?php _e('Shortcode', 'Super-Socializer');?></label></h3>
212
  <div class="inside">
213
- <p><?php _e('You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the content of required page/post where you want to display Facebook Commenting interface.', 'Super-Socializer') ?></p>
214
- <p><?php _e('Example', 'Super-Socializer') ?></p>
215
- <p><strong>[TheChamp-FB-Comments]</strong></p>
216
- <p><?php _e('You can use following attributes in the Shortcode', 'Super-Socializer') ?></p>
217
- <strong style="font-size: 16px">Style</strong>
218
- <p><?php _e('Use <strong>style</strong> attribute to style the rendered commenting interface', 'Super-Socializer') ?></p>
219
- <p><?php _e('Example', 'Super-Socializer') ?></p>
220
- <p><strong>[TheChamp-FB-Comments style="background-color:#000;"]</strong></p>
 
 
221
 
222
- <strong style="font-size: 16px">url</strong>
223
- <p><?php _e('Use <strong>url</strong> attribute to specify the target url for comments. This defaults to the page where shortcode is used.', 'Super-Socializer') ?></p>
224
- <p><?php _e('Example', 'Super-Socializer') ?></p>
225
- <p><strong>[TheChamp-FB-Comments url="http://mywebsite.com/page2"]</strong></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
- <strong style="font-size: 16px"><?php _e('num_posts', 'Super-Socializer') ?></strong>
228
- <p><?php _e('Use <strong>num_posts</strong> attribute to specify the number of comments to display.', 'Super-Socializer') ?></p>
229
- <p><?php _e('Example', 'Super-Socializer') ?></p>
230
- <p><strong>[TheChamp-FB-Comments num_posts="5"]</strong></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
231
 
232
- <strong style="font-size: 16px"><?php _e('width', 'Super-Socializer') ?></strong>
233
- <p><?php _e('Use <strong>width</strong> attribute to specify the width of commenting interface. Omit it for fluid width', 'Super-Socializer') ?></p>
234
- <p><?php _e('Example', 'Super-Socializer') ?></p>
235
- <p><strong>[TheChamp-FB-Comments width="200"]</strong></p>
236
- <p><?php _e('You can use shortcode in PHP file as following', 'Super-Socializer') ?></p>
237
- <p><strong>&lt;?php echo do_shortcode('SHORTCODE') ?&gt;</strong></p>
238
- <p><?php _e('Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-FB-Comments style="background-color:#000;"]</strong>, so the final code looks like following', 'Super-Socializer') ?></p>
239
- <p><strong>&lt;?php echo do_shortcode('[TheChamp-FB-Comments style="background-color:#000;"]') ?&gt;</strong></p>
240
  </div>
241
  </div>
242
- </div>
243
- <?php include 'help.php'; ?>
244
- </div>
245
-
246
- <div class="menu_containt_div" id="tabs-3">
247
- <div class="the_champ_left_column">
248
  <div class="stuffbox">
249
- <h3><label><?php _e('How can I disable FB comments at individual page/post?', 'Super-Socializer') ?></label></h3>
250
  <div class="inside">
251
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
252
  <tr>
253
- <td><?php _e('Edit that page/post and check the option "Disable Facebook Comments on this post/page" at the bottom in "Super Socializer" section', 'Super-Socializer') ?>
254
- <img style="box-shadow: 4px 4px 4px 4px #888888; margin: 8px 0" width="550" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/snaps/ss_disable_sharing.png', __FILE__) ?>" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  </td>
256
  </tr>
257
  </table>
258
  </div>
259
  </div>
260
 
 
 
 
 
 
 
261
  <div class="stuffbox">
262
- <h3><label><?php _e('How to enable only Facebook Comments without enabling default comment form?', 'Super-Socializer') ?></label></h3>
263
  <div class="inside">
264
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
265
- <tr>
266
- <td><?php _e('Enable "Keep only Facebook Commenting" option from "Facebook Commenting" section.', 'Super-Socializer') ?>
267
- </td>
268
- </tr>
269
- </table>
 
 
 
 
 
 
 
270
  </div>
271
  </div>
272
  </div>
7
  <?php settings_fields('the_champ_facebook_options'); ?>
8
  <h2 class="nav-tab-wrapper" style="height:36px">
9
  <ul>
10
+ <li><a style="margin:0; height: 23px" class="nav-tab" href="#tabs-1"><?php _e('Social Commenting', 'Super-Socializer') ?></a></li>
11
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Shortcode', 'Super-Socializer') ?></a></li>
12
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('FAQ', 'Super-Socializer') ?></a></li>
13
  </ul>
15
  <div class="menu_containt_div" id="tabs-1">
16
  <div class="the_champ_left_column">
17
  <div class="stuffbox">
18
+ <h3><label><?php _e('Enable Social Commenting', 'Super-Socializer');?></label></h3>
19
  <div class="inside">
20
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
21
  <tr>
22
  <th>
23
+ <img id="the_champ_enable_commenting_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
24
+ <label for="the_champ_enable_commenting"><?php _e("Enable Social Commenting", 'Super-Socializer'); ?></label>
25
  </th>
26
  <td>
27
+ <input id="the_champ_enable_commenting" name="the_champ_facebook[enable_commenting]" type="checkbox" <?php echo isset($theChampFacebookOptions['enable_commenting']) ? 'checked = "checked"' : '';?> value="1" />
28
  </td>
29
  </tr>
30
 
31
+ <tr class="the_champ_help_content" id="the_champ_enable_commenting_help_cont">
32
  <td colspan="2">
33
  <div>
34
+ <?php _e('Enable Social Commenting', 'Super-Socializer') ?>
35
  </div>
36
+ </td>
37
+ </tr>
38
+
39
+ <tr>
40
+ <th>
41
+ <img id="the_champ_commenting_tab_order_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
42
+ <label for="the_champ_commenting_tab_order"><?php _e("Order of tabs in commenting interface", 'Super-Socializer'); ?></label>
43
+ </th>
44
+ <td>
45
+ <input id="the_champ_commenting_tab_order" name="the_champ_facebook[commenting_order]" type="text" value="<?php echo isset($theChampFacebookOptions['commenting_order']) ? $theChampFacebookOptions['commenting_order'] : '';?>" />
46
+ </td>
47
+ </tr>
48
+
49
+ <tr class="the_champ_help_content" id="the_champ_commenting_tab_order_help_cont">
50
+ <td colspan="2">
51
+ <div>
52
+ <?php _e('Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus', 'Super-Socializer') ?>
53
+ </div>
54
+ </td>
55
+ </tr>
56
+
57
+ <tr>
58
+ <th>
59
+ <img id="the_champ_commenting_title_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
60
+ <label for="the_champ_commenting_title"><?php _e("Comment area label", 'Super-Socializer'); ?></label>
61
+ </th>
62
+ <td>
63
+ <input id="the_champ_commenting_title" name="the_champ_facebook[commenting_label]" type="text" value="<?php echo isset($theChampFacebookOptions['commenting_label']) ? $theChampFacebookOptions['commenting_label'] : '';?>" />
64
  </td>
65
  </tr>
66
  </table>
67
  </div>
68
  </div>
69
+
70
  <div class="stuffbox">
71
+ <h3><label><?php _e('Labels', 'Super-Socializer');?></label></h3>
72
  <div class="inside">
73
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
74
  <tr>
75
  <th>
76
+ <img id="the_champ_wp_comment_label_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
77
+ <label for="the_champ_wp_comment_label"><?php _e("Label for WordPress Commenting tab", 'Super-Socializer'); ?></label>
78
+ </th>
79
+ <td>
80
+ <input id="the_champ_wp_comment_label" name="the_champ_facebook[label_wordpress_comments]" type="text" value="<?php echo isset($theChampFacebookOptions['label_wordpress_comments']) ? $theChampFacebookOptions['label_wordpress_comments'] : '';?>" />
81
+ </td>
82
+ </tr>
83
+
84
+ <tr>
85
+ <th>
86
+ <img id="the_champ_fb_comment_label_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
87
+ <label for="the_champ_fb_comment_label"><?php _e("Label for Facebook Commenting tab", 'Super-Socializer'); ?></label>
88
+ </th>
89
+ <td>
90
+ <input id="the_champ_fb_comment_label" name="the_champ_facebook[label_facebook_comments]" type="text" value="<?php echo isset($theChampFacebookOptions['label_facebook_comments']) ? $theChampFacebookOptions['label_facebook_comments'] : '';?>" />
91
+ </td>
92
+ </tr>
93
+
94
+ <tr>
95
+ <th>
96
+ <img id="the_champ_gp_comment_label_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
97
+ <label for="the_champ_gp_comment_label"><?php _e("Label for G+ Commenting tab", 'Super-Socializer'); ?></label>
98
  </th>
99
  <td>
100
+ <input id="the_champ_gp_comment_label" name="the_champ_facebook[label_googleplus_comments]" type="text" value="<?php echo isset($theChampFacebookOptions['label_googleplus_comments']) ? $theChampFacebookOptions['label_googleplus_comments'] : '';?>" />
101
  </td>
102
  </tr>
103
 
104
+ <tr>
105
+ <th>
106
+ <img id="the_champ_dq_comment_label_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
107
+ <label for="the_champ_dq_comment_label"><?php _e("Label for Disqus Commenting tab", 'Super-Socializer'); ?></label>
108
+ </th>
109
+ <td>
110
+ <input id="the_champ_dq_comment_label" name="the_champ_facebook[label_disqus_comments]" type="text" value="<?php echo isset($theChampFacebookOptions['label_disqus_comments']) ? $theChampFacebookOptions['label_disqus_comments'] : '';?>" />
111
+ </td>
112
+ </tr>
113
+ </table>
114
+ </div>
115
+ </div>
116
+
117
+ <div class="stuffbox">
118
+ <h3><label><?php _e('Facebook Commenting Options', 'Super-Socializer');?></label></h3>
119
+ <div class="inside">
120
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
121
+ <tr>
122
+ <th>
123
+ <img id="the_champ_fb_comment_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
124
+ <label for="the_champ_enable_fbcomments"><?php _e("Enable Facebook Commenting", 'Super-Socializer'); ?></label>
125
+ </th>
126
+ <td>
127
+ <input id="the_champ_enable_fbcomments" name="the_champ_facebook[enable_fbcomments]" type="checkbox" <?php echo isset($theChampFacebookOptions['enable_fbcomments']) ? 'checked = "checked"' : '';?> value="1" />
128
+ </td>
129
+ </tr>
130
+
131
+ <tr class="the_champ_help_content" id="the_champ_fb_comment_help_cont">
132
  <td colspan="2">
133
  <div>
134
+ <?php _e('Enable Social Commenting', 'Super-Socializer') ?>
135
  </div>
136
  </td>
137
  </tr>
275
  </table>
276
  </div>
277
  </div>
278
+
 
 
 
 
 
279
  <div class="stuffbox">
280
+ <h3><label><?php _e('Google Plus Commenting Options', 'Super-Socializer');?></label></h3>
281
  <div class="inside">
282
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
283
+ <tr>
284
+ <th>
285
+ <img id="the_champ_enable_gpcomments_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
286
+ <label for="the_champ_enable_gpcomments"><?php _e("Enable Google Plus Commenting", 'Super-Socializer'); ?></label>
287
+ </th>
288
+ <td>
289
+ <input id="the_champ_enable_gpcomments" name="the_champ_facebook[enable_googlepluscomments]" type="checkbox" <?php echo isset($theChampFacebookOptions['enable_googlepluscomments']) ? 'checked = "checked"' : '';?> value="1" />
290
+ </td>
291
+ </tr>
292
 
293
+ <tr class="the_champ_help_content" id="the_champ_enable_gpcomments_help_cont">
294
+ <td colspan="2">
295
+ <div>
296
+ <?php _e('Enable Google Plus Commenting', 'Super-Socializer') ?>
297
+ </div>
298
+ </td>
299
+ </tr>
300
+
301
+ <tr>
302
+ <th>
303
+ <img id="the_champ_gpcomments_width_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
304
+ <label for="the_champ_gpcomments_width"><?php _e("Width", 'Super-Socializer'); ?></label>
305
+ </th>
306
+ <td>
307
+ <input id="the_champ_gpcomments_width" name="the_champ_facebook[gpcomments_width]" type="text" value="<?php echo isset($theChampFacebookOptions['gpcomments_width']) ? $theChampFacebookOptions['gpcomments_width'] : ''; ?>" />
308
+ </td>
309
+ </tr>
310
 
311
+ <tr class="the_champ_help_content" id="the_champ_gpcomments_width_help_cont">
312
+ <td colspan="2">
313
+ <div>
314
+ <?php _e('Width of GooglePlus Commenting interface. Leave empty for auto adjust', 'Super-Socializer') ?>
315
+ </div>
316
+ </td>
317
+ </tr>
318
+
319
+ <tr>
320
+ <th>
321
+ <img id="the_champ_gpcomments_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
322
+ <label for="the_champ_gpcomments_url"><?php _e("Url to comment on", 'Super-Socializer'); ?></label>
323
+ </th>
324
+ <td>
325
+ <input id="the_champ_gpcomments_url" name="the_champ_facebook[gpcomments_url]" type="text" value="<?php echo isset($theChampFacebookOptions['gpcomments_url']) ? $theChampFacebookOptions['gpcomments_url'] : ''; ?>" />
326
+ </td>
327
+ </tr>
328
 
329
+ <tr class="the_champ_help_content" id="the_champ_gpcomments_url_help_cont">
330
+ <td colspan="2">
331
+ <div>
332
+ <?php _e('The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled.', 'Super-Socializer') ?>
333
+ </div>
334
+ </td>
335
+ </tr>
336
+ </table>
337
  </div>
338
  </div>
339
+
 
 
 
 
 
340
  <div class="stuffbox">
341
+ <h3><label><?php _e('Disqus Commenting Options', 'Super-Socializer');?></label></h3>
342
  <div class="inside">
343
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
344
  <tr>
345
+ <th>
346
+ <img id="the_champ_enable_dqcomments_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
347
+ <label for="the_champ_enable_dqcomments"><?php _e("Enable Disqus Commenting", 'Super-Socializer'); ?></label>
348
+ </th>
349
+ <td>
350
+ <input id="the_champ_enable_dqcomments" name="the_champ_facebook[enable_disquscomments]" type="checkbox" <?php echo isset($theChampFacebookOptions['enable_disquscomments']) ? 'checked = "checked"' : '';?> value="1" />
351
+ </td>
352
+ </tr>
353
+
354
+ <tr class="the_champ_help_content" id="the_champ_enable_dqcomments_help_cont">
355
+ <td colspan="2">
356
+ <div>
357
+ <?php _e('Enable Disqus Commenting', 'Super-Socializer') ?>
358
+ </div>
359
+ </td>
360
+ </tr>
361
+
362
+ <tr>
363
+ <th>
364
+ <img id="the_champ_commenting_dq_shortname_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
365
+ <label for="the_champ_commenting_dq_shortname"><?php _e("Disqus Shortname", 'Super-Socializer'); ?></label>
366
+ </th>
367
+ <td>
368
+ <input id="the_champ_commenting_dq_shortname" name="the_champ_facebook[dq_shortname]" type="text" value="<?php echo isset($theChampFacebookOptions['dq_shortname']) ? $theChampFacebookOptions['dq_shortname'] : ''; ?>" />
369
+ </td>
370
+ </tr>
371
+
372
+ <tr class="the_champ_help_content" id="the_champ_commenting_dq_shortname_help_cont">
373
+ <td colspan="2">
374
+ <div>
375
+ <?php _e('<strong>Required to use Disqus commenting.</strong> You can find it in your Disqus plugin settings section as shown in the screenshot below', 'Super-Socializer') ?>
376
+ </div>
377
+ <img width="562" src="<?php echo plugins_url('../images/snaps/sc_disqus_shortname.png', __FILE__); ?>" />
378
  </td>
379
  </tr>
380
  </table>
381
  </div>
382
  </div>
383
 
384
+ </div>
385
+ <?php include 'help.php'; ?>
386
+ </div>
387
+
388
+ <div class="menu_containt_div" id="tabs-2">
389
+ <div class="the_champ_left_column">
390
  <div class="stuffbox">
391
+ <h3><label><?php _e('Shortcode', 'Super-Socializer');?></label></h3>
392
  <div class="inside">
393
+ <p><a href="//support.heateor.com/social-commenting-shortcode/" target="_blank"><?php _e('Shortcode', 'Super-Socializer') ?></a></p>
394
+ </div>
395
+ </div>
396
+ </div>
397
+ <?php include 'help.php'; ?>
398
+ </div>
399
+
400
+ <div class="menu_containt_div" id="tabs-3">
401
+ <div class="the_champ_left_column">
402
+ <div class="stuffbox">
403
+ <h3><label><?php _e('FAQ', 'Super-Socializer') ?></label></h3>
404
+ <div class="inside">
405
+ <p><a href="//support.heateor.com/how-can-i-disable-social-commenting-at-individual-pagepost/" target="_blank"><?php _e('How can I disable Social Commenting at individual page/post?', 'Super-Socializer') ?></a></p>
406
  </div>
407
  </div>
408
  </div>
admin/social_login.php CHANGED
@@ -93,7 +93,7 @@
93
  <tr class="the_champ_help_content" id="the_champ_slfb_key_help_cont">
94
  <td colspan="2">
95
  <div>
96
- <?php echo sprintf(__('Required for Facebook Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App ID', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/01/16/getting-the-facebook-app-id/') ?>
97
  <br/>
98
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Site URL</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
99
  <br/>
@@ -115,7 +115,7 @@
115
  <tr class="the_champ_help_content" id="the_champ_sltw_key_help_cont">
116
  <td colspan="2">
117
  <div>
118
- <?php echo sprintf(__('Required for Twitter Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Twitter API Key', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/01/28/getting-twitter-consumer-key-and-secret/') ?>
119
  <br/>
120
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
121
  <br/>
@@ -137,7 +137,7 @@
137
  <tr class="the_champ_help_content" id="the_champ_sltw_secret_help_cont">
138
  <td colspan="2">
139
  <div>
140
- <?php echo sprintf(__('Required for Twitter Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Twitter API Secret', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/01/28/getting-twitter-consumer-key-and-secret/') ?>
141
  <br/>
142
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
143
  <br/>
@@ -159,7 +159,7 @@
159
  <tr class="the_champ_help_content" id="the_champ_slli_key_help_cont">
160
  <td colspan="2">
161
  <div>
162
- <?php echo sprintf(__('Required for LinkedIn Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get LinkedIn API Key', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/01/26/getting-linkedin-api-key/') ?>
163
  <br/>
164
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website URL</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
165
  <br/>
@@ -181,7 +181,7 @@
181
  <tr class="the_champ_help_content" id="the_champ_slgp_id_help_cont">
182
  <td colspan="2">
183
  <div>
184
- <?php echo sprintf(__('Required for GooglePlus Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get GooglePlus Client ID', 'Super-Socializer'), '//thechamplord.wordpress.com/2013/12/30/getting-google-plus-client-id/') ?>
185
  <br/>
186
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
187
  <br/>
@@ -203,7 +203,7 @@
203
  <tr class="the_champ_help_content" id="the_champ_slvk_id_help_cont">
204
  <td colspan="2">
205
  <div>
206
- <?php echo sprintf(__('Required for Vkontakte Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Vkontakte Application ID', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/03/07/how-to-configure-vkontakte-application-and-get-application-id/') ?>
207
  <br/>
208
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Site address</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
209
  <br/>
@@ -225,7 +225,7 @@
225
  <tr class="the_champ_help_content" id="the_champ_slinsta_id_help_cont">
226
  <td colspan="2">
227
  <div>
228
- <?php echo sprintf(__('Required for Instagram Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Instagram Client ID', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/04/14/how-to-configure-instagram-application-and-get-client-id/') ?>
229
  <br/>
230
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website</strong> and <strong>OAuth redirect_uri</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
231
  <br/>
@@ -247,7 +247,7 @@
247
  <tr class="the_champ_help_content" id="the_champ_slxing_ck_help_cont">
248
  <td colspan="2">
249
  <div>
250
- <?php echo sprintf(__('Required for Xing Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Xing Consumer Key', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/12/06/how-to-get-xing-consumer-key-and-secret/') ?>
251
  <br/>
252
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Callback domain</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
253
  <br/>
@@ -269,7 +269,7 @@
269
  <tr class="the_champ_help_content" id="the_champ_slxing_cs_help_cont">
270
  <td colspan="2">
271
  <div>
272
- <?php echo sprintf(__('Required for Xing Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Xing Consumer Secret', 'Super-Socializer'), '//thechamplord.wordpress.com/2014/12/06/how-to-get-xing-consumer-key-and-secret/') ?>
273
  <br/>
274
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Callback domain</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
275
  <br/>
@@ -651,25 +651,9 @@
651
  <div class="menu_containt_div" id="tabs-3">
652
  <div class="the_champ_left_column">
653
  <div class="stuffbox">
654
- <h3><label><?php _e('Shortcode', 'Super-Socializer');?></label></h3>
655
  <div class="inside">
656
- <p><?php _e('Use <strong>[TheChamp-Login]</strong> Shortcode in the content of required page/post where you want to display Social Login interface.', 'Super-Socializer') ?></p>
657
- <p><?php _e('Example', 'Super-Socializer') ?></p>
658
- <p><strong>[TheChamp-Login]</strong></p>
659
- <p><?php _e('You can use "style" attribute in the Shortcode to style the rendered Social Login interface.', 'Super-Socializer') ?></p>
660
- <p><?php _e('Example', 'Super-Socializer') ?></p>
661
- <p><strong>[TheChamp-Login style="background-color:#000;"]</strong></p>
662
- <p><?php _e('You can use shortcode in PHP file as following', 'Super-Socializer') ?></p>
663
- <p><strong>&lt;?php echo do_shortcode('SHORTCODE') ?&gt;</strong></p>
664
- <p><?php _e('Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Login style="background-color:#000;"]</strong>, so the final code looks like following', 'Super-Socializer') ?></p>
665
- <p><strong>&lt;?php echo do_shortcode('[TheChamp-Login style="background-color:#000;"]') ?&gt;</strong></p>
666
- </div>
667
- </div>
668
-
669
- <div class="stuffbox">
670
- <h3><label><?php _e('Widget', 'Super-Socializer');?></label></h3>
671
- <div class="inside">
672
- <p><?php _e('You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Login</strong> widget in the required area.', 'Super-Socializer') ?></p>
673
  </div>
674
  </div>
675
  </div>
93
  <tr class="the_champ_help_content" id="the_champ_slfb_key_help_cont">
94
  <td colspan="2">
95
  <div>
96
+ <?php echo sprintf(__('Required for Facebook Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App ID', 'Super-Socializer'), '//support.heateor.com/how-to-get-facebook-app-id/') ?>
97
  <br/>
98
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Site URL</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
99
  <br/>
115
  <tr class="the_champ_help_content" id="the_champ_sltw_key_help_cont">
116
  <td colspan="2">
117
  <div>
118
+ <?php echo sprintf(__('Required for Twitter Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Twitter API Key', 'Super-Socializer'), '//support.heateor.com/how-to-get-twitter-api-key-and-secret/') ?>
119
  <br/>
120
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
121
  <br/>
137
  <tr class="the_champ_help_content" id="the_champ_sltw_secret_help_cont">
138
  <td colspan="2">
139
  <div>
140
+ <?php echo sprintf(__('Required for Twitter Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Twitter API Secret', 'Super-Socializer'), '//support.heateor.com/how-to-get-twitter-api-key-and-secret/') ?>
141
  <br/>
142
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
143
  <br/>
159
  <tr class="the_champ_help_content" id="the_champ_slli_key_help_cont">
160
  <td colspan="2">
161
  <div>
162
+ <?php echo sprintf(__('Required for LinkedIn Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get LinkedIn API Key', 'Super-Socializer'), '//support.heateor.com/how-to-get-linkedin-api-key/') ?>
163
  <br/>
164
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website URL</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
165
  <br/>
181
  <tr class="the_champ_help_content" id="the_champ_slgp_id_help_cont">
182
  <td colspan="2">
183
  <div>
184
+ <?php echo sprintf(__('Required for GooglePlus Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get GooglePlus Client ID', 'Super-Socializer'), '//support.heateor.com/how-to-get-google-plus-client-id/') ?>
185
  <br/>
186
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
187
  <br/>
203
  <tr class="the_champ_help_content" id="the_champ_slvk_id_help_cont">
204
  <td colspan="2">
205
  <div>
206
+ <?php echo sprintf(__('Required for Vkontakte Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Vkontakte Application ID', 'Super-Socializer'), '//support.heateor.com/how-to-get-vkontakte-application-id/') ?>
207
  <br/>
208
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Site address</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
209
  <br/>
225
  <tr class="the_champ_help_content" id="the_champ_slinsta_id_help_cont">
226
  <td colspan="2">
227
  <div>
228
+ <?php echo sprintf(__('Required for Instagram Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Instagram Client ID', 'Super-Socializer'), '//support.heateor.com/how-to-get-instagram-client-id/') ?>
229
  <br/>
230
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Website</strong> and <strong>OAuth redirect_uri</strong> options at the link mentioned', 'Super-Socializer'); ?></span>
231
  <br/>
247
  <tr class="the_champ_help_content" id="the_champ_slxing_ck_help_cont">
248
  <td colspan="2">
249
  <div>
250
+ <?php echo sprintf(__('Required for Xing Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Xing Consumer Key', 'Super-Socializer'), '//support.heateor.com/how-to-get-xing-consumer-key-and-secret/') ?>
251
  <br/>
252
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Callback domain</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
253
  <br/>
269
  <tr class="the_champ_help_content" id="the_champ_slxing_cs_help_cont">
270
  <td colspan="2">
271
  <div>
272
+ <?php echo sprintf(__('Required for Xing Social Login to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Xing Consumer Secret', 'Super-Socializer'), '//support.heateor.com/how-to-get-xing-consumer-key-and-secret/') ?>
273
  <br/>
274
  <span style="color: #14ACDF"><?php _e('Paste following url in <strong>Callback domain</strong> option at the link mentioned', 'Super-Socializer'); ?></span>
275
  <br/>
651
  <div class="menu_containt_div" id="tabs-3">
652
  <div class="the_champ_left_column">
653
  <div class="stuffbox">
654
+ <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
655
  <div class="inside">
656
+ <p><a href="//support.heateor.com/social-login-shortcode-and-widget/" target="_blank"><?php _e('Sortcode & Widget', 'Super-Socializer') ?></a></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
  </div>
658
  </div>
659
  </div>
admin/social_sharing.php CHANGED
@@ -1,21 +1,19 @@
1
  <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
2
- <script>
3
- var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FILE__); ?>';
4
- </script>
5
 
6
  <div id="fb-root"></div>
7
 
8
  <div class="metabox-holder columns-2" id="post-body">
9
  <div class="menu_div" id="tabs">
10
- <form action="options.php" method="post">
11
  <?php settings_fields('the_champ_sharing_options'); ?>
12
  <h2 class="nav-tab-wrapper" style="height:36px">
13
  <ul>
14
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
15
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Social Sharing', 'Super-Socializer') ?></a></li>
16
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></li>
17
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-4"><?php _e('Troubleshooter', 'Super-Socializer') ?></a></li>
18
- <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-5"><?php _e('FAQ', 'Super-Socializer') ?></a></li>
 
19
  </ul>
20
  </h2>
21
  <div class="menu_containt_div" id="tabs-1">
@@ -62,32 +60,196 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
62
  </table>
63
  </div>
64
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  <div class="stuffbox">
 
67
  <div class="inside">
68
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
69
  <tr>
 
 
 
 
 
 
 
 
 
 
70
  <td colspan="2">
71
  <div>
72
- <?php _e('<strong>Note:</strong> To disable sharing and specify minimum share counts per social network on particular page/post, edit that page/post and check the options at the bottom in <strong>"Super Socializer"</strong> section', 'Super-Socializer') ?>
73
  </div>
74
- <img style="box-shadow: 4px 4px 4px 4px #888888; margin: 8px 0" width="550" id="the_champ_sl_emailver_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/snaps/ss_disable_sharing.png', __FILE__) ?>" />
75
  </td>
76
  </tr>
77
- </table>
78
- </div>
79
- </div>
80
-
81
- </div>
82
- <?php include 'help.php'; ?>
83
- </div>
84
-
85
- <div class="menu_containt_div" id="tabs-2">
86
- <div class="the_champ_left_column">
87
- <div class="stuffbox">
88
- <h3><label><?php _e('bit.ly url shortener', 'Super-Socializer');?></label></h3>
89
- <div class="inside">
90
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
91
  <tr>
92
  <th>
93
  <img id="the_champ_ss_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
@@ -348,10 +510,21 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
348
  <ul id="the_champ_ss_rearrange">
349
  <?php
350
  if(isset($theChampSharingOptions['horizontal_re_providers'])){
 
 
 
 
 
 
 
 
 
 
 
351
  foreach($theChampSharingOptions['horizontal_re_providers'] as $rearrange){
352
  ?>
353
  <li title="<?php echo $rearrange ?>" id="the_champ_re_horizontal_<?php echo str_replace(' ', '_', $rearrange) ?>" >
354
- <i class="theChampSharingButton theChampSharing<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Button"></i>
355
  <input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="<?php echo $rearrange ?>">
356
  </li>
357
  <?php
@@ -482,6 +655,24 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
482
  </div>
483
  </td>
484
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
485
  </tbody>
486
  </table>
487
  </div>
@@ -644,10 +835,21 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
644
  <ul id="the_champ_ss_vertical_rearrange">
645
  <?php
646
  if(isset($theChampSharingOptions['vertical_re_providers'])){
 
 
 
 
 
 
 
 
 
 
 
647
  foreach($theChampSharingOptions['vertical_re_providers'] as $rearrange){
648
  ?>
649
  <li title="<?php echo $rearrange ?>" id="the_champ_re_vertical_<?php echo str_replace(' ', '_', $rearrange) ?>" >
650
- <i class="theChampSharingButton theChampSharing<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Button"></i>
651
  <input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="<?php echo $rearrange ?>">
652
  </li>
653
  <?php
@@ -822,70 +1024,56 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
822
  </div>
823
  </td>
824
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
825
  </tbody>
826
  </table>
827
  </div>
828
  </div>
829
-
 
 
 
 
 
 
 
 
 
 
830
  </div>
831
  <?php include 'help.php'; ?>
832
  </div>
833
 
834
- <div class="menu_containt_div" id="tabs-3">
835
  <div class="the_champ_left_column">
836
  <div class="stuffbox">
837
- <h3><label><?php _e('Shortcode', 'Super-Socializer');?></label></h3>
838
- <div class="inside">
839
- <p><?php _e('You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content of required page/post where you want to display Social Sharing interface.', 'Super-Socializer') ?></p>
840
- <p><?php _e('Example', 'Super-Socializer') ?></p>
841
- <p><strong>[TheChamp-Sharing]</strong></p>
842
- <p><?php _e('You can use following attributes in the Shortcode', 'Super-Socializer') ?></p>
843
- <strong style="font-size: 16px">style</strong>
844
- <p><?php _e('Use <strong>style</strong> attribute to style the rendered Social Sharing interface', 'Super-Socializer') ?></p>
845
- <p><?php _e('Example', 'Super-Socializer') ?></p>
846
- <p><strong>[TheChamp-Sharing style="background-color:#000;"]</strong></p>
847
-
848
- <strong style="font-size: 16px">type</strong>
849
- <p><?php _e('Use <strong>type</strong> attribute to specify the type ("horizontal" or "vertical") of Social Sharing interface. Default type is "horizontal".', 'Super-Socializer') ?></p>
850
- <p><?php _e('Example', 'Super-Socializer') ?></p>
851
- <p><strong>[TheChamp-Sharing type="vertical"]</strong></p>
852
-
853
- <strong style="font-size: 16px">count</strong>
854
- <p><?php _e('Use <strong>count</strong> attribute to enable the share counts on Social Sharing interface', 'Super-Socializer') ?></p>
855
- <p><?php _e('Example', 'Super-Socializer') ?></p>
856
- <p><strong>[TheChamp-Sharing count="1"]</strong></p>
857
-
858
- <strong style="font-size: 16px"><?php _e('left (Works with "Vertical" type interface only)', 'Super-Socializer') ?></strong>
859
- <p><?php _e('Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Sharing interface.', 'Super-Socializer') ?></p>
860
- <p><?php _e('Example', 'Super-Socializer') ?></p>
861
- <p><strong>[TheChamp-Sharing type="vertical" left="500"]</strong></p>
862
-
863
- <strong style="font-size: 16px"><?php _e('top (Works with "Vertical" type interface only)', 'Super-Socializer') ?></strong>
864
- <p><?php _e('Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Sharing interface.', 'Super-Socializer') ?></p>
865
- <p><?php _e('Example', 'Super-Socializer') ?></p>
866
- <p><strong>[TheChamp-Sharing type="vertical" top="200"]</strong></p>
867
- <strong style="font-size: 16px"><?php _e('url', 'Super-Socializer') ?></strong>
868
- <p><?php _e('Use <strong>url</strong> attribute to specify the url to be shared', 'Super-Socializer') ?></p>
869
- <p><?php _e('Example', 'Super-Socializer') ?></p>
870
- <p><strong>[TheChamp-Sharing type="vertical" url="http://mywebsite.com/example.php"]</strong></p>
871
- <p><?php _e('You can use shortcode in PHP file as following', 'Super-Socializer') ?></p>
872
- <p><strong>&lt;?php echo do_shortcode('SHORTCODE') ?&gt;</strong></p>
873
- <p><?php _e('Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Sharing style="background-color:#000;"]</strong>, so the final code looks like following', 'Super-Socializer') ?></p>
874
- <p><strong>&lt;?php echo do_shortcode('[TheChamp-Sharing style="background-color:#000;"]') ?&gt;</strong></p>
875
- </div>
876
- </div>
877
-
878
- <div class="stuffbox">
879
- <h3><label><?php _e('Widget', 'Super-Socializer');?></label></h3>
880
  <div class="inside">
881
- <p><?php _e('You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - Sharing (Vertical Floating Widget)</strong> widgets in the required area.', 'Super-Socializer') ?></p>
882
  </div>
883
  </div>
884
  </div>
885
  <?php include 'help.php'; ?>
886
  </div>
887
 
888
- <div class="menu_containt_div" id="tabs-4">
889
  <div class="the_champ_left_column">
890
  <div class="stuffbox">
891
  <h3><label><?php _e('Facebook Sharing Troubleshooter', 'Super-Socializer');?></label></h3>
@@ -904,42 +1092,17 @@ var theChampSharingIconPath = '<?php echo plugins_url('../images/sharing', __FIL
904
  <?php include 'help.php'; ?>
905
  </div>
906
 
907
- <div class="menu_containt_div" id="tabs-5">
908
  <div class="the_champ_left_column">
909
  <div class="stuffbox">
910
- <h3><label><?php _e('How can I show share counts of my website rather than of individual pages/posts?', 'Super-Socializer') ?></label></h3>
911
  <div class="inside">
912
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
913
- <tr>
914
- <td><?php _e('Choose "Url of the homepage of your website" in "Target Url" option and enable "Show share counts" option', 'Super-Socializer') ?></td>
915
- </tr>
916
- </table>
917
  </div>
918
  </div>
919
 
920
- <div class="stuffbox">
921
- <h3><label><?php _e('How can I disable sharing on particular page/post?', 'Super-Socializer') ?></label></h3>
922
- <div class="inside">
923
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
924
- <tr>
925
- <td><?php _e('Edit that page/post and check the options at the bottom in "Super Socializer" section', 'Super-Socializer') ?><br/>
926
- <img style="box-shadow: 4px 4px 4px 4px #888888; margin: 8px 0" width="550" id="the_champ_sl_emailver_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/snaps/ss_disable_sharing.png', __FILE__) ?>" />
927
- </td>
928
- </tr>
929
- </table>
930
- </div>
931
- </div>
932
-
933
- <div class="stuffbox">
934
- <h3><label><?php _e('How can I specify minimum sharing count for sharing networks?', 'Super-Socializer') ?></label></h3>
935
- <div class="inside">
936
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
937
- <tr>
938
- <td><?php _e('Edit that page/post and check the options at the bottom in "Super Socializer" section', 'Super-Socializer') ?></td>
939
- </tr>
940
- </table>
941
- </div>
942
- </div>
943
  </div>
944
  <?php include 'help.php'; ?>
945
  </div>
1
  <?php defined('ABSPATH') or die("Cheating........Uh!!"); ?>
 
 
 
2
 
3
  <div id="fb-root"></div>
4
 
5
  <div class="metabox-holder columns-2" id="post-body">
6
  <div class="menu_div" id="tabs">
7
+ <form id="the_champ_sharing_form" action="options.php" method="post">
8
  <?php settings_fields('the_champ_sharing_options'); ?>
9
  <h2 class="nav-tab-wrapper" style="height:36px">
10
  <ul>
11
  <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-1"><?php _e('Basic Configuration', 'Super-Socializer') ?></a></li>
12
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-2"><?php _e('Sharing Interface', 'Super-Socializer') ?></a></li>
13
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-3"><?php _e('Sharing Options', 'Super-Socializer') ?></a></li>
14
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-4"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></li>
15
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-5"><?php _e('Troubleshooter', 'Super-Socializer') ?></a></li>
16
+ <li style="margin-left:9px"><a style="margin:0; height:23px" class="nav-tab" href="#tabs-6"><?php _e('FAQ', 'Super-Socializer') ?></a></li>
17
  </ul>
18
  </h2>
19
  <div class="menu_containt_div" id="tabs-1">
60
  </table>
61
  </div>
62
  </div>
63
+
64
+ </div>
65
+ <?php include 'help.php'; ?>
66
+ </div>
67
+
68
+ <div class="menu_containt_div" id="tabs-2">
69
+ <div class="the_champ_left_column">
70
+ <div class="stuffbox">
71
+ <h3><label><?php _e('Horizontal interface options', 'Super-Socializer');?></label></h3>
72
+ <div class="inside">
73
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
74
+ <tr>
75
+ <th>
76
+ <img id="the_champ_sharing_icon_shape_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
77
+ <label><?php _e("Shape", 'Super-Socializer'); ?></label>
78
+ </th>
79
+ <td>
80
+ <?php
81
+ $sharingShape = isset($theChampSharingOptions['horizontal_sharing_shape']) ? $theChampSharingOptions['horizontal_sharing_shape'] : 'round';
82
+ $sharingSize = isset($theChampSharingOptions['horizontal_sharing_size']) ? $theChampSharingOptions['horizontal_sharing_size'] : 32;
83
+ ?>
84
+ <input id="the_champ_sharing_icon_round" onclick="tempHorShape = 'round';theChampSharingPreview('horizontal', document.getElementById('the_champ_sharing_icon_size').value, 'round')" name="the_champ_sharing[horizontal_sharing_shape]" type="radio" <?php echo $sharingShape == 'round' ? 'checked = "checked"' : '';?> value="round" />
85
+ <label for="the_champ_sharing_icon_round"><?php _e("Round", 'Super-Socializer'); ?></label><br/>
86
+ <input id="the_champ_sharing_icon_square" onclick="tempHorShape = 'square';theChampSharingPreview('horizontal', document.getElementById('the_champ_sharing_icon_size').value, 'square')" name="the_champ_sharing[horizontal_sharing_shape]" type="radio" <?php echo $sharingShape == 'square' ? 'checked = "checked"' : '';?> value="square" />
87
+ <label for="the_champ_sharing_icon_square"><?php _e("Square", 'Super-Socializer'); ?></label>
88
+ </td>
89
+ </tr>
90
+
91
+ <tr class="the_champ_help_content" id="the_champ_sharing_icon_shape_help_cont">
92
+ <td colspan="2">
93
+ <div>
94
+ <?php _e('Shape of the sharing icons', 'Super-Socializer') ?>
95
+ </div>
96
+ </td>
97
+ </tr>
98
+
99
+ <tr>
100
+ <th>
101
+ <img id="the_champ_sharing_icon_size_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
102
+ <label><?php _e("Size (in pixels)", 'Super-Socializer'); ?></label>
103
+ </th>
104
+ <td>
105
+ <input style="width:50px" id="the_champ_sharing_icon_size" onkeyup="theChampSharingSizeValidate(this)" name="the_champ_sharing[horizontal_sharing_size]" type="text" value="<?php echo $sharingSize; ?>" />
106
+ <input id="the_champ_sharing_size_plus" type="button" value="+" onmouseup="tempHorSize = document.getElementById('the_champ_sharing_icon_size').value;theChampSharingPreview('horizontal', tempHorSize, tempHorShape)" />
107
+ <input id="the_champ_sharing_size_minus" type="button" value="-" onmouseup="tempHorSize = document.getElementById('the_champ_sharing_icon_size').value;theChampSharingPreview('horizontal', tempHorSize, tempHorShape)" />
108
+ <script type="text/javascript">
109
+ var tempHorShape = '<?php echo $sharingShape ?>';
110
+ var tempHorSize = '<?php echo $sharingSize ?>';
111
+ theChampIncrement(document.getElementById('the_champ_sharing_size_plus'), "add", document.getElementById('the_champ_sharing_icon_size'), 300, 0.7);
112
+ theChampIncrement(document.getElementById('the_champ_sharing_size_minus'), "subtract", document.getElementById('the_champ_sharing_icon_size'), 300, 0.7);
113
+ </script>
114
+ </td>
115
+ </tr>
116
+
117
+ <tr class="the_champ_help_content" id="the_champ_sharing_icon_size_help_cont">
118
+ <td colspan="2">
119
+ <div>
120
+ <?php _e('Size of the sharing icons', 'Super-Socializer') ?>
121
+ </div>
122
+ </td>
123
+ </tr>
124
+
125
+ <tr>
126
+ <th>
127
+ <label style="float:left"><?php _e("Icon Preview", 'Super-Socializer'); ?></label>
128
+ </th>
129
+ <td>
130
+ <div id="the_champ_sharing_preview" style="background-color:#3C589A">
131
+ <div style="background:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCI+PC9wYXRoPjwvc3ZnPg==') no-repeat left;width:100%;height:100%;"></div>
132
+ </div>
133
+ <script type="text/javascript">
134
+ theChampSharingPreview('horizontal', <?php echo $sharingSize .', "'. $sharingShape . '"' ?>);
135
+ </script>
136
+ </td>
137
+ </tr>
138
+
139
+ <tr>
140
+ <td colspan="2">
141
+ <div id="the_champ_sharing_preview_message" style="color:green;display:none"><?php _e('Do not forget to save the configuration after making changes by clicking the save button below', 'Super-Socializer'); ?></div>
142
+ </td>
143
+ </tr>
144
+ </table>
145
+ </div>
146
+ </div>
147
 
148
+ <div class="stuffbox">
149
+ <h3><label><?php _e('Vertical interface options', 'Super-Socializer');?></label></h3>
150
+ <div class="inside">
151
+ <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
152
+ <tr>
153
+ <th>
154
+ <img id="the_champ_vertical_sharing_icon_shape_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
155
+ <label><?php _e("Shape", 'Super-Socializer'); ?></label>
156
+ </th>
157
+ <td>
158
+ <?php
159
+ $verticalSharingShape = isset($theChampSharingOptions['vertical_sharing_shape']) ? $theChampSharingOptions['vertical_sharing_shape'] : 'round';
160
+ $verticalSharingSize = isset($theChampSharingOptions['vertical_sharing_size']) ? $theChampSharingOptions['vertical_sharing_size'] : 32;
161
+ ?>
162
+ <input id="the_champ_vertical_sharing_icon_round" onclick="tempVerticalShape = 'round';theChampSharingPreview('vertical', document.getElementById('the_champ_vertical_sharing_icon_size').value, 'round')" name="the_champ_sharing[vertical_sharing_shape]" type="radio" <?php echo $verticalSharingShape == 'round' ? 'checked = "checked"' : '';?> value="round" />
163
+ <label for="the_champ_vertical_sharing_icon_round"><?php _e("Round", 'Super-Socializer'); ?></label><br/>
164
+ <input id="the_champ_vertical_sharing_icon_square" onclick="tempVerticalShape = 'square';theChampSharingPreview('vertical', document.getElementById('the_champ_vertical_sharing_icon_size').value, 'square')" name="the_champ_sharing[vertical_sharing_shape]" type="radio" <?php echo $verticalSharingShape == 'square' ? 'checked = "checked"' : '';?> value="square" />
165
+ <label for="the_champ_vertical_sharing_icon_square"><?php _e("Square", 'Super-Socializer'); ?></label>
166
+ </td>
167
+ </tr>
168
+
169
+ <tr class="the_champ_help_content" id="the_champ_vertical_sharing_icon_shape_help_cont">
170
+ <td colspan="2">
171
+ <div>
172
+ <?php _e('Shape of the sharing icons', 'Super-Socializer') ?>
173
+ </div>
174
+ </td>
175
+ </tr>
176
+
177
+ <tr>
178
+ <th>
179
+ <img id="the_champ_vertical_sharing_icon_size_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
180
+ <label><?php _e("Size (in pixels)", 'Super-Socializer'); ?></label>
181
+ </th>
182
+ <td>
183
+ <input style="width:50px" id="the_champ_vertical_sharing_icon_size" onkeyup="theChampSharingSizeValidate(this)" name="the_champ_sharing[vertical_sharing_size]" type="text" value="<?php echo $verticalSharingSize; ?>" />
184
+ <input id="the_champ_vertical_sharing_size_plus" type="button" value="+" onmouseup="tempVerticalSize = document.getElementById('the_champ_vertical_sharing_icon_size').value;theChampSharingPreview('vertical', tempVerticalSize, tempVerticalShape)" />
185
+ <input id="the_champ_vertical_sharing_size_minus" type="button" value="-" onmouseup="tempVerticalSize = document.getElementById('the_champ_vertical_sharing_icon_size').value;theChampSharingPreview('vertical', tempVerticalSize, tempVerticalShape)" />
186
+ <script type="text/javascript">
187
+ var tempVerticalShape = '<?php echo $verticalSharingShape ?>';
188
+ var tempVerticalSize = '<?php echo $verticalSharingSize ?>';
189
+ theChampIncrement(document.getElementById('the_champ_vertical_sharing_size_plus'), "add", document.getElementById('the_champ_vertical_sharing_icon_size'), 300, 0.7);
190
+ theChampIncrement(document.getElementById('the_champ_vertical_sharing_size_minus'), "subtract", document.getElementById('the_champ_vertical_sharing_icon_size'), 300, 0.7);
191
+ </script>
192
+ </td>
193
+ </tr>
194
+
195
+ <tr class="the_champ_help_content" id="the_champ_vertical_sharing_icon_size_help_cont">
196
+ <td colspan="2">
197
+ <div>
198
+ <?php _e('Size of the sharing icons', 'Super-Socializer') ?>
199
+ </div>
200
+ </td>
201
+ </tr>
202
+
203
+ <tr>
204
+ <th>
205
+ <label style="float:left"><?php _e("Icon Preview", 'Super-Socializer'); ?></label>
206
+ </th>
207
+ <td>
208
+ <div id="the_champ_vertical_sharing_preview" style="background-color:#3C589A">
209
+ <div style="background:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCI+PC9wYXRoPjwvc3ZnPg==') no-repeat left;width:100%;height:100%;"></div>
210
+ </div>
211
+ <script type="text/javascript">
212
+ theChampSharingPreview('vertical', <?php echo $verticalSharingSize .', "'. $verticalSharingShape . '"' ?>);
213
+ </script>
214
+ </td>
215
+ </tr>
216
+
217
+ <tr>
218
+ <td colspan="2">
219
+ <div id="the_champ_vertical_sharing_preview_message" style="color:green;display:none"><?php _e('Do not forget to save the configuration after making changes by clicking the save button below', 'Super-Socializer'); ?></div>
220
+ </td>
221
+ </tr>
222
+ </table>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ <?php include 'help.php'; ?>
227
+ </div>
228
+
229
+ <div class="menu_containt_div" id="tabs-3">
230
+ <div class="the_champ_left_column">
231
  <div class="stuffbox">
232
+ <h3><label><?php _e('Url shortener', 'Super-Socializer');?></label></h3>
233
  <div class="inside">
234
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
235
  <tr>
236
+ <th>
237
+ <img id="the_champ_surl_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
238
+ <label for="the_champ_surl_enable"><?php _e("Use shortlinks already installed", 'Super-Socializer'); ?></label>
239
+ </th>
240
+ <td>
241
+ <input id="the_champ_surl_enable" name="the_champ_sharing[use_shortlinks]" type="checkbox" <?php echo isset($theChampSharingOptions['use_shortlinks']) ? 'checked = "checked"' : '';?> value="1" />
242
+ </td>
243
+ </tr>
244
+
245
+ <tr class="the_champ_help_content" id="the_champ_surl_enable_help_cont">
246
  <td colspan="2">
247
  <div>
248
+ <?php _e('Allows for shortened URLs to be used when sharing content if a shortening plugin is installed', 'Super-Socializer') ?>
249
  </div>
 
250
  </td>
251
  </tr>
252
+
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  <tr>
254
  <th>
255
  <img id="the_champ_ss_bitly_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
510
  <ul id="the_champ_ss_rearrange">
511
  <?php
512
  if(isset($theChampSharingOptions['horizontal_re_providers'])){
513
+ $horSharingStyle = 'width:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;height:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;';
514
+ $horDeliciousRadius = '';
515
+ if($theChampSharingOptions['horizontal_sharing_shape'] == 'round'){
516
+ $horSharingStyle .= 'border-radius:999px;';
517
+ $horDeliciousRadius = 'border-radius:999px;';
518
+ }
519
+ ?>
520
+ <script>
521
+ var theChampHorSharingStyle = '<?php echo $horSharingStyle ?>', theChampHorDeliciousRadius = '<?php echo $horDeliciousRadius ?>';
522
+ </script>
523
+ <?php
524
  foreach($theChampSharingOptions['horizontal_re_providers'] as $rearrange){
525
  ?>
526
  <li title="<?php echo $rearrange ?>" id="the_champ_re_horizontal_<?php echo str_replace(' ', '_', $rearrange) ?>" >
527
+ <i style="display:block;<?php echo $horSharingStyle ?>" class="theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Background"><div class="theChampSharingSvg theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Svg" style="<?php echo $horDeliciousRadius ?>"></div></i>
528
  <input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="<?php echo $rearrange ?>">
529
  </li>
530
  <?php
655
  </div>
656
  </td>
657
  </tr>
658
+
659
+ <tr>
660
+ <th>
661
+ <img id="the_champ_ss_hmore_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
662
+ <label for="the_champ_ss_hmore"><?php _e("Enable 'More' icon", 'Super-Socializer'); ?></label>
663
+ </th>
664
+ <td>
665
+ <input id="the_champ_ss_hmore" name="the_champ_sharing[horizontal_more]" type="checkbox" <?php echo isset($theChampSharingOptions['horizontal_more']) ? 'checked = "checked"' : '';?> value="1" />
666
+ </td>
667
+ </tr>
668
+
669
+ <tr class="the_champ_help_content" id="the_champ_ss_hmore_help_cont">
670
+ <td colspan="2">
671
+ <div>
672
+ <?php _e('If enabled, "More" icon will be displayed after selected sharing icons which shows additional sharing networks in popup', 'Super-Socializer') ?>
673
+ </div>
674
+ </td>
675
+ </tr>
676
  </tbody>
677
  </table>
678
  </div>
835
  <ul id="the_champ_ss_vertical_rearrange">
836
  <?php
837
  if(isset($theChampSharingOptions['vertical_re_providers'])){
838
+ $verticalSharingStyle = 'width:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;height:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;';
839
+ $verticalDeliciousRadius = '';
840
+ if($theChampSharingOptions['vertical_sharing_shape'] == 'round'){
841
+ $verticalSharingStyle .= 'border-radius:999px;';
842
+ $verticalDeliciousRadius = 'border-radius:999px;';
843
+ }
844
+ ?>
845
+ <script>
846
+ var theChampVerticalSharingStyle = '<?php echo $verticalSharingStyle ?>', theChampVerticalDeliciousRadius = '<?php echo $verticalDeliciousRadius ?>';
847
+ </script>
848
+ <?php
849
  foreach($theChampSharingOptions['vertical_re_providers'] as $rearrange){
850
  ?>
851
  <li title="<?php echo $rearrange ?>" id="the_champ_re_vertical_<?php echo str_replace(' ', '_', $rearrange) ?>" >
852
+ <i style="display:block;<?php echo $verticalSharingStyle ?>" class="theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Background"><div class="theChampSharingSvg theChamp<?php echo ucfirst(str_replace(' ', '', $rearrange)) ?>Svg" style="<?php echo $verticalDeliciousRadius ?>"></div></i>
853
  <input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="<?php echo $rearrange ?>">
854
  </li>
855
  <?php
1024
  </div>
1025
  </td>
1026
  </tr>
1027
+
1028
+ <tr>
1029
+ <th>
1030
+ <img id="the_champ_ss_vmore_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1031
+ <label for="the_champ_ss_vmore"><?php _e("Enable 'More' icon", 'Super-Socializer'); ?></label>
1032
+ </th>
1033
+ <td>
1034
+ <input id="the_champ_ss_vmore" name="the_champ_sharing[vertical_more]" type="checkbox" <?php echo isset($theChampSharingOptions['vertical_more']) ? 'checked = "checked"' : '';?> value="1" />
1035
+ </td>
1036
+ </tr>
1037
+
1038
+ <tr class="the_champ_help_content" id="the_champ_ss_vmore_help_cont">
1039
+ <td colspan="2">
1040
+ <div>
1041
+ <?php _e('If enabled, "More" icon will be displayed after selected sharing icons which shows additional sharing networks in popup', 'Super-Socializer') ?>
1042
+ </div>
1043
+ </td>
1044
+ </tr>
1045
  </tbody>
1046
  </table>
1047
  </div>
1048
  </div>
1049
+ <script type="text/javascript">
1050
+ if(!Modernizr.svg){
1051
+ jQuery(function(){
1052
+ jQuery('#tabs-2').remove();
1053
+ jQuery('#the_champ_ss_rearrange i, #the_champ_ss_vertical_rearrange i').each(function(){
1054
+ var alt = theChampCapitaliseFirstLetter(jQuery(this).parent().attr('title').replace(" ", "").toLowerCase());
1055
+ jQuery(this).attr('class', 'theChampSharingButton theChampSharing' + alt + 'Button').attr('style', 'width:32px;height:32px').find('div').remove();
1056
+ });
1057
+ });
1058
+ }
1059
+ </script>
1060
  </div>
1061
  <?php include 'help.php'; ?>
1062
  </div>
1063
 
1064
+ <div class="menu_containt_div" id="tabs-4">
1065
  <div class="the_champ_left_column">
1066
  <div class="stuffbox">
1067
+ <h3><label><?php _e('Shortcode & Widget', 'Super-Socializer');?></label></h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  <div class="inside">
1069
+ <p><a href="//support.heateor.com/social-sharing-shortcode-and-widget/" target="_blank"><?php _e('Shortcode & Widget', 'Super-Socializer') ?></a></p>
1070
  </div>
1071
  </div>
1072
  </div>
1073
  <?php include 'help.php'; ?>
1074
  </div>
1075
 
1076
+ <div class="menu_containt_div" id="tabs-5">
1077
  <div class="the_champ_left_column">
1078
  <div class="stuffbox">
1079
  <h3><label><?php _e('Facebook Sharing Troubleshooter', 'Super-Socializer');?></label></h3>
1092
  <?php include 'help.php'; ?>
1093
  </div>
1094
 
1095
+ <div class="menu_containt_div" id="tabs-6">
1096
  <div class="the_champ_left_column">
1097
  <div class="stuffbox">
1098
+ <h3><label><?php _e('FAQ', 'Super-Socializer') ?></label></h3>
1099
  <div class="inside">
1100
+ <p><a href="//support.heateor.com/how-can-i-show-share-counts-of-my-website-rather-than-of-individual-pagepost/" target="_blank"><?php _e('How can I show share counts of my website rather than of individual pages/posts?', 'Super-Socializer') ?></a></p>
1101
+ <p><a href="//support.heateor.com/how-can-i-disable-social-sharing-on-particular-pagepost/" target="_blank"><?php _e('How can I disable sharing on particular page/post?', 'Super-Socializer') ?></a></p>
1102
+ <p><a href="//support.heateor.com/how-can-i-specify-minimum-sharing-count-for-sharing-networks/" target="_blank"><?php _e('How can I specify minimum sharing count for sharing networks?', 'Super-Socializer') ?></a></p>
 
 
1103
  </div>
1104
  </div>
1105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1106
  </div>
1107
  <?php include 'help.php'; ?>
1108
  </div>
css/admin.css CHANGED
@@ -1 +1 @@
1
- @charset "utf-8";#the_champ_sl_curl{color: #900}.clr{clear:both}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.theChampHorizontalSharingProviderContainer,.theChampVerticalSharingProviderContainer{width:165px;float:left}.the_champ_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.the_champ_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.the_champ_help_bubble{cursor:pointer;vertical-align:middle}#the_champ_ss_rearrange li,#the_champ_ss_vertical_rearrange li{cursor:move;float:left;display:block;margin:0 2px}#the_champ_ss_rearrange,#the_champ_ss_vertical_rearrange,#the_champ_sc_rearrange,#the_champ_sc_vertical_rearrange{margin:0} #the_champ_sc_rearrange li,#the_champ_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0} #the_champ_sc_vertical_rearrange label,#the_champ_sc_rearrange label{cursor: move} .the_champ_left_column{float:left;width:56%!important}.the_champ_right_column{float:left;width:37%;margin-left:10px}.the_champ_right_column td{display:block;width:120px!important;margin:0}.the_champ_clear{clear:both}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:351px}.theChampLoginButton{background:url(../images/login/login.png) no-repeat;cursor:pointer}.theChampFacebookButton{background-position:0 0;width:32px;height:32px}.theChampWordpressButton{background-position:0 -96px;width:32px;height:32px}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingButton{display:block;background:url(../images/sharing/sharing.png) no-repeat}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.theChampSharingXingButton{background-position:0px -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#the_champ_troubleshoot_notification{color:red}
1
+ @charset "utf-8";#the_champ_sl_curl{color:#900}.clr{clear:both}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.theChampHorizontalSharingProviderContainer,.theChampVerticalSharingProviderContainer{width:165px;float:left}.the_champ_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.the_champ_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.the_champ_help_bubble{cursor:pointer;vertical-align:middle}#the_champ_ss_rearrange li,#the_champ_ss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#the_champ_sc_rearrange,#the_champ_sc_vertical_rearrange,#the_champ_ss_rearrange,#the_champ_ss_vertical_rearrange{margin:0}#the_champ_sc_rearrange li,#the_champ_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#the_champ_sc_rearrange label,#the_champ_sc_vertical_rearrange label{cursor:move}.the_champ_left_column{float:left;width:56%!important}.the_champ_right_column{float:left;width:37%;margin-left:10px}.the_champ_right_column a:focus{outline:0!important;border:none!important}.the_champ_right_column td{display:block;width:120px!important;margin:0}.the_champ_clear{clear:both}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}input[type=text]{width:351px}.theChampLoginButton{background:url(../images/login/login.png) no-repeat;cursor:pointer}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px}.theChampFacebookButton{background-position:0 0;width:32px;height:32px}.theChampWordpressButton{background-position:0 -96px;width:32px;height:32px}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingButton{display:block;background:url(../images/sharing/sharing.png) no-repeat}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#the_champ_troubleshoot_notification{color:red}.theChampFacebookBackground{background-color:#3C589A}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#D51F1F}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampSharingSvg{width:100%;height:100%}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDkgNyBxIC00IDEgLTMgNSBoIDYgcSAxIC00IC0zIC01IHogTSA5IDEyIHYgOCBsIC0yIDAgbCAwIDIgbCA0IDAgbCAwIC0yIGwgLTIgMCBNIDE2IDYgbCA1IDAgbCAwIDUgbCAtNSAwIGwgMCAtNSBtIDAgNCBsIC0yLjUgMCBsIDAgNiBsIDIuNSAwIGwgMCA2LjUgbCAzIDAgbCAwIC03IGwgMCA3IGwgMyAwIGwgMCAtNi41IGwgMi41IDAgbCAwIC02IGwgLTIuNSAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDguMyA5IGggMTQgdiAxMiBoIC0xNCB2IC0xMS41IEwgMTYgMTYgTCAyMiA5IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT4NCjxjaXJjbGUgY3g9IjE1IiBjeT0iMTUiIHI9IjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgZmlsbD0ibm9uZSI+PC9jaXJjbGU+DQo8cGF0aCBkPSJNIDUgMTUgaCA1IE0gMTUgNSB2IDUgTSAyNSAxNSBoIC01IE0gMTUgMjUgdiAtNSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDE4IDYgaCAtNSBjIC0zIDEgLTMgNiAtMSA3LjUgYyA0IDEgMTEgMTAgMCAxMCBjIC01IDAgLTQgLTcgMi41IC02LjcgYyA0IC00IDQgLTkgLTEgLTEwLjggbSA1IDkuMiBoIDYgbSAtMyAzIHYgLTYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjgiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMTEgdiAxMSBtIDUgMCB2IC0xMSBtIDAgMyBxIDYgLTMgNyAwIHYgOCIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+DQo8Y2lyY2xlIGN4PSIyMCIgY3k9IjEwIiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+DQo8Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+DQo8cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDE0IDEwIGwgLTQgMTcgbSAxIC04IGMgNSA2IDE1IDIgMTMgLTYgYyAtMSAtNSAtNiAtMTAgLTEzIC03IGMgLTQgMiAtNiA4IC0zIDEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSI1IiB5PSIxNSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjciIHN0eWxlPSJmaWxsOiNmZmY7Ij48L3JlY3Q+DQo8cGF0aCBkPSJNIDggMjEgbCAxIDMgbCAxMiAwIGwgMSAtMyBNIDEwIDE1IHYgLTcgbSAxMCA3IHYgLTcgTSAxMiAxNSB2IC05IGggNSBsIDEgMSB2IDggbSAtNCAtMiBoIDQgbSAtMyAtMyBoIDMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPGNpcmNsZSBjeD0iMTkiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIyIiBjeT0iNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjciIGN5PSIxNCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIzIiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMjIgcSA1IDMgMTAgMCBNIDE1IDEyIGwgMSAtNiBsIDYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgMTYgYyAtMSA3IDggNyA2IC0yIGMgLTIgLTEwIDcgLTggNiAtMyBtIDAuNSA1IGMgLTEgNyA4IDcgNiAwIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDEwIHEgLTcgLTYgLTggMiBxIC00IDIgLTkgLTQgcSAtMSA1IDUgMTMgcSAtMyAzIC02IDIgYyAxMCA0IDE4IC0yIDE4IC0xMSBsIDMgLTMgeiIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIuNSA5IGggNC41IGwgNSA3IHYgLTcgaCA0LjUgdiA3IGwgNSAtNyBoIDUgbCAtNSA3IGwgNSA3IGggLTUgbCAtNSAtNyB2IDcgaCAtNC41IHEgLTIgMCAtNSAtNiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQoNCjxwYXRoIGlkPSJhcmMxIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgZD0iTSAxMS41Nzk3OTg1NjY3NDMzMTQgMjQuMzk2OTI2MjA3ODU5MDg1IEEgMTAgMTAgMCAxIDAgNi44MDg0Nzk1NTcxMTAwNzkgMjAuNzM1NzY0MzYzNTEwNDYiPjwvcGF0aD4NCjxwYXRoIGQ9Ik0gNyAxOSBsIC0xIDYgbCA2IC0xIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTAgMTAgcSAtMSA4IDggMTEgYyA1IC0xIDAgLTYgLTEgLTMgcSAtNCAtMyAtNSAtNSBjIDQgLTIgLTEgLTUgLTEgLTQiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}
css/front.css CHANGED
@@ -1,2 +1 @@
1
- @charset "utf-8";#the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img{cursor:pointer;margin:2px;display:none;float:left;border:none}#the_champ_loading_image{display:block!important;float:none}.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_sharing_more_providers{position:fixed;top:50%;left:47%;background:none repeat scroll 0 0 #FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow: none !important}#the_champ_popup_bg{background:url(../images/transparent_bg.png) repeat scroll 0 0 rgba(0,0,0,0);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_sharing_more_providers .title{font-size: 14px !important;height: auto !important;background:none repeat scroll 0 0 #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%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:none repeat scroll 0 0 #FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width: 100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px !important;overflow:hidden;list-style:none outside none;padding-left:0 !important;position: static !important;width: auto !important}#the_champ_sharing_more_content .all-services ul li{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;float:left;width:33.3333%; text-align: left !important}#the_champ_sharing_more_providers .close-button.separated{background:transparent!important;border:none!important;box-shadow:none!important; width: auto !important; height: auto !important;z-index: 1000}#the_champ_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}#the_champ_sharing_more_providers .filter input.search{width: 92%;border: 1px solid #ccc;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:none repeat scroll 0 0 #FFF!important;font-size:16px!important;text-align:left!important}#the_champ_sharing_more_providers .footer-panel{background:none repeat scroll 0 0 #58B8F8;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_sharing_more_providers .footer-panel p{background-color: transparent;top:0px;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}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700; text-indent: 0 !important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:14px;height:auto;line-height:20px;overflow:hidden;padding:8px;text-decoration:none !important;text-overflow:ellipsis;white-space:nowrap;border:none!important; text-indent: 0 !important; background: none !important;text-shadow: none}.the_champ_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;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important}#the_champ_comment_toggle{margin-bottom:10px}.the_champ_sharing_service{display:block;background:url(../images/sharing/more_sprite.png) no-repeat;margin-right:3px;float:left}.the_champ_sharing_service_amazon{background-position:0 0;width:20px;height:20px}.the_champ_sharing_service_aol{background-position:-20px 0;width:20px;height:20px}.the_champ_sharing_service_arto{background-position:-40px 0;width:20px;height:20px}.the_champ_sharing_service_bebo{background-position:-60px 0;width:20px;height:20px}.the_champ_sharing_service_bitly{background-position:-80px 0;width:20px;height:20px}.the_champ_sharing_service_blogger{background-position:-100px 0;width:20px;height:20px}.the_champ_sharing_service_box{background-position:-120px 0;width:20px;height:20px}.the_champ_sharing_service_boxee{background-position:0 -20px;width:20px;height:20px}.the_champ_sharing_service_buffer{background-position:-20px -20px;width:20px;height:20px}.the_champ_sharing_service_buzzster{background-position:-40px -20px;width:20px;height:20px}.the_champ_sharing_service_delicious{background-position:-60px -20px;width:20px;height:20px}.the_champ_sharing_service_digg{background-position:-80px -20px;width:20px;height:20px}.the_champ_sharing_service_diigo{background-position:-100px -20px;width:20px;height:20px}.the_champ_sharing_service_diigolet{background-position:-120px -20px;width:20px;height:20px}.the_champ_sharing_service_email{background-position:0 -40px;width:20px;height:20px}.the_champ_sharing_service_evernote{background-position:-20px -40px;width:20px;height:20px}.the_champ_sharing_service_facebook{background-position:-40px -40px;width:20px;height:20px}.the_champ_sharing_service_fancy{background-position:-60px -40px;width:20px;height:20px}.the_champ_sharing_service_fark{background-position:-80px -40px;width:20px;height:20px}.the_champ_sharing_service_flipboard{background-position:-100px -40px;width:20px;height:20px}.the_champ_sharing_service_google{background-position:-120px -40px;width:20px;height:20px}.the_champ_sharing_service_google-apps{background-position:0 -60px;width:20px;height:20px}.the_champ_sharing_service_google-bookmark{background-position:-20px -60px;width:20px;height:20px}.the_champ_sharing_service_google-mail{background-position:-40px -60px;width:20px;height:20px}.the_champ_sharing_service_heart{background-position:-60px -60px;width:20px;height:20px}.the_champ_sharing_service_hootsuite{background-position:-80px -60px;width:20px;height:20px}.the_champ_sharing_service_hotmail{background-position:-100px -60px;width:20px;height:20px}.the_champ_sharing_service_identica{background-position:-120px -60px;width:20px;height:20px}.the_champ_sharing_service_inbound{background-position:0 -80px;width:20px;height:20px}.the_champ_sharing_service_instapaper{background-position:-20px -80px;width:20px;height:20px}.the_champ_sharing_service_izeby{background-position:-40px -80px;width:20px;height:20px}.the_champ_sharing_service_kaboodle{background-position:-60px -80px;width:20px;height:20px}.the_champ_sharing_service_linkedin{background-position:-80px -80px;width:20px;height:20px}.the_champ_sharing_service_mister-wong{background-position:-100px -80px;width:20px;height:20px}.the_champ_sharing_service_msdn{background-position:-120px -80px;width:20px;height:20px}.the_champ_sharing_service_ning{background-position:0 -100px;width:20px;height:20px}.the_champ_sharing_service_orkut{background-position:-20px -100px;width:20px;height:20px}.the_champ_sharing_service_pinboard{background-position:-40px -100px;width:20px;height:20px}.the_champ_sharing_service_pinterest{background-position:-60px -100px;width:20px;height:20px}.the_champ_sharing_service_plurk{background-position:-80px -100px;width:20px;height:20px}.the_champ_sharing_service_pocket{background-position:-100px -100px;width:20px;height:20px}.the_champ_sharing_service_print-friendly{background-position:-120px -100px;width:20px;height:20px}.the_champ_sharing_service_quora{background-position:0 -120px;width:20px;height:20px}.the_champ_sharing_service_read-later{background-position:-20px -120px;width:20px;height:20px}.the_champ_sharing_service_reddit{background-position:-40px -120px;width:20px;height:20px}.the_champ_sharing_service_soup{background-position:-60px -120px;width:20px;height:20px}.the_champ_sharing_service_springpad{background-position:-80px -120px;width:20px;height:20px}.the_champ_sharing_service_stumbleupon{background-position:-100px -120px;width:20px;height:20px}.the_champ_sharing_service_stumpedia{background-position:-120px -120px;width:20px;height:20px}.the_champ_sharing_service_techmeme{background-position:0 -140px;width:20px;height:20px}.the_champ_sharing_service_tinyurl{background-position:-20px -140px;width:20px;height:20px}.the_champ_sharing_service_tumblr{background-position:-40px -140px;width:20px;height:20px}.the_champ_sharing_service_twitter{background-position:-60px -140px;width:20px;height:20px}.the_champ_sharing_service_typepad{background-position:-80px -140px;width:20px;height:20px}.the_champ_sharing_service_viadeo{background-position:-100px -140px;width:20px;height:20px}.the_champ_sharing_service_vkontakte{background-position:-120px -140px;width:20px;height:20px}.the_champ_sharing_service_wanelo{background-position:0 -160px;width:20px;height:20px}.the_champ_sharing_service_windows-live{background-position:-20px -160px;width:20px;height:20px}.the_champ_sharing_service_wordpress{background-position:-40px -160px;width:20px;height:20px}.the_champ_sharing_service_yahoo{background-position:-60px -160px;width:20px;height:20px}.the_champ_sharing_service_yammer{background-position:-80px -160px;width:20px;height:20px}.the_champ_sharing_service_yc-hacker{background-position:-100px -160px;width:20px;height:20px}ul.the_champ_login_ul{list-style:none outside none!important;margin:3px 0!important;padding-left:0!important}ul.the_champ_login_ul li{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style:none!important}.theChampLoginButton{display:block;background:url(../images/login/login.png) no-repeat;margin:2px;float:left;cursor:pointer;border:none}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul{list-style:none outside none!important;margin:1px 0!important;padding-left:0!important}#the_champ_sharing_popup_close img{background:transparent!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.the_champ_sharing_ul li{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before{content: none !important}.theChampSharingButton{display:block;background:url(../images/sharing/sharing.png) no-repeat;margin:2px;float:left;cursor:pointer;border:none}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0px -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_sharing{background:transparent;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);-moz-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;width:35px;opacity:1;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important;} .the_champ_vertical_counter{background:transparent;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);-moz-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;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important} .the_champ_vertical_counter li{clear:both} li.the_champ_facebook_recommend .fb-like span, li.the_champ_facebook_like .fb-like span{vertical-align: top !important;} li.the_champ_facebook_recommend .fb-like span iframe,li.the_champ_facebook_like .fb-like span iframe{max-width:none !important;z-index:1000 !important} li.the_champ_facebook_like{width: 89px} li.the_champ_facebook_recommend{width: 135px;} li.the_champ_twitter_tweet{width: 95px;} li.the_champ_linkedin_share{width: 117px;} li.the_champ_google_plusone{width: 74px;} li.the_champ_reddit{width: 130px;} li.the_champ_gp_share{width: 95px;} li.the_champ_pinterest_pin{width: 76px;}li.the_champ_xing{width: 98px;}.the_champ_stumble{width: 80px} .the_champ_counter_container li{ height: 21px} input#user_login, input#user_pass{ height: auto !important }
2
- @media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow: none !important}#the_champ_sharing_more_providers .filter input.search{border: 1px solid #ccc;width: 92%}.the_champ_vertical_sharing, .the_champ_vertical_counter{display:none}}
1
+ @charset "utf-8";#the_champ_error{color:red;margin:7px 0}.the_champ_login_container{margin:2px 0}.the_champ_login_container img{cursor:pointer;margin:2px;display:none;float:left;border:none}#the_champ_loading_image{display:block!important;float:none}.the_champ_sharing_container img{cursor:pointer;margin:2px;border:none}.the_champ_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#the_champ_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}#the_champ_popup_bg{background:url(../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#the_champ_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%}#the_champ_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#the_champ_sharing_more_providers #the_champ_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#the_champ_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#the_champ_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#the_champ_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#the_champ_sharing_more_content .all-services ul li{background:none!important;float:left;width:33.3333%;text-align:left!important}#the_champ_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}#the_champ_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}#the_champ_sharing_more_providers .filter input.search{width:92%;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}#the_champ_sharing_more_providers .footer-panel{background:#58B8F8;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#the_champ_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}#the_champ_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#the_champ_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:14px;height:auto;line-height:20px;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}.the_champ_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;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important}#the_champ_comment_toggle{margin-bottom:10px}.the_champ_sharing_service{display:block;background:url(../images/sharing/more_sprite.png) no-repeat;margin-right:3px;float:left}.the_champ_sharing_service_amazon{background-position:0 0;width:20px;height:20px}.the_champ_sharing_service_aol{background-position:-20px 0;width:20px;height:20px}.the_champ_sharing_service_arto{background-position:-40px 0;width:20px;height:20px}.the_champ_sharing_service_bebo{background-position:-60px 0;width:20px;height:20px}.the_champ_sharing_service_bitly{background-position:-80px 0;width:20px;height:20px}.the_champ_sharing_service_blogger{background-position:-100px 0;width:20px;height:20px}.the_champ_sharing_service_box{background-position:-120px 0;width:20px;height:20px}.the_champ_sharing_service_boxee{background-position:0 -20px;width:20px;height:20px}.the_champ_sharing_service_buffer{background-position:-20px -20px;width:20px;height:20px}.the_champ_sharing_service_buzzster{background-position:-40px -20px;width:20px;height:20px}.the_champ_sharing_service_delicious{background-position:-60px -20px;width:20px;height:20px}.the_champ_sharing_service_digg{background-position:-80px -20px;width:20px;height:20px}.the_champ_sharing_service_diigo{background-position:-100px -20px;width:20px;height:20px}.the_champ_sharing_service_diigolet{background-position:-120px -20px;width:20px;height:20px}.the_champ_sharing_service_email{background-position:0 -40px;width:20px;height:20px}.the_champ_sharing_service_evernote{background-position:-20px -40px;width:20px;height:20px}.the_champ_sharing_service_facebook{background-position:-40px -40px;width:20px;height:20px}.the_champ_sharing_service_fancy{background-position:-60px -40px;width:20px;height:20px}.the_champ_sharing_service_fark{background-position:-80px -40px;width:20px;height:20px}.the_champ_sharing_service_flipboard{background-position:-100px -40px;width:20px;height:20px}.the_champ_sharing_service_google{background-position:-120px -40px;width:20px;height:20px}.the_champ_sharing_service_google-apps{background-position:0 -60px;width:20px;height:20px}.the_champ_sharing_service_google-bookmark{background-position:-20px -60px;width:20px;height:20px}.the_champ_sharing_service_google-mail{background-position:-40px -60px;width:20px;height:20px}.the_champ_sharing_service_heart{background-position:-60px -60px;width:20px;height:20px}.the_champ_sharing_service_hootsuite{background-position:-80px -60px;width:20px;height:20px}.the_champ_sharing_service_hotmail{background-position:-100px -60px;width:20px;height:20px}.the_champ_sharing_service_identica{background-position:-120px -60px;width:20px;height:20px}.the_champ_sharing_service_inbound{background-position:0 -80px;width:20px;height:20px}.the_champ_sharing_service_instapaper{background-position:-20px -80px;width:20px;height:20px}.the_champ_sharing_service_izeby{background-position:-40px -80px;width:20px;height:20px}.the_champ_sharing_service_kaboodle{background-position:-60px -80px;width:20px;height:20px}.the_champ_sharing_service_linkedin{background-position:-80px -80px;width:20px;height:20px}.the_champ_sharing_service_mister-wong{background-position:-100px -80px;width:20px;height:20px}.the_champ_sharing_service_msdn{background-position:-120px -80px;width:20px;height:20px}.the_champ_sharing_service_ning{background-position:0 -100px;width:20px;height:20px}.the_champ_sharing_service_orkut{background-position:-20px -100px;width:20px;height:20px}.the_champ_sharing_service_pinboard{background-position:-40px -100px;width:20px;height:20px}.the_champ_sharing_service_pinterest{background-position:-60px -100px;width:20px;height:20px}.the_champ_sharing_service_plurk{background-position:-80px -100px;width:20px;height:20px}.the_champ_sharing_service_pocket{background-position:-100px -100px;width:20px;height:20px}.the_champ_sharing_service_print-friendly{background-position:-120px -100px;width:20px;height:20px}.the_champ_sharing_service_quora{background-position:0 -120px;width:20px;height:20px}.the_champ_sharing_service_read-later{background-position:-20px -120px;width:20px;height:20px}.the_champ_sharing_service_reddit{background-position:-40px -120px;width:20px;height:20px}.the_champ_sharing_service_soup{background-position:-60px -120px;width:20px;height:20px}.the_champ_sharing_service_springpad{background-position:-80px -120px;width:20px;height:20px}.the_champ_sharing_service_stumbleupon{background-position:-100px -120px;width:20px;height:20px}.the_champ_sharing_service_stumpedia{background-position:-120px -120px;width:20px;height:20px}.the_champ_sharing_service_techmeme{background-position:0 -140px;width:20px;height:20px}.the_champ_sharing_service_tinyurl{background-position:-20px -140px;width:20px;height:20px}.the_champ_sharing_service_tumblr{background-position:-40px -140px;width:20px;height:20px}.the_champ_sharing_service_twitter{background-position:-60px -140px;width:20px;height:20px}.the_champ_sharing_service_typepad{background-position:-80px -140px;width:20px;height:20px}.the_champ_sharing_service_viadeo{background-position:-100px -140px;width:20px;height:20px}.the_champ_sharing_service_vkontakte{background-position:-120px -140px;width:20px;height:20px}.the_champ_sharing_service_wanelo{background-position:0 -160px;width:20px;height:20px}.the_champ_sharing_service_windows-live{background-position:-20px -160px;width:20px;height:20px}.the_champ_sharing_service_wordpress{background-position:-40px -160px;width:20px;height:20px}.the_champ_sharing_service_yahoo{background-position:-60px -160px;width:20px;height:20px}.the_champ_sharing_service_yammer{background-position:-80px -160px;width:20px;height:20px}.the_champ_sharing_service_yc-hacker{background-position:-100px -160px;width:20px;height:20px}ul.the_champ_login_ul{list-style:none!important;margin:3px 0!important;padding-left:0!important}ul.the_champ_login_ul li{background:none!important;float:left;padding:0!important;margin:0!important;border:0!important;width:auto!important;clear:none!important;list-style:none!important}.theChampLoginSvg{width:100%;height:100%}.theChampInstagramSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSI2IiBmaWxsPSIjZmZmIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMiAxNSB2IDEzIGggMjYgdiAtMTMgaCAtNCBjIC0zIDEyIC0xNSAxMiAtMTggMCB6IG0gMiAtMTMgdiA1IG0gMiAtNSB2IDUgbSAyIC01IHYgNCBtIC02IDYgdiAtMTAgaCAyNiB2IDEwIGggLTQgYyAtNCAtOC41IC0xNCAtOC41IC0xOCAwIHoiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+PHJlY3Qgd2lkdGg9IjUiIGhlaWdodD0iNSIgZmlsbD0iI2ZmZiIgeD0iMjMiIHk9IjIiPjwvcmVjdD4NCjwvc3ZnPg==) left no-repeat}.theChampLoginButton{background:url(../images/login/login.png) no-repeat}.theChampLogin{margin:2px;height:35px;width:35px;float:left;cursor:pointer;border:none}.theChampInstagramLogin,.theChampTwitterLogin,.theChampXingLogin{display:block}.theChampFacebookLogin,.theChampGoogleLogin,.theChampLinkedinLogin,.theChampVkontakteLogin{display:none}.theChampXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.theChampFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.theChampLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.theChampGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.theChampInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.theChampLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.theChampTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.theChampVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.the_champ_sharing_ul{list-style:none!important;margin:1px 0!important;padding-left:0!important}#the_champ_sharing_popup_close img{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.the_champ_sharing_ul li.theChampSharingRound{background:none!important}.the_champ_square_count{display:none;font-size:.54em;color:#fff;text-align:center;font-weight:bolder;font-family:sans-serif;line-height:1.8em}ul.the_champ_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}ul.the_champ_login_ul li:before,ul.the_champ_sharing_ul li:before{content:none!important}.theChampSharingButton{display:block;background:url(../images/sharing/sharing.png) no-repeat;margin:2px;float:left;cursor:pointer;border:none}.theChampSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.theChampSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.theChampSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.theChampSharingXingButton{background-position:0 -128px;width:32px;height:32px}.theChampSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}.theChampSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.theChampSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.theChampSharingGoogleButton{background-position:-32px -32px;width:32px;height:32px}.theChampSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.theChampSharingMoreButton{background-position:-96px -32px;width:32px;height:32px}.theChampSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.theChampSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.theChampSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.theChampSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.theChampSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.theChampSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.theChampSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.theChampSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.the_champ_vertical_counter,.the_champ_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);-moz-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;-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important}.the_champ_vertical_counter li{clear:both}li.the_champ_facebook_like .fb-like span,li.the_champ_facebook_recommend .fb-like span{vertical-align:top!important}li.the_champ_facebook_like .fb-like span iframe,li.the_champ_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000!important}li.the_champ_facebook_like{width:89px}li.the_champ_facebook_recommend{width:135px}li.the_champ_twitter_tweet{width:95px}li.the_champ_linkedin_share{width:117px}li.the_champ_google_plusone{width:74px}li.the_champ_reddit{width:130px}li.the_champ_gp_share{width:95px}li.the_champ_pinterest_pin{width:76px}li.the_champ_xing{width:98px}.the_champ_stumble{width:80px}.the_champ_counter_container li{height:21px}input#user_login,input#user_pass{height:auto!important}.theChampHorizontalSharingButton,.theChampVerticalSharingButton{display:block}.theChampDeliciousSquareBackground{background-color:#474749}.theChampInstagramBackground{background-color:#624E47}.theChampFacebookBackground{background-color:#3C589A}.theChampDiggBackground{background-color:#006094}.theChampEmailBackground{background-color:#649A3F}.theChampFloatitBackground{background-color:#53BEEE}.theChampGoogleBackground{background-color:#D51F1F}.theChampLinkedinBackground{background-color:#2886EF}.theChampMoreBackground{background-color:#EE8E2D}.theChampPinterestBackground{background-color:#CC2329}.theChampPrintBackground{background-color:#FD6500}.theChampRedditBackground{background-color:#247CED}.theChampStumbleuponBackground{background-color:#EA4823}.theChampTumblrBackground{background-color:#29435D}.theChampTwitterBackground{background-color:#14B2C8}.theChampVkontakteBackground{background-color:#5E84AC}.theChampYahooBackground{background-color:#8F03CC}.theChampXingBackground{background-color:#00797D}.theChampWhatsappBackground{background-color:#55EB4C}.theChampSharingSvg{width:100%;height:100%}.theChampFacebookSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMTQgMjUgdiAtMTMgUSAxMyA2IDIxIDcuNSBNIDEwIDE0IEwgMjAgMTQiIHN0cm9rZS13aWR0aD0iNCIgZmlsbD0ibm9uZSI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampDeliciousSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHN0eWxlPSJmaWxsOiNlZWU7IiAvPg0KPHJlY3QgeD0iMTUiIHk9IjAiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgc3R5bGU9ImZpbGw6IzMxNzNEMDsiIC8+DQo8cmVjdCB4PSIwIiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojMDAwOyIgLz4NCjxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjE1IiBoZWlnaHQ9IjE1IiBzdHlsZT0iZmlsbDojQkRCREJEOyIgLz4NCjwvc3ZnPg==) left no-repeat}.theChampDiggSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDkgNyBxIC00IDEgLTMgNSBoIDYgcSAxIC00IC0zIC01IHogTSA5IDEyIHYgOCBsIC0yIDAgbCAwIDIgbCA0IDAgbCAwIC0yIGwgLTIgMCBNIDE2IDYgbCA1IDAgbCAwIDUgbCAtNSAwIGwgMCAtNSBtIDAgNCBsIC0yLjUgMCBsIDAgNiBsIDIuNSAwIGwgMCA2LjUgbCAzIDAgbCAwIC03IGwgMCA3IGwgMyAwIGwgMCAtNi41IGwgMi41IDAgbCAwIC02IGwgLTIuNSAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampEmailSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDguMyA5IGggMTQgdiAxMiBoIC0xNCB2IC0xMS41IEwgMTYgMTYgTCAyMiA5IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampFloatitSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxMCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIj48L2NpcmNsZT4NCjxjaXJjbGUgY3g9IjE1IiBjeT0iMTUiIHI9IjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgZmlsbD0ibm9uZSI+PC9jaXJjbGU+DQo8cGF0aCBkPSJNIDUgMTUgaCA1IE0gMTUgNSB2IDUgTSAyNSAxNSBoIC01IE0gMTUgMjUgdiAtNSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampGoogleSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDE4IDYgaCAtNSBjIC0zIDEgLTMgNiAtMSA3LjUgYyA0IDEgMTEgMTAgMCAxMCBjIC01IDAgLTQgLTcgMi41IC02LjcgYyA0IC00IDQgLTkgLTEgLTEwLjggbSA1IDkuMiBoIDYgbSAtMyAzIHYgLTYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampLinkedinSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjgiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMTEgdiAxMSBtIDUgMCB2IC0xMSBtIDAgMyBxIDYgLTMgNyAwIHYgOCIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampMoreSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8Y2lyY2xlIGN4PSIxMCIgY3k9IjE1IiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+DQo8Y2lyY2xlIGN4PSIyMCIgY3k9IjEwIiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+DQo8Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIzIiBmaWxsPSJ3aGl0ZSI+PC9jaXJjbGU+DQo8cGF0aCBkPSJNIDEwIDE1IEwgMjAgMTAgbSAwIDEwIEwgMTAgMTUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampPinterestSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDE0IDEwIGwgLTQgMTcgbSAxIC04IGMgNSA2IDE1IDIgMTMgLTYgYyAtMSAtNSAtNiAtMTAgLTEzIC03IGMgLTQgMiAtNiA4IC0zIDEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampPrintSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cmVjdCB4PSI1IiB5PSIxNSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjciIHN0eWxlPSJmaWxsOiNmZmY7Ij48L3JlY3Q+DQo8cGF0aCBkPSJNIDggMjEgbCAxIDMgbCAxMiAwIGwgMSAtMyBNIDEwIDE1IHYgLTcgbSAxMCA3IHYgLTcgTSAxMiAxNSB2IC05IGggNSBsIDEgMSB2IDggbSAtNCAtMiBoIDQgbSAtMyAtMyBoIDMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampRedditSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8ZWxsaXBzZSBjeD0iMTUiIGN5PSIxOSIgcng9IjkiIHJ5PSI3IiBzdHlsZT0ic3Ryb2tlOndoaXRlO3N0cm9rZS13aWR0aDoyIiBmaWxsPSJub25lIj48L2VsbGlwc2U+PGNpcmNsZSBjeD0iMTEiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPg0KPGNpcmNsZSBjeD0iMTkiIGN5PSIxNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIyIiBjeT0iNyIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjciIGN5PSIxNCIgcj0iMiIgZmlsbD0id2hpdGUiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjIzIiBjeT0iMTQiIHI9IjIiIGZpbGw9IndoaXRlIj48L2NpcmNsZT4NCjxwYXRoIGQ9Ik0gMTAgMjIgcSA1IDMgMTAgMCBNIDE1IDEyIGwgMSAtNiBsIDYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampStumbleuponSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgMTYgYyAtMSA3IDggNyA2IC0yIGMgLTIgLTEwIDcgLTggNiAtMyBtIDAuNSA1IGMgLTEgNyA4IDcgNiAwIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampTumblrSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDE0IDcgdiAxNCBxIDMgMiA2IDAgTSAxNCA3LjUgcSAwIDUuNSAtNCA1LjUgaCA5IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZT0iI2ZmZiIgZmlsbD0ibm9uZSI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampTwitterSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDEwIHEgLTcgLTYgLTggMiBxIC00IDIgLTkgLTQgcSAtMSA1IDUgMTMgcSAtMyAzIC02IDIgYyAxMCA0IDE4IC0yIDE4IC0xMSBsIDMgLTMgeiIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSIjZmZmIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampVkontakteSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIuNSA5IGggNC41IGwgNSA3IHYgLTcgaCA0LjUgdiA3IGwgNSAtNyBoIDUgbCAtNSA3IGwgNSA3IGggLTUgbCAtNSAtNyB2IDcgaCAtNC41IHEgLTIgMCAtNSAtNiB6IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampYahooSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDggMTAgbCA3IDcgbCA1IC01IG0gLTQuNyA1IHYgMyBoIC0wLjUgdiAtMyBtIDggLTQgdiA1IG0gMCAxIHYgMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNmZmYiIGZpbGw9Im5vbmUiPjwvcGF0aD48cGF0aCBkPSJNIDYgMTAgaCA2IG0gNSAyIGggNiBtIC0xMSA5LjUgaCA2IiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIj48L3BhdGg+DQo8L3N2Zz4=) left no-repeat}.theChampXingSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDYgOSBoIDUgbCA0IDQgbCAtNSA3IGggLTUgbCA1IC03IHogbSAxNSAtNCBoIDUgbCAtOSAxMyBsIDQgOCBoIC01IGwgLTQgLTggeiIgZmlsbD0iI2ZmZiI+PC9wYXRoPg0KPC9zdmc+) left no-repeat}.theChampWhatsappSvg{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQoNCjxwYXRoIGlkPSJhcmMxIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgZD0iTSAxMS41Nzk3OTg1NjY3NDMzMTQgMjQuMzk2OTI2MjA3ODU5MDg1IEEgMTAgMTAgMCAxIDAgNi44MDg0Nzk1NTcxMTAwNzkgMjAuNzM1NzY0MzYzNTEwNDYiPjwvcGF0aD4NCjxwYXRoIGQ9Ik0gNyAxOSBsIC0xIDYgbCA2IC0xIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTAgMTAgcSAtMSA4IDggMTEgYyA1IC0xIDAgLTYgLTEgLTMgcSAtNCAtMyAtNSAtNSBjIDQgLTIgLTEgLTUgLTEgLTQiIGZpbGw9IiNmZmYiPjwvcGF0aD4NCjwvc3ZnPg==) left no-repeat}.theChampSharing{display:block;margin:2px;float:left;cursor:pointer;border:none}.theChampSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.theChampPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.theChampPushInPng{background:url(../images/sharing/pushin.png) left no-repeat}.theChampPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.theChampPullOutPng{background:url(../images/sharing/pullout.png) left no-repeat}.theChampCommentingTabs li{float:left;margin:0 1em 0 0;list-style:none;color:#ccc;display:block;cursor:pointer;font-size:.85em}.theChampCommentingTabs ul{float:left;padding-left:0;margin-left:0}li.theChampSelectedTab{color:#333;border-bottom:2px solid #23a9e1}@media screen and (max-width:783px){#the_champ_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#the_champ_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
 
css/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
helper.php CHANGED
@@ -74,14 +74,14 @@ function the_champ_social_sharing_page(){
74
  }
75
 
76
  /**
77
- * Social Counter page of plugin in WP admin.
78
  */
79
- function the_champ_social_counter_page(){
80
  // social counter options
81
  global $theChampCounterOptions, $theChampIsBpActive;
82
  // message on saving options
83
  echo the_champ_settings_saved_notification();
84
- require 'admin/social_counter.php';
85
  }
86
 
87
  /**
@@ -149,6 +149,7 @@ function the_champ_fb_sdk_script(){
149
  */
150
  function the_champ_admin_sharing_scripts(){
151
  wp_enqueue_script('the_champ_sharing', plugins_url('js/admin/sharing/admin.js', __FILE__), array('jquery', 'jquery-ui-sortable'), THE_CHAMP_SS_VERSION);
 
152
  }
153
 
154
  /**
@@ -235,6 +236,18 @@ function the_champ_social_counter_enabled(){
235
  }
236
  }
237
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  /**
239
  * Check if Horizontal Social Sharing is enabled.
240
  */
@@ -300,7 +313,19 @@ function the_champ_social_login_provider_enabled($provider){
300
  */
301
  function the_champ_facebook_commenting_enabled(){
302
  global $theChampFacebookOptions;
303
- if(isset($theChampFacebookOptions['enable_fbcomments']) && $theChampFacebookOptions['enable_fbcomments'] == 1){
 
 
 
 
 
 
 
 
 
 
 
 
304
  return true;
305
  }else{
306
  return false;
@@ -397,6 +422,7 @@ function the_champ_account_linking(){
397
  $userVerified = false;
398
  $ajaxUrl = 'admin-ajax.php';
399
  $notification = '';
 
400
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
401
  }
402
  // linking functions
@@ -506,7 +532,7 @@ function the_champ_account_linking(){
506
  $html .= 'id="theChamp'. ucfirst($provider) .'Button" ';
507
  }
508
  // class
509
- $html .= 'class="theChamp'. ucfirst($provider) .'Button theChampLoginButton" ';
510
  $html .= 'alt="Login with ';
511
  $html .= ucfirst($provider);
512
  $html .= '" title="Login with ';
@@ -520,7 +546,7 @@ function the_champ_account_linking(){
520
  }else{
521
  $html .= '" onclick="theChampInitiateLogin(this)" >';
522
  }
523
- $html .= '</i></li>';
524
  }
525
  $html .= '</ul></div>';
526
  echo $html;
@@ -589,15 +615,17 @@ add_action('wp_ajax_the_champ_unlink', 'the_champ_unlink');
589
 
590
  function the_champ_add_linking_tab() {
591
  global $bp, $user_ID;
592
- bp_core_new_subnav_item( array(
593
- 'name' => 'Social Account Linking',
594
- 'slug' => 'account-linking',
595
- 'parent_url' => trailingslashit( bp_loggedin_user_domain() . 'profile' ),
596
- 'parent_slug' => 'profile',
597
- 'screen_function' => 'the_champ_bp_linking',
598
- 'position' => 50
599
- )
600
- );
 
 
601
  }
602
 
603
  // show social account linking when 'Social Account Linking' tab is clicked
@@ -643,17 +671,17 @@ function the_champ_sharing_meta_setup(){
643
  <br/>
644
  <label for="the_champ_counter">
645
  <input type="checkbox" name="_the_champ_meta[counter]" id="the_champ_counter" value="1" <?php checked('1', @$sharingMeta['counter']); ?> />
646
- <?php _e('Disable Horizontal Social Counter on this '.$postType, 'Super-Socializer') ?>
647
  </label>
648
  <br/>
649
  <label for="the_champ_vertical_counter">
650
  <input type="checkbox" name="_the_champ_meta[vertical_counter]" id="the_champ_vertical_counter" value="1" <?php checked('1', @$sharingMeta['vertical_counter']); ?> />
651
- <?php _e('Disable Vertical Social Counter on this '.$postType, 'Super-Socializer') ?>
652
  </label>
653
  <br/>
654
  <label for="the_champ_fb_comments">
655
  <input type="checkbox" name="_the_champ_meta[fb_comments]" id="the_champ_fb_comments" value="1" <?php checked('1', @$sharingMeta['fb_comments']); ?> />
656
- <?php _e('Disable Facebook Comments on this '.$postType, 'Super-Socializer') ?>
657
  </label>
658
  <?php
659
  if(the_champ_social_sharing_enabled()){
74
  }
75
 
76
  /**
77
+ * Like buttons page of plugin in WP admin.
78
  */
79
+ function the_champ_like_buttons_page(){
80
  // social counter options
81
  global $theChampCounterOptions, $theChampIsBpActive;
82
  // message on saving options
83
  echo the_champ_settings_saved_notification();
84
+ require 'admin/like_buttons.php';
85
  }
86
 
87
  /**
149
  */
150
  function the_champ_admin_sharing_scripts(){
151
  wp_enqueue_script('the_champ_sharing', plugins_url('js/admin/sharing/admin.js', __FILE__), array('jquery', 'jquery-ui-sortable'), THE_CHAMP_SS_VERSION);
152
+ wp_enqueue_script('the_champ_modernizer', plugins_url('js/modernizr.custom.82187.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
153
  }
154
 
155
  /**
236
  }
237
  }
238
 
239
+ /**
240
+ * Check if vertical Social Counter is enabled.
241
+ */
242
+ function the_champ_vertical_social_counter_enabled(){
243
+ global $theChampCounterOptions;
244
+ if(isset($theChampCounterOptions['vertical_enable']) && $theChampCounterOptions['vertical_enable'] == 1){
245
+ return true;
246
+ }else{
247
+ return false;
248
+ }
249
+ }
250
+
251
  /**
252
  * Check if Horizontal Social Sharing is enabled.
253
  */
313
  */
314
  function the_champ_facebook_commenting_enabled(){
315
  global $theChampFacebookOptions;
316
+ if(isset($theChampFacebookOptions['enable_fbcomments'])){
317
+ return true;
318
+ }else{
319
+ return false;
320
+ }
321
+ }
322
+
323
+ /**
324
+ * Check if Social commenting is enabled.
325
+ */
326
+ function the_champ_social_commenting_enabled(){
327
+ global $theChampFacebookOptions;
328
+ if(isset($theChampFacebookOptions['enable_commenting'])){
329
  return true;
330
  }else{
331
  return false;
422
  $userVerified = false;
423
  $ajaxUrl = 'admin-ajax.php';
424
  $notification = '';
425
+ wp_enqueue_script('the_champ_modernizer', plugins_url('js/modernizr.custom.82187.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
426
  wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
427
  }
428
  // linking functions
532
  $html .= 'id="theChamp'. ucfirst($provider) .'Button" ';
533
  }
534
  // class
535
+ $html .= 'class="theChampLogin theChamp'. ucfirst($provider) .'Background theChamp'. ucfirst($provider) .'Login" ';
536
  $html .= 'alt="Login with ';
537
  $html .= ucfirst($provider);
538
  $html .= '" title="Login with ';
546
  }else{
547
  $html .= '" onclick="theChampInitiateLogin(this)" >';
548
  }
549
+ $html .= '<div class="theChampLoginSvg theChamp'. ucfirst($provider) .'Svg"></div></i></li>';
550
  }
551
  $html .= '</ul></div>';
552
  echo $html;
615
 
616
  function the_champ_add_linking_tab() {
617
  global $bp, $user_ID;
618
+ if($user_ID){
619
+ bp_core_new_subnav_item( array(
620
+ 'name' => 'Social Account Linking',
621
+ 'slug' => 'account-linking',
622
+ 'parent_url' => trailingslashit( bp_loggedin_user_domain() . 'profile' ),
623
+ 'parent_slug' => 'profile',
624
+ 'screen_function' => 'the_champ_bp_linking',
625
+ 'position' => 50
626
+ )
627
+ );
628
+ }
629
  }
630
 
631
  // show social account linking when 'Social Account Linking' tab is clicked
671
  <br/>
672
  <label for="the_champ_counter">
673
  <input type="checkbox" name="_the_champ_meta[counter]" id="the_champ_counter" value="1" <?php checked('1', @$sharingMeta['counter']); ?> />
674
+ <?php _e('Disable Horizontal like buttons on this '.$postType, 'Super-Socializer') ?>
675
  </label>
676
  <br/>
677
  <label for="the_champ_vertical_counter">
678
  <input type="checkbox" name="_the_champ_meta[vertical_counter]" id="the_champ_vertical_counter" value="1" <?php checked('1', @$sharingMeta['vertical_counter']); ?> />
679
+ <?php _e('Disable Vertical like buttons on this '.$postType, 'Super-Socializer') ?>
680
  </label>
681
  <br/>
682
  <label for="the_champ_fb_comments">
683
  <input type="checkbox" name="_the_champ_meta[fb_comments]" id="the_champ_fb_comments" value="1" <?php checked('1', @$sharingMeta['fb_comments']); ?> />
684
+ <?php _e('Disable Social Commenting on this '.$postType, 'Super-Socializer') ?>
685
  </label>
686
  <?php
687
  if(the_champ_social_sharing_enabled()){
images/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
images/login/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
images/sharing/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
images/sharing/pullout.png ADDED
Binary file
images/sharing/pushin.png ADDED
Binary file
images/snaps/FB_commenting.png DELETED
Binary file
images/snaps/comment_title.png DELETED
Binary file
images/snaps/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
images/snaps/sc_disqus_shortname.png ADDED
Binary file
images/snaps/ss_disable_sharing.png DELETED
Binary file
inc/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
inc/shortcode.php CHANGED
@@ -147,21 +147,37 @@ function the_champ_login_shortcode($params){
147
  add_shortcode('TheChamp-Login', 'the_champ_login_shortcode');
148
 
149
  /**
150
- * Shortcode for Social Login.
151
  */
152
  function the_champ_fb_commenting_shortcode($params){
153
- if(the_champ_facebook_commenting_enabled()){
154
- extract(shortcode_atts(array(
155
- 'style' => '',
156
- 'url' => get_permalink(),
157
- 'num_posts' => '',
158
- 'width' => ''
159
- ), $params));
160
- $html = '<div style="'. $style .'" id="the_champ_fb_commenting"> <div class="fb-comments" data-href="' .($url == '' ? the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] : $url). '"';
161
- $html .= ' data-numposts="' . $num_posts . '"';
162
- $html .= ' data-width="' . ($width == '' ? '100%' : $width) . '"';
163
- $html .= ' ></div></div>';
164
- return $html;
165
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  }
167
- add_shortcode('TheChamp-FB-Comments', 'the_champ_fb_commenting_shortcode');
147
  add_shortcode('TheChamp-Login', 'the_champ_login_shortcode');
148
 
149
  /**
150
+ * Shortcode for Facebook Comments.
151
  */
152
  function the_champ_fb_commenting_shortcode($params){
153
+ extract(shortcode_atts(array(
154
+ 'style' => '',
155
+ 'url' => get_permalink(),
156
+ 'num_posts' => '',
157
+ 'width' => '',
158
+ 'language' => 'en_US'
159
+ ), $params));
160
+ $html = '<div style="'. $style .'" id="the_champ_fb_commenting"> <div class="fb-comments" data-href="' .($url == '' ? the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] : $url). '"';
161
+ $html .= ' data-numposts="' . $num_posts . '"';
162
+ $html .= ' data-width="' . ($width == '' ? '100%' : $width) . '"';
163
+ $html .= ' ></div></div><script type="text/javascript" src="//connect.facebook.net/' . $language . '/sdk.js
164
+ "></script><script>FB.init({xfbml:1,version: "v2.3"});</script>';
165
+ return $html;
166
+ }
167
+ add_shortcode('TheChamp-FB-Comments', 'the_champ_fb_commenting_shortcode');
168
+
169
+ /**
170
+ * Shortcode for GooglePlus Comments.
171
+ */
172
+ function the_champ_gp_commenting_shortcode($params){
173
+ extract(shortcode_atts(array(
174
+ 'style' => '',
175
+ 'url' => get_permalink(),
176
+ 'width' => '',
177
+ ), $params));
178
+ $html = '<div style="'. $style .'" id="the_champ_gp_commenting">';
179
+ $html .= "<div class='g-comments' data-href='" . ($url == '' ? the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] : $url) . "' ". ($width ? "data-width='" .$width. "'" : "" ) ." data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>";
180
+ $html .= '</div><script type="text/javascript" src="//apis.google.com/js/plusone.js"></script>';
181
+ return $html;
182
  }
183
+ add_shortcode('TheChamp-GP-Comments', 'the_champ_gp_commenting_shortcode');
inc/social_login.php CHANGED
@@ -31,7 +31,7 @@ function the_champ_login_button($widget = false){
31
  $html .= 'id="theChamp'. ucfirst($provider) .'Button" ';
32
  }
33
  // class
34
- $html .= 'class="theChamp'. ucfirst($provider) .'Button theChampLoginButton" ';
35
  $html .= 'alt="Login with ';
36
  $html .= ucfirst($provider);
37
  $html .= '" title="Login with ';
@@ -45,7 +45,7 @@ function the_champ_login_button($widget = false){
45
  }else{
46
  $html .= '" onclick="theChampInitiateLogin(this)" >';
47
  }
48
- $html .= '</i></li>';
49
  }
50
  }
51
  $html .= '</ul></div>';
31
  $html .= 'id="theChamp'. ucfirst($provider) .'Button" ';
32
  }
33
  // class
34
+ $html .= 'class="theChampLogin theChamp'. ucfirst($provider) .'Background theChamp'. ucfirst($provider) .'Login" ';
35
  $html .= 'alt="Login with ';
36
  $html .= ucfirst($provider);
37
  $html .= '" title="Login with ';
45
  }else{
46
  $html .= '" onclick="theChampInitiateLogin(this)" >';
47
  }
48
+ $html .= '<div class="theChampLoginSvg theChamp'. ucfirst($provider) .'Svg"></div></i></li>';
49
  }
50
  }
51
  $html .= '</ul></div>';
inc/social_sharing.php CHANGED
@@ -9,6 +9,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
9
  */
10
  function the_champ_prepare_sharing_html($postUrl, $sharingType = 'horizontal', $displayCount){
11
  global $theChampSharingOptions, $post;
 
12
  $output = apply_filters('the_champ_sharing_interface_filter', '', $postUrl, $sharingType, $theChampSharingOptions, $post, $displayCount);
13
  if($output != ''){
14
  return $output;
@@ -20,16 +21,32 @@ function the_champ_prepare_sharing_html($postUrl, $sharingType = 'horizontal', $
20
  }
21
  if(isset($theChampSharingOptions[$sharingType.'_re_providers'])){
22
  $html = '<ul '. ($sharingType == 'horizontal' && isset($theChampSharingOptions['hor_sharing_alignment']) && $theChampSharingOptions['hor_sharing_alignment'] == "center" ? "style='list-style: none;position: relative;left: 50%;'" : "") .' class="the_champ_sharing_ul">';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  foreach($theChampSharingOptions[$sharingType.'_re_providers'] as $provider){
24
- $html .= '<li>';
25
  if($displayCount){
26
  $startingCount = isset($sharingMeta[$provider . '_' . $sharingType . '_count']) && $sharingMeta[$provider . '_' . $sharingType . '_count'] != '' ? true : false;
27
- $html .= '<span '. ($startingCount ? 'ss_st_count="'. $sharingMeta[$provider . '_' . $sharingType . '_count'] .'"' : '') .' class="the_champ_share_count the_champ_'.$provider.'_count" >&nbsp;</span>';
28
  }
29
  if($provider == 'print'){
30
- $html .= '<i alt="Print" Title="Print" class="theChampSharingButton theChampSharing'. ucfirst($provider) .'Button" onclick=\'window.print()\'></i>';
31
  }elseif($provider == 'email'){
32
- $html .= '<i alt="Email" Title="Email" class="theChampSharingButton theChampSharing'. ucfirst($provider) .'Button" onclick="window.location.href = \'mailto:?subject=\' + escape(\''. urlencode($post->post_title) .'\') + \'&body=\' + escape(\''.$postUrl.'\')"></i>';
33
  }else{
34
  if($provider == 'facebook'){
35
  $sharingUrl = 'https://www.facebook.com/sharer/sharer.php?u=' . $postUrl;
@@ -62,20 +79,23 @@ function the_champ_prepare_sharing_html($postUrl, $sharingType = 'horizontal', $
62
  }elseif($provider == 'pinterest'){
63
  $sharingUrl = "javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());";
64
  }
65
- $html .= '<i alt="'.($provider == 'google' ? 'Google Plus' : ucfirst($provider)).'" Title="'.($provider == 'google' ? 'Google Plus' : ucfirst($provider)).'" class="theChampSharingButton theChampSharing'. ucfirst( str_replace(' ', '', $provider) ) .'Button" ';
66
  if($provider == 'pinterest'){
67
- $html .= 'onclick="'.$sharingUrl.'"></i>';
68
  }else{
69
- $html .= 'onclick=\' theChampPopup("'.$sharingUrl.'")\'></i>';
70
  }
71
  }
72
  $html .= '</li>';
73
  }
74
- $html .= '<li>';
75
- if($displayCount){
76
- $html .= '<span class="the_champ_share_count">&nbsp;</span>';
 
 
 
77
  }
78
- $html .= '<i style="display: inline !important; visibility: visible !important" title="More" alt="More" class="theChampSharingButton theChampSharingMoreButton" onclick="theChampMoreSharingPopup(this, \''.$postUrl.'\', \''.urlencode($post->post_title).'\')" ></i></li></ul><div style="clear:both"></div>';
79
  }
80
  return $html;
81
  }
@@ -85,6 +105,7 @@ function the_champ_prepare_sharing_html($postUrl, $sharingType = 'horizontal', $
85
  */
86
  function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $shortUrl){
87
  global $theChampCounterOptions, $post;
 
88
  $output = apply_filters('the_champ_counter_interface_filter', '', $postUrl, $shortUrl, $sharingType, $theChampCounterOptions, $post);
89
  if($output != ''){
90
  return $output;
@@ -99,7 +120,7 @@ function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $
99
  var js, fjs = d.getElementsByTagName(s)[0];
100
  if (d.getElementById(id)) return;
101
  js = d.createElement(s); js.id = id;
102
- js.src = "//connect.facebook.net/'. ($language == '' ? 'en_US' : $language) .'/sdk.js#xfbml=1&version=v2.3";
103
  fjs.parentNode.insertBefore(js, fjs);
104
  }(document, \'script\', \'facebook-jssdk\'));</script><li class="the_champ_facebook_like"><div class="fb-like" data-href="'. $postUrl .'" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div></li>';
105
  }elseif($provider == 'facebook_recommend'){
@@ -107,7 +128,7 @@ function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $
107
  var js, fjs = d.getElementsByTagName(s)[0];
108
  if (d.getElementById(id)) return;
109
  js = d.createElement(s); js.id = id;
110
- js.src = "//connect.facebook.net/'. ($language == '' ? 'en_US' : $language) .'/sdk.js#xfbml=1&version=v2.3";
111
  fjs.parentNode.insertBefore(js, fjs);
112
  }(document, \'script\', \'facebook-jssdk\'));</script><li class="the_champ_facebook_recommend"><div class="fb-like" data-href="'. $postUrl .'" data-layout="button_count" data-action="recommend" data-show-faces="false" data-share="false"></div></li>';
113
  }elseif($provider == 'twitter_tweet'){
@@ -299,7 +320,8 @@ function the_champ_render_sharing($content){
299
  }
300
 
301
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
302
- $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter' style='".(isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) ? $theChampCounterOptions['alignment'].': '. ( $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] == '' ? 0 : $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] ) .'px;' : '').(isset($theChampCounterOptions['top_offset']) ? 'top: '. ( $theChampCounterOptions['top_offset'] == '' ? 0 : $theChampCounterOptions['top_offset'] ) .'px;' : '') . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
 
303
  // show vertical counter
304
  if((isset( $theChampCounterOptions['vertical_home']) && is_front_page()) || (isset( $theChampCounterOptions['vertical_category']) && is_category()) || (isset( $theChampCounterOptions['vertical_archive']) && is_archive()) || ( isset( $theChampCounterOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampCounterOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampCounterOptions['vertical_excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $theChampCounterOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampCounterOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) ){
305
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum') ) ){
@@ -325,7 +347,7 @@ function the_champ_render_sharing($content){
325
  }
326
 
327
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
328
- $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter' style='".(isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) ? $theChampCounterOptions['alignment'].': '. ( $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] == '' ? 0 : $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] ) .'px;' : '').(isset($theChampCounterOptions['top_offset']) ? 'top: '. ( $theChampCounterOptions['top_offset'] == '' ? 0 : $theChampCounterOptions['top_offset'] ) .'px;' : '') . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
329
  }
330
  $content = $content.$verticalDiv;
331
  $$var++;
@@ -426,7 +448,8 @@ function the_champ_render_sharing($content){
426
  }
427
 
428
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']));
429
- $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing' style='".(isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '') . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' super-socializer-data-href='".$postUrl."'>".$sharingDiv."</div>";
 
430
  // show vertical sharing
431
  if((isset( $theChampSharingOptions['vertical_home']) && is_front_page()) || (isset( $theChampSharingOptions['vertical_category']) && is_category()) || (isset( $theChampSharingOptions['vertical_archive']) && is_archive()) || ( isset( $theChampSharingOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampSharingOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampSharingOptions['vertical_excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $theChampSharingOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampSharingOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')))){
432
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum') ) ){
@@ -452,7 +475,7 @@ function the_champ_render_sharing($content){
452
  }
453
 
454
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']));
455
- $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing' style='".(isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '') . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' super-socializer-data-href='".$postUrl."'>".$sharingDiv."</div>";
456
  }
457
  $content = $content.$verticalDiv;
458
  $$var++;
9
  */
10
  function the_champ_prepare_sharing_html($postUrl, $sharingType = 'horizontal', $displayCount){
11
  global $theChampSharingOptions, $post;
12
+ $postUrl = (isset($theChampSharingOptions['use_shortlink']) && function_exists('wp_get_shortlink')) ? wp_get_shortlink() : $postUrl;
13
  $output = apply_filters('the_champ_sharing_interface_filter', '', $postUrl, $sharingType, $theChampSharingOptions, $post, $displayCount);
14
  if($output != ''){
15
  return $output;
21
  }
22
  if(isset($theChampSharingOptions[$sharingType.'_re_providers'])){
23
  $html = '<ul '. ($sharingType == 'horizontal' && isset($theChampSharingOptions['hor_sharing_alignment']) && $theChampSharingOptions['hor_sharing_alignment'] == "center" ? "style='list-style: none;position: relative;left: 50%;'" : "") .' class="the_champ_sharing_ul">';
24
+ $style = 'style="width:' . $theChampSharingOptions[$sharingType . '_sharing_size'] . 'px;height:' . $theChampSharingOptions[$sharingType . '_sharing_size'] . 'px;';
25
+ $counterContainerInitHtml = '<span class="the_champ_share_count';
26
+ $counterContainerEndHtml = '</span>';
27
+ $deliciousRadius = '';
28
+ $liClass = 'theChampSharingRound';
29
+ if($theChampSharingOptions[$sharingType . '_sharing_shape'] == 'round'){
30
+ $style .= 'border-radius:999px;';
31
+ $deliciousRadius = 'style="border-radius:999px;"';
32
+ }
33
+ if($sharingType == 'vertical' && $theChampSharingOptions[$sharingType . '_sharing_shape'] == 'square'){
34
+ $style .= 'margin:0;';
35
+ $counterContainerInitHtml = '<div class="the_champ_square_count';
36
+ $counterContainerEndHtml = '</div>';
37
+ $liClass = '';
38
+ }
39
+ $style .= '"';
40
  foreach($theChampSharingOptions[$sharingType.'_re_providers'] as $provider){
41
+ $html .= '<li class="' . ($liClass != '' ? $liClass : 'theChamp' . ucfirst(str_replace(' ', '', $provider)) .'Background theChamp' . ucfirst(str_replace(' ', '', $provider)) .'SquareBackground') . '">';
42
  if($displayCount){
43
  $startingCount = isset($sharingMeta[$provider . '_' . $sharingType . '_count']) && $sharingMeta[$provider . '_' . $sharingType . '_count'] != '' ? true : false;
44
+ $html .= $counterContainerInitHtml . ' the_champ_'.$provider.'_count" '. ($startingCount ? 'ss_st_count="'. $sharingMeta[$provider . '_' . $sharingType . '_count'] .'"' : '') .' >&nbsp;' . $counterContainerEndHtml;
45
  }
46
  if($provider == 'print'){
47
+ $html .= '<i ' .$style. ' alt="Print" Title="Print" class="theChampSharing theChamp'. ucfirst($provider) .'Background" onclick=\'window.print()\'><div class="theChampSharingSvg theChamp'. ucfirst($provider) .'Svg"></div></i>';
48
  }elseif($provider == 'email'){
49
+ $html .= '<i ' .$style. ' alt="Email" Title="Email" class="theChampSharing theChamp'. ucfirst($provider) .'Background" onclick="window.location.href = \'mailto:?subject=\' + escape(\''. urlencode($post->post_title) .'\') + \'&body=\' + escape(\''.$postUrl.'\')"><div class="theChampSharingSvg theChamp'. ucfirst($provider) .'Svg"></div></i>';
50
  }else{
51
  if($provider == 'facebook'){
52
  $sharingUrl = 'https://www.facebook.com/sharer/sharer.php?u=' . $postUrl;
79
  }elseif($provider == 'pinterest'){
80
  $sharingUrl = "javascript:void((function(){var e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());";
81
  }
82
+ $html .= '<i ' .$style. ' alt="'.($provider == 'google' ? 'Google Plus' : ucfirst($provider)).'" Title="'.($provider == 'google' ? 'Google Plus' : ucfirst($provider)).'" class="theChampSharing theChamp'. ucfirst( str_replace(' ', '', $provider) ) .'Background" ';
83
  if($provider == 'pinterest'){
84
+ $html .= 'onclick="'.$sharingUrl.'"><div class="theChampSharingSvg theChamp'. ucfirst($provider) .'Svg"></div></i>';
85
  }else{
86
+ $html .= 'onclick=\' theChampPopup("'.$sharingUrl.'")\'><div ' . $deliciousRadius . ' class="theChampSharingSvg theChamp'. ucfirst( str_replace(' ', '', $provider) ) .'Svg"></div></i>';
87
  }
88
  }
89
  $html .= '</li>';
90
  }
91
+ if(isset($theChampSharingOptions[$sharingType . '_more'])){
92
+ $html .= '<li class="' . ($liClass != '' ? $liClass : 'theChampMoreBackground') . '">';
93
+ if($displayCount){
94
+ $html .= $counterContainerInitHtml . '">&nbsp;' . $counterContainerEndHtml;
95
+ }
96
+ $html .= '<i ' .$style. ' title="More" alt="More" class="theChampSharing theChampMoreBackground" onclick="theChampMoreSharingPopup(this, \''.$postUrl.'\', \''.urlencode($post->post_title).'\')" ><div class="theChampSharingSvg theChampMoreSvg"></div></i></li>';
97
  }
98
+ $html .= '</ul><div style="clear:both"></div>';
99
  }
100
  return $html;
101
  }
105
  */
106
  function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $shortUrl){
107
  global $theChampCounterOptions, $post;
108
+ $shortUrl = (isset($theChampCounterOptions['use_shortlink']) && function_exists('wp_get_shortlink')) ? wp_get_shortlink() : $shortUrl;
109
  $output = apply_filters('the_champ_counter_interface_filter', '', $postUrl, $shortUrl, $sharingType, $theChampCounterOptions, $post);
110
  if($output != ''){
111
  return $output;
120
  var js, fjs = d.getElementsByTagName(s)[0];
121
  if (d.getElementById(id)) return;
122
  js = d.createElement(s); js.id = id;
123
+ js.src = "//connect.facebook.net/'. ($language == '' ? 'en_US' : $language) .'/sdk.js#version=v2.3";
124
  fjs.parentNode.insertBefore(js, fjs);
125
  }(document, \'script\', \'facebook-jssdk\'));</script><li class="the_champ_facebook_like"><div class="fb-like" data-href="'. $postUrl .'" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div></li>';
126
  }elseif($provider == 'facebook_recommend'){
128
  var js, fjs = d.getElementsByTagName(s)[0];
129
  if (d.getElementById(id)) return;
130
  js = d.createElement(s); js.id = id;
131
+ js.src = "//connect.facebook.net/'. ($language == '' ? 'en_US' : $language) .'/sdk.js#version=v2.3";
132
  fjs.parentNode.insertBefore(js, fjs);
133
  }(document, \'script\', \'facebook-jssdk\'));</script><li class="the_champ_facebook_recommend"><div class="fb-like" data-href="'. $postUrl .'" data-layout="button_count" data-action="recommend" data-show-faces="false" data-share="false"></div></li>';
134
  }elseif($provider == 'twitter_tweet'){
320
  }
321
 
322
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
323
+ $offset = (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) ? $theChampCounterOptions['alignment'].': '. ( $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] == '' ? 0 : $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] ) .'px;' : '').(isset($theChampCounterOptions['top_offset']) ? 'top: '. ( $theChampCounterOptions['top_offset'] == '' ? 0 : $theChampCounterOptions['top_offset'] ) .'px;' : '');
324
+ $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
325
  // show vertical counter
326
  if((isset( $theChampCounterOptions['vertical_home']) && is_front_page()) || (isset( $theChampCounterOptions['vertical_category']) && is_category()) || (isset( $theChampCounterOptions['vertical_archive']) && is_archive()) || ( isset( $theChampCounterOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampCounterOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampCounterOptions['vertical_excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $theChampCounterOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampCounterOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic'))) ){
327
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum') ) ){
347
  }
348
 
349
  $sharingDiv = the_champ_prepare_counter_html($counterPostUrl, 'vertical', $counterUrl);
350
+ $verticalDiv = "<div class='the_champ_counter_container the_champ_vertical_counter' style='". $offset . (isset($theChampCounterOptions['vertical_bg']) && $theChampCounterOptions['vertical_bg'] != '' ? 'background-color: '.$theChampCounterOptions['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "'>".$sharingDiv."</div>";
351
  }
352
  $content = $content.$verticalDiv;
353
  $$var++;
448
  }
449
 
450
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']));
451
+ $offset = (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions['alignment'].': '.$theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'].'px;' : '').(isset($theChampSharingOptions['top_offset']) && $theChampSharingOptions['top_offset'] != '' ? 'top: '.$theChampSharingOptions['top_offset'].'px;' : '');
452
+ $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' super-socializer-data-href='".$postUrl."'>".$sharingDiv."</div>";
453
  // show vertical sharing
454
  if((isset( $theChampSharingOptions['vertical_home']) && is_front_page()) || (isset( $theChampSharingOptions['vertical_category']) && is_category()) || (isset( $theChampSharingOptions['vertical_archive']) && is_archive()) || ( isset( $theChampSharingOptions['vertical_post'] ) && is_single() && isset($post -> post_type) && $post -> post_type == 'post' ) || ( isset( $theChampSharingOptions['vertical_page'] ) && is_page() && isset($post -> post_type) && $post -> post_type == 'page' ) || ( isset( $theChampSharingOptions['vertical_excerpt'] ) && is_front_page() && current_filter() == 'get_the_excerpt' ) || ( isset( $theChampSharingOptions['vertical_bb_forum'] ) && current_filter() == 'bbp_template_before_single_forum') || ( isset( $theChampSharingOptions['vertical_bb_topic'] ) && in_array(current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic')))){
455
  if( in_array( current_filter(), array('bbp_template_before_single_topic', 'bbp_template_before_lead_topic', 'bbp_template_before_single_forum') ) ){
475
  }
476
 
477
  $sharingDiv = the_champ_prepare_sharing_html($sharingUrl, 'vertical', isset($theChampSharingOptions['vertical_counts']));
478
+ $verticalDiv = "<div class='the_champ_sharing_container the_champ_vertical_sharing' style='width:" . ($theChampSharingOptions['vertical_sharing_size'] + 4) . "px;" . $offset . (isset($theChampSharingOptions['vertical_bg']) && $theChampSharingOptions['vertical_bg'] != '' ? 'background-color: '.$theChampSharingOptions['vertical_bg'] : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' super-socializer-data-href='".$postUrl."'>".$sharingDiv."</div>";
479
  }
480
  $content = $content.$verticalDiv;
481
  $$var++;
index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/admin/admin.js CHANGED
@@ -1,66 +1 @@
1
- function theChampEmailPopupOptions(e) {
2
- if (jQuery(e).is(":checked")) {
3
- jQuery("#the_champ_email_popup_options").css("display", "block")
4
- } else {
5
- jQuery("#the_champ_email_popup_options").css("display", "none")
6
- }
7
- }
8
-
9
- function theChampCommentingOptions(e) {
10
- if (jQuery(e).is(":checked")) {
11
- jQuery("#the_champ_commenting_extra").css("display", "none")
12
- } else {
13
- jQuery("#the_champ_commenting_extra").css("display", "table-row-group")
14
- }
15
- }
16
- jQuery(document).ready(function() {
17
- jQuery("#tabs").tabs();
18
- jQuery("#the_champ_login_redirection_column").find("input[type=radio]").click(function() {
19
- if (jQuery(this).attr("id") && jQuery(this).attr("id") == "the_champ_login_redirection_custom") {
20
- jQuery("#the_champ_login_redirection_url").css("display", "block")
21
- } else {
22
- jQuery("#the_champ_login_redirection_url").css("display", "none")
23
- }
24
- });
25
- if (jQuery("#the_champ_login_redirection_custom").is(":checked")) {
26
- jQuery("#the_champ_login_redirection_url").css("display", "block")
27
- } else {
28
- jQuery("#the_champ_login_redirection_url").css("display", "none")
29
- }
30
- jQuery("#the_champ_register_redirection_column").find("input[type=radio]").click(function() {
31
- if (jQuery(this).attr("id") && jQuery(this).attr("id") == "the_champ_register_redirection_custom") {
32
- jQuery("#the_champ_register_redirection_url").css("display", "block")
33
- } else {
34
- jQuery("#the_champ_register_redirection_url").css("display", "none")
35
- }
36
- });
37
- if (jQuery("#the_champ_register_redirection_custom").is(":checked")) {
38
- jQuery("#the_champ_register_redirection_url").css("display", "block")
39
- } else {
40
- jQuery("#the_champ_register_redirection_url").css("display", "none")
41
- }
42
- jQuery(".the_champ_help_bubble").attr('title', theChampHelpBubbleTitle)
43
- jQuery(".the_champ_help_bubble").toggle(function() {
44
- jQuery("#" + jQuery(this).attr("id") + "_cont").show()
45
- jQuery(this).attr('title', theChampHelpBubbleCollapseTitle);
46
- }, function() {
47
- jQuery("#" + jQuery(this).attr("id") + "_cont").hide();
48
- jQuery(this).attr('title', theChampHelpBubbleTitle);
49
- });
50
- jQuery("#the_champ_fb_comment_switch_wp").keyup(function() {
51
- jQuery(this).prev("span").remove();
52
- if (jQuery(this).val().trim() == "") {
53
- jQuery(this).before('<span style="color:red">This cannot be blank</span>')
54
- } else if (jQuery(this).val().trim() == jQuery("#the_champ_fb_comment_switch_fb").val().trim()) {
55
- jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to Facebook Commenting" button</span>')
56
- }
57
- });
58
- jQuery("#the_champ_fb_comment_switch_fb").keyup(function() {
59
- jQuery(this).prev("span").remove();
60
- if (jQuery(this).val().trim() == "") {
61
- jQuery(this).before('<span style="color:red">This cannot be blank</span>')
62
- } else if (jQuery(this).val().trim() == jQuery("#the_champ_fb_comment_switch_wp").val().trim()) {
63
- jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to WordPress Commenting" button</span>')
64
- }
65
- })
66
- })
1
+ function theChampEmailPopupOptions(e){jQuery(e).is(":checked")?jQuery("#the_champ_email_popup_options").css("display","block"):jQuery("#the_champ_email_popup_options").css("display","none")}function theChampCommentingOptions(e){jQuery(e).is(":checked")?jQuery("#the_champ_commenting_extra").css("display","none"):jQuery("#the_champ_commenting_extra").css("display","table-row-group")}jQuery(document).ready(function(){jQuery("#tabs").tabs(),jQuery("#the_champ_login_redirection_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_login_redirection_custom"==jQuery(this).attr("id")?jQuery("#the_champ_login_redirection_url").css("display","block"):jQuery("#the_champ_login_redirection_url").css("display","none")}),jQuery("#the_champ_login_redirection_custom").is(":checked")?jQuery("#the_champ_login_redirection_url").css("display","block"):jQuery("#the_champ_login_redirection_url").css("display","none"),jQuery("#the_champ_register_redirection_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_register_redirection_custom"==jQuery(this).attr("id")?jQuery("#the_champ_register_redirection_url").css("display","block"):jQuery("#the_champ_register_redirection_url").css("display","none")}),jQuery("#the_champ_register_redirection_custom").is(":checked")?jQuery("#the_champ_register_redirection_url").css("display","block"):jQuery("#the_champ_register_redirection_url").css("display","none"),jQuery(".the_champ_help_bubble").attr("title",theChampHelpBubbleTitle),jQuery(".the_champ_help_bubble").toggle(function(){jQuery("#"+jQuery(this).attr("id")+"_cont").show(),jQuery(this).attr("title",theChampHelpBubbleCollapseTitle)},function(){jQuery("#"+jQuery(this).attr("id")+"_cont").hide(),jQuery(this).attr("title",theChampHelpBubbleTitle)}),jQuery("#the_champ_fb_comment_switch_wp").keyup(function(){jQuery(this).prev("span").remove(),""==jQuery(this).val().trim()?jQuery(this).before('<span style="color:red">This cannot be blank</span>'):jQuery(this).val().trim()==jQuery("#the_champ_fb_comment_switch_fb").val().trim()&&jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to Facebook Commenting" button</span>')}),jQuery("#the_champ_fb_comment_switch_fb").keyup(function(){jQuery(this).prev("span").remove(),""==jQuery(this).val().trim()?jQuery(this).before('<span style="color:red">This cannot be blank</span>'):jQuery(this).val().trim()==jQuery("#the_champ_fb_comment_switch_wp").val().trim()&&jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to WordPress Commenting" button</span>')})});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/admin/counter/admin.js CHANGED
@@ -1,57 +1 @@
1
- function theChampHorizontalCounterOptionsToggle(e) {
2
- if (jQuery(e).is(":checked")) {
3
- jQuery("#the_champ_horizontal_counter_options").css("display", "table-row-group")
4
- } else {
5
- jQuery("#the_champ_horizontal_counter_options").css("display", "none")
6
- }
7
- }
8
-
9
- function theChampVerticalCounterOptionsToggle(e) {
10
- if (jQuery(e).is(":checked")) {
11
- jQuery("#the_champ_vertical_counter_options").css("display", "table-row-group")
12
- } else {
13
- jQuery("#the_champ_vertical_counter_options").css("display", "none")
14
- }
15
- }
16
-
17
- function theChampToggleOffset(e) {
18
- var t = e == "left" ? "right" : "left";
19
- jQuery("#the_champ_sc_" + e + "_offset_rows").css("display", "table-row-group");
20
- jQuery("#the_champ_sc_" + t + "_offset_rows").css("display", "none")
21
- }
22
- if (typeof String.prototype.trim !== "function") {
23
- String.prototype.trim = function() {
24
- return this.replace(/^\s+|\s+$/g, "")
25
- }
26
- }
27
- jQuery(document).ready(function() {
28
- jQuery("#the_champ_sc_rearrange, #the_champ_sc_vertical_rearrange").sortable();
29
- // horizontal target url
30
- jQuery("#the_champ_target_url_column").find("input[type=radio]").click(function() {
31
- if (jQuery(this).attr("id") && jQuery(this).attr("id") == "the_champ_target_url_custom") {
32
- jQuery("#the_champ_target_url_custom_url").css("display", "block")
33
- } else {
34
- jQuery("#the_champ_target_url_custom_url").css("display", "none")
35
- }
36
- });
37
- // vertical target url
38
- jQuery("#the_champ_vertical_target_url_column").find("input[type=radio]").click(function() {
39
- if (jQuery(this).attr("id") && jQuery(this).attr("id") == "the_champ_vertical_target_url_custom") {
40
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block")
41
- } else {
42
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
43
- }
44
- });
45
- // horizontal target url
46
- if (jQuery("#the_champ_target_url_custom").is(":checked")) {
47
- jQuery("#the_champ_target_url_custom_url").css("display", "block")
48
- } else {
49
- jQuery("#the_champ_target_url_custom_url").css("display", "none")
50
- }
51
- // vertical target url
52
- if (jQuery("#the_champ_vertical_target_url_custom").is(":checked")) {
53
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block")
54
- } else {
55
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
56
- }
57
- })
1
+ function theChampHorizontalCounterOptionsToggle(t){jQuery(t).is(":checked")?jQuery("#the_champ_horizontal_counter_options").css("display","table-row-group"):jQuery("#the_champ_horizontal_counter_options").css("display","none")}function theChampVerticalCounterOptionsToggle(t){jQuery(t).is(":checked")?jQuery("#the_champ_vertical_counter_options").css("display","table-row-group"):jQuery("#the_champ_vertical_counter_options").css("display","none")}function theChampToggleOffset(t){var e="left"==t?"right":"left";jQuery("#the_champ_sc_"+t+"_offset_rows").css("display","table-row-group"),jQuery("#the_champ_sc_"+e+"_offset_rows").css("display","none")}"function"!=typeof String.prototype.trim&&(String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}),jQuery(document).ready(function(){jQuery("#the_champ_sc_rearrange, #the_champ_sc_vertical_rearrange").sortable(),jQuery("#the_champ_target_url_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_target_url_custom"==jQuery(this).attr("id")?jQuery("#the_champ_target_url_custom_url").css("display","block"):jQuery("#the_champ_target_url_custom_url").css("display","none")}),jQuery("#the_champ_vertical_target_url_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_vertical_target_url_custom"==jQuery(this).attr("id")?jQuery("#the_champ_vertical_target_url_custom_url").css("display","block"):jQuery("#the_champ_vertical_target_url_custom_url").css("display","none")}),jQuery("#the_champ_target_url_custom").is(":checked")?jQuery("#the_champ_target_url_custom_url").css("display","block"):jQuery("#the_champ_target_url_custom_url").css("display","none"),jQuery("#the_champ_vertical_target_url_custom").is(":checked")?jQuery("#the_champ_vertical_target_url_custom_url").css("display","block"):jQuery("#the_champ_vertical_target_url_custom_url").css("display","none")});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/admin/counter/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/admin/fb_sdk.js CHANGED
@@ -1 +1 @@
1
- (function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src="//connect.facebook.net/en_US/all.js#xfbml=1&appId=589176264470332";fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'));
1
+ !function(e,n,t){var o,c=e.getElementsByTagName(n)[0];e.getElementById(t)||(o=e.createElement(n),o.id=t,o.src="//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3&appId=901329766553912",c.parentNode.insertBefore(o,c))}(document,"script","facebook-jssdk");
js/admin/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/admin/sharing/admin.js CHANGED
@@ -1,75 +1 @@
1
- function theChampCapitaliseFirstLetter(e) {
2
- return e.charAt(0).toUpperCase() + e.slice(1)
3
- }
4
-
5
- function theChampHorizontalSharingOptionsToggle(e) {
6
- if (jQuery(e).is(":checked")) {
7
- jQuery("#the_champ_horizontal_sharing_options").css("display", "table-row-group")
8
- } else {
9
- jQuery("#the_champ_horizontal_sharing_options").css("display", "none")
10
- }
11
- }
12
-
13
- function theChampVerticalSharingOptionsToggle(e) {
14
- if (jQuery(e).is(":checked")) {
15
- jQuery("#the_champ_vertical_sharing_options").css("display", "table-row-group")
16
- } else {
17
- jQuery("#the_champ_vertical_sharing_options").css("display", "none")
18
- }
19
- }
20
-
21
- function theChampToggleOffset(e) {
22
- var t = e == "left" ? "right" : "left";
23
- jQuery("#the_champ_ss_" + e + "_offset_rows").css("display", "table-row-group");
24
- jQuery("#the_champ_ss_" + t + "_offset_rows").css("display", "none")
25
- }
26
- if (typeof String.prototype.trim !== "function") {
27
- String.prototype.trim = function() {
28
- return this.replace(/^\s+|\s+$/g, "")
29
- }
30
- }
31
- jQuery(document).ready(function() {
32
- jQuery("#the_champ_ss_rearrange, #the_champ_ss_vertical_rearrange").sortable();
33
- jQuery(".theChampHorizontalSharingProviderContainer input").click(function() {
34
- if (jQuery(this).is(":checked")) {
35
- jQuery("#the_champ_ss_rearrange").append('<li title="' + jQuery(this).val() + '" id="the_champ_re_horizontal_' + jQuery(this).val().replace(" ", "_") + '" ><i class="theChampSharingButton theChampSharing' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ", "")) + 'Button"></i><input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="' + jQuery(this).val() + '"></li>')
36
- } else {
37
- jQuery("#the_champ_re_horizontal_" + jQuery(this).val().replace(" ", "_")).remove()
38
- }
39
- });
40
- jQuery(".theChampVerticalSharingProviderContainer input").click(function() {
41
- if (jQuery(this).is(":checked")) {
42
- jQuery("#the_champ_ss_vertical_rearrange").append('<li title="' + jQuery(this).val() + '" id="the_champ_re_vertical_' + jQuery(this).val().replace(" ", "_") + '" ><i class="theChampSharingButton theChampSharing' + theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ", "")) + 'Button"></i><input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="' + jQuery(this).val() + '"></li>')
43
- } else {
44
- jQuery("#the_champ_re_vertical_" + jQuery(this).val().replace(" ", "_")).remove()
45
- }
46
- });
47
- // horizontal target url
48
- jQuery("#the_champ_target_url_column").find("input[type=radio]").click(function() {
49
- if (jQuery(this).attr("id") && jQuery(this).attr("id") == "the_champ_target_url_custom") {
50
- jQuery("#the_champ_target_url_custom_url").css("display", "block")
51
- } else {
52
- jQuery("#the_champ_target_url_custom_url").css("display", "none")
53
- }
54
- });
55
- // vertical target url
56
- jQuery("#the_champ_vertical_target_url_column").find("input[type=radio]").click(function() {
57
- if (jQuery(this).attr("id") && jQuery(this).attr("id") == "the_champ_vertical_target_url_custom") {
58
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block")
59
- } else {
60
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
61
- }
62
- });
63
- // horizontal target url
64
- if (jQuery("#the_champ_target_url_custom").is(":checked")) {
65
- jQuery("#the_champ_target_url_custom_url").css("display", "block")
66
- } else {
67
- jQuery("#the_champ_target_url_custom_url").css("display", "none")
68
- }
69
- // vertical target url
70
- if (jQuery("#the_champ_vertical_target_url_custom").is(":checked")) {
71
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "block")
72
- } else {
73
- jQuery("#the_champ_vertical_target_url_custom_url").css("display", "none")
74
- }
75
- })
1
+ function theChampCapitaliseFirstLetter(e){return e.charAt(0).toUpperCase()+e.slice(1)}function theChampHorizontalSharingOptionsToggle(e){jQuery(e).is(":checked")?jQuery("#the_champ_horizontal_sharing_options").css("display","table-row-group"):jQuery("#the_champ_horizontal_sharing_options").css("display","none")}function theChampVerticalSharingOptionsToggle(e){jQuery(e).is(":checked")?jQuery("#the_champ_vertical_sharing_options").css("display","table-row-group"):jQuery("#the_champ_vertical_sharing_options").css("display","none")}function theChampToggleOffset(e){var t="left"==e?"right":"left";jQuery("#the_champ_ss_"+e+"_offset_rows").css("display","table-row-group"),jQuery("#the_champ_ss_"+t+"_offset_rows").css("display","none")}function theChampSharingSizeValidate(e){var t=parseInt(e.value.trim());t>35?e.value=35:16>t&&(e.value=16)}function theChampIncrement(e,t,r,a,i){var h,s,c=!1,l=a;s=function(){"add"==t&&r.value<35?r.value++:"subtract"==t&&r.value>16&&r.value--,h=setTimeout(s,l),l>20&&(l*=i),c||(document.onmouseup=function(){clearTimeout(h),document.onmouseup=null,c=!1,l=a},c=!0)},e.onmousedown=s}function theChampSharingPreview(e,t,r){if("horizontal"==e)var a="the_champ_sharing_preview";else var a="the_champ_vertical_sharing_preview";"round"==r?jQuery("#"+a).css("borderRadius","999px"):jQuery("#"+a).css("borderRadius","0px"),jQuery("#"+a).css({height:t,width:t}),jQuery("#"+a+"_message").css("display","block")}"function"!=typeof String.prototype.trim&&(String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}),jQuery(document).ready(function(){jQuery("#the_champ_ss_rearrange, #the_champ_ss_vertical_rearrange").sortable(),jQuery(".theChampHorizontalSharingProviderContainer input").click(function(){jQuery(this).is(":checked")?jQuery("#the_champ_ss_rearrange").append('<li title="'+jQuery(this).val()+'" id="the_champ_re_horizontal_'+jQuery(this).val().replace(" ","_")+'" ><i style="display:block;'+theChampHorSharingStyle+'" class="theChamp'+theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ",""))+'Background"><div class="theChampSharingSvg theChamp'+theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ",""))+'Svg" style="'+theChampHorDeliciousRadius+'"></div></i><input type="hidden" name="the_champ_sharing[horizontal_re_providers][]" value="'+jQuery(this).val()+'"></li>'):jQuery("#the_champ_re_horizontal_"+jQuery(this).val().replace(" ","_")).remove()}),jQuery(".theChampVerticalSharingProviderContainer input").click(function(){jQuery(this).is(":checked")?jQuery("#the_champ_ss_vertical_rearrange").append('<li title="'+jQuery(this).val()+'" id="the_champ_re_vertical_'+jQuery(this).val().replace(" ","_")+'" ><i style="display:block;'+theChampVerticalSharingStyle+'" class="theChamp'+theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ",""))+'Background"><div class="theChampSharingSvg theChamp'+theChampCapitaliseFirstLetter(jQuery(this).val().replace(" ",""))+'Svg" style="'+theChampVerticalDeliciousRadius+'"></div></i><input type="hidden" name="the_champ_sharing[vertical_re_providers][]" value="'+jQuery(this).val()+'"></li>'):jQuery("#the_champ_re_vertical_"+jQuery(this).val().replace(" ","_")).remove()}),jQuery("#the_champ_target_url_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_target_url_custom"==jQuery(this).attr("id")?jQuery("#the_champ_target_url_custom_url").css("display","block"):jQuery("#the_champ_target_url_custom_url").css("display","none")}),jQuery("#the_champ_vertical_target_url_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_vertical_target_url_custom"==jQuery(this).attr("id")?jQuery("#the_champ_vertical_target_url_custom_url").css("display","block"):jQuery("#the_champ_vertical_target_url_custom_url").css("display","none")}),jQuery("#the_champ_target_url_custom").is(":checked")?jQuery("#the_champ_target_url_custom_url").css("display","block"):jQuery("#the_champ_target_url_custom_url").css("display","none"),jQuery("#the_champ_vertical_target_url_custom").is(":checked")?jQuery("#the_champ_vertical_target_url_custom_url").css("display","block"):jQuery("#the_champ_vertical_target_url_custom_url").css("display","none")});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/admin/sharing/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/front/facebook/commenting.js CHANGED
@@ -1 +1 @@
1
- function theChampInitiateFBCommenting(){FB.init({appId:theChampFBAppID,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.3"})}function theChampRenderFBCommenting(){var e=document.getElementById("dsq-2"),t=document.getElementById("respond");if(theChampFBCommentingContent='<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),""!=theChampFBCommentMobile&&(theChampFBCommentingContent+=' data-mobile="'+theChampFBCommentMobile+'"'),theChampFBCommentingContent+=" ></div>",e){var n=document.createElement("div");n.setAttribute("id","the_champ_fb_commenting"),n.innerHTML=theChampFBCommentingContent,e.parentNode.insertBefore(n,e)}else if(t){var m=document.getElementById("reply-title"),n=document.createElement("div");n.setAttribute("id","the_champ_fb_commenting"),n.innerHTML=theChampFBCommentingContent,m?m.parentNode.insertBefore(n,m.nextSibling):t.innerHTML='<div id="the_champ_fb_commenting">'+theChampFBCommentingContent+"</div>"+t.innerHTML}theChampInitiateFBCommenting()}theChampLoadEvent(function(){theChampRenderFBCommenting()});
1
+ function theChampRenderFBCommenting(){var e=document.getElementById("disqus_thread"),t=document.getElementById("respond"),a=[],m=[],n=[];t&&(a.wordpress='<div style="clear:both"></div>'+t.innerHTML),theChampFBCommentingContent='<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),""!=theChampFBCommentMobile&&(theChampFBCommentingContent+=' data-mobile="'+theChampFBCommentMobile+'"'),theChampFBCommentingContent+=" ></div>",a.fb=theChampFBCommentingContent,m.fb="theChampInitiateFB();",a.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",m.googleplus=" ",n.googleplus="//apis.google.com/js/plusone.js",a.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",m.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var h='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";t||(theChampScEnabledTabs=theChampScEnabledTabs.replace("wordpress,","").replace("wordpress","")),theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var s=0;s<theChampScEnabledTabs.length;s++){h+='<li id="theChampTabs-'+s+'-li" onclick="',h+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+s+"').style.display='block';";for(var d=0;d<theChampScEnabledTabs.length;d++)d!=s&&(h+="document.getElementById('theChampTabs-"+d+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+d+"').style.display='none';");h+='">',h+=theChampScTabLabels[theChampScEnabledTabs[s]],h+="</li>"}h+="</ul>";for(var s=0;s<theChampScEnabledTabs.length;s++)h+='<div id="theChampTabs-'+s+'"><div style="clear: both"></div>'+a[theChampScEnabledTabs[s]]+"</div>";if(h+="</div>",e)e.innerHTML=h;else if(t)t.innerHTML=h,document.getElementById("reply-title").remove();else{if(document.getElementsByTagName("article").length)var o=document.getElementsByTagName("article")[0];else{if(!document.getElementById("content"))return;var o=document.getElementById("content")}var i=document.createElement("div");i.setAttribute("id","comments"),i.setAttribute("class","comments-area"),i.innerHTML="<div id='respond' class='comment-respond'>"+h+"</div>",o.parentNode.insertBefore(i,o.nextSibling)}for(var s=0;s<theChampScEnabledTabs.length;s++)if(m[theChampScEnabledTabs[s]]){var l=document.createElement("script");n[theChampScEnabledTabs[s]]&&l.setAttribute("src",n[theChampScEnabledTabs[s]]),l.innerHTML=m[theChampScEnabledTabs[s]],document.getElementById("theChampTabs-"+s).appendChild(l)}document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab"),setTimeout(function(){for(var e=1;e<theChampScEnabledTabs.length;e++)document.getElementById("theChampTabs-"+e).style.display="none"},3000)}theChampLoadEvent(function(){theChampRenderFBCommenting()});
js/front/facebook/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/front/facebook/sdk.js CHANGED
@@ -1 +1 @@
1
- window.fbAsyncInit=function(){FB.init({appId:theChampFBKey,channelUrl:theChampSiteUrl+"/channel.html",status:true,cookie:true,xfbml:true,version:"v2.3"});if(typeof theChampDisplayLoginIcon=="function"){theChampDisplayLoginIcon(document,"theChampFacebookButton")}FB.Event.subscribe("comment.create",function(e,t){if(e.commentID){jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}})}})};(function(e){var t,n="facebook-jssdk",r=e.getElementsByTagName("script")[0];if(e.getElementById(n)){return}t=e.createElement("script");t.id=n;t.async=true;t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js";r.parentNode.insertBefore(t,r)})(document)
1
+ function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.3"})}window.fbAsyncInit=function(){theChampInitiateFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),FB.Event.subscribe("comment.create",function(e){e.commentID&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(){}})})},function(e){var t,n="facebook-jssdk",a=e.getElementsByTagName("script")[0];e.getElementById(n)||(t=e.createElement("script"),t.id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",a.parentNode.insertBefore(t,a))}(document);
js/front/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/front/sharing/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/front/sharing/sharing.js CHANGED
@@ -576,39 +576,96 @@ function theChampGetSharingCounts(horizontalCounts, verticalCounts){
576
  }
577
 
578
  if(!(verticalCounts) && !(horizontalCounts)){
579
- var targetElement = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing, .the_champ_horizontal_sharing)").find('span.the_champ_'+j+'_count');
580
  } else if (!(horizontalCounts)){
581
- var targetElement = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_horizontal_sharing)").find('span.the_champ_'+j+'_count');
582
  } else if (!(verticalCounts)){
583
- var targetElement = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing)").find('span.the_champ_'+j+'_count');
584
  } else {
585
- var targetElement = jQuery("div[super-socializer-data-href='"+i+"']").find('span.the_champ_'+j+'_count');
586
  }
587
  if(jQuery(targetElement).attr('ss_st_count')){
588
  sharingCount = parseInt(sharingCount) + parseInt(jQuery(targetElement).attr('ss_st_count'));
589
  }
590
  if(sharingCount < 1){ continue; }
591
  if(sharingCount > 9 && sharingCount < 100){
592
- jQuery(targetElement).css('width', '12px');
593
  }else if(sharingCount > 99 && sharingCount < 1000){
594
- jQuery(targetElement).css('width', '20px');
595
  }else if(sharingCount > 999 && sharingCount < 10000){
596
  sharingCount = Math.floor(sharingCount/1000) + 'K+';
597
- jQuery(targetElement).css('width', '20px');
598
  }else if(sharingCount > 9999 && sharingCount < 100000){
599
  sharingCount = Math.floor(sharingCount/1000) + 'K+';
600
- jQuery(targetElement).css('width', '30px');
601
  }else if(sharingCount > 99999 && sharingCount < 1000000){
602
  sharingCount = Math.floor(sharingCount/1000) + 'K+';
603
- jQuery(targetElement).css('width', '42px');
604
  }else if(sharingCount > 999999){
605
  sharingCount = Math.floor(sharingCount/1000000) + 'M+';
606
- jQuery(targetElement).css('width', '30px');
607
  }
608
- jQuery(targetElement).html(sharingCount).css('visibility', 'visible');
 
 
 
609
  }
610
  }
611
  }
612
  }
613
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
614
  }
576
  }
577
 
578
  if(!(verticalCounts) && !(horizontalCounts)){
579
+ var targetElement = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing, .the_champ_horizontal_sharing)").find('.the_champ_'+j+'_count');
580
  } else if (!(horizontalCounts)){
581
+ var targetElement = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_horizontal_sharing)").find('.the_champ_'+j+'_count');
582
  } else if (!(verticalCounts)){
583
+ var targetElement = jQuery("div[super-socializer-data-href='"+i+"']:not(.the_champ_vertical_sharing)").find('.the_champ_'+j+'_count');
584
  } else {
585
+ var targetElement = jQuery("div[super-socializer-data-href='"+i+"']").find('.the_champ_'+j+'_count');
586
  }
587
  if(jQuery(targetElement).attr('ss_st_count')){
588
  sharingCount = parseInt(sharingCount) + parseInt(jQuery(targetElement).attr('ss_st_count'));
589
  }
590
  if(sharingCount < 1){ continue; }
591
  if(sharingCount > 9 && sharingCount < 100){
592
+ var width = '12px';
593
  }else if(sharingCount > 99 && sharingCount < 1000){
594
+ var width = '20px';
595
  }else if(sharingCount > 999 && sharingCount < 10000){
596
  sharingCount = Math.floor(sharingCount/1000) + 'K+';
597
+ var width = '20px';
598
  }else if(sharingCount > 9999 && sharingCount < 100000){
599
  sharingCount = Math.floor(sharingCount/1000) + 'K+';
600
+ var width = '30px';
601
  }else if(sharingCount > 99999 && sharingCount < 1000000){
602
  sharingCount = Math.floor(sharingCount/1000) + 'K+';
603
+ var width = '42px';
604
  }else if(sharingCount > 999999){
605
  sharingCount = Math.floor(sharingCount/1000000) + 'M+';
606
+ var width = '30px';
607
  }
608
+ if(!jQuery(targetElement).hasClass('the_champ_square_count')){
609
+ jQuery(targetElement).css('width', width);
610
+ }
611
+ jQuery(targetElement).html(sharingCount).css({'visibility': 'visible', 'display': 'block'});
612
  }
613
  }
614
  }
615
  }
616
  });
617
+ }
618
+
619
+ function theChampCapitaliseFirstLetter(e) {
620
+ return e.charAt(0).toUpperCase() + e.slice(1)
621
+ }
622
+
623
+ if(!Modernizr.svg){
624
+ jQuery(function(){
625
+ jQuery('.the_champ_sharing_ul i').each(function(){
626
+ var alt = theChampCapitaliseFirstLetter(jQuery(this).attr('alt').replace(" Plus", "").replace(" ", "").toLowerCase());
627
+ jQuery(this).attr('class', 'theChampSharingButton theChampSharing' + alt + 'Button').attr('style', 'width:32px;height:32px').find('div').remove();
628
+ });
629
+ });
630
+ }
631
+
632
+ jQuery(function(){
633
+ var classes = ['the_champ_vertical_sharing', 'the_champ_vertical_counter'];
634
+ for(var i = 0; i < classes.length; i++){
635
+ var verticalSharingHtml = jQuery('.' + classes[i]).html();
636
+ if(verticalSharingHtml){
637
+ if(jQuery('.' + classes[i]).attr('style').indexOf('right') >= 0){
638
+ var removeClass = Modernizr.svg ? 'theChampPushIn' : 'theChampPushInPng', margin = 'Right', alignment = 'right', addClass = Modernizr.svg ? 'theChampPullOut' : 'theChampPullOutPng';
639
+ }else{
640
+ var removeClass = Modernizr.svg ? 'theChampPullOut' : 'theChampPullOutPng', margin = 'Left', alignment = 'left', addClass = Modernizr.svg ? 'theChampPushIn' : 'theChampPushInPng';
641
+ }
642
+ jQuery('.' + classes[i]).html(verticalSharingHtml + '<div title="Hide" style="float:' + alignment + '" onclick="theChampHideSharing(this, \''+ removeClass +'\', \''+ addClass +'\',\'' + margin +'\', \'' + alignment + '\')" class="theChampSharingArrow ' + removeClass + '"></div>');
643
+ }
644
+ }
645
+ });
646
+
647
+ function theChampHideSharing(elem, removeClass, addClass, margin, alignment){
648
+ var animation = {}, counter = jQuery(elem).parent().hasClass('the_champ_vertical_counter'), offset = parseInt(jQuery(elem).parent().css('width')) + 10 - (counter ? 16 : 0), savedOffset = (counter ? theChampCounterOffset : theChampSharingOffset);
649
+ if(jQuery(elem).attr('title') == 'Hide'){
650
+ animation[alignment] = "-=" + (offset + savedOffset);
651
+ jQuery(elem).parent().animate(animation, 400, function(){
652
+ jQuery(elem).removeClass(removeClass).addClass(addClass).attr('title', 'Share');
653
+ if(counter){
654
+ var cssFloat = alignment == 'left' ? 'right' : 'left';
655
+ jQuery(elem).css('float', cssFloat);
656
+ }else{
657
+ jQuery(elem).css('margin' + margin, offset + 'px')
658
+ }
659
+ });
660
+ }else{
661
+ animation[alignment] = "+=" + (offset + savedOffset);
662
+ jQuery(elem).parent().animate(animation, 400, function(){
663
+ jQuery(elem).removeClass(addClass).addClass(removeClass).attr('title', 'Hide');
664
+ if(counter){
665
+ jQuery(elem).css('float', alignment);
666
+ }else{
667
+ jQuery(elem).css('margin' + margin, '0px');
668
+ }
669
+ });
670
+ }
671
  }
js/front/social_login/common.js CHANGED
@@ -1 +1 @@
1
- function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampAjaxUserAuth(e,t){theChampLoadingIcon(),jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_user_auth",profileData:e,provider:t,redirectionUrl:theChampTwitterRedirect?theChampTwitterRedirect:""},success:function(e){var t=theChampSiteUrl;if(1==e.status)t="register"==e.message?e.url&&""!=e.url?e.url:theChampRegRedirectionUrl+(theChampCommentFormLogin?"/#commentform":""):"linked"==e.message?theChampLinkingRedirection+"?linked=1":e.url&&""!=e.url?e.url:theChampRedirectionUrl+(theChampCommentFormLogin?"/#commentform":"");else if(null!==e.message.match(/ask/)){var a=e.message.split("|");t=theChampSiteUrl+"?SuperSocializerEmail=1&par="+a[1]}else"unverified"==e.message?t=theChampSiteUrl+"?SuperSocializerUnverified=1":"not linked"==e.message?t=theChampLinkingRedirection+"?linked=0":"provider exists"==e.message&&(t=theChampLinkingRedirection+"?linked=2");location.href=t}})}function theChampInitiateLogin(e){var t=e.getAttribute("alt");if("Login with Facebook"==t)theChampAuthUserFB();else if("Login with Twitter"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Twitter&super_socializer_redirect_to="+theChampTwitterRedirect);else if("Login with Xing"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Xing&super_socializer_redirect_to="+theChampTwitterRedirect);else{if("Login with Linkedin"==t)return IN.User.authorize(),!1;"Login with Google"==t?theChampInitializeGPLogin():"Login with Vkontakte"==t?theChampInitializeVKLogin():"Login with Instagram"==t&&theChampInitializeInstaLogin()}}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)jQuery("."+t).css("display","block");else for(var a=theChampGetElementsByClass(e,t),i=0;i<a.length;i++)a[i].style.display="block"}function theChampValidateEmail(e){var t=/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;return t.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))}})}theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;
1
+ function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampAjaxUserAuth(e,t){theChampLoadingIcon(),jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_user_auth",profileData:e,provider:t,redirectionUrl:theChampTwitterRedirect?theChampTwitterRedirect:""},success:function(e){var t=theChampSiteUrl;if(1==e.status)t="register"==e.message?e.url&&""!=e.url?e.url:theChampRegRedirectionUrl+(theChampCommentFormLogin?"/#commentform":""):"linked"==e.message?theChampLinkingRedirection+"?linked=1":e.url&&""!=e.url?e.url:theChampRedirectionUrl+(theChampCommentFormLogin?"/#commentform":"");else if(null!==e.message.match(/ask/)){var a=e.message.split("|");t=theChampSiteUrl+"?SuperSocializerEmail=1&par="+a[1]}else"unverified"==e.message?t=theChampSiteUrl+"?SuperSocializerUnverified=1":"not linked"==e.message?t=theChampLinkingRedirection+"?linked=0":"provider exists"==e.message&&(t=theChampLinkingRedirection+"?linked=2");location.href=t},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampInitiateLogin(e){var t=e.getAttribute("alt");if("Login with Facebook"==t)theChampAuthUserFB();else if("Login with Twitter"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Twitter&super_socializer_redirect_to="+theChampTwitterRedirect);else if("Login with Xing"==t)theChampPopup(theChampSiteUrl+"?SuperSocializerAuth=Xing&super_socializer_redirect_to="+theChampTwitterRedirect);else{if("Login with Linkedin"==t)return IN.User.authorize(),!1;"Login with Google"==t?theChampInitializeGPLogin():"Login with Vkontakte"==t?theChampInitializeVKLogin():"Login with Instagram"==t&&theChampInitializeInstaLogin()}}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(var a=0;a<t.length;a++)for(var i=theChampGetElementsByClass(e,t[a]),h=0;h<i.length;h++)i[h].style.display="block"}function theChampValidateEmail(e){var t=/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;return t.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;Modernizr.svg||jQuery(function(){jQuery(".the_champ_login_ul i").each(function(){var e=theChampCapitaliseFirstLetter2(jQuery(this).attr("alt").replace("Login with ","").toLowerCase());jQuery(this).attr("class","theChampLogin theChampLoginButton theChamp"+e+"Button").attr("style","display:block;width:32px;height:32px").find("div").remove()})});
js/front/social_login/google.js CHANGED
@@ -1 +1 @@
1
- function theChampGoogleOnLoad(){theChampDisplayLoginIcon(document,"theChampGoogleButton")}function theChampInitializeGPLogin(){gapi.auth.signIn({callback:theChampGPSignInCallback,clientid:theChampGoogleKey,cookiepolicy:"single_host_origin",requestvisibleactions:"http://schema.org/AddAction",scope:"https://www.googleapis.com/auth/plus.login email"})}function theChampGPSignInCallback(e){if(e["status"]["signed_in"]){gapi.client.load("plus","v1",function(){if(e["access_token"]){theChampGetProfile()}else if(e["error"]){console.log("There was an error: "+e["error"])}})}else{console.log("Sign-in state: "+e["error"])}}function theChampGetProfile(){theChampLoadingIcon();var e=gapi.client.plus.people.get({userId:"me"});e.execute(function(e){if(e.error){if(e.message=="Access Not Configured. Please use Google Developers Console to activate the API for your project."){alert(theChampGoogleErrorMessage);window.open("http://thechamplord.wordpress.com/2013/12/30/getting-google-plus-client-id/")}return}else if(e.id){theChampCallAjax(function(){theChampAjaxUserAuth(e,"google")})}})}(function(){var e=document.createElement("script");e.type="text/javascript";e.async=true;e.src="https://apis.google.com/js/client:platform.js?onload=theChampGoogleOnLoad";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})()
1
+ function theChampGoogleOnLoad(){theChampDisplayLoginIcon(document,["theChampGoogleButton","theChampGoogleLogin"])}function theChampInitializeGPLogin(){gapi.auth.signIn({callback:theChampGPSignInCallback,clientid:theChampGoogleKey,cookiepolicy:"single_host_origin",scope:"profile email"})}function theChampGPSignInCallback(e){e.status.signed_in?gapi.client.load("plus","v1",function(){e.access_token?theChampGetProfile():e.error&&console.log("There was an error: "+e.error)}):console.log("Sign-in state: "+e.error)}function theChampGetProfile(){theChampLoadingIcon();var e=gapi.client.plus.people.get({userId:"me"});e.execute(function(e){return e.error?void("Access Not Configured. Please use Google Developers Console to activate the API for your project."==e.message&&(alert(theChampGoogleErrorMessage),window.open("http://thechamplord.wordpress.com/2013/12/30/getting-google-plus-client-id/"))):void(e.id&&theChampCallAjax(function(){theChampAjaxUserAuth(e,"google")}))})}!function(){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src="https://apis.google.com/js/client:platform.js?onload=theChampGoogleOnLoad";var o=document.getElementsByTagName("script")[0];o.parentNode.insertBefore(e,o)}();
js/front/social_login/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/front/social_login/linkedin.js CHANGED
@@ -1 +1 @@
1
- function theChampLinkedInOnLoad(){theChampDisplayLoginIcon(document,"theChampLinkedinButton")}IN.Event.on(IN,"auth",function(){theChampLoadingIcon();IN.API.Profile("me").fields(["email-address","id","picture-urls::(original)","first-name","last-name","headline","picture-url","public-profile-url"]).result(function(e){if(e.values[0].id&&e.values[0].id!=""){theChampCallAjax(function(){theChampAjaxUserAuth(e.values[0],"linkedin")})}})})
1
+ function theChampLinkedInOnLoad(){theChampDisplayLoginIcon(document,["theChampLinkedinButton", "theChampLinkedinLogin"])}IN.Event.on(IN,"auth",function(){theChampLoadingIcon();IN.API.Profile("me").fields(["email-address","id","picture-urls::(original)","first-name","last-name","headline","picture-url","public-profile-url"]).result(function(e){if(e.values[0].id&&e.values[0].id!=""){theChampCallAjax(function(){theChampAjaxUserAuth(e.values[0],"linkedin")})}})})
js/front/social_login/vkontakte.js CHANGED
@@ -1 +1 @@
1
- function theChampInitializeVKLogin(){VK.Auth.login(function(e){if(e.session.mid){VK.Api.call("getProfiles",{uids:e.session.mid,fields:"uid, first_name, last_name, nickname, photo, photo_big"},function(e){if(e.response[0].uid){theChampCallAjax(function(){theChampAjaxUserAuth(e.response[0],"vkontakte")})}})}else{}})}window.vkAsyncInit=function(){VK.init({apiId:theChampVkKey});theChampDisplayLoginIcon(document,"theChampVkontakteButton")};setTimeout(function(){var e=document.createElement("script");e.type="text/javascript";e.src="//vk.com/js/api/openapi.js";e.async=true;document.getElementById("vk_api_transport").appendChild(e)},0)
1
+ function theChampInitializeVKLogin(){VK.Auth.login(function(e){if(e.session.mid){VK.Api.call("getProfiles",{uids:e.session.mid,fields:"uid, first_name, last_name, nickname, photo, photo_big"},function(e){if(e.response[0].uid){theChampCallAjax(function(){theChampAjaxUserAuth(e.response[0],"vkontakte")})}})}else{}})}window.vkAsyncInit=function(){VK.init({apiId:theChampVkKey});theChampDisplayLoginIcon(document,["theChampVkontakteButton", "theChampVkontakteLogin"])};setTimeout(function(){var e=document.createElement("script");e.type="text/javascript";e.src="//vk.com/js/api/openapi.js";e.async=true;document.getElementById("vk_api_transport").appendChild(e)},0)
js/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
js/modernizr.custom.82187.js ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ /* Modernizr 2.8.3 (Custom Build) | MIT & BSD
2
+ * Build: http://modernizr.com/download/#-svg
3
+ */
4
+ ;window.Modernizr=function(a,b,c){function u(a){i.cssText=a}function v(a,b){return u(prefixes.join(a+";")+(b||""))}function w(a,b){return typeof a===b}function x(a,b){return!!~(""+a).indexOf(b)}function y(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:w(f,"function")?f.bind(d||b):f}return!1}var d="2.8.3",e={},f=b.documentElement,g="modernizr",h=b.createElement(g),i=h.style,j,k={}.toString,l={svg:"http://www.w3.org/2000/svg"},m={},n={},o={},p=[],q=p.slice,r,s={}.hasOwnProperty,t;!w(s,"undefined")&&!w(s.call,"undefined")?t=function(a,b){return s.call(a,b)}:t=function(a,b){return b in a&&w(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=q.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(q.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(q.call(arguments)))};return e}),m.svg=function(){return!!b.createElementNS&&!!b.createElementNS(l.svg,"svg").createSVGRect};for(var z in m)t(m,z)&&(r=z.toLowerCase(),e[r]=m[z](),p.push((e[r]?"":"no-")+r));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)t(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof enableClasses!="undefined"&&enableClasses&&(f.className+=" "+(b?"":"no-")+a),e[a]=b}return e},u(""),h=j=null,e._version=d,e}(this,this.document);
languages/Super-Socializer-de_DE.mo CHANGED
Binary file
languages/Super-Socializer-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-21 05:48+0530\n"
6
- "PO-Revision-Date: 2015-04-21 05:48+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: es\n"
@@ -25,36 +25,40 @@ msgstr "Geben Sie genau die folgende URL in <strong> Webseite </ strong> und <st
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Stellen Sie sicher, cURL auf Ihre Website-Server aktiviert. Möglicherweise müssen Sie den Server-Administrator Ihrer Website kontaktieren, um dies zu überprüfen"
27
 
28
- #: ../super_socializer.php:348
29
  msgid "Please verify your email address to login."
30
  msgstr "Bitte best&auml;tigen Sie ihre E-Mail Adresse, um sich einzuloggen"
31
 
32
- #: ../super_socializer.php:348
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Ihre E-Mail Adresse wurde erfolgreich best&auml;tigt. Sie k&ouml;nnen sich nun einloggen."
35
 
36
- #: ../super_socializer.php:352
37
  msgid "Notification"
38
  msgstr "Benachrichtigung"
39
 
40
- #: ../super_socializer.php:371
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "Bitte geben Sie eine g&uuml;ltige E-Mail Adresse an."
44
 
45
- #: ../super_socializer.php:374
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "&Uuml;berpr&uuml;fen Sie ihren Posteingang, um die Registrierung zu vollenden."
48
 
49
- #: ../super_socializer.php:387
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Führen Sie die Schritte 11 und 12 bei Google App-Konfigurationsseite, um zu öffnen"
52
 
53
- #: ../super_socializer.php:547
 
 
 
 
54
  msgid "Email you entered is already registered or invalid"
55
  msgstr "E-Mail eingetragen ist bereits registriert oder ungültig"
56
 
57
- #: ../super_socializer.php:551
58
  msgid "Please enter a valid email address. You might be required to verify it"
59
  msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein. Es kann erforderlich werden es überprüfen"
60
 
@@ -70,71 +74,74 @@ msgstr "Für Hilfe zeigen"
70
  msgid "Click to hide help"
71
  msgstr "Für Hilfe verbergen"
72
 
73
- #: ../helper.php:174
74
  msgid "Settings"
75
  msgstr "Configuración"
76
 
77
- #: ../helper.php:466
78
  msgid "Account linked successfully"
79
  msgstr "Konto erfolgreich verbunden"
80
 
81
- #: ../helper.php:472
82
  msgid "Account already exists or linked"
83
  msgstr "Konto bereits vorhanden oder verknüpft"
84
 
85
- #: ../helper.php:483
86
  #, fuzzy
87
  msgid "You are already connected with"
88
  msgstr "Sie sind bereit, ihre Website so sozialisieren"
89
 
90
- #: ../helper.php:483
91
  msgid "as primary social network"
92
  msgstr "als primäre soziale Netz"
93
 
94
- #: ../helper.php:500
95
  msgid "Link your social account to login to your account at this website"
96
  msgstr "Verknüpfen Sie Ihre sozialen Konto bei Ihrem Konto auf dieser Website"
97
 
98
- #: ../helper.php:545
99
  msgid "Currently"
100
  msgstr "zur Zeit"
101
 
102
- #: ../helper.php:545
103
  msgid "Remove"
104
  msgstr "entfernen"
105
 
106
- #: ../helper.php:636
107
  msgid "Disable Horizontal Social Sharing on this "
108
  msgstr "Deaktivieren Horizontale Sozialfreigabe auf diese"
109
 
110
- #: ../helper.php:641
111
  msgid "Disable Vertical Social Sharing on this "
112
  msgstr "Deaktivieren Vertikale soziale Netzwerke dazu"
113
 
114
- #: ../helper.php:646
115
- msgid "Disable Horizontal Social Counter on this "
 
116
  msgstr "Deaktivieren Horizontale Sozialstatistik auf diese"
117
 
118
- #: ../helper.php:651
119
- msgid "Disable Vertical Social Counter on this "
 
120
  msgstr "Deaktivieren Vertikale Sozialstatistik auf diese"
121
 
122
- #: ../helper.php:656
123
- msgid "Disable Facebook Comments on this "
 
124
  msgstr "Deaktivieren Sie Facebook Kommentare zu dieser"
125
 
126
- #: ../helper.php:665
127
  #, fuzzy
128
  msgid "Horizontal sharing"
129
  msgstr "Horizontale Anzeige"
130
 
131
- #: ../helper.php:671
132
- #: ../helper.php:690
133
  #, fuzzy
134
  msgid "Starting share count for "
135
  msgstr "conteos muestran acciones"
136
 
137
- #: ../helper.php:684
138
  #, fuzzy
139
  msgid "Vertical sharing"
140
  msgstr "Social Sharing"
@@ -152,988 +159,808 @@ msgid "by"
152
  msgstr "von"
153
 
154
  #: ../admin/help.php:7
155
- msgid "I am a tech enthusiast. I like to play with code and build great stuff (and like to call myself - The Champ....:) ). You can connect with me (and my upcoming work) via:"
156
- msgstr "Ich bin ein Tech-Enthusiasten. Ich mag mit Code zu spielen und bauen tolle Sachen (und mich gerne nennen - Der Champ .... :)). Sie können mit mir (und meine bevorstehende Arbeit) über eine Verbindung:"
157
 
158
- #: ../admin/help.php:18
159
  msgid "Plugin Demo"
160
  msgstr "Plugin Demo"
161
 
162
- #: ../admin/help.php:20
163
  msgid "You can see the plugin in action at following link"
164
  msgstr "Sie können das Plugin in Aktion auf folgendem Link zu sehen"
165
 
166
- #: ../admin/help.php:26
167
  msgid "Support"
168
  msgstr "Unterstützung"
169
 
170
- #: ../admin/help.php:28
171
- msgid "If you like my plugin or have any query, you can drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, like my <strong>Facebook</strong> pages and follow me at <strong>Twitter</strong>."
 
172
  msgstr "Wenn Sie mein Plugin oder haben jede mögliche Frage, können Sie mir eine E-Mail an <a href=\"mailto:lordofthechamps@gmail.com\"> lordofthechamps@gmail.com </a> fallen lassen, wie mein <strong> Facebook </ strong>, Seiten und folge mir auf <strong> Twitter </ strong>."
173
 
174
- #: ../admin/help.php:30
 
175
  #: ../admin/help.php:33
176
  #: ../admin/help.php:34
177
  #: ../admin/help.php:35
178
  #: ../admin/help.php:36
179
- #: ../admin/help.php:37
180
  msgid "Rate 5-star"
181
  msgstr "Bewerten Sie 5-Sterne-"
182
 
183
- #: ../admin/help.php:45
184
- msgid "Plugin Fan Page"
185
- msgstr "Plugin Fan Page"
186
-
187
- #: ../admin/help.php:54
188
- msgid "My Fan Page"
189
- msgstr "Mein Fan Page"
190
 
191
- #: ../admin/help.php:73
192
  msgid "Want plugin customization?"
193
  msgstr "Willst Plugin Kundenbezogenheit?"
194
 
195
- #: ../admin/help.php:75
196
- msgid "If you want custom features in the plugin, I can do it for you. Just drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>"
 
197
  msgstr "Wenn Sie benutzerdefinierte Funktionen im Plugin möchten, kann ich für Sie tun. Schreiben Sie mir einfach eine E-Mail an <a href=\"mailto:lordofthechamps@gmail.com\"> lordofthechamps@gmail.com </a>"
198
 
199
- #: ../admin/social_counter.php:11
200
- #: ../admin/social_counter.php:20
201
- #: ../admin/social_sharing.php:14
202
- #: ../admin/social_sharing.php:24
203
  #: ../admin/social_login.php:9
204
  #: ../admin/social_login.php:17
 
 
205
  msgid "Basic Configuration"
206
  msgstr "Allgemeine Einstellungen"
207
 
208
- #: ../admin/social_counter.php:12
209
- msgid "Social Counter"
210
- msgstr "Social Counter"
 
211
 
212
- #: ../admin/social_counter.php:13
213
- #: ../admin/social_sharing.php:16
 
 
 
 
 
 
214
  #: ../admin/social_login.php:11
 
 
 
 
215
  msgid "Shortcode & Widget"
216
  msgstr "Widgets und shortcodes"
217
 
218
- #: ../admin/social_counter.php:14
219
- #: ../admin/social_sharing.php:18
 
 
 
 
220
  #: ../admin/social_commenting.php:12
 
221
  msgid "FAQ"
222
  msgstr "FAQ"
223
 
224
- #: ../admin/social_counter.php:26
225
- msgid "Enable Social Counter"
226
- msgstr "Aktivieren Social Counter"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
 
228
- #: ../admin/social_counter.php:36
229
- msgid "Master control for Social Counter. It must be checked to enable Social Counter functionality"
230
- msgstr "Master-Regler für soziale Zähler. Es ist zu prüfen, um Social Zähler Funktionalität zu ermöglichen"
 
 
231
 
232
- #: ../admin/social_counter.php:50
233
- msgid "<strong>Note:</strong> To disable counter on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
234
- msgstr "<strong> Hinweis: </ strong> So deaktivieren Sie die Marke auf bestimmte Seite/Post, bearbeiten diese Seite / Post und überprüfen Sie die Optionen unten im <strong>\"Super-Socializer \" </ strong>"
 
 
 
 
 
 
 
235
 
236
- #: ../admin/social_counter.php:67
237
- #: ../admin/social_sharing.php:88
238
- msgid "bit.ly url shortener"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  msgstr "bit.ly url acortador"
240
 
241
- #: ../admin/social_counter.php:73
242
- msgid "Enable bit.ly url shortener for tweet button"
243
- msgstr "Aktivieren bit.ly URL Shortener für tweet Taste"
 
 
 
 
 
244
 
245
- #: ../admin/social_counter.php:83
246
- #: ../admin/social_sharing.php:104
 
 
 
 
247
  msgid "Master control to enable bit.ly url shortening for sharing"
248
  msgstr "Master-Regler auf bit.ly URL-Kürzung für die gemeinsame Nutzung zu ermöglichen"
249
 
250
- #: ../admin/social_counter.php:91
251
- #: ../admin/social_sharing.php:112
252
  msgid "bit.ly username"
253
  msgstr "bit.ly Benutzername"
254
 
255
- #: ../admin/social_counter.php:101
256
- #: ../admin/social_sharing.php:122
257
  #, php-format
258
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
259
  msgstr "Anmeldung zu Ihrem bit.ly und gehen Sie zu <a href=\"%s\" target=\"_blank\"> diesen Link </a> bit.ly Benutzernamen erhalten"
260
 
261
- #: ../admin/social_counter.php:110
262
- #: ../admin/social_sharing.php:131
263
  msgid "bit.ly API Key"
264
  msgstr "bit.ly API Key"
265
 
266
- #: ../admin/social_counter.php:120
267
- #: ../admin/social_sharing.php:141
268
  #, php-format
269
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
270
  msgstr "Anmeldung zu Ihrem bit.ly und gehen Sie zu <a href=\"%s\" target=\"_blank\"> diesen Link </a> Ihren API-Schlüssel zu bekommen"
271
 
272
- #: ../admin/social_counter.php:130
273
- #: ../admin/social_counter.php:136
274
- #: ../admin/social_commenting.php:187
275
- msgid "Language"
276
- msgstr "Sprache"
277
-
278
- #: ../admin/social_counter.php:146
279
- #, php-format
280
- msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
281
- msgstr "Geben Sie den Code der Sprache, die Sie verwenden, um Zähler machen wollen. Sie können die Sprachcodes unter <a href=\"%s\" target=\"_blank\"> diesen Link </a> finden. Leer lassen für Standardsprache (Englisch)"
282
-
283
- #: ../admin/social_counter.php:155
284
- msgid "Twitter username in tweet button"
285
- msgstr "Twitter Benutzername in tweet Taste"
286
 
287
- #: ../admin/social_counter.php:161
288
- #: ../admin/social_sharing.php:157
289
  msgid "Twitter username (without @)"
290
  msgstr "Twitter Benutzername (ohne @)"
291
 
292
- #: ../admin/social_counter.php:171
293
- msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
294
  msgstr "Sofern Benutzername wird angehängt werden, nachdem der Inhalt als \"überUSERNAME \" getwittert. Leer lassen, wenn Sie nicht möchten, dass jede Benutzernamen ein."
295
 
296
- #: ../admin/social_counter.php:181
297
- msgid "Horizontal Counter Interface Options"
298
- msgstr "Horizontale Zähler Schnittstellenoptionen"
299
 
300
- #: ../admin/social_counter.php:187
301
- msgid "Enable horizontal counter interface"
302
- msgstr "Aktivieren Horizontalzähler Schnittstelle"
303
 
304
- #: ../admin/social_counter.php:197
305
- msgid "Master control to enable horizontal counter"
306
- msgstr "Master-Regler auf Horizontalzähler aktivieren"
307
 
308
- #: ../admin/social_counter.php:207
309
- #: ../admin/social_counter.php:422
310
- #: ../admin/social_sharing.php:203
311
- #: ../admin/social_sharing.php:517
312
  msgid "Target Url"
313
  msgstr "Ziel-URL"
314
 
315
- #: ../admin/social_counter.php:211
316
- #: ../admin/social_counter.php:426
317
- #: ../admin/social_sharing.php:207
318
- #: ../admin/social_sharing.php:521
319
  msgid "Url of the webpage where icons are located (default)"
320
  msgstr "URL der Webseite an, Symbolen befinden (Standard)"
321
 
322
- #: ../admin/social_counter.php:213
323
- #: ../admin/social_counter.php:428
324
- #: ../admin/social_sharing.php:209
325
- #: ../admin/social_sharing.php:523
326
  msgid "Url of the homepage of your website"
327
  msgstr "URL der Homepage Ihrer Website"
328
 
329
- #: ../admin/social_counter.php:215
330
- #: ../admin/social_counter.php:430
331
- #: ../admin/social_sharing.php:211
332
- #: ../admin/social_sharing.php:525
333
  msgid "Custom url"
334
  msgstr "Spezielle URL"
335
 
336
- #: ../admin/social_counter.php:222
337
- #: ../admin/social_counter.php:437
338
- msgid "Url to like/share/tweet and display like/share/tweet counts"
339
- msgstr "URL zu mögen / share / Tweet und Display wie / share / tweet zählt"
340
 
341
- #: ../admin/social_counter.php:230
342
- #: ../admin/social_sharing.php:226
343
  #: ../admin/social_login.php:314
 
344
  msgid "Title"
345
  msgstr "Titel"
346
 
347
- #: ../admin/social_counter.php:240
348
- msgid "The text to display above the counter interface"
349
- msgstr "Der Text, über den Ladentisch-Oberfläche angezeigt"
350
-
351
- #: ../admin/social_counter.php:248
352
- #: ../admin/social_counter.php:445
353
- msgid "Select and rearrange providers"
354
- msgstr "Wählen und ordnen Anbieter"
355
-
356
- #: ../admin/social_counter.php:292
357
- #: ../admin/social_counter.php:488
358
- msgid "Select the providers for counter interface. Drag them to rearrange."
359
- msgstr "Wählen Sie die Anbieter für den Zähler-Schnittstelle. Ziehen Sie sie neu anzuordnen."
360
-
361
- #: ../admin/social_counter.php:300
362
- #: ../admin/social_counter.php:514
363
- #: ../admin/social_sharing.php:376
364
- #: ../admin/social_sharing.php:690
365
- msgid "Horizontal alignment"
366
- msgstr "Horizontale Anzeige"
367
-
368
- #: ../admin/social_counter.php:304
369
- #: ../admin/social_counter.php:518
370
- #: ../admin/social_sharing.php:380
371
- #: ../admin/social_sharing.php:694
372
- msgid "Left"
373
- msgstr "izquierda"
374
-
375
- #: ../admin/social_counter.php:305
376
- #: ../admin/social_sharing.php:381
377
- msgid "Center"
378
- msgstr "Zentrum"
379
-
380
- #: ../admin/social_counter.php:306
381
- #: ../admin/social_counter.php:519
382
- #: ../admin/social_sharing.php:382
383
- #: ../admin/social_sharing.php:695
384
- msgid "Right"
385
- msgstr "rechts"
386
-
387
- #: ../admin/social_counter.php:314
388
- #: ../admin/social_counter.php:527
389
- msgid "Horizontal alignment of the counter interface"
390
- msgstr "Horizontale Ausrichtung des Gegen Schnittstelle"
391
-
392
- #: ../admin/social_counter.php:322
393
  #: ../admin/social_sharing.php:398
394
- msgid "Position with respect to content"
395
- msgstr "Relative Position zum Inhalt"
396
-
397
- #: ../admin/social_counter.php:326
398
- #: ../admin/social_sharing.php:402
399
- msgid "Top of the content"
400
- msgstr "&Uuml;ber dem Inhalt"
401
-
402
- #: ../admin/social_counter.php:328
403
- #: ../admin/social_sharing.php:404
404
- msgid "Bottom of the content"
405
- msgstr "Unter dem Inhalt"
406
-
407
- #: ../admin/social_counter.php:335
408
- msgid "Specify position of the counter interface with respect to the content"
409
- msgstr "Angeben Position des Gegen Schnittstelle mit Bezug auf den Gehalt"
410
-
411
- #: ../admin/social_counter.php:343
412
- #: ../admin/social_counter.php:593
413
- msgid "Counter location"
414
- msgstr "Gegen Lage"
415
-
416
- #: ../admin/social_counter.php:347
417
- #: ../admin/social_counter.php:597
418
- #: ../admin/social_sharing.php:423
419
- #: ../admin/social_sharing.php:773
420
- #: ../admin/social_login.php:514
421
- #: ../admin/social_login.php:544
422
- msgid "Homepage"
423
- msgstr "Startseite"
424
-
425
- #: ../admin/social_counter.php:349
426
- #: ../admin/social_counter.php:599
427
- #: ../admin/social_sharing.php:425
428
- #: ../admin/social_sharing.php:775
429
- msgid "Posts"
430
- msgstr "Beitrag"
431
-
432
- #: ../admin/social_counter.php:351
433
- #: ../admin/social_counter.php:601
434
- #: ../admin/social_sharing.php:427
435
- #: ../admin/social_sharing.php:777
436
- msgid "Pages"
437
- msgstr "Seite"
438
-
439
- #: ../admin/social_counter.php:353
440
- #: ../admin/social_counter.php:603
441
- #: ../admin/social_sharing.php:429
442
- #: ../admin/social_sharing.php:779
443
- msgid "Excerpts"
444
- msgstr "Vorschau"
445
-
446
- #: ../admin/social_counter.php:355
447
- #: ../admin/social_counter.php:605
448
- #: ../admin/social_sharing.php:431
449
- #: ../admin/social_sharing.php:781
450
- msgid "Category Archives"
451
- msgstr "Archivos de la categoría"
452
-
453
- #: ../admin/social_counter.php:357
454
- #: ../admin/social_counter.php:607
455
- #: ../admin/social_sharing.php:433
456
- #: ../admin/social_sharing.php:783
457
- msgid "Archive Pages (Category, Tag, Author or Date based pages)"
458
- msgstr "Archiv Seiten (Kategorie, Stichwort, Autor oder Datum basierend Seiten)"
459
-
460
- #: ../admin/social_counter.php:363
461
- #: ../admin/social_sharing.php:439
462
- msgid "BuddyPress activity and groups"
463
- msgstr "Buddypress Aktivität und Gruppen"
464
-
465
- #: ../admin/social_counter.php:370
466
- #: ../admin/social_counter.php:613
467
- #: ../admin/social_sharing.php:446
468
- #: ../admin/social_sharing.php:789
469
- msgid "BBPress forum"
470
- msgstr "BBPress Forum"
471
-
472
- #: ../admin/social_counter.php:373
473
- #: ../admin/social_counter.php:616
474
- #: ../admin/social_sharing.php:449
475
- #: ../admin/social_sharing.php:792
476
- msgid "BBPress topic"
477
- msgstr "BBPress topic"
478
-
479
- #: ../admin/social_counter.php:376
480
- #: ../admin/social_sharing.php:452
481
- msgid "BBPress reply"
482
- msgstr "BBPress reply"
483
-
484
- #: ../admin/social_counter.php:386
485
- msgid "Specify the pages where you want to enable counter interface"
486
- msgstr "Geben Sie die Seiten an der Sie Zähler-Schnittstelle aktiviert werden soll"
487
-
488
- #: ../admin/social_counter.php:396
489
- msgid "Vertical (Floating) counter interface Options"
490
- msgstr "Vertikal (Schwimmende) Zähler Schnittstelle Optionen"
491
-
492
- #: ../admin/social_counter.php:402
493
- msgid "Enable vertical (floating) counter interface"
494
- msgstr "Aktivieren Vertikal (floating) Zähler-Schnittstelle"
495
-
496
- #: ../admin/social_counter.php:412
497
- msgid "Master control to enable vertical (floating) counter widget"
498
- msgstr "Master-Regler auf Vertikal (schwimmenden) Gegen Widget aktivieren"
499
-
500
- #: ../admin/social_counter.php:496
501
- #: ../admin/social_sharing.php:672
502
- msgid "Background Color"
503
- msgstr "color de fondo"
504
-
505
- #: ../admin/social_counter.php:506
506
- msgid "Specify the color or hex code (example #cc78e0) for the background of vertical counter bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
507
- msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de barra de bar vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
508
-
509
- #: ../admin/social_counter.php:536
510
- #: ../admin/social_sharing.php:712
511
- msgid "Left offset"
512
- msgstr "desplazamiento izquierda"
513
-
514
- #: ../admin/social_counter.php:546
515
- msgid "Specify a number. Increase in number will shift counter interface towards right and decrease will shift it towards left."
516
- msgstr "Geben Sie eine Zahl. Anstieg der Zahl Zähler Schnittstelle nach rechts verschieben und Abnahme wird ihn nach rechts zu verschieben."
517
-
518
- #: ../admin/social_counter.php:556
519
- #: ../admin/social_sharing.php:732
520
- msgid "Right offset"
521
- msgstr "Versatz nach rechts"
522
-
523
- #: ../admin/social_counter.php:566
524
- msgid "Specify a number. Increase in number will shift counter interface towards left and decrease will shift it towards right."
525
- msgstr "Geben Sie eine Zahl. Anstieg der Zahl Zähler Schnittstelle nach links verschieben und Abnahme wird es nach rechts zu verschieben."
526
-
527
- #: ../admin/social_counter.php:575
528
- #: ../admin/social_sharing.php:751
529
- msgid "Top offset"
530
- msgstr "superior compensar"
531
-
532
- #: ../admin/social_counter.php:585
533
- msgid "Specify a number. Increase in number will shift counter interface towards bottom and decrease will shift it towards top."
534
- msgstr "Geben Sie eine Zahl. Anstieg der Zahl Zähler Schnittstelle zum Boden verschieben und Abnahme wird es in Richtung Spitze zu verschieben."
535
-
536
- #: ../admin/social_counter.php:626
537
- msgid "Specify the pages where you want to enable vertical counter interface"
538
- msgstr "Legen Sie die Seiten, auf denen Sie die vertikale Zähler-Schnittstelle aktiviert werden soll"
539
-
540
- #: ../admin/social_counter.php:642
541
- #: ../admin/social_sharing.php:837
542
- #: ../admin/social_commenting.php:11
543
- #: ../admin/social_commenting.php:211
544
- #: ../admin/social_login.php:654
545
- msgid "Shortcode"
546
- msgstr "Shortcodes"
547
-
548
- #: ../admin/social_counter.php:644
549
- msgid "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content of required page/post where you want to display Social Counter interface."
550
- msgstr "Sie können mit <strong> [TheChamp-Counter] </ strong> Kurzwahl in den Inhalt der erforderlichen Seite / Post, wo Sie Social Zähler-Schnittstelle anzeigen möchten."
551
-
552
- #: ../admin/social_counter.php:645
553
- #: ../admin/social_counter.php:650
554
- #: ../admin/social_counter.php:655
555
- #: ../admin/social_counter.php:660
556
- #: ../admin/social_counter.php:665
557
- #: ../admin/social_counter.php:669
558
- #: ../admin/social_sharing.php:840
559
- #: ../admin/social_sharing.php:845
560
- #: ../admin/social_sharing.php:850
561
- #: ../admin/social_sharing.php:855
562
- #: ../admin/social_sharing.php:860
563
- #: ../admin/social_sharing.php:865
564
- #: ../admin/social_sharing.php:869
565
- #: ../admin/social_commenting.php:214
566
- #: ../admin/social_commenting.php:219
567
- #: ../admin/social_commenting.php:224
568
- #: ../admin/social_commenting.php:229
569
- #: ../admin/social_commenting.php:234
570
- #: ../admin/social_login.php:657
571
- #: ../admin/social_login.php:660
572
- msgid "Example"
573
- msgstr "ejemplo"
574
-
575
- #: ../admin/social_counter.php:647
576
- #: ../admin/social_sharing.php:842
577
- #: ../admin/social_commenting.php:216
578
- msgid "You can use following attributes in the Shortcode"
579
- msgstr "Puede utilizar los atributos siguientes en el Código corto"
580
-
581
- #: ../admin/social_counter.php:649
582
- msgid "Use <strong>style</strong> attribute to style the rendered Social Counter interface"
583
- msgstr "Verwenden Sie <strong>style</ strong> der Attribut Stil gemacht Social Zähler-Schnittstelle"
584
-
585
- #: ../admin/social_counter.php:654
586
- #, fuzzy
587
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Counter interface. Default type is \"horizontal\"."
588
- msgstr "Verwenden Sie <strong> type </ strong> Attribut, um den Typ (\"horizontal\" oder \"vertical \") für Sozialstatistik Schnittstelle. Standardtyp ist \"horizontal\"."
589
-
590
- #: ../admin/social_counter.php:658
591
- msgid "Left (Works with \"Vertical\" type interface only)"
592
- msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
593
-
594
- #: ../admin/social_counter.php:659
595
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Counter interface."
596
- msgstr "Verwenden Sie <strong>left</ strong> Attribut angeben, das linke Offset (Abstand von der linken Seite des Bildschirms) für Sozialstatistik Schnittstelle."
597
-
598
- #: ../admin/social_counter.php:663
599
- msgid "Top (Works with \"Vertical\" type interface only)"
600
- msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
601
-
602
- #: ../admin/social_counter.php:664
603
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Counter interface."
604
- msgstr "Verwenden Sie <strong>top</ strong> Attribut, um den oberen Offset von Social Zähler Schnittstelle festlegen (Abstand von der oben auf dem Bildschirm)."
605
-
606
- #: ../admin/social_counter.php:667
607
- #: ../admin/social_sharing.php:867
608
- msgid "url"
609
- msgstr ""
610
-
611
- #: ../admin/social_counter.php:668
612
- #, fuzzy
613
- msgid "Use <strong>url</strong> attribute to specify the url to be liked"
614
- msgstr "Verwenden Sie <strong> num_posts </ strong> der Attribut Stil gemacht Social Zähler-Schnittstelle"
615
-
616
- #: ../admin/social_counter.php:671
617
- #: ../admin/social_sharing.php:871
618
- #: ../admin/social_commenting.php:236
619
- #: ../admin/social_login.php:662
620
- msgid "You can use shortcode in PHP file as following"
621
- msgstr "In PHP Scripts k&ouml;nnen sie Shortcodes benutzen:"
622
-
623
- #: ../admin/social_counter.php:673
624
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]</strong>, so the final code looks like following"
625
- msgstr "Ersetzen Sie <strong> SHORT </ strong> in obigen Code mit der gewünschten Kurzwahlnummer wie <strong> [TheChamp-Counter style=\"background-color:#000;\"] </ strong>, so dass der endgültige Code sieht wie folgt aus"
626
-
627
- #: ../admin/social_counter.php:679
628
- #: ../admin/social_sharing.php:879
629
- #: ../admin/social_login.php:670
630
- msgid "Widget"
631
- msgstr "Widget"
632
-
633
- #: ../admin/social_counter.php:681
634
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Counter (Horizontal Widget)</strong> and <strong>Super Socializer - Counter (Vertical Floating Widget)</strong> widgets in the required area."
635
- msgstr "Sie können mit dem <strong> Darstellung navigieren </ strong>> <strong> Widgets </ strong> in der linken Wanne und ziehen <strong> Super Socializer - Zähler (Horizontale Widget) </ strong> und <strong> Super Socializer - Zähler (Vertical Schwimm Widget) </ strong> Widgets in den gewünschten Bereich."
636
-
637
- #: ../admin/social_counter.php:691
638
- #, fuzzy
639
- msgid "How can I show like counts of my website rather than of individual pages/posts?"
640
- msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
641
-
642
- #: ../admin/social_counter.php:695
643
- #, fuzzy
644
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
645
- msgstr "Wählen Sie die Option \"URL der Homepage Ihrer Website \" in Option \"Ziel-URL \" und aktivieren \"Aktie zählt Show \""
646
-
647
- #: ../admin/social_counter.php:702
648
- #, fuzzy
649
- msgid "How can I disable social counter on particular page/post?"
650
- msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
651
-
652
- #: ../admin/social_counter.php:706
653
- #: ../admin/social_sharing.php:925
654
- #: ../admin/social_sharing.php:938
655
- #, fuzzy
656
- msgid "Edit that page/post and check the options at the bottom in \"Super Socializer\" section"
657
- msgstr "Bearbeiten Sie diese Seite/Post und aktivieren Sie die Option \"deaktivieren Facebook Kommentare zu diesem Beitrag / Seite \" am unteren Rand in Abschnitt \"Super-Socializer \""
658
-
659
- #: ../admin/social_counter.php:719
660
- #: ../admin/social_sharing.php:949
661
- #: ../admin/social_commenting.php:277
662
- #: ../admin/social_login.php:681
663
- msgid "Save Changes"
664
- msgstr "&Auml;nderungen speichern"
665
-
666
- #: ../admin/social_sharing.php:15
667
- msgid "Social Sharing"
668
- msgstr "Social Sharing"
669
-
670
- #: ../admin/social_sharing.php:17
671
- msgid "Troubleshooter"
672
- msgstr "Störungssucher"
673
-
674
- #: ../admin/social_sharing.php:30
675
- msgid "Enable Social Sharing"
676
- msgstr "Soziales Teilen aktivieren"
677
-
678
- #: ../admin/social_sharing.php:40
679
- msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
680
- msgstr "Soziales Teilen aktivieren"
681
-
682
- #: ../admin/social_sharing.php:48
683
- msgid "Delete all the options on plugin deletion"
684
- msgstr "Löschen Sie alle Optionen auf Plugin Löschen"
685
-
686
- #: ../admin/social_sharing.php:58
687
- msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
688
- msgstr "Falls aktiviert, wird Plugin-Optionen gelöscht, wenn Plugin gelöscht / deinstalliert, und Sie müssen, um die Optionen neu konfigurieren, wenn Sie das nächste Mal Plugin installieren."
689
-
690
- #: ../admin/social_sharing.php:72
691
- #, fuzzy
692
- msgid "<strong>Note:</strong> To disable sharing and specify minimum share counts per social network on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
693
- msgstr "<strong>Hinweis:</strong> Um das Teilen auf bestimmten Seiten / Beitr&auml;gen zu verhindern,editieren Sie diese/n und &auml;ndern Sie die Checkbox unter <strong>\"Super Socializer\"</strong> section"
694
-
695
- #: ../admin/social_sharing.php:94
696
- msgid "Enable bit.ly url shortener for sharing"
697
- msgstr "Aktivieren bit.ly URL Shortener für die gemeinsame Nutzung"
698
-
699
- #: ../admin/social_sharing.php:151
700
- msgid "Twitter username in sharing"
701
- msgstr "Twitter Benutzername in Sharing"
702
-
703
- #: ../admin/social_sharing.php:167
704
- msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
705
- msgstr "Sofern Benutzername wird angehängt werden, nachdem der Inhalt als \"überUSERNAME \" getwittert. Leer lassen, wenn Sie nicht möchten, dass jede Benutzernamen ein."
706
-
707
- #: ../admin/social_sharing.php:177
708
- msgid "Horizontal Sharing Interface Options"
709
- msgstr "Horizontale Freigabe Schnittstellenoptionen"
710
-
711
- #: ../admin/social_sharing.php:183
712
- msgid "Enable horizontal sharing interface"
713
- msgstr "Aktivieren Sie horizontal Sharing-Schnittstelle"
714
-
715
- #: ../admin/social_sharing.php:193
716
- msgid "Master control to enable horizontal sharing"
717
- msgstr "Master-Regler auf horizontale Freigabe aktivieren"
718
-
719
- #: ../admin/social_sharing.php:218
720
- #: ../admin/social_sharing.php:532
721
- msgid "Url to share"
722
- msgstr "URL zu teilen"
723
-
724
- #: ../admin/social_sharing.php:236
725
  msgid "The text to display above the sharing interface"
726
  msgstr "Text, der &uuml;ber der \"Teilen\" Leiste angezeigt wird"
727
 
728
- #: ../admin/social_sharing.php:244
729
- #: ../admin/social_sharing.php:540
730
  #: ../admin/social_login.php:41
731
  msgid "Select providers"
732
  msgstr "Anbieter ausw&auml;hlen"
733
 
734
- #: ../admin/social_sharing.php:249
735
- #: ../admin/social_sharing.php:545
736
- #: ../admin/social_login.php:46
737
- msgid "Facebook"
738
- msgstr ""
739
-
740
- #: ../admin/social_sharing.php:254
741
- #: ../admin/social_sharing.php:550
742
  #: ../admin/social_login.php:50
743
  msgid "Twitter"
744
  msgstr ""
745
 
746
- #: ../admin/social_sharing.php:259
747
- #: ../admin/social_sharing.php:555
748
  #: ../admin/social_login.php:54
749
  msgid "LinkedIn"
750
  msgstr ""
751
 
752
- #: ../admin/social_sharing.php:264
753
- #: ../admin/social_sharing.php:560
754
  #: ../admin/social_login.php:58
755
  msgid "Google+"
756
  msgstr ""
757
 
758
- #: ../admin/social_sharing.php:269
759
- #: ../admin/social_sharing.php:565
760
  msgid "Print"
761
- msgstr ""
762
 
763
- #: ../admin/social_sharing.php:274
764
- #: ../admin/social_sharing.php:570
765
  msgid "Email"
766
  msgstr ""
767
 
768
- #: ../admin/social_sharing.php:279
769
- #: ../admin/social_sharing.php:575
770
  msgid "Yahoo"
771
  msgstr ""
772
 
773
- #: ../admin/social_sharing.php:284
774
- #: ../admin/social_sharing.php:580
775
  msgid "Reddit"
776
  msgstr ""
777
 
778
- #: ../admin/social_sharing.php:289
779
- #: ../admin/social_sharing.php:585
780
  msgid "Digg"
781
  msgstr ""
782
 
783
- #: ../admin/social_sharing.php:294
784
- #: ../admin/social_sharing.php:590
785
  msgid "Delicious"
786
  msgstr ""
787
 
788
- #: ../admin/social_sharing.php:299
789
- #: ../admin/social_sharing.php:595
790
  msgid "StumbleUpon"
791
  msgstr ""
792
 
793
- #: ../admin/social_sharing.php:304
794
- #: ../admin/social_sharing.php:600
795
  msgid "Float it"
796
  msgstr ""
797
 
798
- #: ../admin/social_sharing.php:309
799
- #: ../admin/social_sharing.php:605
800
  msgid "Tumblr"
801
  msgstr ""
802
 
803
- #: ../admin/social_sharing.php:314
804
- #: ../admin/social_sharing.php:610
805
  #: ../admin/social_login.php:62
806
  msgid "Vkontakte"
807
  msgstr ""
808
 
809
- #: ../admin/social_sharing.php:319
810
- #: ../admin/social_sharing.php:615
811
  msgid "Pinterest"
812
  msgstr ""
813
 
814
- #: ../admin/social_sharing.php:324
815
- #: ../admin/social_sharing.php:620
816
  #: ../admin/social_login.php:70
817
  msgid "Xing"
818
  msgstr ""
819
 
820
- #: ../admin/social_sharing.php:329
821
- #: ../admin/social_sharing.php:625
822
  msgid "Whatsapp"
823
  msgstr ""
824
 
825
- #: ../admin/social_sharing.php:337
826
- #: ../admin/social_sharing.php:633
827
  msgid "Select the providers for sharing interface"
828
  msgstr "W&auml;hlen Sie die Netzwerke aus, die zum Teilen angezeigt werden sollen"
829
 
830
- #: ../admin/social_sharing.php:345
831
- #: ../admin/social_sharing.php:641
832
  msgid "Rearrange icons"
833
  msgstr "Reihenfolge der Icons &auml;ndern"
834
 
835
- #: ../admin/social_sharing.php:368
836
- #: ../admin/social_sharing.php:664
837
  msgid "Drag the icons to rearrange in desired order"
838
  msgstr "Ziehen Sie die Icons in gew&uuml;nschter Reihenfolge hier herein."
839
 
840
- #: ../admin/social_sharing.php:390
841
- #: ../admin/social_sharing.php:703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
842
  msgid "Horizontal alignment of the sharing interface"
843
  msgstr "Horizontale Anzeige des \"Teilen\" Elements"
844
 
845
- #: ../admin/social_sharing.php:411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
846
  msgid "Specify position of the sharing interface with respect to the content"
847
  msgstr "Legen Sie die Position der „Teilen“ Leiste relativ zum Website-Inhalt fest."
848
 
849
- #: ../admin/social_sharing.php:419
850
- #: ../admin/social_sharing.php:769
851
  msgid "Sharing location"
852
  msgstr "Position der Leiste"
853
 
854
- #: ../admin/social_sharing.php:462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
855
  msgid "Specify the pages where you want to enable Sharing interface"
856
  msgstr "W&auml;hlen Sie die Seiten aus, auf denen dire \"Teilen\" Leiste angezeigt wird"
857
 
858
- #: ../admin/social_sharing.php:470
859
- #: ../admin/social_sharing.php:810
860
  msgid "Show share counts"
861
  msgstr "conteos muestran acciones"
862
 
863
- #: ../admin/social_sharing.php:480
864
- #: ../admin/social_sharing.php:820
865
  msgid "If enabled, share counts are displayed above sharing icons."
866
  msgstr "Wenn aktiviert, werden Aktien Zahlen über Sharing Symbole angezeigt."
867
 
868
- #: ../admin/social_sharing.php:491
 
 
 
 
 
 
 
 
 
 
 
869
  msgid "Vertical (Floating) Sharing Interface Options"
870
  msgstr "Vertikal (Floating) Freigabe Schnittstellenoptionen"
871
 
872
- #: ../admin/social_sharing.php:497
873
  msgid "Enable vertical (floating) sharing interface"
874
  msgstr "Aktivieren Vertikal (floating) Sharing-Schnittstelle"
875
 
876
- #: ../admin/social_sharing.php:507
877
  msgid "Master control to enable vertical (floating) sharing widget"
878
  msgstr "Master-Regler, um vertikale (floating) Sharing Widget aktivieren"
879
 
880
- #: ../admin/social_sharing.php:682
 
 
 
 
 
881
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
882
  msgstr "Geben Sie die Farbe oder Hex-Code (zB # cc78e0) für den Hintergrund der vertikalen Austausch bar. Leer lassen für transparent. Sie können den Hex-Code des gewünschten Farbe von <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> diesen Link </a> erhalten"
883
 
884
- #: ../admin/social_sharing.php:722
 
 
 
 
 
885
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
886
  msgstr "Geben Sie eine Zahl. Anstieg der Zahl Sharing-Schnittstelle nach rechts verschieben und Abnahme wird ihn nach rechts zu verschieben."
887
 
888
- #: ../admin/social_sharing.php:742
 
 
 
 
 
889
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
890
  msgstr "Legen sie eine Zahl fest. Eine positive Zahl verschiebt"
891
 
892
- #: ../admin/social_sharing.php:761
 
 
 
 
 
893
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
894
  msgstr "Geben Sie eine Zahl. Anstieg der Zahl Sharing-Schnittstelle in Richtung Boden verschieben und Abnahme wird es in Richtung Spitze zu verschieben."
895
 
896
- #: ../admin/social_sharing.php:802
897
  msgid "Specify the pages where you want to enable vertical Sharing interface"
898
  msgstr "Legen Sie die Seiten, auf denen Sie die vertikale Freigabe Schnittstelle aktiviert werden soll"
899
 
900
- #: ../admin/social_sharing.php:839
901
- msgid "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content of required page/post where you want to display Social Sharing interface."
902
- msgstr "Sie können mit <strong> [TheChamp-Sharing] </ strong> Kurzwahl in den Inhalt der erforderlichen Seite / Post, wo Sie Social-Sharing-Schnittstelle anzeigen möchten."
903
-
904
- #: ../admin/social_sharing.php:844
905
- msgid "Use <strong>style</strong> attribute to style the rendered Social Sharing interface"
906
- msgstr "Verwenden Sie <strong>style</ strong> der Attribut Stil gemacht Social Sharing-Schnittstelle"
907
-
908
- #: ../admin/social_sharing.php:849
909
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Sharing interface. Default type is \"horizontal\"."
910
- msgstr "Verwenden Sie <strong>type</ strong> Attribut, um den Typ (\"horizontal\" oder \"vertical \") der Social-Sharing-Schnittstelle angeben. Standardtyp ist \"horizontal\"."
911
-
912
- #: ../admin/social_sharing.php:854
913
- #, fuzzy
914
- msgid "Use <strong>count</strong> attribute to enable the share counts on Social Sharing interface"
915
- msgstr "Verwenden Sie <strong>style</ strong> der Attribut Stil gemacht Social Sharing-Schnittstelle"
916
-
917
- #: ../admin/social_sharing.php:858
918
- #, fuzzy
919
- msgid "left (Works with \"Vertical\" type interface only)"
920
- msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
921
-
922
- #: ../admin/social_sharing.php:859
923
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Sharing interface."
924
- msgstr "Verwenden Sie <strong>left</ strong> Attribut angeben, das linke Offset (Abstand von der linken Seite des Bildschirms) von Social Sharing-Schnittstelle."
925
-
926
- #: ../admin/social_sharing.php:863
927
- #, fuzzy
928
- msgid "top (Works with \"Vertical\" type interface only)"
929
- msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
930
-
931
- #: ../admin/social_sharing.php:864
932
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Sharing interface."
933
- msgstr "Verwenden Sie <strong> top </ strong> Attribut, um den oberen Offset von Social Sharing-Schnittstelle festlegen (Abstand von der oben auf dem Bildschirm)."
934
-
935
- #: ../admin/social_sharing.php:868
936
- #, fuzzy
937
- msgid "Use <strong>url</strong> attribute to specify the url to be shared"
938
- msgstr "Verwenden Sie <strong> num_posts </ strong> der Attribut Stil gemacht Social Zähler-Schnittstelle"
939
-
940
- #: ../admin/social_sharing.php:873
941
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]</strong>, so the final code looks like following"
942
- msgstr "Ersetzen Sie <strong> SHORTCODE </ strong> in obigen Code mit der gewünschten Kurzwahlnummer wie <strong> [TheChamp-Sharing style=\"background-color:#000;\"] </ strong>, so dass der endgültige Code sieht wie folgt aus"
943
-
944
- #: ../admin/social_sharing.php:881
945
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - Sharing (Vertical Floating Widget)</strong> widgets in the required area."
946
- msgstr "Sie können mit dem <strong> Appearance </ strong>> <strong> Widgets </ strong> in der linken Wanne und ziehen <strong> Super Socializer - Sharing (Horizontale Widget) </ strong> und <strong> Super Socializer - Sharing (Vertical Floating Widget) </ strong> Widgets in den gewünschten Bereich."
947
-
948
- #: ../admin/social_sharing.php:891
949
  msgid "Facebook Sharing Troubleshooter"
950
  msgstr "Facebook Sharing-Ratgeber"
951
 
952
- #: ../admin/social_sharing.php:896
953
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
954
  msgstr "Wenn Facebook-Sharing ist nicht gut arbeiten, klicken Sie auf den folgenden Link, und geben Sie den problematischen url (wo Facebook-Sharing funktioniert nicht richtig) Ihrer Website in das Textfeld ein:"
955
 
956
- #: ../admin/social_sharing.php:910
957
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
958
  msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
959
 
960
- #: ../admin/social_sharing.php:914
961
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option and enable \"Show share counts\" option"
962
- msgstr "Wählen Sie die Option \"URL der Homepage Ihrer Website \" in Option \"Ziel-URL \" und aktivieren \"Aktie zählt Show \""
963
-
964
- #: ../admin/social_sharing.php:921
965
  #, fuzzy
966
  msgid "How can I disable sharing on particular page/post?"
967
  msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
968
 
969
- #: ../admin/social_sharing.php:934
970
  msgid "How can I specify minimum sharing count for sharing networks?"
971
  msgstr "Wie kann ich festlegen, Mindestbeteiligung Zahl für den Austausch von Netzwerken?"
972
 
 
 
 
 
 
 
 
973
  #: ../admin/social_commenting.php:10
974
- msgid "Facebook Commenting"
975
- msgstr "Facebook kommentiert"
 
 
 
 
 
 
 
976
 
977
  #: ../admin/social_commenting.php:18
978
  #: ../admin/social_commenting.php:24
979
- msgid "Enable Facebook Commenting"
980
- msgstr "Facebook Kommentarfunktion aktivieren"
981
-
982
  #: ../admin/social_commenting.php:34
 
983
  #, fuzzy
984
- msgid "After enabling this option, Facebook commenting will appear before Wordpress comment form at your website"
985
- msgstr "Nach dem Aktivieren wird das Wordpress Kommentarfeld durch die Facebook Kommentarfunktion ersetzt."
986
 
987
- #: ../admin/social_commenting.php:44
988
- msgid "Facebook Commenting Options"
989
- msgstr "Einstellungen der Facebook Kommentarfunktion"
990
 
991
- #: ../admin/social_commenting.php:50
992
- msgid "Keep only Facebook Commenting"
993
- msgstr "Consérvese únicamente Facebook Comentando"
994
 
995
  #: ../admin/social_commenting.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
996
  #, fuzzy
997
- msgid "If enabled, only Facebook commenting would be visible without default comment form"
998
- msgstr "Si está habilitado, sólo Facebook comentando estarán allí sin la opción de cambiar a WordPress comentar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
999
 
1000
- #: ../admin/social_commenting.php:68
 
1001
  msgid "Url to comment on"
1002
  msgstr "URL, die kommentiert werden soll"
1003
 
1004
- #: ../admin/social_commenting.php:78
1005
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1006
  msgstr "Die absolute URL, die Kommentare vorhanden dauerhaft zugeordnet werden. Geschichten auf Facebook über Kommentare vorhanden, wird auf diese URL zu verknüpfen. <br/> Wenn leer <strong> (empfohlen) </ strong>, URL der Webseite verwendet, bei der Kommentierung aktiviert ist."
1007
 
1008
- #: ../admin/social_commenting.php:86
 
1009
  msgid "Width"
1010
  msgstr "Breite"
1011
 
1012
- #: ../admin/social_commenting.php:96
1013
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1014
  msgstr "Leer lassen, um die automatische Einstellung der Breite. Die Breite (in Pixel) der Kommentare Block."
1015
 
1016
- #: ../admin/social_commenting.php:104
1017
  msgid "Color Scheme"
1018
  msgstr "Farbschema"
1019
 
1020
- #: ../admin/social_commenting.php:108
1021
  msgid "Light"
1022
  msgstr "Hell"
1023
 
1024
- #: ../admin/social_commenting.php:109
1025
  msgid "Dark"
1026
  msgstr "Dunkel"
1027
 
1028
- #: ../admin/social_commenting.php:117
1029
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1030
  msgstr "Das Farbschema, was vom Plugin verwendet werden soll (\"light\" oder \"dark\")"
1031
 
1032
- #: ../admin/social_commenting.php:125
1033
  #, fuzzy
1034
  msgid "Number of comments"
1035
  msgstr "Anzahl Beitr&auml;ge"
1036
 
1037
- #: ../admin/social_commenting.php:135
1038
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1039
  msgstr "Anzahl anzuzeigender Kommentare. Min. 1. Der Standardwert ist 10."
1040
 
1041
- #: ../admin/social_commenting.php:143
1042
  msgid "Order by"
1043
  msgstr "Sortieren nach"
1044
 
1045
- #: ../admin/social_commenting.php:147
1046
  msgid "Social"
1047
  msgstr "Sozial"
1048
 
1049
- #: ../admin/social_commenting.php:148
1050
  msgid "Reverse Time"
1051
  msgstr "Umkehrzeit"
1052
 
1053
- #: ../admin/social_commenting.php:149
1054
  msgid "Time"
1055
  msgstr "Zeit"
1056
 
1057
- #: ../admin/social_commenting.php:157
1058
  msgid "The order to use when displaying comments."
1059
  msgstr "Kommentare sortieren nach"
1060
 
1061
- #: ../admin/social_commenting.php:165
1062
  msgid "Mobile"
1063
  msgstr "Mobile"
1064
 
1065
- #: ../admin/social_commenting.php:169
1066
  msgid "Auto Detect"
1067
  msgstr "Automatische Erkennung"
1068
 
1069
- #: ../admin/social_commenting.php:170
1070
  msgid "True"
1071
  msgstr "Ja"
1072
 
1073
- #: ../admin/social_commenting.php:171
1074
  msgid "False"
1075
  msgstr "Nein"
1076
 
1077
- #: ../admin/social_commenting.php:179
1078
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
1079
  msgstr "Der Boolean legt fest, ob die f&uuml;r Mobilger&auml;te optimierte Version angezeigt werden soll oder nicht"
1080
 
1081
- #: ../admin/social_commenting.php:197
 
 
 
 
 
 
1082
  #, php-format
1083
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1084
  msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
1085
 
1086
- #: ../admin/social_commenting.php:213
1087
  #, fuzzy
1088
- msgid "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the content of required page/post where you want to display Facebook Commenting interface."
1089
- msgstr "Sie können mit <strong> [TheChamp-Counter] </ strong> Kurzwahl in den Inhalt der erforderlichen Seite / Post, wo Sie Social Zähler-Schnittstelle anzeigen möchten."
1090
 
1091
- #: ../admin/social_commenting.php:218
1092
- msgid "Use <strong>style</strong> attribute to style the rendered commenting interface"
1093
- msgstr "Verwenden Sie <strong> style </ strong> der Attribut Stil gemacht Social Sharing-Schnittstelle"
 
 
1094
 
1095
- #: ../admin/social_commenting.php:223
1096
- msgid "Use <strong>url</strong> attribute to specify the target url for comments. This defaults to the page where shortcode is used."
1097
- msgstr "Verwenden Sie <strong> url </ strong> Attribut angeben, das linke Offset (Abstand von der linken Seite des Bildschirms) für Sozialstatistik Schnittstelle."
1098
 
1099
- #: ../admin/social_commenting.php:227
1100
- msgid "num_posts"
1101
- msgstr ""
 
1102
 
1103
- #: ../admin/social_commenting.php:228
1104
- msgid "Use <strong>num_posts</strong> attribute to specify the number of comments to display."
1105
- msgstr "Verwenden Sie <strong> num_posts </ strong> der Attribut Stil gemacht Social Zähler-Schnittstelle"
 
1106
 
1107
- #: ../admin/social_commenting.php:232
 
1108
  #, fuzzy
1109
- msgid "width"
1110
- msgstr "Breite"
1111
 
1112
- #: ../admin/social_commenting.php:233
1113
- msgid "Use <strong>width</strong> attribute to specify the width of commenting interface. Omit it for fluid width"
1114
- msgstr "Verwenden Sie <strong> width </ strong> Attribut, um den oberen Offset von Social Sharing-Schnittstelle festlegen (Abstand von der oben auf dem Bildschirm)."
1115
 
1116
- #: ../admin/social_commenting.php:238
1117
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1118
- msgstr "Ersetzen Sie <strong> SHORT </ strong> in obigen Code mit der gewünschten Kurzwahlnummer wie <strong> [TheChamp-FB-Comments style=\"background-color:#000;\"] </ strong>, so dass der endgültige Code sieht wie folgt aus"
1119
 
1120
- #: ../admin/social_commenting.php:249
1121
  #, fuzzy
1122
- msgid "How can I disable FB comments at individual page/post?"
1123
  msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
1124
 
1125
- #: ../admin/social_commenting.php:253
1126
- msgid "Edit that page/post and check the option \"Disable Facebook Comments on this post/page\" at the bottom in \"Super Socializer\" section"
1127
- msgstr "Bearbeiten Sie diese Seite/Post und aktivieren Sie die Option \"deaktivieren Facebook Kommentare zu diesem Beitrag / Seite \" am unteren Rand in Abschnitt \"Super-Socializer \""
1128
-
1129
- #: ../admin/social_commenting.php:262
1130
- msgid "How to enable only Facebook Comments without enabling default comment form?"
1131
- msgstr "Wie nur Facebook Kommentare ohne Aktivierung Standardkommentarfunktion aktivieren?"
1132
-
1133
- #: ../admin/social_commenting.php:266
1134
- msgid "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting\" section."
1135
- msgstr "Aktivieren \"Keep nur Facebook kommentierte\" Option \"Facebook kommentierte\" Abschnitt."
1136
-
1137
  #: ../admin/social_login.php:10
1138
  msgid "Social Login"
1139
  msgstr "Soziale Netzwerke Login"
@@ -1438,20 +1265,9 @@ msgid "If enabled, email provided by the user will be verified by sending a conf
1438
  msgstr "Bei Aktivierung muss der Benutzer seine Email Adresse best&auml;tigen, indem er einen Aktivierunngslink aufruft, der ihm per Email zugesandt wird."
1439
 
1440
  #: ../admin/social_login.php:656
1441
- msgid "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of required page/post where you want to display Social Login interface."
1442
- msgstr "Verwenden Sie <strong> [TheChamp-Login] </strong> Kurzwahl in den Inhalt der erforderlichen Seite / Post, wo Sie Social-Login-Schnittstelle anzeigen möchten."
1443
-
1444
- #: ../admin/social_login.php:659
1445
- msgid "You can use \"style\" attribute in the Shortcode to style the rendered Social Login interface."
1446
- msgstr "Sie k&ouml;nnen das \"style\" Attribut in den Shortcodes benutzen, um die Darstellung des sozialen Logins anzupassen"
1447
-
1448
- #: ../admin/social_login.php:664
1449
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1450
- msgstr "Ersetzen Sie <strong> SHORTCODE</ strong> in obigen Code mit der gewünschten Kurzwahlnummer wie <strong> [TheChamp-Login style=\"background-color:#000;\"]</ strong>, so dass der endgültige Code sieht wie folgt aus"
1451
-
1452
- #: ../admin/social_login.php:672
1453
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Login</strong> widget in the required area."
1454
- msgstr "Sie können mit dem <strong>Appearance</ strong> > <strong>Widgets</ strong> in der linken Wanne und ziehen <strong> Super Socializer - Login </ strong> Widget in den gewünschten Bereich."
1455
 
1456
  #: ../admin/admin.php:8
1457
  msgid "Welcome"
@@ -1466,7 +1282,8 @@ msgid "Getting Started"
1466
  msgstr "Beginnen Sie"
1467
 
1468
  #: ../admin/admin.php:12
1469
- msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left pan. <strong>Social Sharing</strong> is enabled at your website by default."
 
1470
  msgstr "Richten Sie das Sozializer Plugin ein, indem sie in der linken Menu&uuml;leiste unter dem Plugin Men&uuml;punkt die Einstellungen vornehmen. Die \"Teilen\" Funktion ist f ihrer Website standardm&auml;&szlig;ig aktiviert."
1471
 
1472
  #: ../admin/admin.php:13
@@ -1485,14 +1302,145 @@ msgstr "Unter dem Men&uuml;punkt Facebook k&ouml;nnen Sie die sozialen Netzwerke
1485
 
1486
  #: ../admin/admin.php:16
1487
  #, fuzzy
1488
- msgid "In <strong>Social Counter</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1489
  msgstr "Unter dem Men&uuml;punkt Facebook k&ouml;nnen Sie die sozialen Netzwerke ausw&auml;hlen und konfigurieren."
1490
 
1491
- #: ../inc/social_sharing.php:492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1492
  msgid "Invalid request"
1493
  msgstr "Ungültige Anforderung"
1494
 
1495
- #: ../inc/social_sharing.php:499
1496
  msgid "Providers not selected"
1497
  msgstr "Provider nicht aktiviert"
1498
 
@@ -1589,6 +1537,389 @@ msgstr "Horizontalzähler-Widget. Lassen Sie Ihre Website-Nutzer share / wie Inh
1589
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1590
  msgstr "Vertikale schwimm Zähler-Widget. Lassen Sie Ihre Website-Nutzer share / wie Inhalte auf beliebte soziale Netzwerke wie Facebook, Twitter, Google+ und viele mehr"
1591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1592
  #~ msgid ""
1593
  #~ "Remove the plugin credit links (\"Super Socializer by The Champ\") in "
1594
  #~ "just $15. Interested? Email me: <a href=\"mailto:lordofthechamps@gmail.com"
@@ -1735,10 +2066,6 @@ msgstr "Vertikale schwimm Zähler-Widget. Lassen Sie Ihre Website-Nutzer share /
1735
  #~ msgid "Load first"
1736
  #~ msgstr "Cargue primero"
1737
 
1738
- #, fuzzy
1739
- #~ msgid "Default Commenting"
1740
- #~ msgstr "Comentarios Facebook"
1741
-
1742
  #~ msgid "Selected commenting will be loaded first on the page"
1743
  #~ msgstr "Comentando seleccionado se cargará primero en la página de"
1744
 
@@ -1780,9 +2107,6 @@ msgstr "Vertikale schwimm Zähler-Widget. Lassen Sie Ihre Website-Nutzer share /
1780
  #~ msgid "Facebook Comments"
1781
  #~ msgstr "Comentarios Facebook"
1782
 
1783
- #~ msgid "WordPress Comments"
1784
- #~ msgstr "WordPress Comentarios"
1785
-
1786
  #~ msgid ""
1787
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
1788
  #~ "><strong>Note: Social Login at comment form of your website will not get "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-29 03:07+0530\n"
6
+ "PO-Revision-Date: 2015-05-29 03:12+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: es\n"
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Stellen Sie sicher, cURL auf Ihre Website-Server aktiviert. Möglicherweise müssen Sie den Server-Administrator Ihrer Website kontaktieren, um dies zu überprüfen"
27
 
28
+ #: ../super_socializer.php:349
29
  msgid "Please verify your email address to login."
30
  msgstr "Bitte best&auml;tigen Sie ihre E-Mail Adresse, um sich einzuloggen"
31
 
32
+ #: ../super_socializer.php:349
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Ihre E-Mail Adresse wurde erfolgreich best&auml;tigt. Sie k&ouml;nnen sich nun einloggen."
35
 
36
+ #: ../super_socializer.php:353
37
  msgid "Notification"
38
  msgstr "Benachrichtigung"
39
 
40
+ #: ../super_socializer.php:372
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "Bitte geben Sie eine g&uuml;ltige E-Mail Adresse an."
44
 
45
+ #: ../super_socializer.php:375
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "&Uuml;berpr&uuml;fen Sie ihren Posteingang, um die Registrierung zu vollenden."
48
 
49
+ #: ../super_socializer.php:388
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Führen Sie die Schritte 11 und 12 bei Google App-Konfigurationsseite, um zu öffnen"
52
 
53
+ #: ../super_socializer.php:463
54
+ msgid "Leave a reply"
55
+ msgstr ""
56
+
57
+ #: ../super_socializer.php:565
58
  msgid "Email you entered is already registered or invalid"
59
  msgstr "E-Mail eingetragen ist bereits registriert oder ungültig"
60
 
61
+ #: ../super_socializer.php:569
62
  msgid "Please enter a valid email address. You might be required to verify it"
63
  msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein. Es kann erforderlich werden es überprüfen"
64
 
74
  msgid "Click to hide help"
75
  msgstr "Für Hilfe verbergen"
76
 
77
+ #: ../helper.php:175
78
  msgid "Settings"
79
  msgstr "Configuración"
80
 
81
+ #: ../helper.php:492
82
  msgid "Account linked successfully"
83
  msgstr "Konto erfolgreich verbunden"
84
 
85
+ #: ../helper.php:498
86
  msgid "Account already exists or linked"
87
  msgstr "Konto bereits vorhanden oder verknüpft"
88
 
89
+ #: ../helper.php:509
90
  #, fuzzy
91
  msgid "You are already connected with"
92
  msgstr "Sie sind bereit, ihre Website so sozialisieren"
93
 
94
+ #: ../helper.php:509
95
  msgid "as primary social network"
96
  msgstr "als primäre soziale Netz"
97
 
98
+ #: ../helper.php:526
99
  msgid "Link your social account to login to your account at this website"
100
  msgstr "Verknüpfen Sie Ihre sozialen Konto bei Ihrem Konto auf dieser Website"
101
 
102
+ #: ../helper.php:571
103
  msgid "Currently"
104
  msgstr "zur Zeit"
105
 
106
+ #: ../helper.php:571
107
  msgid "Remove"
108
  msgstr "entfernen"
109
 
110
+ #: ../helper.php:664
111
  msgid "Disable Horizontal Social Sharing on this "
112
  msgstr "Deaktivieren Horizontale Sozialfreigabe auf diese"
113
 
114
+ #: ../helper.php:669
115
  msgid "Disable Vertical Social Sharing on this "
116
  msgstr "Deaktivieren Vertikale soziale Netzwerke dazu"
117
 
118
+ #: ../helper.php:674
119
+ #, fuzzy
120
+ msgid "Disable Horizontal like buttons on this "
121
  msgstr "Deaktivieren Horizontale Sozialstatistik auf diese"
122
 
123
+ #: ../helper.php:679
124
+ #, fuzzy
125
+ msgid "Disable Vertical like buttons on this "
126
  msgstr "Deaktivieren Vertikale Sozialstatistik auf diese"
127
 
128
+ #: ../helper.php:684
129
+ #, fuzzy
130
+ msgid "Disable Social Commenting on this "
131
  msgstr "Deaktivieren Sie Facebook Kommentare zu dieser"
132
 
133
+ #: ../helper.php:693
134
  #, fuzzy
135
  msgid "Horizontal sharing"
136
  msgstr "Horizontale Anzeige"
137
 
138
+ #: ../helper.php:699
139
+ #: ../helper.php:718
140
  #, fuzzy
141
  msgid "Starting share count for "
142
  msgstr "conteos muestran acciones"
143
 
144
+ #: ../helper.php:712
145
  #, fuzzy
146
  msgid "Vertical sharing"
147
  msgstr "Social Sharing"
159
  msgstr "von"
160
 
161
  #: ../admin/help.php:7
162
+ msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
163
+ msgstr ""
164
 
165
+ #: ../admin/help.php:17
166
  msgid "Plugin Demo"
167
  msgstr "Plugin Demo"
168
 
169
+ #: ../admin/help.php:19
170
  msgid "You can see the plugin in action at following link"
171
  msgstr "Sie können das Plugin in Aktion auf folgendem Link zu sehen"
172
 
173
+ #: ../admin/help.php:25
174
  msgid "Support"
175
  msgstr "Unterstützung"
176
 
177
+ #: ../admin/help.php:27
178
+ #, fuzzy
179
+ msgid "If you like the plugin or have any query, drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>, like our <strong>Facebook</strong> page and follow us at <strong>Twitter</strong>."
180
  msgstr "Wenn Sie mein Plugin oder haben jede mögliche Frage, können Sie mir eine E-Mail an <a href=\"mailto:lordofthechamps@gmail.com\"> lordofthechamps@gmail.com </a> fallen lassen, wie mein <strong> Facebook </ strong>, Seiten und folge mir auf <strong> Twitter </ strong>."
181
 
182
+ #: ../admin/help.php:29
183
+ #: ../admin/help.php:32
184
  #: ../admin/help.php:33
185
  #: ../admin/help.php:34
186
  #: ../admin/help.php:35
187
  #: ../admin/help.php:36
 
188
  msgid "Rate 5-star"
189
  msgstr "Bewerten Sie 5-Sterne-"
190
 
191
+ #: ../admin/help.php:44
192
+ #: ../admin/social_sharing.php:411
193
+ #: ../admin/social_sharing.php:736
194
+ #: ../admin/social_login.php:46
195
+ msgid "Facebook"
196
+ msgstr ""
 
197
 
198
+ #: ../admin/help.php:63
199
  msgid "Want plugin customization?"
200
  msgstr "Willst Plugin Kundenbezogenheit?"
201
 
202
+ #: ../admin/help.php:65
203
+ #, fuzzy
204
+ msgid "If you want custom features in the plugin, just drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>"
205
  msgstr "Wenn Sie benutzerdefinierte Funktionen im Plugin möchten, kann ich für Sie tun. Schreiben Sie mir einfach eine E-Mail an <a href=\"mailto:lordofthechamps@gmail.com\"> lordofthechamps@gmail.com </a>"
206
 
207
+ #: ../admin/social_sharing.php:11
208
+ #: ../admin/social_sharing.php:22
 
 
209
  #: ../admin/social_login.php:9
210
  #: ../admin/social_login.php:17
211
+ #: ../admin/like_buttons.php:11
212
+ #: ../admin/like_buttons.php:19
213
  msgid "Basic Configuration"
214
  msgstr "Allgemeine Einstellungen"
215
 
216
+ #: ../admin/social_sharing.php:12
217
+ #, fuzzy
218
+ msgid "Sharing Interface"
219
+ msgstr "Horizontale Freigabe Schnittstellenoptionen"
220
 
221
+ #: ../admin/social_sharing.php:13
222
+ #, fuzzy
223
+ msgid "Sharing Options"
224
+ msgstr "Position der Leiste"
225
+
226
+ #: ../admin/social_sharing.php:14
227
+ #: ../admin/social_sharing.php:1067
228
+ #: ../admin/social_sharing.php:1069
229
  #: ../admin/social_login.php:11
230
+ #: ../admin/social_login.php:654
231
+ #: ../admin/like_buttons.php:13
232
+ #: ../admin/like_buttons.php:644
233
+ #: ../admin/like_buttons.php:646
234
  msgid "Shortcode & Widget"
235
  msgstr "Widgets und shortcodes"
236
 
237
+ #: ../admin/social_sharing.php:15
238
+ msgid "Troubleshooter"
239
+ msgstr "Störungssucher"
240
+
241
+ #: ../admin/social_sharing.php:16
242
+ #: ../admin/social_sharing.php:1098
243
  #: ../admin/social_commenting.php:12
244
+ #: ../admin/social_commenting.php:404
245
  msgid "FAQ"
246
  msgstr "FAQ"
247
 
248
+ #: ../admin/social_sharing.php:28
249
+ msgid "Enable Social Sharing"
250
+ msgstr "Soziales Teilen aktivieren"
251
+
252
+ #: ../admin/social_sharing.php:38
253
+ msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
254
+ msgstr "Soziales Teilen aktivieren"
255
+
256
+ #: ../admin/social_sharing.php:46
257
+ msgid "Delete all the options on plugin deletion"
258
+ msgstr "Löschen Sie alle Optionen auf Plugin Löschen"
259
+
260
+ #: ../admin/social_sharing.php:56
261
+ msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
262
+ msgstr "Falls aktiviert, wird Plugin-Optionen gelöscht, wenn Plugin gelöscht / deinstalliert, und Sie müssen, um die Optionen neu konfigurieren, wenn Sie das nächste Mal Plugin installieren."
263
+
264
+ #: ../admin/social_sharing.php:71
265
+ #, fuzzy
266
+ msgid "Horizontal interface options"
267
+ msgstr "Horizontale Freigabe Schnittstellenoptionen"
268
+
269
+ #: ../admin/social_sharing.php:77
270
+ #: ../admin/social_sharing.php:155
271
+ msgid "Shape"
272
+ msgstr ""
273
+
274
+ #: ../admin/social_sharing.php:85
275
+ #: ../admin/social_sharing.php:163
276
+ msgid "Round"
277
+ msgstr ""
278
+
279
+ #: ../admin/social_sharing.php:87
280
+ #: ../admin/social_sharing.php:165
281
+ msgid "Square"
282
+ msgstr ""
283
 
284
+ #: ../admin/social_sharing.php:94
285
+ #: ../admin/social_sharing.php:172
286
+ #, fuzzy
287
+ msgid "Shape of the sharing icons"
288
+ msgstr "conteos muestran acciones"
289
 
290
+ #: ../admin/social_sharing.php:102
291
+ #: ../admin/social_sharing.php:180
292
+ msgid "Size (in pixels)"
293
+ msgstr ""
294
+
295
+ #: ../admin/social_sharing.php:120
296
+ #: ../admin/social_sharing.php:198
297
+ #, fuzzy
298
+ msgid "Size of the sharing icons"
299
+ msgstr "Horizontale Anzeige des \"Teilen\" Elements"
300
 
301
+ #: ../admin/social_sharing.php:127
302
+ #: ../admin/social_sharing.php:205
303
+ msgid "Icon Preview"
304
+ msgstr ""
305
+
306
+ #: ../admin/social_sharing.php:141
307
+ #: ../admin/social_sharing.php:219
308
+ msgid "Do not forget to save the configuration after making changes by clicking the save button below"
309
+ msgstr ""
310
+
311
+ #: ../admin/social_sharing.php:149
312
+ #, fuzzy
313
+ msgid "Vertical interface options"
314
+ msgstr "Vertikal (Schwimmende) Zähler Schnittstelle Optionen"
315
+
316
+ #: ../admin/social_sharing.php:232
317
+ #: ../admin/like_buttons.php:51
318
+ #, fuzzy
319
+ msgid "Url shortener"
320
  msgstr "bit.ly url acortador"
321
 
322
+ #: ../admin/social_sharing.php:238
323
+ msgid "Use shortlinks already installed"
324
+ msgstr ""
325
+
326
+ #: ../admin/social_sharing.php:248
327
+ #: ../admin/like_buttons.php:67
328
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
329
+ msgstr ""
330
 
331
+ #: ../admin/social_sharing.php:256
332
+ msgid "Enable bit.ly url shortener for sharing"
333
+ msgstr "Aktivieren bit.ly URL Shortener für die gemeinsame Nutzung"
334
+
335
+ #: ../admin/social_sharing.php:266
336
+ #: ../admin/like_buttons.php:85
337
  msgid "Master control to enable bit.ly url shortening for sharing"
338
  msgstr "Master-Regler auf bit.ly URL-Kürzung für die gemeinsame Nutzung zu ermöglichen"
339
 
340
+ #: ../admin/social_sharing.php:274
341
+ #: ../admin/like_buttons.php:93
342
  msgid "bit.ly username"
343
  msgstr "bit.ly Benutzername"
344
 
345
+ #: ../admin/social_sharing.php:284
346
+ #: ../admin/like_buttons.php:103
347
  #, php-format
348
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
349
  msgstr "Anmeldung zu Ihrem bit.ly und gehen Sie zu <a href=\"%s\" target=\"_blank\"> diesen Link </a> bit.ly Benutzernamen erhalten"
350
 
351
+ #: ../admin/social_sharing.php:293
352
+ #: ../admin/like_buttons.php:112
353
  msgid "bit.ly API Key"
354
  msgstr "bit.ly API Key"
355
 
356
+ #: ../admin/social_sharing.php:303
357
+ #: ../admin/like_buttons.php:122
358
  #, php-format
359
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
360
  msgstr "Anmeldung zu Ihrem bit.ly und gehen Sie zu <a href=\"%s\" target=\"_blank\"> diesen Link </a> Ihren API-Schlüssel zu bekommen"
361
 
362
+ #: ../admin/social_sharing.php:313
363
+ msgid "Twitter username in sharing"
364
+ msgstr "Twitter Benutzername in Sharing"
 
 
 
 
 
 
 
 
 
 
 
365
 
366
+ #: ../admin/social_sharing.php:319
367
+ #: ../admin/like_buttons.php:163
368
  msgid "Twitter username (without @)"
369
  msgstr "Twitter Benutzername (ohne @)"
370
 
371
+ #: ../admin/social_sharing.php:329
372
+ msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
373
  msgstr "Sofern Benutzername wird angehängt werden, nachdem der Inhalt als \"überUSERNAME \" getwittert. Leer lassen, wenn Sie nicht möchten, dass jede Benutzernamen ein."
374
 
375
+ #: ../admin/social_sharing.php:339
376
+ msgid "Horizontal Sharing Interface Options"
377
+ msgstr "Horizontale Freigabe Schnittstellenoptionen"
378
 
379
+ #: ../admin/social_sharing.php:345
380
+ msgid "Enable horizontal sharing interface"
381
+ msgstr "Aktivieren Sie horizontal Sharing-Schnittstelle"
382
 
383
+ #: ../admin/social_sharing.php:355
384
+ msgid "Master control to enable horizontal sharing"
385
+ msgstr "Master-Regler auf horizontale Freigabe aktivieren"
386
 
387
+ #: ../admin/social_sharing.php:365
388
+ #: ../admin/social_sharing.php:708
389
+ #: ../admin/like_buttons.php:209
390
+ #: ../admin/like_buttons.php:424
391
  msgid "Target Url"
392
  msgstr "Ziel-URL"
393
 
394
+ #: ../admin/social_sharing.php:369
395
+ #: ../admin/social_sharing.php:712
396
+ #: ../admin/like_buttons.php:213
397
+ #: ../admin/like_buttons.php:428
398
  msgid "Url of the webpage where icons are located (default)"
399
  msgstr "URL der Webseite an, Symbolen befinden (Standard)"
400
 
401
+ #: ../admin/social_sharing.php:371
402
+ #: ../admin/social_sharing.php:714
403
+ #: ../admin/like_buttons.php:215
404
+ #: ../admin/like_buttons.php:430
405
  msgid "Url of the homepage of your website"
406
  msgstr "URL der Homepage Ihrer Website"
407
 
408
+ #: ../admin/social_sharing.php:373
409
+ #: ../admin/social_sharing.php:716
410
+ #: ../admin/like_buttons.php:217
411
+ #: ../admin/like_buttons.php:432
412
  msgid "Custom url"
413
  msgstr "Spezielle URL"
414
 
415
+ #: ../admin/social_sharing.php:380
416
+ #: ../admin/social_sharing.php:723
417
+ msgid "Url to share"
418
+ msgstr "URL zu teilen"
419
 
420
+ #: ../admin/social_sharing.php:388
 
421
  #: ../admin/social_login.php:314
422
+ #: ../admin/like_buttons.php:232
423
  msgid "Title"
424
  msgstr "Titel"
425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  #: ../admin/social_sharing.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
  msgid "The text to display above the sharing interface"
428
  msgstr "Text, der &uuml;ber der \"Teilen\" Leiste angezeigt wird"
429
 
430
+ #: ../admin/social_sharing.php:406
431
+ #: ../admin/social_sharing.php:731
432
  #: ../admin/social_login.php:41
433
  msgid "Select providers"
434
  msgstr "Anbieter ausw&auml;hlen"
435
 
436
+ #: ../admin/social_sharing.php:416
437
+ #: ../admin/social_sharing.php:741
 
 
 
 
 
 
438
  #: ../admin/social_login.php:50
439
  msgid "Twitter"
440
  msgstr ""
441
 
442
+ #: ../admin/social_sharing.php:421
443
+ #: ../admin/social_sharing.php:746
444
  #: ../admin/social_login.php:54
445
  msgid "LinkedIn"
446
  msgstr ""
447
 
448
+ #: ../admin/social_sharing.php:426
449
+ #: ../admin/social_sharing.php:751
450
  #: ../admin/social_login.php:58
451
  msgid "Google+"
452
  msgstr ""
453
 
454
+ #: ../admin/social_sharing.php:431
455
+ #: ../admin/social_sharing.php:756
456
  msgid "Print"
457
+ msgstr "Druck"
458
 
459
+ #: ../admin/social_sharing.php:436
460
+ #: ../admin/social_sharing.php:761
461
  msgid "Email"
462
  msgstr ""
463
 
464
+ #: ../admin/social_sharing.php:441
465
+ #: ../admin/social_sharing.php:766
466
  msgid "Yahoo"
467
  msgstr ""
468
 
469
+ #: ../admin/social_sharing.php:446
470
+ #: ../admin/social_sharing.php:771
471
  msgid "Reddit"
472
  msgstr ""
473
 
474
+ #: ../admin/social_sharing.php:451
475
+ #: ../admin/social_sharing.php:776
476
  msgid "Digg"
477
  msgstr ""
478
 
479
+ #: ../admin/social_sharing.php:456
480
+ #: ../admin/social_sharing.php:781
481
  msgid "Delicious"
482
  msgstr ""
483
 
484
+ #: ../admin/social_sharing.php:461
485
+ #: ../admin/social_sharing.php:786
486
  msgid "StumbleUpon"
487
  msgstr ""
488
 
489
+ #: ../admin/social_sharing.php:466
490
+ #: ../admin/social_sharing.php:791
491
  msgid "Float it"
492
  msgstr ""
493
 
494
+ #: ../admin/social_sharing.php:471
495
+ #: ../admin/social_sharing.php:796
496
  msgid "Tumblr"
497
  msgstr ""
498
 
499
+ #: ../admin/social_sharing.php:476
500
+ #: ../admin/social_sharing.php:801
501
  #: ../admin/social_login.php:62
502
  msgid "Vkontakte"
503
  msgstr ""
504
 
505
+ #: ../admin/social_sharing.php:481
506
+ #: ../admin/social_sharing.php:806
507
  msgid "Pinterest"
508
  msgstr ""
509
 
510
+ #: ../admin/social_sharing.php:486
511
+ #: ../admin/social_sharing.php:811
512
  #: ../admin/social_login.php:70
513
  msgid "Xing"
514
  msgstr ""
515
 
516
+ #: ../admin/social_sharing.php:491
517
+ #: ../admin/social_sharing.php:816
518
  msgid "Whatsapp"
519
  msgstr ""
520
 
521
+ #: ../admin/social_sharing.php:499
522
+ #: ../admin/social_sharing.php:824
523
  msgid "Select the providers for sharing interface"
524
  msgstr "W&auml;hlen Sie die Netzwerke aus, die zum Teilen angezeigt werden sollen"
525
 
526
+ #: ../admin/social_sharing.php:507
527
+ #: ../admin/social_sharing.php:832
528
  msgid "Rearrange icons"
529
  msgstr "Reihenfolge der Icons &auml;ndern"
530
 
531
+ #: ../admin/social_sharing.php:541
532
+ #: ../admin/social_sharing.php:866
533
  msgid "Drag the icons to rearrange in desired order"
534
  msgstr "Ziehen Sie die Icons in gew&uuml;nschter Reihenfolge hier herein."
535
 
536
+ #: ../admin/social_sharing.php:549
537
+ #: ../admin/social_sharing.php:892
538
+ #: ../admin/like_buttons.php:302
539
+ #: ../admin/like_buttons.php:516
540
+ msgid "Horizontal alignment"
541
+ msgstr "Horizontale Anzeige"
542
+
543
+ #: ../admin/social_sharing.php:553
544
+ #: ../admin/social_sharing.php:896
545
+ #: ../admin/like_buttons.php:306
546
+ #: ../admin/like_buttons.php:520
547
+ msgid "Left"
548
+ msgstr "izquierda"
549
+
550
+ #: ../admin/social_sharing.php:554
551
+ #: ../admin/like_buttons.php:307
552
+ msgid "Center"
553
+ msgstr "Zentrum"
554
+
555
+ #: ../admin/social_sharing.php:555
556
+ #: ../admin/social_sharing.php:897
557
+ #: ../admin/like_buttons.php:308
558
+ #: ../admin/like_buttons.php:521
559
+ msgid "Right"
560
+ msgstr "rechts"
561
+
562
+ #: ../admin/social_sharing.php:563
563
+ #: ../admin/social_sharing.php:905
564
  msgid "Horizontal alignment of the sharing interface"
565
  msgstr "Horizontale Anzeige des \"Teilen\" Elements"
566
 
567
+ #: ../admin/social_sharing.php:571
568
+ #: ../admin/like_buttons.php:324
569
+ msgid "Position with respect to content"
570
+ msgstr "Relative Position zum Inhalt"
571
+
572
+ #: ../admin/social_sharing.php:575
573
+ #: ../admin/like_buttons.php:328
574
+ msgid "Top of the content"
575
+ msgstr "&Uuml;ber dem Inhalt"
576
+
577
+ #: ../admin/social_sharing.php:577
578
+ #: ../admin/like_buttons.php:330
579
+ msgid "Bottom of the content"
580
+ msgstr "Unter dem Inhalt"
581
+
582
+ #: ../admin/social_sharing.php:584
583
  msgid "Specify position of the sharing interface with respect to the content"
584
  msgstr "Legen Sie die Position der „Teilen“ Leiste relativ zum Website-Inhalt fest."
585
 
586
+ #: ../admin/social_sharing.php:592
587
+ #: ../admin/social_sharing.php:971
588
  msgid "Sharing location"
589
  msgstr "Position der Leiste"
590
 
591
+ #: ../admin/social_sharing.php:596
592
+ #: ../admin/social_sharing.php:975
593
+ #: ../admin/social_login.php:514
594
+ #: ../admin/social_login.php:544
595
+ #: ../admin/like_buttons.php:349
596
+ #: ../admin/like_buttons.php:599
597
+ msgid "Homepage"
598
+ msgstr "Startseite"
599
+
600
+ #: ../admin/social_sharing.php:598
601
+ #: ../admin/social_sharing.php:977
602
+ #: ../admin/like_buttons.php:351
603
+ #: ../admin/like_buttons.php:601
604
+ msgid "Posts"
605
+ msgstr "Beitrag"
606
+
607
+ #: ../admin/social_sharing.php:600
608
+ #: ../admin/social_sharing.php:979
609
+ #: ../admin/like_buttons.php:353
610
+ #: ../admin/like_buttons.php:603
611
+ msgid "Pages"
612
+ msgstr "Seite"
613
+
614
+ #: ../admin/social_sharing.php:602
615
+ #: ../admin/social_sharing.php:981
616
+ #: ../admin/like_buttons.php:355
617
+ #: ../admin/like_buttons.php:605
618
+ msgid "Excerpts"
619
+ msgstr "Vorschau"
620
+
621
+ #: ../admin/social_sharing.php:604
622
+ #: ../admin/social_sharing.php:983
623
+ #: ../admin/like_buttons.php:357
624
+ #: ../admin/like_buttons.php:607
625
+ msgid "Category Archives"
626
+ msgstr "Archivos de la categoría"
627
+
628
+ #: ../admin/social_sharing.php:606
629
+ #: ../admin/social_sharing.php:985
630
+ #: ../admin/like_buttons.php:359
631
+ #: ../admin/like_buttons.php:609
632
+ msgid "Archive Pages (Category, Tag, Author or Date based pages)"
633
+ msgstr "Archiv Seiten (Kategorie, Stichwort, Autor oder Datum basierend Seiten)"
634
+
635
+ #: ../admin/social_sharing.php:612
636
+ #: ../admin/like_buttons.php:365
637
+ msgid "BuddyPress activity and groups"
638
+ msgstr "Buddypress Aktivität und Gruppen"
639
+
640
+ #: ../admin/social_sharing.php:619
641
+ #: ../admin/social_sharing.php:991
642
+ #: ../admin/like_buttons.php:372
643
+ #: ../admin/like_buttons.php:615
644
+ msgid "BBPress forum"
645
+ msgstr "BBPress Forum"
646
+
647
+ #: ../admin/social_sharing.php:622
648
+ #: ../admin/social_sharing.php:994
649
+ #: ../admin/like_buttons.php:375
650
+ #: ../admin/like_buttons.php:618
651
+ msgid "BBPress topic"
652
+ msgstr "BBPress topic"
653
+
654
+ #: ../admin/social_sharing.php:625
655
+ #: ../admin/like_buttons.php:378
656
+ msgid "BBPress reply"
657
+ msgstr "BBPress reply"
658
+
659
+ #: ../admin/social_sharing.php:635
660
  msgid "Specify the pages where you want to enable Sharing interface"
661
  msgstr "W&auml;hlen Sie die Seiten aus, auf denen dire \"Teilen\" Leiste angezeigt wird"
662
 
663
+ #: ../admin/social_sharing.php:643
664
+ #: ../admin/social_sharing.php:1012
665
  msgid "Show share counts"
666
  msgstr "conteos muestran acciones"
667
 
668
+ #: ../admin/social_sharing.php:653
669
+ #: ../admin/social_sharing.php:1022
670
  msgid "If enabled, share counts are displayed above sharing icons."
671
  msgstr "Wenn aktiviert, werden Aktien Zahlen über Sharing Symbole angezeigt."
672
 
673
+ #: ../admin/social_sharing.php:662
674
+ #: ../admin/social_sharing.php:1031
675
+ #, fuzzy
676
+ msgid "Enable 'More' icon"
677
+ msgstr "Email Verifizierung aktivieren"
678
+
679
+ #: ../admin/social_sharing.php:672
680
+ #: ../admin/social_sharing.php:1041
681
+ msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
682
+ msgstr "Falls aktiviert, wird Symbol \"More \" nach ausgewählten Sharing Symbole angezeigt werden, die zusätzliche Tauschbörsen im Popup zeigt"
683
+
684
+ #: ../admin/social_sharing.php:682
685
  msgid "Vertical (Floating) Sharing Interface Options"
686
  msgstr "Vertikal (Floating) Freigabe Schnittstellenoptionen"
687
 
688
+ #: ../admin/social_sharing.php:688
689
  msgid "Enable vertical (floating) sharing interface"
690
  msgstr "Aktivieren Vertikal (floating) Sharing-Schnittstelle"
691
 
692
+ #: ../admin/social_sharing.php:698
693
  msgid "Master control to enable vertical (floating) sharing widget"
694
  msgstr "Master-Regler, um vertikale (floating) Sharing Widget aktivieren"
695
 
696
+ #: ../admin/social_sharing.php:874
697
+ #: ../admin/like_buttons.php:498
698
+ msgid "Background Color"
699
+ msgstr "color de fondo"
700
+
701
+ #: ../admin/social_sharing.php:884
702
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
703
  msgstr "Geben Sie die Farbe oder Hex-Code (zB # cc78e0) für den Hintergrund der vertikalen Austausch bar. Leer lassen für transparent. Sie können den Hex-Code des gewünschten Farbe von <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> diesen Link </a> erhalten"
704
 
705
+ #: ../admin/social_sharing.php:914
706
+ #: ../admin/like_buttons.php:538
707
+ msgid "Left offset"
708
+ msgstr "desplazamiento izquierda"
709
+
710
+ #: ../admin/social_sharing.php:924
711
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
712
  msgstr "Geben Sie eine Zahl. Anstieg der Zahl Sharing-Schnittstelle nach rechts verschieben und Abnahme wird ihn nach rechts zu verschieben."
713
 
714
+ #: ../admin/social_sharing.php:934
715
+ #: ../admin/like_buttons.php:558
716
+ msgid "Right offset"
717
+ msgstr "Versatz nach rechts"
718
+
719
+ #: ../admin/social_sharing.php:944
720
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
721
  msgstr "Legen sie eine Zahl fest. Eine positive Zahl verschiebt"
722
 
723
+ #: ../admin/social_sharing.php:953
724
+ #: ../admin/like_buttons.php:577
725
+ msgid "Top offset"
726
+ msgstr "superior compensar"
727
+
728
+ #: ../admin/social_sharing.php:963
729
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
730
  msgstr "Geben Sie eine Zahl. Anstieg der Zahl Sharing-Schnittstelle in Richtung Boden verschieben und Abnahme wird es in Richtung Spitze zu verschieben."
731
 
732
+ #: ../admin/social_sharing.php:1004
733
  msgid "Specify the pages where you want to enable vertical Sharing interface"
734
  msgstr "Legen Sie die Seiten, auf denen Sie die vertikale Freigabe Schnittstelle aktiviert werden soll"
735
 
736
+ #: ../admin/social_sharing.php:1079
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
  msgid "Facebook Sharing Troubleshooter"
738
  msgstr "Facebook Sharing-Ratgeber"
739
 
740
+ #: ../admin/social_sharing.php:1084
741
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
742
  msgstr "Wenn Facebook-Sharing ist nicht gut arbeiten, klicken Sie auf den folgenden Link, und geben Sie den problematischen url (wo Facebook-Sharing funktioniert nicht richtig) Ihrer Website in das Textfeld ein:"
743
 
744
+ #: ../admin/social_sharing.php:1100
745
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
746
  msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
747
 
748
+ #: ../admin/social_sharing.php:1101
 
 
 
 
749
  #, fuzzy
750
  msgid "How can I disable sharing on particular page/post?"
751
  msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
752
 
753
+ #: ../admin/social_sharing.php:1102
754
  msgid "How can I specify minimum sharing count for sharing networks?"
755
  msgstr "Wie kann ich festlegen, Mindestbeteiligung Zahl für den Austausch von Netzwerken?"
756
 
757
+ #: ../admin/social_sharing.php:1112
758
+ #: ../admin/social_commenting.php:414
759
+ #: ../admin/social_login.php:665
760
+ #: ../admin/like_buttons.php:655
761
+ msgid "Save Changes"
762
+ msgstr "&Auml;nderungen speichern"
763
+
764
  #: ../admin/social_commenting.php:10
765
+ #, fuzzy
766
+ msgid "Social Commenting"
767
+ msgstr "Comentarios Facebook"
768
+
769
+ #: ../admin/social_commenting.php:11
770
+ #: ../admin/social_commenting.php:392
771
+ #: ../admin/social_commenting.php:394
772
+ msgid "Shortcode"
773
+ msgstr "Shortcodes"
774
 
775
  #: ../admin/social_commenting.php:18
776
  #: ../admin/social_commenting.php:24
 
 
 
777
  #: ../admin/social_commenting.php:34
778
+ #: ../admin/social_commenting.php:134
779
  #, fuzzy
780
+ msgid "Enable Social Commenting"
781
+ msgstr "Aktivieren Social Counter"
782
 
783
+ #: ../admin/social_commenting.php:42
784
+ msgid "Order of tabs in commenting interface"
785
+ msgstr "Reihenfolge der Registerkarten in kommentieren Schnittstelle"
786
 
787
+ #: ../admin/social_commenting.php:52
788
+ msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
789
+ msgstr "Bestellung der im sozialen kommentieren Schnittstelle gezeigt Registerkarten. Der Standardwert ist wordpress,facebook,googleplus,disqus"
790
 
791
  #: ../admin/social_commenting.php:60
792
+ msgid "Comment area label"
793
+ msgstr "Kommentarbereich Label"
794
+
795
+ #: ../admin/social_commenting.php:71
796
+ msgid "Labels"
797
+ msgstr ""
798
+
799
+ #: ../admin/social_commenting.php:77
800
+ #, fuzzy
801
+ msgid "Label for WordPress Commenting tab"
802
+ msgstr "WordPress Comentarios"
803
+
804
+ #: ../admin/social_commenting.php:87
805
  #, fuzzy
806
+ msgid "Label for Facebook Commenting tab"
807
+ msgstr "Facebook Kommentarfunktion aktivieren"
808
+
809
+ #: ../admin/social_commenting.php:97
810
+ #, fuzzy
811
+ msgid "Label for G+ Commenting tab"
812
+ msgstr "Facebook kommentiert"
813
+
814
+ #: ../admin/social_commenting.php:107
815
+ msgid "Label for Disqus Commenting tab"
816
+ msgstr "Label für kommentierte Registerkarte Disqus"
817
+
818
+ #: ../admin/social_commenting.php:118
819
+ msgid "Facebook Commenting Options"
820
+ msgstr "Einstellungen der Facebook Kommentarfunktion"
821
+
822
+ #: ../admin/social_commenting.php:124
823
+ msgid "Enable Facebook Commenting"
824
+ msgstr "Facebook Kommentarfunktion aktivieren"
825
 
826
+ #: ../admin/social_commenting.php:143
827
+ #: ../admin/social_commenting.php:323
828
  msgid "Url to comment on"
829
  msgstr "URL, die kommentiert werden soll"
830
 
831
+ #: ../admin/social_commenting.php:153
832
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
833
  msgstr "Die absolute URL, die Kommentare vorhanden dauerhaft zugeordnet werden. Geschichten auf Facebook über Kommentare vorhanden, wird auf diese URL zu verknüpfen. <br/> Wenn leer <strong> (empfohlen) </ strong>, URL der Webseite verwendet, bei der Kommentierung aktiviert ist."
834
 
835
+ #: ../admin/social_commenting.php:161
836
+ #: ../admin/social_commenting.php:305
837
  msgid "Width"
838
  msgstr "Breite"
839
 
840
+ #: ../admin/social_commenting.php:171
841
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
842
  msgstr "Leer lassen, um die automatische Einstellung der Breite. Die Breite (in Pixel) der Kommentare Block."
843
 
844
+ #: ../admin/social_commenting.php:179
845
  msgid "Color Scheme"
846
  msgstr "Farbschema"
847
 
848
+ #: ../admin/social_commenting.php:183
849
  msgid "Light"
850
  msgstr "Hell"
851
 
852
+ #: ../admin/social_commenting.php:184
853
  msgid "Dark"
854
  msgstr "Dunkel"
855
 
856
+ #: ../admin/social_commenting.php:192
857
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
858
  msgstr "Das Farbschema, was vom Plugin verwendet werden soll (\"light\" oder \"dark\")"
859
 
860
+ #: ../admin/social_commenting.php:200
861
  #, fuzzy
862
  msgid "Number of comments"
863
  msgstr "Anzahl Beitr&auml;ge"
864
 
865
+ #: ../admin/social_commenting.php:210
866
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
867
  msgstr "Anzahl anzuzeigender Kommentare. Min. 1. Der Standardwert ist 10."
868
 
869
+ #: ../admin/social_commenting.php:218
870
  msgid "Order by"
871
  msgstr "Sortieren nach"
872
 
873
+ #: ../admin/social_commenting.php:222
874
  msgid "Social"
875
  msgstr "Sozial"
876
 
877
+ #: ../admin/social_commenting.php:223
878
  msgid "Reverse Time"
879
  msgstr "Umkehrzeit"
880
 
881
+ #: ../admin/social_commenting.php:224
882
  msgid "Time"
883
  msgstr "Zeit"
884
 
885
+ #: ../admin/social_commenting.php:232
886
  msgid "The order to use when displaying comments."
887
  msgstr "Kommentare sortieren nach"
888
 
889
+ #: ../admin/social_commenting.php:240
890
  msgid "Mobile"
891
  msgstr "Mobile"
892
 
893
+ #: ../admin/social_commenting.php:244
894
  msgid "Auto Detect"
895
  msgstr "Automatische Erkennung"
896
 
897
+ #: ../admin/social_commenting.php:245
898
  msgid "True"
899
  msgstr "Ja"
900
 
901
+ #: ../admin/social_commenting.php:246
902
  msgid "False"
903
  msgstr "Nein"
904
 
905
+ #: ../admin/social_commenting.php:254
906
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
907
  msgstr "Der Boolean legt fest, ob die f&uuml;r Mobilger&auml;te optimierte Version angezeigt werden soll oder nicht"
908
 
909
+ #: ../admin/social_commenting.php:262
910
+ #: ../admin/like_buttons.php:132
911
+ #: ../admin/like_buttons.php:138
912
+ msgid "Language"
913
+ msgstr "Sprache"
914
+
915
+ #: ../admin/social_commenting.php:272
916
  #, php-format
917
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
918
  msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
919
 
920
+ #: ../admin/social_commenting.php:281
921
  #, fuzzy
922
+ msgid "Google Plus Commenting Options"
923
+ msgstr "Einstellungen der Facebook Kommentarfunktion"
924
 
925
+ #: ../admin/social_commenting.php:287
926
+ #: ../admin/social_commenting.php:297
927
+ #, fuzzy
928
+ msgid "Enable Google Plus Commenting"
929
+ msgstr "Facebook Kommentarfunktion aktivieren"
930
 
931
+ #: ../admin/social_commenting.php:315
932
+ msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
933
+ msgstr "Breite Google kommentierte Schnittstelle. Leer lassen für Auto-Einstellung"
934
 
935
+ #: ../admin/social_commenting.php:333
936
+ #, fuzzy
937
+ msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
938
+ msgstr "Die absolute URL, die Kommentare vorhanden dauerhaft zugeordnet werden. Geschichten auf Facebook über Kommentare vorhanden, wird auf diese URL zu verknüpfen. <br/> Wenn leer <strong> (empfohlen) </ strong>, URL der Webseite verwendet, bei der Kommentierung aktiviert ist."
939
 
940
+ #: ../admin/social_commenting.php:342
941
+ #, fuzzy
942
+ msgid "Disqus Commenting Options"
943
+ msgstr "Einstellungen der Facebook Kommentarfunktion"
944
 
945
+ #: ../admin/social_commenting.php:348
946
+ #: ../admin/social_commenting.php:358
947
  #, fuzzy
948
+ msgid "Enable Disqus Commenting"
949
+ msgstr "Facebook Kommentarfunktion aktivieren"
950
 
951
+ #: ../admin/social_commenting.php:366
952
+ msgid "Disqus Shortname"
953
+ msgstr ""
954
 
955
+ #: ../admin/social_commenting.php:376
956
+ msgid "<strong>Required to use Disqus commenting.</strong> You can find it in your Disqus plugin settings section as shown in the screenshot below"
957
+ msgstr "<strong>Notwendige zu bedienen Disqus kommentieren.</strong> Sie können es in Ihrem Disqus Plugin-Einstellungen Abschnitt zu finden, wie in der Abbildung unten gezeigt,"
958
 
959
+ #: ../admin/social_commenting.php:406
960
  #, fuzzy
961
+ msgid "How can I disable Social Commenting at individual page/post?"
962
  msgstr "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / Beiträge?"
963
 
 
 
 
 
 
 
 
 
 
 
 
 
964
  #: ../admin/social_login.php:10
965
  msgid "Social Login"
966
  msgstr "Soziale Netzwerke Login"
1265
  msgstr "Bei Aktivierung muss der Benutzer seine Email Adresse best&auml;tigen, indem er einen Aktivierunngslink aufruft, der ihm per Email zugesandt wird."
1266
 
1267
  #: ../admin/social_login.php:656
1268
+ #, fuzzy
1269
+ msgid "Sortcode & Widget"
1270
+ msgstr "Widgets und shortcodes"
 
 
 
 
 
 
 
 
 
 
 
1271
 
1272
  #: ../admin/admin.php:8
1273
  msgid "Welcome"
1282
  msgstr "Beginnen Sie"
1283
 
1284
  #: ../admin/admin.php:12
1285
+ #, fuzzy
1286
+ msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default."
1287
  msgstr "Richten Sie das Sozializer Plugin ein, indem sie in der linken Menu&uuml;leiste unter dem Plugin Men&uuml;punkt die Einstellungen vornehmen. Die \"Teilen\" Funktion ist f ihrer Website standardm&auml;&szlig;ig aktiviert."
1288
 
1289
  #: ../admin/admin.php:13
1302
 
1303
  #: ../admin/admin.php:16
1304
  #, fuzzy
1305
+ msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1306
  msgstr "Unter dem Men&uuml;punkt Facebook k&ouml;nnen Sie die sozialen Netzwerke ausw&auml;hlen und konfigurieren."
1307
 
1308
+ #: ../admin/like_buttons.php:12
1309
+ msgid "Like Buttons"
1310
+ msgstr "wie Buttons"
1311
+
1312
+ #: ../admin/like_buttons.php:25
1313
+ msgid "Enable Like Buttons"
1314
+ msgstr "Aktivieren Sie wie Knöpfe"
1315
+
1316
+ #: ../admin/like_buttons.php:35
1317
+ #, fuzzy
1318
+ msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1319
+ msgstr "Aktivierung des sozialen Logins. Dies muss aktiviert sein, damit der soziale Login funktioniert."
1320
+
1321
+ #: ../admin/like_buttons.php:57
1322
+ msgid "Use shortlinks already installed, for tweet button"
1323
+ msgstr "Verwenden Short bereits installiert ist, für tweet Taste"
1324
+
1325
+ #: ../admin/like_buttons.php:75
1326
+ msgid "Enable bit.ly url shortener for tweet button"
1327
+ msgstr "Aktivieren bit.ly URL Shortener für tweet Taste"
1328
+
1329
+ #: ../admin/like_buttons.php:148
1330
+ #, php-format
1331
+ msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1332
+ msgstr "Geben Sie den Code der Sprache, die Sie verwenden, um Zähler machen wollen. Sie können die Sprachcodes unter <a href=\"%s\" target=\"_blank\"> diesen Link </a> finden. Leer lassen für Standardsprache (Englisch)"
1333
+
1334
+ #: ../admin/like_buttons.php:157
1335
+ msgid "Twitter username in tweet button"
1336
+ msgstr "Twitter Benutzername in tweet Taste"
1337
+
1338
+ #: ../admin/like_buttons.php:173
1339
+ msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1340
+ msgstr "Sofern Benutzername wird angehängt werden, nachdem der Inhalt als \"überUSERNAME \" getwittert. Leer lassen, wenn Sie nicht möchten, dass jede Benutzernamen ein."
1341
+
1342
+ #: ../admin/like_buttons.php:183
1343
+ #, fuzzy
1344
+ msgid "Horizontal Interface Options"
1345
+ msgstr "Horizontale Zähler Schnittstellenoptionen"
1346
+
1347
+ #: ../admin/like_buttons.php:189
1348
+ #, fuzzy
1349
+ msgid "Enable horizontal interface"
1350
+ msgstr "Aktivieren Horizontalzähler Schnittstelle"
1351
+
1352
+ #: ../admin/like_buttons.php:199
1353
+ #, fuzzy
1354
+ msgid "Master control to enable horizontal like buttons"
1355
+ msgstr "Master-Regler auf Horizontalzähler aktivieren"
1356
+
1357
+ #: ../admin/like_buttons.php:224
1358
+ #: ../admin/like_buttons.php:439
1359
+ msgid "Url to like/share/tweet and display like/share/tweet counts"
1360
+ msgstr "URL zu mögen / share / Tweet und Display wie / share / tweet zählt"
1361
+
1362
+ #: ../admin/like_buttons.php:242
1363
+ #, fuzzy
1364
+ msgid "The text to display above the interface"
1365
+ msgstr "Der Text, über den Ladentisch-Oberfläche angezeigt"
1366
+
1367
+ #: ../admin/like_buttons.php:250
1368
+ #: ../admin/like_buttons.php:447
1369
+ msgid "Select and rearrange providers"
1370
+ msgstr "Wählen und ordnen Anbieter"
1371
+
1372
+ #: ../admin/like_buttons.php:294
1373
+ #: ../admin/like_buttons.php:490
1374
+ #, fuzzy
1375
+ msgid "Select the providers for interface. Drag them to rearrange."
1376
+ msgstr "Wählen Sie die Anbieter für den Zähler-Schnittstelle. Ziehen Sie sie neu anzuordnen."
1377
+
1378
+ #: ../admin/like_buttons.php:316
1379
+ #: ../admin/like_buttons.php:529
1380
+ #, fuzzy
1381
+ msgid "Horizontal alignment of the interface"
1382
+ msgstr "Horizontale Ausrichtung des Gegen Schnittstelle"
1383
+
1384
+ #: ../admin/like_buttons.php:337
1385
+ #, fuzzy
1386
+ msgid "Specify position of the interface with respect to the content"
1387
+ msgstr "Angeben Position des Gegen Schnittstelle mit Bezug auf den Gehalt"
1388
+
1389
+ #: ../admin/like_buttons.php:345
1390
+ #: ../admin/like_buttons.php:595
1391
+ #, fuzzy
1392
+ msgid "Interface location"
1393
+ msgstr "Gegen Lage"
1394
+
1395
+ #: ../admin/like_buttons.php:388
1396
+ #, fuzzy
1397
+ msgid "Specify the pages where you want to enable interface"
1398
+ msgstr "Geben Sie die Seiten an der Sie Zähler-Schnittstelle aktiviert werden soll"
1399
+
1400
+ #: ../admin/like_buttons.php:398
1401
+ #, fuzzy
1402
+ msgid "Vertical (Floating) like buttons Options"
1403
+ msgstr "Vertikal (Schwimmende) Zähler Schnittstelle Optionen"
1404
+
1405
+ #: ../admin/like_buttons.php:404
1406
+ #, fuzzy
1407
+ msgid "Enable vertical (floating) like buttons"
1408
+ msgstr "Aktivieren Vertikal (floating) Zähler-Schnittstelle"
1409
+
1410
+ #: ../admin/like_buttons.php:414
1411
+ msgid "Master control to enable vertical (floating) counter widget"
1412
+ msgstr "Master-Regler auf Vertikal (schwimmenden) Gegen Widget aktivieren"
1413
+
1414
+ #: ../admin/like_buttons.php:508
1415
+ #, fuzzy
1416
+ msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1417
+ msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de barra de bar vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
1418
+
1419
+ #: ../admin/like_buttons.php:548
1420
+ #, fuzzy
1421
+ msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left."
1422
+ msgstr "Geben Sie eine Zahl. Anstieg der Zahl Zähler Schnittstelle nach rechts verschieben und Abnahme wird ihn nach rechts zu verschieben."
1423
+
1424
+ #: ../admin/like_buttons.php:568
1425
+ #, fuzzy
1426
+ msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right."
1427
+ msgstr "Geben Sie eine Zahl. Anstieg der Zahl Zähler Schnittstelle nach links verschieben und Abnahme wird es nach rechts zu verschieben."
1428
+
1429
+ #: ../admin/like_buttons.php:587
1430
+ #, fuzzy
1431
+ msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1432
+ msgstr "Geben Sie eine Zahl. Anstieg der Zahl Zähler Schnittstelle zum Boden verschieben und Abnahme wird es in Richtung Spitze zu verschieben."
1433
+
1434
+ #: ../admin/like_buttons.php:628
1435
+ #, fuzzy
1436
+ msgid "Specify the pages where you want to enable vertical interface"
1437
+ msgstr "Legen Sie die Seiten, auf denen Sie die vertikale Zähler-Schnittstelle aktiviert werden soll"
1438
+
1439
+ #: ../inc/social_sharing.php:515
1440
  msgid "Invalid request"
1441
  msgstr "Ungültige Anforderung"
1442
 
1443
+ #: ../inc/social_sharing.php:522
1444
  msgid "Providers not selected"
1445
  msgstr "Provider nicht aktiviert"
1446
 
1537
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1538
  msgstr "Vertikale schwimm Zähler-Widget. Lassen Sie Ihre Website-Nutzer share / wie Inhalte auf beliebte soziale Netzwerke wie Facebook, Twitter, Google+ und viele mehr"
1539
 
1540
+ #~ msgid ""
1541
+ #~ "I am a tech enthusiast. I like to play with code and build great stuff "
1542
+ #~ "(and like to call myself - The Champ....:) ). You can connect with me "
1543
+ #~ "(and my upcoming work) via:"
1544
+ #~ msgstr ""
1545
+ #~ "Ich bin ein Tech-Enthusiasten. Ich mag mit Code zu spielen und bauen "
1546
+ #~ "tolle Sachen (und mich gerne nennen - Der Champ .... :)). Sie können mit "
1547
+ #~ "mir (und meine bevorstehende Arbeit) über eine Verbindung:"
1548
+
1549
+ #~ msgid "Plugin Fan Page"
1550
+ #~ msgstr "Plugin Fan Page"
1551
+
1552
+ #~ msgid "My Fan Page"
1553
+ #~ msgstr "Mein Fan Page"
1554
+
1555
+ #~ msgid "Social Counter"
1556
+ #~ msgstr "Social Counter"
1557
+
1558
+ #~ msgid ""
1559
+ #~ "Master control for Social Counter. It must be checked to enable Social "
1560
+ #~ "Counter functionality"
1561
+ #~ msgstr ""
1562
+ #~ "Master-Regler für soziale Zähler. Es ist zu prüfen, um Social Zähler "
1563
+ #~ "Funktionalität zu ermöglichen"
1564
+
1565
+ #~ msgid ""
1566
+ #~ "<strong>Note:</strong> To disable counter on particular page/post, edit "
1567
+ #~ "that page/post and check the options at the bottom in <strong>\"Super "
1568
+ #~ "Socializer\"</strong> section"
1569
+ #~ msgstr ""
1570
+ #~ "<strong> Hinweis: </ strong> So deaktivieren Sie die Marke auf bestimmte "
1571
+ #~ "Seite/Post, bearbeiten diese Seite / Post und überprüfen Sie die Optionen "
1572
+ #~ "unten im <strong>\"Super-Socializer \" </ strong>"
1573
+
1574
+ #~ msgid ""
1575
+ #~ "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content "
1576
+ #~ "of required page/post where you want to display Social Counter interface."
1577
+ #~ msgstr ""
1578
+ #~ "Sie können mit <strong> [TheChamp-Counter] </ strong> Kurzwahl in den "
1579
+ #~ "Inhalt der erforderlichen Seite / Post, wo Sie Social Zähler-"
1580
+ #~ "Schnittstelle anzeigen möchten."
1581
+
1582
+ #~ msgid "Example"
1583
+ #~ msgstr "ejemplo"
1584
+
1585
+ #~ msgid "You can use following attributes in the Shortcode"
1586
+ #~ msgstr "Puede utilizar los atributos siguientes en el Código corto"
1587
+
1588
+ #~ msgid ""
1589
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Counter "
1590
+ #~ "interface"
1591
+ #~ msgstr ""
1592
+ #~ "Verwenden Sie <strong>style</ strong> der Attribut Stil gemacht Social "
1593
+ #~ "Zähler-Schnittstelle"
1594
+
1595
+ #, fuzzy
1596
+ #~ msgid ""
1597
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1598
+ #~ "or \"vertical\") of Social Counter interface. Default type is \"horizontal"
1599
+ #~ "\"."
1600
+ #~ msgstr ""
1601
+ #~ "Verwenden Sie <strong> type </ strong> Attribut, um den Typ (\"horizontal"
1602
+ #~ "\" oder \"vertical \") für Sozialstatistik Schnittstelle. Standardtyp ist "
1603
+ #~ "\"horizontal\"."
1604
+
1605
+ #~ msgid "Left (Works with \"Vertical\" type interface only)"
1606
+ #~ msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
1607
+
1608
+ #~ msgid ""
1609
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1610
+ #~ "form the left side of the screen) of Social Counter interface."
1611
+ #~ msgstr ""
1612
+ #~ "Verwenden Sie <strong>left</ strong> Attribut angeben, das linke Offset "
1613
+ #~ "(Abstand von der linken Seite des Bildschirms) für Sozialstatistik "
1614
+ #~ "Schnittstelle."
1615
+
1616
+ #~ msgid "Top (Works with \"Vertical\" type interface only)"
1617
+ #~ msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
1618
+
1619
+ #~ msgid ""
1620
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1621
+ #~ "form the top of the screen) of Social Counter interface."
1622
+ #~ msgstr ""
1623
+ #~ "Verwenden Sie <strong>top</ strong> Attribut, um den oberen Offset von "
1624
+ #~ "Social Zähler Schnittstelle festlegen (Abstand von der oben auf dem "
1625
+ #~ "Bildschirm)."
1626
+
1627
+ #, fuzzy
1628
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be liked"
1629
+ #~ msgstr ""
1630
+ #~ "Verwenden Sie <strong> num_posts </ strong> der Attribut Stil gemacht "
1631
+ #~ "Social Zähler-Schnittstelle"
1632
+
1633
+ #~ msgid "You can use shortcode in PHP file as following"
1634
+ #~ msgstr "In PHP Scripts k&ouml;nnen sie Shortcodes benutzen:"
1635
+
1636
+ #~ msgid ""
1637
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1638
+ #~ "shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]"
1639
+ #~ "</strong>, so the final code looks like following"
1640
+ #~ msgstr ""
1641
+ #~ "Ersetzen Sie <strong> SHORT </ strong> in obigen Code mit der gewünschten "
1642
+ #~ "Kurzwahlnummer wie <strong> [TheChamp-Counter style=\"background-color:"
1643
+ #~ "#000;\"] </ strong>, so dass der endgültige Code sieht wie folgt aus"
1644
+
1645
+ #~ msgid "Widget"
1646
+ #~ msgstr "Widget"
1647
+
1648
+ #~ msgid ""
1649
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1650
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1651
+ #~ "Counter (Horizontal Widget)</strong> and <strong>Super Socializer - "
1652
+ #~ "Counter (Vertical Floating Widget)</strong> widgets in the required area."
1653
+ #~ msgstr ""
1654
+ #~ "Sie können mit dem <strong> Darstellung navigieren </ strong>> <strong> "
1655
+ #~ "Widgets </ strong> in der linken Wanne und ziehen <strong> Super "
1656
+ #~ "Socializer - Zähler (Horizontale Widget) </ strong> und <strong> Super "
1657
+ #~ "Socializer - Zähler (Vertical Schwimm Widget) </ strong> Widgets in den "
1658
+ #~ "gewünschten Bereich."
1659
+
1660
+ #, fuzzy
1661
+ #~ msgid ""
1662
+ #~ "How can I show like counts of my website rather than of individual pages/"
1663
+ #~ "posts?"
1664
+ #~ msgstr ""
1665
+ #~ "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / "
1666
+ #~ "Beiträge?"
1667
+
1668
+ #, fuzzy
1669
+ #~ msgid ""
1670
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
1671
+ #~ msgstr ""
1672
+ #~ "Wählen Sie die Option \"URL der Homepage Ihrer Website \" in Option "
1673
+ #~ "\"Ziel-URL \" und aktivieren \"Aktie zählt Show \""
1674
+
1675
+ #, fuzzy
1676
+ #~ msgid "How can I disable social counter on particular page/post?"
1677
+ #~ msgstr ""
1678
+ #~ "Wie kann ich zeigen Aktie zählt meiner Website anstatt einzelner Seiten / "
1679
+ #~ "Beiträge?"
1680
+
1681
+ #, fuzzy
1682
+ #~ msgid ""
1683
+ #~ "Edit that page/post and check the options at the bottom in \"Super "
1684
+ #~ "Socializer\" section"
1685
+ #~ msgstr ""
1686
+ #~ "Bearbeiten Sie diese Seite/Post und aktivieren Sie die Option "
1687
+ #~ "\"deaktivieren Facebook Kommentare zu diesem Beitrag / Seite \" am "
1688
+ #~ "unteren Rand in Abschnitt \"Super-Socializer \""
1689
+
1690
+ #~ msgid "Social Sharing"
1691
+ #~ msgstr "Social Sharing"
1692
+
1693
+ #, fuzzy
1694
+ #~ msgid ""
1695
+ #~ "<strong>Note:</strong> To disable sharing and specify minimum share "
1696
+ #~ "counts per social network on particular page/post, edit that page/post "
1697
+ #~ "and check the options at the bottom in <strong>\"Super Socializer\"</"
1698
+ #~ "strong> section"
1699
+ #~ msgstr ""
1700
+ #~ "<strong>Hinweis:</strong> Um das Teilen auf bestimmten Seiten / "
1701
+ #~ "Beitr&auml;gen zu verhindern,editieren Sie diese/n und &auml;ndern Sie "
1702
+ #~ "die Checkbox unter <strong>\"Super Socializer\"</strong> section"
1703
+
1704
+ #~ msgid ""
1705
+ #~ "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content "
1706
+ #~ "of required page/post where you want to display Social Sharing interface."
1707
+ #~ msgstr ""
1708
+ #~ "Sie können mit <strong> [TheChamp-Sharing] </ strong> Kurzwahl in den "
1709
+ #~ "Inhalt der erforderlichen Seite / Post, wo Sie Social-Sharing-"
1710
+ #~ "Schnittstelle anzeigen möchten."
1711
+
1712
+ #~ msgid ""
1713
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Sharing "
1714
+ #~ "interface"
1715
+ #~ msgstr ""
1716
+ #~ "Verwenden Sie <strong>style</ strong> der Attribut Stil gemacht Social "
1717
+ #~ "Sharing-Schnittstelle"
1718
+
1719
+ #~ msgid ""
1720
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1721
+ #~ "or \"vertical\") of Social Sharing interface. Default type is \"horizontal"
1722
+ #~ "\"."
1723
+ #~ msgstr ""
1724
+ #~ "Verwenden Sie <strong>type</ strong> Attribut, um den Typ (\"horizontal\" "
1725
+ #~ "oder \"vertical \") der Social-Sharing-Schnittstelle angeben. Standardtyp "
1726
+ #~ "ist \"horizontal\"."
1727
+
1728
+ #, fuzzy
1729
+ #~ msgid ""
1730
+ #~ "Use <strong>count</strong> attribute to enable the share counts on Social "
1731
+ #~ "Sharing interface"
1732
+ #~ msgstr ""
1733
+ #~ "Verwenden Sie <strong>style</ strong> der Attribut Stil gemacht Social "
1734
+ #~ "Sharing-Schnittstelle"
1735
+
1736
+ #, fuzzy
1737
+ #~ msgid "left (Works with \"Vertical\" type interface only)"
1738
+ #~ msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
1739
+
1740
+ #~ msgid ""
1741
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1742
+ #~ "form the left side of the screen) of Social Sharing interface."
1743
+ #~ msgstr ""
1744
+ #~ "Verwenden Sie <strong>left</ strong> Attribut angeben, das linke Offset "
1745
+ #~ "(Abstand von der linken Seite des Bildschirms) von Social Sharing-"
1746
+ #~ "Schnittstelle."
1747
+
1748
+ #, fuzzy
1749
+ #~ msgid "top (Works with \"Vertical\" type interface only)"
1750
+ #~ msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
1751
+
1752
+ #~ msgid ""
1753
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1754
+ #~ "form the top of the screen) of Social Sharing interface."
1755
+ #~ msgstr ""
1756
+ #~ "Verwenden Sie <strong> top </ strong> Attribut, um den oberen Offset von "
1757
+ #~ "Social Sharing-Schnittstelle festlegen (Abstand von der oben auf dem "
1758
+ #~ "Bildschirm)."
1759
+
1760
+ #, fuzzy
1761
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be shared"
1762
+ #~ msgstr ""
1763
+ #~ "Verwenden Sie <strong> num_posts </ strong> der Attribut Stil gemacht "
1764
+ #~ "Social Zähler-Schnittstelle"
1765
+
1766
+ #~ msgid ""
1767
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1768
+ #~ "shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]"
1769
+ #~ "</strong>, so the final code looks like following"
1770
+ #~ msgstr ""
1771
+ #~ "Ersetzen Sie <strong> SHORTCODE </ strong> in obigen Code mit der "
1772
+ #~ "gewünschten Kurzwahlnummer wie <strong> [TheChamp-Sharing style="
1773
+ #~ "\"background-color:#000;\"] </ strong>, so dass der endgültige Code sieht "
1774
+ #~ "wie folgt aus"
1775
+
1776
+ #~ msgid ""
1777
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1778
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1779
+ #~ "Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - "
1780
+ #~ "Sharing (Vertical Floating Widget)</strong> widgets in the required area."
1781
+ #~ msgstr ""
1782
+ #~ "Sie können mit dem <strong> Appearance </ strong>> <strong> Widgets </ "
1783
+ #~ "strong> in der linken Wanne und ziehen <strong> Super Socializer - "
1784
+ #~ "Sharing (Horizontale Widget) </ strong> und <strong> Super Socializer - "
1785
+ #~ "Sharing (Vertical Floating Widget) </ strong> Widgets in den gewünschten "
1786
+ #~ "Bereich."
1787
+
1788
+ #~ msgid ""
1789
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option "
1790
+ #~ "and enable \"Show share counts\" option"
1791
+ #~ msgstr ""
1792
+ #~ "Wählen Sie die Option \"URL der Homepage Ihrer Website \" in Option "
1793
+ #~ "\"Ziel-URL \" und aktivieren \"Aktie zählt Show \""
1794
+
1795
+ #, fuzzy
1796
+ #~ msgid ""
1797
+ #~ "After enabling this option, Facebook commenting will appear before "
1798
+ #~ "Wordpress comment form at your website"
1799
+ #~ msgstr ""
1800
+ #~ "Nach dem Aktivieren wird das Wordpress Kommentarfeld durch die Facebook "
1801
+ #~ "Kommentarfunktion ersetzt."
1802
+
1803
+ #~ msgid "Keep only Facebook Commenting"
1804
+ #~ msgstr "Consérvese únicamente Facebook Comentando"
1805
+
1806
+ #, fuzzy
1807
+ #~ msgid ""
1808
+ #~ "If enabled, only Facebook commenting would be visible without default "
1809
+ #~ "comment form"
1810
+ #~ msgstr ""
1811
+ #~ "Si está habilitado, sólo Facebook comentando estarán allí sin la opción "
1812
+ #~ "de cambiar a WordPress comentar"
1813
+
1814
+ #, fuzzy
1815
+ #~ msgid ""
1816
+ #~ "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the "
1817
+ #~ "content of required page/post where you want to display Facebook "
1818
+ #~ "Commenting interface."
1819
+ #~ msgstr ""
1820
+ #~ "Sie können mit <strong> [TheChamp-Counter] </ strong> Kurzwahl in den "
1821
+ #~ "Inhalt der erforderlichen Seite / Post, wo Sie Social Zähler-"
1822
+ #~ "Schnittstelle anzeigen möchten."
1823
+
1824
+ #~ msgid ""
1825
+ #~ "Use <strong>style</strong> attribute to style the rendered commenting "
1826
+ #~ "interface"
1827
+ #~ msgstr ""
1828
+ #~ "Verwenden Sie <strong> style </ strong> der Attribut Stil gemacht Social "
1829
+ #~ "Sharing-Schnittstelle"
1830
+
1831
+ #~ msgid ""
1832
+ #~ "Use <strong>url</strong> attribute to specify the target url for "
1833
+ #~ "comments. This defaults to the page where shortcode is used."
1834
+ #~ msgstr ""
1835
+ #~ "Verwenden Sie <strong> url </ strong> Attribut angeben, das linke Offset "
1836
+ #~ "(Abstand von der linken Seite des Bildschirms) für Sozialstatistik "
1837
+ #~ "Schnittstelle."
1838
+
1839
+ #~ msgid ""
1840
+ #~ "Use <strong>num_posts</strong> attribute to specify the number of "
1841
+ #~ "comments to display."
1842
+ #~ msgstr ""
1843
+ #~ "Verwenden Sie <strong> num_posts </ strong> der Attribut Stil gemacht "
1844
+ #~ "Social Zähler-Schnittstelle"
1845
+
1846
+ #, fuzzy
1847
+ #~ msgid "width"
1848
+ #~ msgstr "Breite"
1849
+
1850
+ #~ msgid ""
1851
+ #~ "Use <strong>width</strong> attribute to specify the width of commenting "
1852
+ #~ "interface. Omit it for fluid width"
1853
+ #~ msgstr ""
1854
+ #~ "Verwenden Sie <strong> width </ strong> Attribut, um den oberen Offset "
1855
+ #~ "von Social Sharing-Schnittstelle festlegen (Abstand von der oben auf dem "
1856
+ #~ "Bildschirm)."
1857
+
1858
+ #~ msgid ""
1859
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1860
+ #~ "shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:"
1861
+ #~ "#000;\"]</strong>, so the final code looks like following"
1862
+ #~ msgstr ""
1863
+ #~ "Ersetzen Sie <strong> SHORT </ strong> in obigen Code mit der gewünschten "
1864
+ #~ "Kurzwahlnummer wie <strong> [TheChamp-FB-Comments style=\"background-"
1865
+ #~ "color:#000;\"] </ strong>, so dass der endgültige Code sieht wie folgt aus"
1866
+
1867
+ #~ msgid ""
1868
+ #~ "Edit that page/post and check the option \"Disable Facebook Comments on "
1869
+ #~ "this post/page\" at the bottom in \"Super Socializer\" section"
1870
+ #~ msgstr ""
1871
+ #~ "Bearbeiten Sie diese Seite/Post und aktivieren Sie die Option "
1872
+ #~ "\"deaktivieren Facebook Kommentare zu diesem Beitrag / Seite \" am "
1873
+ #~ "unteren Rand in Abschnitt \"Super-Socializer \""
1874
+
1875
+ #~ msgid ""
1876
+ #~ "How to enable only Facebook Comments without enabling default comment "
1877
+ #~ "form?"
1878
+ #~ msgstr ""
1879
+ #~ "Wie nur Facebook Kommentare ohne Aktivierung Standardkommentarfunktion "
1880
+ #~ "aktivieren?"
1881
+
1882
+ #~ msgid ""
1883
+ #~ "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting"
1884
+ #~ "\" section."
1885
+ #~ msgstr ""
1886
+ #~ "Aktivieren \"Keep nur Facebook kommentierte\" Option \"Facebook "
1887
+ #~ "kommentierte\" Abschnitt."
1888
+
1889
+ #~ msgid ""
1890
+ #~ "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of "
1891
+ #~ "required page/post where you want to display Social Login interface."
1892
+ #~ msgstr ""
1893
+ #~ "Verwenden Sie <strong> [TheChamp-Login] </strong> Kurzwahl in den Inhalt "
1894
+ #~ "der erforderlichen Seite / Post, wo Sie Social-Login-Schnittstelle "
1895
+ #~ "anzeigen möchten."
1896
+
1897
+ #~ msgid ""
1898
+ #~ "You can use \"style\" attribute in the Shortcode to style the rendered "
1899
+ #~ "Social Login interface."
1900
+ #~ msgstr ""
1901
+ #~ "Sie k&ouml;nnen das \"style\" Attribut in den Shortcodes benutzen, um die "
1902
+ #~ "Darstellung des sozialen Logins anzupassen"
1903
+
1904
+ #~ msgid ""
1905
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1906
+ #~ "shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</"
1907
+ #~ "strong>, so the final code looks like following"
1908
+ #~ msgstr ""
1909
+ #~ "Ersetzen Sie <strong> SHORTCODE</ strong> in obigen Code mit der "
1910
+ #~ "gewünschten Kurzwahlnummer wie <strong> [TheChamp-Login style="
1911
+ #~ "\"background-color:#000;\"]</ strong>, so dass der endgültige Code sieht "
1912
+ #~ "wie folgt aus"
1913
+
1914
+ #~ msgid ""
1915
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1916
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1917
+ #~ "Login</strong> widget in the required area."
1918
+ #~ msgstr ""
1919
+ #~ "Sie können mit dem <strong>Appearance</ strong> > <strong>Widgets</ "
1920
+ #~ "strong> in der linken Wanne und ziehen <strong> Super Socializer - Login "
1921
+ #~ "</ strong> Widget in den gewünschten Bereich."
1922
+
1923
  #~ msgid ""
1924
  #~ "Remove the plugin credit links (\"Super Socializer by The Champ\") in "
1925
  #~ "just $15. Interested? Email me: <a href=\"mailto:lordofthechamps@gmail.com"
2066
  #~ msgid "Load first"
2067
  #~ msgstr "Cargue primero"
2068
 
 
 
 
 
2069
  #~ msgid "Selected commenting will be loaded first on the page"
2070
  #~ msgstr "Comentando seleccionado se cargará primero en la página de"
2071
 
2107
  #~ msgid "Facebook Comments"
2108
  #~ msgstr "Comentarios Facebook"
2109
 
 
 
 
2110
  #~ msgid ""
2111
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
2112
  #~ "><strong>Note: Social Login at comment form of your website will not get "
languages/Super-Socializer-es_ES.mo CHANGED
Binary file
languages/Super-Socializer-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer 2.8.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-21 05:49+0530\n"
6
- "PO-Revision-Date: 2015-04-21 05:49+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: es\n"
@@ -25,36 +25,40 @@ msgstr "Introduzca exactamente la siguiente url en <strong> Website </ strong> y
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Asegúrese CURL está activado en tu servidor web. Puede que tenga que ponerse en contacto con el administrador del servidor de su sitio web para comprobar esto"
27
 
28
- #: ../super_socializer.php:348
29
  msgid "Please verify your email address to login."
30
  msgstr "Verifique por favor su dirección de correo electrónico para iniciar sesión"
31
 
32
- #: ../super_socializer.php:348
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Su email ha sido verificado. Ahora puede acceder a su cuenta"
35
 
36
- #: ../super_socializer.php:352
37
  msgid "Notification"
38
  msgstr "Notificación"
39
 
40
- #: ../super_socializer.php:371
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "Requiere E-mail"
44
 
45
- #: ../super_socializer.php:374
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Por favor revise su bandeja de entrada de correo electrónico para completar el registro"
48
 
49
- #: ../super_socializer.php:387
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Siga los pasos 11 y 12 en la página de configuración de aplicación de Google Plus, a punto de abrir"
52
 
53
- #: ../super_socializer.php:547
 
 
 
 
54
  msgid "Email you entered is already registered or invalid"
55
  msgstr "Enviar que ha introducido ya está registrado o no válido"
56
 
57
- #: ../super_socializer.php:551
58
  msgid "Please enter a valid email address. You might be required to verify it"
59
  msgstr "Por favor, introduce una dirección de correo electrónico válida. Es posible que tenga para verificarla"
60
 
@@ -70,75 +74,75 @@ msgstr "Haga clic para mostrar ayuda"
70
  msgid "Click to hide help"
71
  msgstr "Haga clic para ocultar ayuda"
72
 
73
- #: ../helper.php:174
74
  msgid "Settings"
75
  msgstr "Configuración"
76
 
77
- #: ../helper.php:466
78
  #, fuzzy
79
  msgid "Account linked successfully"
80
  msgstr "Opciones guardadas correctamente"
81
 
82
- #: ../helper.php:472
83
  msgid "Account already exists or linked"
84
  msgstr "Cuenta ya existe o vinculado"
85
 
86
- #: ../helper.php:483
87
  #, fuzzy
88
  msgid "You are already connected with"
89
  msgstr "Usted está listo para Socializar su sitio web."
90
 
91
- #: ../helper.php:483
92
  msgid "as primary social network"
93
  msgstr "como red social primaria"
94
 
95
- #: ../helper.php:500
96
  msgid "Link your social account to login to your account at this website"
97
  msgstr "Vincula tu cuenta social para acceder a su cuenta en esta web"
98
 
99
- #: ../helper.php:545
100
  msgid "Currently"
101
  msgstr "actualmente"
102
 
103
- #: ../helper.php:545
104
  msgid "Remove"
105
  msgstr "quitar"
106
 
107
- #: ../helper.php:636
108
  msgid "Disable Horizontal Social Sharing on this "
109
  msgstr "Desactivar Horizontal Intercambio Social en esta"
110
 
111
- #: ../helper.php:641
112
  msgid "Disable Vertical Social Sharing on this "
113
  msgstr "Desactivar Vertical Intercambio Social en esta"
114
 
115
- #: ../helper.php:646
116
  #, fuzzy
117
- msgid "Disable Horizontal Social Counter on this "
118
  msgstr "Desactivar Horizontal Intercambio Social en esta"
119
 
120
- #: ../helper.php:651
121
  #, fuzzy
122
- msgid "Disable Vertical Social Counter on this "
123
  msgstr "Desactivar Vertical Intercambio Social en esta"
124
 
125
- #: ../helper.php:656
126
  #, fuzzy
127
- msgid "Disable Facebook Comments on this "
128
  msgstr "Habilitar Comentarios Facebook"
129
 
130
- #: ../helper.php:665
131
  #, fuzzy
132
  msgid "Horizontal sharing"
133
  msgstr "Horizontales Opciones para compartir la interfaz de"
134
 
135
- #: ../helper.php:671
136
- #: ../helper.php:690
137
  #, fuzzy
138
  msgid "Starting share count for "
139
  msgstr "conteos muestran acciones"
140
 
141
- #: ../helper.php:684
142
  #, fuzzy
143
  msgid "Vertical sharing"
144
  msgstr "Social Sharing"
@@ -156,1028 +160,816 @@ msgid "by"
156
  msgstr "por"
157
 
158
  #: ../admin/help.php:7
159
- msgid "I am a tech enthusiast. I like to play with code and build great stuff (and like to call myself - The Champ....:) ). You can connect with me (and my upcoming work) via:"
160
- msgstr "Soy un entusiasta de la tecnología. Me gusta jugar con los códigos y construir grandes cosas (y me gusta decir que soy - El Champ .... :)). Puede conectar conmigo (y mi próximo trabajo) a través de:"
161
 
162
- #: ../admin/help.php:18
163
  msgid "Plugin Demo"
164
  msgstr "Demostración Plugin"
165
 
166
- #: ../admin/help.php:20
167
  msgid "You can see the plugin in action at following link"
168
  msgstr "Usted puede ver el plugin en acción en el siguiente enlace"
169
 
170
- #: ../admin/help.php:26
171
  msgid "Support"
172
  msgstr "Soporte"
173
 
174
- #: ../admin/help.php:28
175
- msgid "If you like my plugin or have any query, you can drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, like my <strong>Facebook</strong> pages and follow me at <strong>Twitter</strong>."
 
176
  msgstr "Si le gusta mi plugin y le resulta útil, puede enviarme un correo electrónico a lordofthechamps@gmail.com, dar Me Gusta a mis páginas Facebook y seguirme en Twitter"
177
 
178
- #: ../admin/help.php:30
 
179
  #: ../admin/help.php:33
180
  #: ../admin/help.php:34
181
  #: ../admin/help.php:35
182
  #: ../admin/help.php:36
183
- #: ../admin/help.php:37
184
  msgid "Rate 5-star"
185
  msgstr "Tasa de 5 estrellas"
186
 
187
- #: ../admin/help.php:45
188
- msgid "Plugin Fan Page"
189
- msgstr "Plugin de Página de fans"
190
-
191
- #: ../admin/help.php:54
192
- msgid "My Fan Page"
193
- msgstr "Mi página de fans"
194
 
195
- #: ../admin/help.php:73
196
  msgid "Want plugin customization?"
197
  msgstr "¿Quieres plugin de personalización?"
198
 
199
- #: ../admin/help.php:75
200
- msgid "If you want custom features in the plugin, I can do it for you. Just drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>"
 
201
  msgstr "Si quieres características personalizadas en el plugin, lo que puedo hacer por usted. Simplemente envíeme un correo electrónico a lordofthechamps@gmail.com"
202
 
203
- #: ../admin/social_counter.php:11
204
- #: ../admin/social_counter.php:20
205
- #: ../admin/social_sharing.php:14
206
- #: ../admin/social_sharing.php:24
207
  #: ../admin/social_login.php:9
208
  #: ../admin/social_login.php:17
 
 
209
  msgid "Basic Configuration"
210
  msgstr "Configuración Básica"
211
 
212
- #: ../admin/social_counter.php:12
213
  #, fuzzy
214
- msgid "Social Counter"
215
- msgstr "Social Login"
216
 
217
- #: ../admin/social_counter.php:13
218
- #: ../admin/social_sharing.php:16
 
 
 
 
 
 
219
  #: ../admin/social_login.php:11
 
 
 
 
220
  msgid "Shortcode & Widget"
221
  msgstr "Widgets y shortcodes"
222
 
223
- #: ../admin/social_counter.php:14
224
- #: ../admin/social_sharing.php:18
 
 
 
 
225
  #: ../admin/social_commenting.php:12
 
226
  msgid "FAQ"
227
  msgstr ""
228
 
229
- #: ../admin/social_counter.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  #, fuzzy
231
- msgid "Enable Social Counter"
232
- msgstr "Habilitar Social Login"
 
 
 
 
 
233
 
234
- #: ../admin/social_counter.php:36
 
 
 
 
 
 
 
 
 
 
 
235
  #, fuzzy
236
- msgid "Master control for Social Counter. It must be checked to enable Social Counter functionality"
237
- msgstr "Control Maestro para Social Login. Debe comprobarse para permitir la funcionalidad de Social Login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
- #: ../admin/social_counter.php:50
240
  #, fuzzy
241
- msgid "<strong>Note:</strong> To disable counter on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
242
- msgstr "<strong> Nota: </ strong> Para deshabilitar el uso compartido en concreto la página / post, edite la página / post y comprobar el <strong> \"Desactivar Intercambio Social en esta página \" </ strong> la opción en la parte inferior de <strong > \"Super Socializer \" </ strong>"
243
 
244
- #: ../admin/social_counter.php:67
245
- #: ../admin/social_sharing.php:88
246
- msgid "bit.ly url shortener"
 
247
  msgstr "bit.ly url acortador"
248
 
249
- #: ../admin/social_counter.php:73
250
- msgid "Enable bit.ly url shortener for tweet button"
251
- msgstr "Habilitar acortador de url bit.ly para el botón de Twitter"
 
 
 
 
 
252
 
253
- #: ../admin/social_counter.php:83
254
- #: ../admin/social_sharing.php:104
 
 
 
 
255
  #, fuzzy
256
  msgid "Master control to enable bit.ly url shortening for sharing"
257
  msgstr "Control maestro para permitir el intercambio horizontal"
258
 
259
- #: ../admin/social_counter.php:91
260
- #: ../admin/social_sharing.php:112
261
  msgid "bit.ly username"
262
  msgstr "bit.ly nombre de usuario"
263
 
264
- #: ../admin/social_counter.php:101
265
- #: ../admin/social_sharing.php:122
266
  #, fuzzy, php-format
267
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
268
  msgstr "Requerido para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener Twitter Secreto del Consumidor"
269
 
270
- #: ../admin/social_counter.php:110
271
- #: ../admin/social_sharing.php:131
272
  #, fuzzy
273
  msgid "bit.ly API Key"
274
  msgstr "Clave Consumidor Twitter"
275
 
276
- #: ../admin/social_counter.php:120
277
- #: ../admin/social_sharing.php:141
278
  #, fuzzy, php-format
279
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
280
  msgstr "Requerida para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\"> en este enlace</a> para obtener su Clave Consumidor Twitter"
281
 
282
- #: ../admin/social_counter.php:130
283
- #: ../admin/social_counter.php:136
284
- #: ../admin/social_commenting.php:187
285
- msgid "Language"
286
- msgstr "Idioma"
287
-
288
- #: ../admin/social_counter.php:146
289
- #, fuzzy, php-format
290
- msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
291
- msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
292
-
293
- #: ../admin/social_counter.php:155
294
- msgid "Twitter username in tweet button"
295
- msgstr "Twitter nombre de usuario en el botón de Twitter"
296
 
297
- #: ../admin/social_counter.php:161
298
- #: ../admin/social_sharing.php:157
299
  msgid "Twitter username (without @)"
300
  msgstr "Twitter nombre de usuario (sin @)"
301
 
302
- #: ../admin/social_counter.php:171
303
- msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
304
- msgstr "Nombre de usuario proporcionado se añadirá después del contenido que se está tuiteó como \"a travésUSERNAME\". Dejar vacío si no desea ningún nombre de usuario."
305
 
306
- #: ../admin/social_counter.php:181
307
- #, fuzzy
308
- msgid "Horizontal Counter Interface Options"
309
  msgstr "Horizontales Opciones para compartir la interfaz de"
310
 
311
- #: ../admin/social_counter.php:187
312
- #, fuzzy
313
- msgid "Enable horizontal counter interface"
314
  msgstr "Habilitar interfaz de intercambio horizontal"
315
 
316
- #: ../admin/social_counter.php:197
317
- #, fuzzy
318
- msgid "Master control to enable horizontal counter"
319
  msgstr "Control maestro para permitir el intercambio horizontal"
320
 
321
- #: ../admin/social_counter.php:207
322
- #: ../admin/social_counter.php:422
323
- #: ../admin/social_sharing.php:203
324
- #: ../admin/social_sharing.php:517
325
  msgid "Target Url"
326
  msgstr "Target Url"
327
 
328
- #: ../admin/social_counter.php:211
329
- #: ../admin/social_counter.php:426
330
- #: ../admin/social_sharing.php:207
331
- #: ../admin/social_sharing.php:521
332
  msgid "Url of the webpage where icons are located (default)"
333
  msgstr "Url de la página web donde se encuentran los iconos (por defecto)"
334
 
335
- #: ../admin/social_counter.php:213
336
- #: ../admin/social_counter.php:428
337
- #: ../admin/social_sharing.php:209
338
- #: ../admin/social_sharing.php:523
339
  msgid "Url of the homepage of your website"
340
  msgstr "Url de la página principal de su sitio web"
341
 
342
- #: ../admin/social_counter.php:215
343
- #: ../admin/social_counter.php:430
344
- #: ../admin/social_sharing.php:211
345
- #: ../admin/social_sharing.php:525
346
  #, fuzzy
347
  msgid "Custom url"
348
  msgstr "Url personalizada"
349
 
350
- #: ../admin/social_counter.php:222
351
- #: ../admin/social_counter.php:437
352
- msgid "Url to like/share/tweet and display like/share/tweet counts"
353
- msgstr "Url gustarle/share/tweet y pantalla como conteos/share/pío"
354
 
355
- #: ../admin/social_counter.php:230
356
- #: ../admin/social_sharing.php:226
357
  #: ../admin/social_login.php:314
 
358
  msgid "Title"
359
  msgstr "Titulo"
360
 
361
- #: ../admin/social_counter.php:240
362
- #, fuzzy
363
- msgid "The text to display above the counter interface"
364
- msgstr "El texto que se muestra por encima de la interfaz compartida "
365
-
366
- #: ../admin/social_counter.php:248
367
- #: ../admin/social_counter.php:445
368
- #, fuzzy
369
- msgid "Select and rearrange providers"
370
- msgstr "Seleccionar proveedores"
371
-
372
- #: ../admin/social_counter.php:292
373
- #: ../admin/social_counter.php:488
374
- #, fuzzy
375
- msgid "Select the providers for counter interface. Drag them to rearrange."
376
- msgstr "Seleccione los proveedores para compartir la interfaz"
377
-
378
- #: ../admin/social_counter.php:300
379
- #: ../admin/social_counter.php:514
380
- #: ../admin/social_sharing.php:376
381
- #: ../admin/social_sharing.php:690
382
- #, fuzzy
383
- msgid "Horizontal alignment"
384
- msgstr "Horizontales Opciones para compartir la interfaz de"
385
-
386
- #: ../admin/social_counter.php:304
387
- #: ../admin/social_counter.php:518
388
- #: ../admin/social_sharing.php:380
389
- #: ../admin/social_sharing.php:694
390
- msgid "Left"
391
- msgstr "izquierda"
392
-
393
- #: ../admin/social_counter.php:305
394
- #: ../admin/social_sharing.php:381
395
- msgid "Center"
396
- msgstr "centro"
397
-
398
- #: ../admin/social_counter.php:306
399
- #: ../admin/social_counter.php:519
400
- #: ../admin/social_sharing.php:382
401
- #: ../admin/social_sharing.php:695
402
- #, fuzzy
403
- msgid "Right"
404
- msgstr "Claro"
405
-
406
- #: ../admin/social_counter.php:314
407
- #: ../admin/social_counter.php:527
408
- #, fuzzy
409
- msgid "Horizontal alignment of the counter interface"
410
- msgstr "Habilitar interfaz de intercambio horizontal"
411
-
412
- #: ../admin/social_counter.php:322
413
  #: ../admin/social_sharing.php:398
414
- msgid "Position with respect to content"
415
- msgstr "Posición con respecto al contenido"
416
-
417
- #: ../admin/social_counter.php:326
418
- #: ../admin/social_sharing.php:402
419
- msgid "Top of the content"
420
- msgstr "Parte superior del contenido"
421
-
422
- #: ../admin/social_counter.php:328
423
- #: ../admin/social_sharing.php:404
424
- msgid "Bottom of the content"
425
- msgstr "Parte inferior del contenido"
426
-
427
- #: ../admin/social_counter.php:335
428
- #, fuzzy
429
- msgid "Specify position of the counter interface with respect to the content"
430
- msgstr "Especificar la posición de la interfaz compartir con respecto al contenido"
431
-
432
- #: ../admin/social_counter.php:343
433
- #: ../admin/social_counter.php:593
434
- #, fuzzy
435
- msgid "Counter location"
436
- msgstr "Ubicación de uso compartido"
437
-
438
- #: ../admin/social_counter.php:347
439
- #: ../admin/social_counter.php:597
440
- #: ../admin/social_sharing.php:423
441
- #: ../admin/social_sharing.php:773
442
- #: ../admin/social_login.php:514
443
- #: ../admin/social_login.php:544
444
- msgid "Homepage"
445
- msgstr "Página de inicio"
446
-
447
- #: ../admin/social_counter.php:349
448
- #: ../admin/social_counter.php:599
449
- #: ../admin/social_sharing.php:425
450
- #: ../admin/social_sharing.php:775
451
- msgid "Posts"
452
- msgstr "Publicaciones"
453
-
454
- #: ../admin/social_counter.php:351
455
- #: ../admin/social_counter.php:601
456
- #: ../admin/social_sharing.php:427
457
- #: ../admin/social_sharing.php:777
458
- msgid "Pages"
459
- msgstr "Páginas"
460
-
461
- #: ../admin/social_counter.php:353
462
- #: ../admin/social_counter.php:603
463
- #: ../admin/social_sharing.php:429
464
- #: ../admin/social_sharing.php:779
465
- msgid "Excerpts"
466
- msgstr "Extractos"
467
-
468
- #: ../admin/social_counter.php:355
469
- #: ../admin/social_counter.php:605
470
- #: ../admin/social_sharing.php:431
471
- #: ../admin/social_sharing.php:781
472
- msgid "Category Archives"
473
- msgstr "Archivos de la categoría"
474
-
475
- #: ../admin/social_counter.php:357
476
- #: ../admin/social_counter.php:607
477
- #: ../admin/social_sharing.php:433
478
- #: ../admin/social_sharing.php:783
479
- msgid "Archive Pages (Category, Tag, Author or Date based pages)"
480
- msgstr "Archivo Páginas (Categoría, Tag, Autor o páginas Fecha basado)"
481
-
482
- #: ../admin/social_counter.php:363
483
- #: ../admin/social_sharing.php:439
484
- msgid "BuddyPress activity and groups"
485
- msgstr "Actividad y grupos BuddyPress"
486
-
487
- #: ../admin/social_counter.php:370
488
- #: ../admin/social_counter.php:613
489
- #: ../admin/social_sharing.php:446
490
- #: ../admin/social_sharing.php:789
491
- msgid "BBPress forum"
492
- msgstr ""
493
-
494
- #: ../admin/social_counter.php:373
495
- #: ../admin/social_counter.php:616
496
- #: ../admin/social_sharing.php:449
497
- #: ../admin/social_sharing.php:792
498
- msgid "BBPress topic"
499
- msgstr ""
500
-
501
- #: ../admin/social_counter.php:376
502
- #: ../admin/social_sharing.php:452
503
- msgid "BBPress reply"
504
- msgstr ""
505
-
506
- #: ../admin/social_counter.php:386
507
- #, fuzzy
508
- msgid "Specify the pages where you want to enable counter interface"
509
- msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido"
510
-
511
- #: ../admin/social_counter.php:396
512
- #, fuzzy
513
- msgid "Vertical (Floating) counter interface Options"
514
- msgstr "Vertical (flotante) Opciones de interfaz compartir"
515
-
516
- #: ../admin/social_counter.php:402
517
- #, fuzzy
518
- msgid "Enable vertical (floating) counter interface"
519
- msgstr "Habilitar vertical (flotante) interfaz compartida"
520
-
521
- #: ../admin/social_counter.php:412
522
- #, fuzzy
523
- msgid "Master control to enable vertical (floating) counter widget"
524
- msgstr "Control maestro para permitir vertical (flotante) widget de intercambio"
525
-
526
- #: ../admin/social_counter.php:496
527
- #: ../admin/social_sharing.php:672
528
- msgid "Background Color"
529
- msgstr "color de fondo"
530
-
531
- #: ../admin/social_counter.php:506
532
- msgid "Specify the color or hex code (example #cc78e0) for the background of vertical counter bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
533
- msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de barra de bar vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
534
-
535
- #: ../admin/social_counter.php:536
536
- #: ../admin/social_sharing.php:712
537
- msgid "Left offset"
538
- msgstr "desplazamiento izquierda"
539
-
540
- #: ../admin/social_counter.php:546
541
- #, fuzzy
542
- msgid "Specify a number. Increase in number will shift counter interface towards right and decrease will shift it towards left."
543
- msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
544
-
545
- #: ../admin/social_counter.php:556
546
- #: ../admin/social_sharing.php:732
547
- #, fuzzy
548
- msgid "Right offset"
549
- msgstr "desplazamiento izquierda"
550
-
551
- #: ../admin/social_counter.php:566
552
- #, fuzzy
553
- msgid "Specify a number. Increase in number will shift counter interface towards left and decrease will shift it towards right."
554
- msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
555
-
556
- #: ../admin/social_counter.php:575
557
- #: ../admin/social_sharing.php:751
558
- msgid "Top offset"
559
- msgstr "superior compensar"
560
-
561
- #: ../admin/social_counter.php:585
562
- #, fuzzy
563
- msgid "Specify a number. Increase in number will shift counter interface towards bottom and decrease will shift it towards top."
564
- msgstr "Especifique un número. Aumento del número cambiará compartir la interfaz hacia la parte inferior y el descenso se desplazará hacia la parte superior."
565
-
566
- #: ../admin/social_counter.php:626
567
- #, fuzzy
568
- msgid "Specify the pages where you want to enable vertical counter interface"
569
- msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido verticales"
570
-
571
- #: ../admin/social_counter.php:642
572
- #: ../admin/social_sharing.php:837
573
- #: ../admin/social_commenting.php:11
574
- #: ../admin/social_commenting.php:211
575
- #: ../admin/social_login.php:654
576
- msgid "Shortcode"
577
- msgstr "Shortcodes"
578
-
579
- #: ../admin/social_counter.php:644
580
- #, fuzzy
581
- msgid "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content of required page/post where you want to display Social Counter interface."
582
- msgstr "Usted puede utilizar <strong> [TheChamp-Sharing] </ strong> Código corto en el contenido de la página requerida / post en el que desea mostrar la interfaz Uso compartido Social."
583
-
584
- #: ../admin/social_counter.php:645
585
- #: ../admin/social_counter.php:650
586
- #: ../admin/social_counter.php:655
587
- #: ../admin/social_counter.php:660
588
- #: ../admin/social_counter.php:665
589
- #: ../admin/social_counter.php:669
590
- #: ../admin/social_sharing.php:840
591
- #: ../admin/social_sharing.php:845
592
- #: ../admin/social_sharing.php:850
593
- #: ../admin/social_sharing.php:855
594
- #: ../admin/social_sharing.php:860
595
- #: ../admin/social_sharing.php:865
596
- #: ../admin/social_sharing.php:869
597
- #: ../admin/social_commenting.php:214
598
- #: ../admin/social_commenting.php:219
599
- #: ../admin/social_commenting.php:224
600
- #: ../admin/social_commenting.php:229
601
- #: ../admin/social_commenting.php:234
602
- #: ../admin/social_login.php:657
603
- #: ../admin/social_login.php:660
604
- msgid "Example"
605
- msgstr "ejemplo"
606
-
607
- #: ../admin/social_counter.php:647
608
- #: ../admin/social_sharing.php:842
609
- #: ../admin/social_commenting.php:216
610
- msgid "You can use following attributes in the Shortcode"
611
- msgstr "Puede utilizar los atributos siguientes en el Código corto"
612
-
613
- #: ../admin/social_counter.php:649
614
- #, fuzzy
615
- msgid "Use <strong>style</strong> attribute to style the rendered Social Counter interface"
616
- msgstr "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso compartido sociales prestados"
617
-
618
- #: ../admin/social_counter.php:654
619
- #, fuzzy
620
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Counter interface. Default type is \"horizontal\"."
621
- msgstr "Utilice <strong>type</ strong> atributo para especificar el tipo (\"horizontal \" o \"vertical \") de la interfaz Uso compartido Social. Tipo por defecto es \"horizontal \"."
622
-
623
- #: ../admin/social_counter.php:658
624
- msgid "Left (Works with \"Vertical\" type interface only)"
625
- msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
626
-
627
- #: ../admin/social_counter.php:659
628
- #, fuzzy
629
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Counter interface."
630
- msgstr "Uso <strong> left</strong> atributo para especificar el desplazamiento izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz de uso compartido Social."
631
-
632
- #: ../admin/social_counter.php:663
633
- msgid "Top (Works with \"Vertical\" type interface only)"
634
- msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
635
-
636
- #: ../admin/social_counter.php:664
637
- #, fuzzy
638
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Counter interface."
639
- msgstr "Utilice <strong>top</strong> atributo para especificar el desplazamiento superior (distancia forman la parte superior de la pantalla) de la interfaz Uso compartido Social."
640
-
641
- #: ../admin/social_counter.php:667
642
- #: ../admin/social_sharing.php:867
643
- msgid "url"
644
- msgstr ""
645
-
646
- #: ../admin/social_counter.php:668
647
- #, fuzzy
648
- msgid "Use <strong>url</strong> attribute to specify the url to be liked"
649
- msgstr "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso compartido sociales prestados"
650
-
651
- #: ../admin/social_counter.php:671
652
- #: ../admin/social_sharing.php:871
653
- #: ../admin/social_commenting.php:236
654
- #: ../admin/social_login.php:662
655
- #, fuzzy
656
- msgid "You can use shortcode in PHP file as following"
657
- msgstr "Usted puede ver el plugin en acción en el siguiente enlace"
658
-
659
- #: ../admin/social_counter.php:673
660
- #, fuzzy
661
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]</strong>, so the final code looks like following"
662
- msgstr "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código corto requerido como <strong>[TheChamp-Login style=\"background-color: #000;\"]</ strong>, por lo que el código final se parece a siguiente"
663
-
664
- #: ../admin/social_counter.php:679
665
- #: ../admin/social_sharing.php:879
666
- #: ../admin/social_login.php:670
667
- msgid "Widget"
668
- msgstr ""
669
-
670
- #: ../admin/social_counter.php:681
671
- #, fuzzy
672
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Counter (Horizontal Widget)</strong> and <strong>Super Socializer - Counter (Vertical Floating Widget)</strong> widgets in the required area."
673
- msgstr "Usted puede navegar a la <strong>Apariencia</ strong >> <strong> Reproductores </ strong> en el platillo izquierdo y arrastre <strong> Súper Socializer - Sharing (Horizontal Widget) </ strong> y <strong> Súper Socializer - Sharing (Vertical Floating Widget) </ strong> widgets en el área requerida."
674
-
675
- #: ../admin/social_counter.php:691
676
- #, fuzzy
677
- msgid "How can I show like counts of my website rather than of individual pages/posts?"
678
- msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
679
-
680
- #: ../admin/social_counter.php:695
681
- #, fuzzy
682
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
683
- msgstr "Elija la opción \"Url de la página principal de su sitio web \" en la opción \"Target Url \" y permitir \"cuenta Share \""
684
-
685
- #: ../admin/social_counter.php:702
686
- #, fuzzy
687
- msgid "How can I disable social counter on particular page/post?"
688
- msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
689
-
690
- #: ../admin/social_counter.php:706
691
- #: ../admin/social_sharing.php:925
692
- #: ../admin/social_sharing.php:938
693
- #, fuzzy
694
- msgid "Edit that page/post and check the options at the bottom in \"Super Socializer\" section"
695
- msgstr "Editar esta página/post y marque la opción \"Desactivar Comentarios Facebook en este post/página \" en la parte inferior en section \"Super Socializer\""
696
-
697
- #: ../admin/social_counter.php:719
698
- #: ../admin/social_sharing.php:949
699
- #: ../admin/social_commenting.php:277
700
- #: ../admin/social_login.php:681
701
- msgid "Save Changes"
702
- msgstr "Guardar cambios"
703
-
704
- #: ../admin/social_sharing.php:15
705
- msgid "Social Sharing"
706
- msgstr "Social Sharing"
707
-
708
- #: ../admin/social_sharing.php:17
709
- msgid "Troubleshooter"
710
- msgstr "Solucionador de problemas"
711
-
712
- #: ../admin/social_sharing.php:30
713
- msgid "Enable Social Sharing"
714
- msgstr "Habilitar Social Sharing"
715
-
716
- #: ../admin/social_sharing.php:40
717
- msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
718
- msgstr "Control maestro para compartir en redes sociales. Esto debe estar marcado para habilitar la funcionalidad de Social Sharing "
719
-
720
- #: ../admin/social_sharing.php:48
721
- msgid "Delete all the options on plugin deletion"
722
- msgstr "Eliminar todas las opciones de plugin de eliminación"
723
-
724
- #: ../admin/social_sharing.php:58
725
- msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
726
- msgstr "Si se activa, las opciones del plugin será borrado cuando se elimina el plugin / desinstalado y tendrá que volver a configurar las opciones al instalar el plugin próxima vez."
727
-
728
- #: ../admin/social_sharing.php:72
729
- #, fuzzy
730
- msgid "<strong>Note:</strong> To disable sharing and specify minimum share counts per social network on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
731
- msgstr "<strong> Nota: </ strong> Para deshabilitar el uso compartido en concreto la página / post, edite la página / post y comprobar el <strong> \"Desactivar Intercambio Social en esta página \" </ strong> la opción en la parte inferior de <strong > \"Super Socializer \" </ strong>"
732
-
733
- #: ../admin/social_sharing.php:94
734
- msgid "Enable bit.ly url shortener for sharing"
735
- msgstr "Habilitar acortador de url bit.ly para compartir"
736
-
737
- #: ../admin/social_sharing.php:151
738
- msgid "Twitter username in sharing"
739
- msgstr "Twitter nombre de usuario en el intercambio"
740
-
741
- #: ../admin/social_sharing.php:167
742
- msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
743
- msgstr "Nombre de usuario proporcionado se añadirá después del contenido que se comparte como \"a travésUSERNAME\". Dejar vacío si no desea que cualquier nombre de usuario en el contenido que se comparte."
744
-
745
- #: ../admin/social_sharing.php:177
746
- msgid "Horizontal Sharing Interface Options"
747
- msgstr "Horizontales Opciones para compartir la interfaz de"
748
-
749
- #: ../admin/social_sharing.php:183
750
- msgid "Enable horizontal sharing interface"
751
- msgstr "Habilitar interfaz de intercambio horizontal"
752
-
753
- #: ../admin/social_sharing.php:193
754
- msgid "Master control to enable horizontal sharing"
755
- msgstr "Control maestro para permitir el intercambio horizontal"
756
-
757
- #: ../admin/social_sharing.php:218
758
- #: ../admin/social_sharing.php:532
759
- msgid "Url to share"
760
- msgstr "Url compartir"
761
-
762
- #: ../admin/social_sharing.php:236
763
  msgid "The text to display above the sharing interface"
764
  msgstr "El texto que se muestra por encima de la interfaz compartida "
765
 
766
- #: ../admin/social_sharing.php:244
767
- #: ../admin/social_sharing.php:540
768
  #: ../admin/social_login.php:41
769
  msgid "Select providers"
770
  msgstr "Seleccionar proveedores"
771
 
772
- #: ../admin/social_sharing.php:249
773
- #: ../admin/social_sharing.php:545
774
- #: ../admin/social_login.php:46
775
- msgid "Facebook"
776
- msgstr ""
777
-
778
- #: ../admin/social_sharing.php:254
779
- #: ../admin/social_sharing.php:550
780
  #: ../admin/social_login.php:50
781
  msgid "Twitter"
782
  msgstr ""
783
 
784
- #: ../admin/social_sharing.php:259
785
- #: ../admin/social_sharing.php:555
786
  #: ../admin/social_login.php:54
787
  msgid "LinkedIn"
788
  msgstr ""
789
 
790
- #: ../admin/social_sharing.php:264
791
- #: ../admin/social_sharing.php:560
792
  #: ../admin/social_login.php:58
793
  msgid "Google+"
794
  msgstr ""
795
 
796
- #: ../admin/social_sharing.php:269
797
- #: ../admin/social_sharing.php:565
798
  msgid "Print"
799
- msgstr ""
800
 
801
- #: ../admin/social_sharing.php:274
802
- #: ../admin/social_sharing.php:570
803
  msgid "Email"
804
  msgstr ""
805
 
806
- #: ../admin/social_sharing.php:279
807
- #: ../admin/social_sharing.php:575
808
  msgid "Yahoo"
809
  msgstr ""
810
 
811
- #: ../admin/social_sharing.php:284
812
- #: ../admin/social_sharing.php:580
813
  msgid "Reddit"
814
  msgstr ""
815
 
816
- #: ../admin/social_sharing.php:289
817
- #: ../admin/social_sharing.php:585
818
  msgid "Digg"
819
  msgstr ""
820
 
821
- #: ../admin/social_sharing.php:294
822
- #: ../admin/social_sharing.php:590
823
  msgid "Delicious"
824
  msgstr ""
825
 
826
- #: ../admin/social_sharing.php:299
827
- #: ../admin/social_sharing.php:595
828
  msgid "StumbleUpon"
829
  msgstr ""
830
 
831
- #: ../admin/social_sharing.php:304
832
- #: ../admin/social_sharing.php:600
833
  msgid "Float it"
834
  msgstr ""
835
 
836
- #: ../admin/social_sharing.php:309
837
- #: ../admin/social_sharing.php:605
838
  msgid "Tumblr"
839
  msgstr ""
840
 
841
- #: ../admin/social_sharing.php:314
842
- #: ../admin/social_sharing.php:610
843
  #: ../admin/social_login.php:62
844
  msgid "Vkontakte"
845
  msgstr ""
846
 
847
- #: ../admin/social_sharing.php:319
848
- #: ../admin/social_sharing.php:615
849
  msgid "Pinterest"
850
  msgstr ""
851
 
852
- #: ../admin/social_sharing.php:324
853
- #: ../admin/social_sharing.php:620
854
  #: ../admin/social_login.php:70
855
  msgid "Xing"
856
  msgstr ""
857
 
858
- #: ../admin/social_sharing.php:329
859
- #: ../admin/social_sharing.php:625
860
  msgid "Whatsapp"
861
  msgstr ""
862
 
863
- #: ../admin/social_sharing.php:337
864
- #: ../admin/social_sharing.php:633
865
  msgid "Select the providers for sharing interface"
866
  msgstr "Seleccione los proveedores para compartir la interfaz"
867
 
868
- #: ../admin/social_sharing.php:345
869
- #: ../admin/social_sharing.php:641
870
  msgid "Rearrange icons"
871
  msgstr "Reorganizar iconos"
872
 
873
- #: ../admin/social_sharing.php:368
874
- #: ../admin/social_sharing.php:664
875
  msgid "Drag the icons to rearrange in desired order"
876
  msgstr "Arrastre los iconos para reorganizar estos con el fin deseado "
877
 
878
- #: ../admin/social_sharing.php:390
879
- #: ../admin/social_sharing.php:703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
880
  #, fuzzy
881
  msgid "Horizontal alignment of the sharing interface"
882
  msgstr "Habilitar interfaz de intercambio horizontal"
883
 
884
- #: ../admin/social_sharing.php:411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
885
  msgid "Specify position of the sharing interface with respect to the content"
886
  msgstr "Especificar la posición de la interfaz compartir con respecto al contenido"
887
 
888
- #: ../admin/social_sharing.php:419
889
- #: ../admin/social_sharing.php:769
890
  msgid "Sharing location"
891
  msgstr "Ubicación de uso compartido"
892
 
893
- #: ../admin/social_sharing.php:462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
894
  msgid "Specify the pages where you want to enable Sharing interface"
895
  msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido"
896
 
897
- #: ../admin/social_sharing.php:470
898
- #: ../admin/social_sharing.php:810
899
  msgid "Show share counts"
900
  msgstr "conteos muestran acciones"
901
 
902
- #: ../admin/social_sharing.php:480
903
- #: ../admin/social_sharing.php:820
904
  msgid "If enabled, share counts are displayed above sharing icons."
905
  msgstr "Si está habilitado, el recuento de acciones se muestran por encima de los iconos para compartir."
906
 
907
- #: ../admin/social_sharing.php:491
 
 
 
 
 
 
 
 
 
 
 
908
  msgid "Vertical (Floating) Sharing Interface Options"
909
  msgstr "Vertical (flotante) Opciones de interfaz compartir"
910
 
911
- #: ../admin/social_sharing.php:497
912
  msgid "Enable vertical (floating) sharing interface"
913
  msgstr "Habilitar vertical (flotante) interfaz compartida"
914
 
915
- #: ../admin/social_sharing.php:507
916
  msgid "Master control to enable vertical (floating) sharing widget"
917
  msgstr "Control maestro para permitir vertical (flotante) widget de intercambio"
918
 
919
- #: ../admin/social_sharing.php:682
 
 
 
 
 
920
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
921
  msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de la barra de compartir vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
922
 
923
- #: ../admin/social_sharing.php:722
 
 
 
 
 
924
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
925
  msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
926
 
927
- #: ../admin/social_sharing.php:742
 
 
 
 
 
 
928
  #, fuzzy
929
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
930
  msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
931
 
932
- #: ../admin/social_sharing.php:761
 
 
 
 
 
933
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
934
  msgstr "Especifique un número. Aumento del número cambiará compartir la interfaz hacia la parte inferior y el descenso se desplazará hacia la parte superior."
935
 
936
- #: ../admin/social_sharing.php:802
937
  msgid "Specify the pages where you want to enable vertical Sharing interface"
938
  msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido verticales"
939
 
940
- #: ../admin/social_sharing.php:839
941
- msgid "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content of required page/post where you want to display Social Sharing interface."
942
- msgstr "Usted puede utilizar <strong> [TheChamp-Sharing] </ strong> Código corto en el contenido de la página requerida / post en el que desea mostrar la interfaz Uso compartido Social."
943
-
944
- #: ../admin/social_sharing.php:844
945
- msgid "Use <strong>style</strong> attribute to style the rendered Social Sharing interface"
946
- msgstr "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso compartido sociales prestados"
947
-
948
- #: ../admin/social_sharing.php:849
949
- #, fuzzy
950
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Sharing interface. Default type is \"horizontal\"."
951
- msgstr "Utilice <strong>type</ strong> atributo para especificar el tipo (\"horizontal \" o \"vertical \") de la interfaz Uso compartido Social. Tipo por defecto es \"horizontal \"."
952
-
953
- #: ../admin/social_sharing.php:854
954
- #, fuzzy
955
- msgid "Use <strong>count</strong> attribute to enable the share counts on Social Sharing interface"
956
- msgstr "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso compartido sociales prestados"
957
-
958
- #: ../admin/social_sharing.php:858
959
- #, fuzzy
960
- msgid "left (Works with \"Vertical\" type interface only)"
961
- msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
962
-
963
- #: ../admin/social_sharing.php:859
964
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Sharing interface."
965
- msgstr "Uso <strong> left</strong> atributo para especificar el desplazamiento izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz de uso compartido Social."
966
-
967
- #: ../admin/social_sharing.php:863
968
- #, fuzzy
969
- msgid "top (Works with \"Vertical\" type interface only)"
970
- msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
971
-
972
- #: ../admin/social_sharing.php:864
973
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Sharing interface."
974
- msgstr "Utilice <strong>top</strong> atributo para especificar el desplazamiento superior (distancia forman la parte superior de la pantalla) de la interfaz Uso compartido Social."
975
-
976
- #: ../admin/social_sharing.php:868
977
- #, fuzzy
978
- msgid "Use <strong>url</strong> attribute to specify the url to be shared"
979
- msgstr "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso compartido sociales prestados"
980
-
981
- #: ../admin/social_sharing.php:873
982
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]</strong>, so the final code looks like following"
983
- msgstr "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código corto requerido como <strong>[TheChamp-Sharing style=\"background-color: #000;\"]</ strong>, por lo que el código final se parece a siguiente"
984
-
985
- #: ../admin/social_sharing.php:881
986
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - Sharing (Vertical Floating Widget)</strong> widgets in the required area."
987
- msgstr "Usted puede navegar a la <strong>Apariencia</ strong >> <strong> Reproductores </ strong> en el platillo izquierdo y arrastre <strong> Súper Socializer - Sharing (Horizontal Widget) </ strong> y <strong> Súper Socializer - Sharing (Vertical Floating Widget) </ strong> widgets en el área requerida."
988
-
989
- #: ../admin/social_sharing.php:891
990
  msgid "Facebook Sharing Troubleshooter"
991
  msgstr "Facebook Sharing Solucionador de problemas"
992
 
993
- #: ../admin/social_sharing.php:896
994
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
995
  msgstr "Si Facebook compartir no está funcionando bien, haga clic en el siguiente enlace e introduzca la url problemático (donde compartir en Facebook no funciona correctamente) de su sitio web en el campo de texto:"
996
 
997
- #: ../admin/social_sharing.php:910
998
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
999
  msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
1000
 
1001
- #: ../admin/social_sharing.php:914
1002
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option and enable \"Show share counts\" option"
1003
- msgstr "Elija la opción \"Url de la página principal de su sitio web \" en la opción \"Target Url \" y permitir \"cuenta Share \""
1004
-
1005
- #: ../admin/social_sharing.php:921
1006
  #, fuzzy
1007
  msgid "How can I disable sharing on particular page/post?"
1008
  msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
1009
 
1010
- #: ../admin/social_sharing.php:934
1011
  msgid "How can I specify minimum sharing count for sharing networks?"
1012
  msgstr "¿Cómo puedo especificar conteo mínimo compartido para las redes de intercambio?"
1013
 
 
 
 
 
 
 
 
1014
  #: ../admin/social_commenting.php:10
1015
- msgid "Facebook Commenting"
 
1016
  msgstr "Comentarios Facebook"
1017
 
 
 
 
 
 
 
1018
  #: ../admin/social_commenting.php:18
1019
  #: ../admin/social_commenting.php:24
1020
- msgid "Enable Facebook Commenting"
1021
- msgstr "Habilitar Comentarios Facebook"
1022
-
1023
  #: ../admin/social_commenting.php:34
 
1024
  #, fuzzy
1025
- msgid "After enabling this option, Facebook commenting will appear before Wordpress comment form at your website"
1026
- msgstr "Después de habilitar esta opción, Comentarios Facebook aparecerá en lugar del formulario de comentarios de Wordpress en su sitio web."
1027
 
1028
- #: ../admin/social_commenting.php:44
1029
- msgid "Facebook Commenting Options"
1030
- msgstr "Opciones de Comentarios Facebook"
1031
 
1032
- #: ../admin/social_commenting.php:50
1033
- msgid "Keep only Facebook Commenting"
1034
- msgstr "Consérvese únicamente Facebook Comentando"
1035
 
1036
  #: ../admin/social_commenting.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  #, fuzzy
1038
- msgid "If enabled, only Facebook commenting would be visible without default comment form"
1039
- msgstr "Si está habilitado, sólo Facebook comentando estarán allí sin la opción de cambiar a WordPress comentar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1040
 
1041
- #: ../admin/social_commenting.php:68
 
1042
  msgid "Url to comment on"
1043
  msgstr "URL donde comentar"
1044
 
1045
- #: ../admin/social_commenting.php:78
1046
  #, fuzzy
1047
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1048
  msgstr "La URL absoluta a la que los comentarios publicados en el plugin se asociarán permanentemente. Historias en Facebook acerca de los comentarios publicados en el plugin se enlazarán a esta URL.<br/> Si se deja en blanco <strong>(recomendado)</strong>, se utilizará la URL de la página web en la que se habilita comentar"
1049
 
1050
- #: ../admin/social_commenting.php:86
 
1051
  msgid "Width"
1052
  msgstr "Ancho"
1053
 
1054
- #: ../admin/social_commenting.php:96
1055
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1056
  msgstr "Dejar en blanco para la auto-ajustar el ancho. El ancho (en píxeles) del bloque de comentarios."
1057
 
1058
- #: ../admin/social_commenting.php:104
1059
  msgid "Color Scheme"
1060
  msgstr "Esquema de colores"
1061
 
1062
- #: ../admin/social_commenting.php:108
1063
  msgid "Light"
1064
  msgstr "Claro"
1065
 
1066
- #: ../admin/social_commenting.php:109
1067
  msgid "Dark"
1068
  msgstr "Obscuro"
1069
 
1070
- #: ../admin/social_commenting.php:117
1071
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1072
  msgstr "El esquema de color usado por el plugin. Puede ser \"\"claro\"\" u \"\"obscuro\"\"."
1073
 
1074
- #: ../admin/social_commenting.php:125
1075
  #, fuzzy
1076
  msgid "Number of comments"
1077
  msgstr "Número de publicaciones"
1078
 
1079
- #: ../admin/social_commenting.php:135
1080
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1081
  msgstr "El número de comentarios para mostrar por defecto. El valor mínimo es 1. El valor predeterminado es 10"
1082
 
1083
- #: ../admin/social_commenting.php:143
1084
  msgid "Order by"
1085
  msgstr "Ordenar por"
1086
 
1087
- #: ../admin/social_commenting.php:147
1088
  msgid "Social"
1089
  msgstr "Social"
1090
 
1091
- #: ../admin/social_commenting.php:148
1092
  msgid "Reverse Time"
1093
  msgstr "Revertir tiempo"
1094
 
1095
- #: ../admin/social_commenting.php:149
1096
  msgid "Time"
1097
  msgstr "Tiempo"
1098
 
1099
- #: ../admin/social_commenting.php:157
1100
  msgid "The order to use when displaying comments."
1101
  msgstr "El orden a utilizar cuando se muestran los comentarios."
1102
 
1103
- #: ../admin/social_commenting.php:165
1104
  msgid "Mobile"
1105
  msgstr "Móvil "
1106
 
1107
- #: ../admin/social_commenting.php:169
1108
  msgid "Auto Detect"
1109
  msgstr "Auto detectar"
1110
 
1111
- #: ../admin/social_commenting.php:170
1112
  msgid "True"
1113
  msgstr "Verdadero"
1114
 
1115
- #: ../admin/social_commenting.php:171
1116
  msgid "False"
1117
  msgstr "Falso"
1118
 
1119
- #: ../admin/social_commenting.php:179
1120
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
1121
  msgstr "Un valor booleano que especifica si se mostrará la versión optimizada para móviles o no. "
1122
 
1123
- #: ../admin/social_commenting.php:197
 
 
 
 
 
 
1124
  #, php-format
1125
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1126
  msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
1127
 
1128
- #: ../admin/social_commenting.php:213
1129
- msgid "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the content of required page/post where you want to display Facebook Commenting interface."
1130
- msgstr "Usted puede utilizar <strong> [TheChamp-FB-Comments] </strong> Código corto en el contenido de la página requerida/post en el que desea mostrar la interfaz Uso compartido Social."
1131
-
1132
- #: ../admin/social_commenting.php:218
1133
  #, fuzzy
1134
- msgid "Use <strong>style</strong> attribute to style the rendered commenting interface"
1135
- msgstr "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso compartido sociales prestados"
1136
-
1137
- #: ../admin/social_commenting.php:223
1138
- msgid "Use <strong>url</strong> attribute to specify the target url for comments. This defaults to the page where shortcode is used."
1139
- msgstr "Uso <strong> url</strong> atributo para especificar el desplazamiento izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz de uso compartido Social."
1140
-
1141
- #: ../admin/social_commenting.php:227
1142
- msgid "num_posts"
1143
- msgstr ""
1144
 
1145
- #: ../admin/social_commenting.php:228
 
1146
  #, fuzzy
1147
- msgid "Use <strong>num_posts</strong> attribute to specify the number of comments to display."
1148
- msgstr "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso compartido sociales prestados"
1149
 
1150
- #: ../admin/social_commenting.php:232
1151
- #, fuzzy
1152
- msgid "width"
1153
- msgstr "Ancho"
1154
 
1155
- #: ../admin/social_commenting.php:233
1156
  #, fuzzy
1157
- msgid "Use <strong>width</strong> attribute to specify the width of commenting interface. Omit it for fluid width"
1158
- msgstr "Utilice <strong>top</strong> atributo para especificar el desplazamiento superior (distancia forman la parte superior de la pantalla) de la interfaz Uso compartido Social."
1159
 
1160
- #: ../admin/social_commenting.php:238
1161
  #, fuzzy
1162
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1163
- msgstr "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código corto requerido como <strong>[TheChamp-Login style=\"background-color: #000;\"]</ strong>, por lo que el código final se parece a siguiente"
1164
 
1165
- #: ../admin/social_commenting.php:249
 
1166
  #, fuzzy
1167
- msgid "How can I disable FB comments at individual page/post?"
1168
- msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
1169
 
1170
- #: ../admin/social_commenting.php:253
1171
- msgid "Edit that page/post and check the option \"Disable Facebook Comments on this post/page\" at the bottom in \"Super Socializer\" section"
1172
- msgstr "Editar esta página/post y marque la opción \"Desactivar Comentarios Facebook en este post/página \" en la parte inferior en section \"Super Socializer\""
1173
 
1174
- #: ../admin/social_commenting.php:262
1175
- msgid "How to enable only Facebook Comments without enabling default comment form?"
1176
- msgstr "Cómo habilitar sólo comentarios de Facebook sin permitir formulario de comentarios por defecto?"
1177
 
1178
- #: ../admin/social_commenting.php:266
1179
- msgid "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting\" section."
1180
- msgstr "Habilitar \"Consérvese únicamente Facebook Comentando\" opción en section \"Facebook Comentando\"."
 
1181
 
1182
  #: ../admin/social_login.php:10
1183
  msgid "Social Login"
@@ -1488,21 +1280,9 @@ msgid "If enabled, email provided by the user will be verified by sending a conf
1488
  msgstr "Si está activado, el correo electrónico proporcionado por el usuario se verificará mediante el envío de un enlace de confirmación a ese correo electrónico. El usuario no podrá iniciar sesión sin verificar su email"
1489
 
1490
  #: ../admin/social_login.php:656
1491
- msgid "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of required page/post where you want to display Social Login interface."
1492
- msgstr "Utilice <strong> [TheChamp-Login] </ strong> Código corto en el contenido de la página requerida / post en la que desea mostrar la interfaz Login Social."
1493
-
1494
- #: ../admin/social_login.php:659
1495
  #, fuzzy
1496
- msgid "You can use \"style\" attribute in the Shortcode to style the rendered Social Login interface."
1497
- msgstr "Usted puede utilizar el atributo \"style\" en el Código corto al estilo de la interfaz Uso compartido sociales prestados."
1498
-
1499
- #: ../admin/social_login.php:664
1500
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1501
- msgstr "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código corto requerido como <strong>[TheChamp-Login style=\"background-color: #000;\"]</ strong>, por lo que el código final se parece a siguiente"
1502
-
1503
- #: ../admin/social_login.php:672
1504
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Login</strong> widget in the required area."
1505
- msgstr "Usted puede navegar a la Apariencia <strong> </ strong >> <strong> Reproductores </ strong> en el platillo izquierdo y arrastre <strong> Súper Socializer - Login </ strong> de widget en el área requerida."
1506
 
1507
  #: ../admin/admin.php:8
1508
  msgid "Welcome"
@@ -1517,7 +1297,8 @@ msgid "Getting Started"
1517
  msgstr "Para empezar"
1518
 
1519
  #: ../admin/admin.php:12
1520
- msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left pan. <strong>Social Sharing</strong> is enabled at your website by default."
 
1521
  msgstr "Comience a configurar las opciones en las siguientes secciones del menú de Super Socializer en el panel izquierdo. Intercambio Social está habilitado en su sitio web por defecto."
1522
 
1523
  #: ../admin/admin.php:13
@@ -1536,14 +1317,147 @@ msgstr "En la sección Uso compartido Social, puede elegir las Redes Sociales pa
1536
 
1537
  #: ../admin/admin.php:16
1538
  #, fuzzy
1539
- msgid "In <strong>Social Counter</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1540
  msgstr "En la sección Uso compartido Social, puede elegir las Redes Sociales para compartir y configurar los opciones para compartir."
1541
 
1542
- #: ../inc/social_sharing.php:492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1543
  msgid "Invalid request"
1544
  msgstr "petición no válida"
1545
 
1546
- #: ../inc/social_sharing.php:499
1547
  msgid "Providers not selected"
1548
  msgstr "Los proveedores no seleccionados"
1549
 
@@ -1648,6 +1562,401 @@ msgstr "Widget Horizontal. ​​Deje que sus usuarios del website compartan con
1648
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1649
  msgstr "Widget de flotación vertical. ​​Deje que sus usuarios del website compartan contenidos en las redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchos más "
1650
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1651
  #~ msgid ""
1652
  #~ "Remove the plugin credit links (\"Super Socializer by The Champ\") in "
1653
  #~ "just $15. Interested? Email me: <a href=\"mailto:lordofthechamps@gmail.com"
@@ -1807,10 +2116,6 @@ msgstr "Widget de flotación vertical. ​​Deje que sus usuarios del website c
1807
  #~ msgid "Load first"
1808
  #~ msgstr "Cargue primero"
1809
 
1810
- #, fuzzy
1811
- #~ msgid "Default Commenting"
1812
- #~ msgstr "Comentarios Facebook"
1813
-
1814
  #~ msgid "Selected commenting will be loaded first on the page"
1815
  #~ msgstr "Comentando seleccionado se cargará primero en la página de"
1816
 
@@ -1852,9 +2157,6 @@ msgstr "Widget de flotación vertical. ​​Deje que sus usuarios del website c
1852
  #~ msgid "Facebook Comments"
1853
  #~ msgstr "Comentarios Facebook"
1854
 
1855
- #~ msgid "WordPress Comments"
1856
- #~ msgstr "WordPress Comentarios"
1857
-
1858
  #~ msgid ""
1859
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
1860
  #~ "><strong>Note: Social Login at comment form of your website will not get "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer 2.8.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-29 02:54+0530\n"
6
+ "PO-Revision-Date: 2015-05-29 03:07+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: es\n"
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Asegúrese CURL está activado en tu servidor web. Puede que tenga que ponerse en contacto con el administrador del servidor de su sitio web para comprobar esto"
27
 
28
+ #: ../super_socializer.php:349
29
  msgid "Please verify your email address to login."
30
  msgstr "Verifique por favor su dirección de correo electrónico para iniciar sesión"
31
 
32
+ #: ../super_socializer.php:349
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Su email ha sido verificado. Ahora puede acceder a su cuenta"
35
 
36
+ #: ../super_socializer.php:353
37
  msgid "Notification"
38
  msgstr "Notificación"
39
 
40
+ #: ../super_socializer.php:372
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "Requiere E-mail"
44
 
45
+ #: ../super_socializer.php:375
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Por favor revise su bandeja de entrada de correo electrónico para completar el registro"
48
 
49
+ #: ../super_socializer.php:388
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Siga los pasos 11 y 12 en la página de configuración de aplicación de Google Plus, a punto de abrir"
52
 
53
+ #: ../super_socializer.php:463
54
+ msgid "Leave a reply"
55
+ msgstr "Deja una Respuesta"
56
+
57
+ #: ../super_socializer.php:565
58
  msgid "Email you entered is already registered or invalid"
59
  msgstr "Enviar que ha introducido ya está registrado o no válido"
60
 
61
+ #: ../super_socializer.php:569
62
  msgid "Please enter a valid email address. You might be required to verify it"
63
  msgstr "Por favor, introduce una dirección de correo electrónico válida. Es posible que tenga para verificarla"
64
 
74
  msgid "Click to hide help"
75
  msgstr "Haga clic para ocultar ayuda"
76
 
77
+ #: ../helper.php:175
78
  msgid "Settings"
79
  msgstr "Configuración"
80
 
81
+ #: ../helper.php:492
82
  #, fuzzy
83
  msgid "Account linked successfully"
84
  msgstr "Opciones guardadas correctamente"
85
 
86
+ #: ../helper.php:498
87
  msgid "Account already exists or linked"
88
  msgstr "Cuenta ya existe o vinculado"
89
 
90
+ #: ../helper.php:509
91
  #, fuzzy
92
  msgid "You are already connected with"
93
  msgstr "Usted está listo para Socializar su sitio web."
94
 
95
+ #: ../helper.php:509
96
  msgid "as primary social network"
97
  msgstr "como red social primaria"
98
 
99
+ #: ../helper.php:526
100
  msgid "Link your social account to login to your account at this website"
101
  msgstr "Vincula tu cuenta social para acceder a su cuenta en esta web"
102
 
103
+ #: ../helper.php:571
104
  msgid "Currently"
105
  msgstr "actualmente"
106
 
107
+ #: ../helper.php:571
108
  msgid "Remove"
109
  msgstr "quitar"
110
 
111
+ #: ../helper.php:664
112
  msgid "Disable Horizontal Social Sharing on this "
113
  msgstr "Desactivar Horizontal Intercambio Social en esta"
114
 
115
+ #: ../helper.php:669
116
  msgid "Disable Vertical Social Sharing on this "
117
  msgstr "Desactivar Vertical Intercambio Social en esta"
118
 
119
+ #: ../helper.php:674
120
  #, fuzzy
121
+ msgid "Disable Horizontal like buttons on this "
122
  msgstr "Desactivar Horizontal Intercambio Social en esta"
123
 
124
+ #: ../helper.php:679
125
  #, fuzzy
126
+ msgid "Disable Vertical like buttons on this "
127
  msgstr "Desactivar Vertical Intercambio Social en esta"
128
 
129
+ #: ../helper.php:684
130
  #, fuzzy
131
+ msgid "Disable Social Commenting on this "
132
  msgstr "Habilitar Comentarios Facebook"
133
 
134
+ #: ../helper.php:693
135
  #, fuzzy
136
  msgid "Horizontal sharing"
137
  msgstr "Horizontales Opciones para compartir la interfaz de"
138
 
139
+ #: ../helper.php:699
140
+ #: ../helper.php:718
141
  #, fuzzy
142
  msgid "Starting share count for "
143
  msgstr "conteos muestran acciones"
144
 
145
+ #: ../helper.php:712
146
  #, fuzzy
147
  msgid "Vertical sharing"
148
  msgstr "Social Sharing"
160
  msgstr "por"
161
 
162
  #: ../admin/help.php:7
163
+ msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
164
+ msgstr "Somos un equipo creativo con ideas únicas en la mente y el servicio en el corazón. Nos encanta lo que hacemos. Para obtener más información, únase a nosotros en"
165
 
166
+ #: ../admin/help.php:17
167
  msgid "Plugin Demo"
168
  msgstr "Demostración Plugin"
169
 
170
+ #: ../admin/help.php:19
171
  msgid "You can see the plugin in action at following link"
172
  msgstr "Usted puede ver el plugin en acción en el siguiente enlace"
173
 
174
+ #: ../admin/help.php:25
175
  msgid "Support"
176
  msgstr "Soporte"
177
 
178
+ #: ../admin/help.php:27
179
+ #, fuzzy
180
+ msgid "If you like the plugin or have any query, drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>, like our <strong>Facebook</strong> page and follow us at <strong>Twitter</strong>."
181
  msgstr "Si le gusta mi plugin y le resulta útil, puede enviarme un correo electrónico a lordofthechamps@gmail.com, dar Me Gusta a mis páginas Facebook y seguirme en Twitter"
182
 
183
+ #: ../admin/help.php:29
184
+ #: ../admin/help.php:32
185
  #: ../admin/help.php:33
186
  #: ../admin/help.php:34
187
  #: ../admin/help.php:35
188
  #: ../admin/help.php:36
 
189
  msgid "Rate 5-star"
190
  msgstr "Tasa de 5 estrellas"
191
 
192
+ #: ../admin/help.php:44
193
+ #: ../admin/social_sharing.php:411
194
+ #: ../admin/social_sharing.php:736
195
+ #: ../admin/social_login.php:46
196
+ msgid "Facebook"
197
+ msgstr ""
 
198
 
199
+ #: ../admin/help.php:63
200
  msgid "Want plugin customization?"
201
  msgstr "¿Quieres plugin de personalización?"
202
 
203
+ #: ../admin/help.php:65
204
+ #, fuzzy
205
+ msgid "If you want custom features in the plugin, just drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>"
206
  msgstr "Si quieres características personalizadas en el plugin, lo que puedo hacer por usted. Simplemente envíeme un correo electrónico a lordofthechamps@gmail.com"
207
 
208
+ #: ../admin/social_sharing.php:11
209
+ #: ../admin/social_sharing.php:22
 
 
210
  #: ../admin/social_login.php:9
211
  #: ../admin/social_login.php:17
212
+ #: ../admin/like_buttons.php:11
213
+ #: ../admin/like_buttons.php:19
214
  msgid "Basic Configuration"
215
  msgstr "Configuración Básica"
216
 
217
+ #: ../admin/social_sharing.php:12
218
  #, fuzzy
219
+ msgid "Sharing Interface"
220
+ msgstr "Horizontales Opciones para compartir la interfaz de"
221
 
222
+ #: ../admin/social_sharing.php:13
223
+ #, fuzzy
224
+ msgid "Sharing Options"
225
+ msgstr "Ubicación de uso compartido"
226
+
227
+ #: ../admin/social_sharing.php:14
228
+ #: ../admin/social_sharing.php:1067
229
+ #: ../admin/social_sharing.php:1069
230
  #: ../admin/social_login.php:11
231
+ #: ../admin/social_login.php:654
232
+ #: ../admin/like_buttons.php:13
233
+ #: ../admin/like_buttons.php:644
234
+ #: ../admin/like_buttons.php:646
235
  msgid "Shortcode & Widget"
236
  msgstr "Widgets y shortcodes"
237
 
238
+ #: ../admin/social_sharing.php:15
239
+ msgid "Troubleshooter"
240
+ msgstr "Solucionador de problemas"
241
+
242
+ #: ../admin/social_sharing.php:16
243
+ #: ../admin/social_sharing.php:1098
244
  #: ../admin/social_commenting.php:12
245
+ #: ../admin/social_commenting.php:404
246
  msgid "FAQ"
247
  msgstr ""
248
 
249
+ #: ../admin/social_sharing.php:28
250
+ msgid "Enable Social Sharing"
251
+ msgstr "Habilitar Social Sharing"
252
+
253
+ #: ../admin/social_sharing.php:38
254
+ msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
255
+ msgstr "Control maestro para compartir en redes sociales. Esto debe estar marcado para habilitar la funcionalidad de Social Sharing "
256
+
257
+ #: ../admin/social_sharing.php:46
258
+ msgid "Delete all the options on plugin deletion"
259
+ msgstr "Eliminar todas las opciones de plugin de eliminación"
260
+
261
+ #: ../admin/social_sharing.php:56
262
+ msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
263
+ msgstr "Si se activa, las opciones del plugin será borrado cuando se elimina el plugin / desinstalado y tendrá que volver a configurar las opciones al instalar el plugin próxima vez."
264
+
265
+ #: ../admin/social_sharing.php:71
266
  #, fuzzy
267
+ msgid "Horizontal interface options"
268
+ msgstr "Horizontales Opciones para compartir la interfaz de"
269
+
270
+ #: ../admin/social_sharing.php:77
271
+ #: ../admin/social_sharing.php:155
272
+ msgid "Shape"
273
+ msgstr "Forma"
274
 
275
+ #: ../admin/social_sharing.php:85
276
+ #: ../admin/social_sharing.php:163
277
+ msgid "Round"
278
+ msgstr "Ronda"
279
+
280
+ #: ../admin/social_sharing.php:87
281
+ #: ../admin/social_sharing.php:165
282
+ msgid "Square"
283
+ msgstr "Cuadrado"
284
+
285
+ #: ../admin/social_sharing.php:94
286
+ #: ../admin/social_sharing.php:172
287
  #, fuzzy
288
+ msgid "Shape of the sharing icons"
289
+ msgstr "conteos muestran acciones"
290
+
291
+ #: ../admin/social_sharing.php:102
292
+ #: ../admin/social_sharing.php:180
293
+ msgid "Size (in pixels)"
294
+ msgstr "Tamaño (en píxeles)"
295
+
296
+ #: ../admin/social_sharing.php:120
297
+ #: ../admin/social_sharing.php:198
298
+ #, fuzzy
299
+ msgid "Size of the sharing icons"
300
+ msgstr "Habilitar interfaz de intercambio horizontal"
301
+
302
+ #: ../admin/social_sharing.php:127
303
+ #: ../admin/social_sharing.php:205
304
+ msgid "Icon Preview"
305
+ msgstr "Icono Vista previa"
306
+
307
+ #: ../admin/social_sharing.php:141
308
+ #: ../admin/social_sharing.php:219
309
+ msgid "Do not forget to save the configuration after making changes by clicking the save button below"
310
+ msgstr "No se olvide de guardar la configuración después de realizar cambios haciendo clic en el botón de guardar a continuación"
311
 
312
+ #: ../admin/social_sharing.php:149
313
  #, fuzzy
314
+ msgid "Vertical interface options"
315
+ msgstr "Vertical (flotante) Opciones de interfaz compartir"
316
 
317
+ #: ../admin/social_sharing.php:232
318
+ #: ../admin/like_buttons.php:51
319
+ #, fuzzy
320
+ msgid "Url shortener"
321
  msgstr "bit.ly url acortador"
322
 
323
+ #: ../admin/social_sharing.php:238
324
+ msgid "Use shortlinks already installed"
325
+ msgstr "Use shortlinks ya instalados"
326
+
327
+ #: ../admin/social_sharing.php:248
328
+ #: ../admin/like_buttons.php:67
329
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
330
+ msgstr "Permite URLs acortadas que se usará al compartir contenido, si se instala un plugin acortamiento"
331
 
332
+ #: ../admin/social_sharing.php:256
333
+ msgid "Enable bit.ly url shortener for sharing"
334
+ msgstr "Habilitar acortador de url bit.ly para compartir"
335
+
336
+ #: ../admin/social_sharing.php:266
337
+ #: ../admin/like_buttons.php:85
338
  #, fuzzy
339
  msgid "Master control to enable bit.ly url shortening for sharing"
340
  msgstr "Control maestro para permitir el intercambio horizontal"
341
 
342
+ #: ../admin/social_sharing.php:274
343
+ #: ../admin/like_buttons.php:93
344
  msgid "bit.ly username"
345
  msgstr "bit.ly nombre de usuario"
346
 
347
+ #: ../admin/social_sharing.php:284
348
+ #: ../admin/like_buttons.php:103
349
  #, fuzzy, php-format
350
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
351
  msgstr "Requerido para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\">en este enlace</a> para obtener Twitter Secreto del Consumidor"
352
 
353
+ #: ../admin/social_sharing.php:293
354
+ #: ../admin/like_buttons.php:112
355
  #, fuzzy
356
  msgid "bit.ly API Key"
357
  msgstr "Clave Consumidor Twitter"
358
 
359
+ #: ../admin/social_sharing.php:303
360
+ #: ../admin/like_buttons.php:122
361
  #, fuzzy, php-format
362
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
363
  msgstr "Requerida para que funcione Twitter Social Login. Por favor, siga la documentación <a href=\"%s\" target=\"_blank\"> en este enlace</a> para obtener su Clave Consumidor Twitter"
364
 
365
+ #: ../admin/social_sharing.php:313
366
+ msgid "Twitter username in sharing"
367
+ msgstr "Twitter nombre de usuario en el intercambio"
 
 
 
 
 
 
 
 
 
 
 
368
 
369
+ #: ../admin/social_sharing.php:319
370
+ #: ../admin/like_buttons.php:163
371
  msgid "Twitter username (without @)"
372
  msgstr "Twitter nombre de usuario (sin @)"
373
 
374
+ #: ../admin/social_sharing.php:329
375
+ msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
376
+ msgstr "Nombre de usuario proporcionado se añadirá después del contenido que se comparte como \"a travésUSERNAME\". Dejar vacío si no desea que cualquier nombre de usuario en el contenido que se comparte."
377
 
378
+ #: ../admin/social_sharing.php:339
379
+ msgid "Horizontal Sharing Interface Options"
 
380
  msgstr "Horizontales Opciones para compartir la interfaz de"
381
 
382
+ #: ../admin/social_sharing.php:345
383
+ msgid "Enable horizontal sharing interface"
 
384
  msgstr "Habilitar interfaz de intercambio horizontal"
385
 
386
+ #: ../admin/social_sharing.php:355
387
+ msgid "Master control to enable horizontal sharing"
 
388
  msgstr "Control maestro para permitir el intercambio horizontal"
389
 
390
+ #: ../admin/social_sharing.php:365
391
+ #: ../admin/social_sharing.php:708
392
+ #: ../admin/like_buttons.php:209
393
+ #: ../admin/like_buttons.php:424
394
  msgid "Target Url"
395
  msgstr "Target Url"
396
 
397
+ #: ../admin/social_sharing.php:369
398
+ #: ../admin/social_sharing.php:712
399
+ #: ../admin/like_buttons.php:213
400
+ #: ../admin/like_buttons.php:428
401
  msgid "Url of the webpage where icons are located (default)"
402
  msgstr "Url de la página web donde se encuentran los iconos (por defecto)"
403
 
404
+ #: ../admin/social_sharing.php:371
405
+ #: ../admin/social_sharing.php:714
406
+ #: ../admin/like_buttons.php:215
407
+ #: ../admin/like_buttons.php:430
408
  msgid "Url of the homepage of your website"
409
  msgstr "Url de la página principal de su sitio web"
410
 
411
+ #: ../admin/social_sharing.php:373
412
+ #: ../admin/social_sharing.php:716
413
+ #: ../admin/like_buttons.php:217
414
+ #: ../admin/like_buttons.php:432
415
  #, fuzzy
416
  msgid "Custom url"
417
  msgstr "Url personalizada"
418
 
419
+ #: ../admin/social_sharing.php:380
420
+ #: ../admin/social_sharing.php:723
421
+ msgid "Url to share"
422
+ msgstr "Url compartir"
423
 
424
+ #: ../admin/social_sharing.php:388
 
425
  #: ../admin/social_login.php:314
426
+ #: ../admin/like_buttons.php:232
427
  msgid "Title"
428
  msgstr "Titulo"
429
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  #: ../admin/social_sharing.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431
  msgid "The text to display above the sharing interface"
432
  msgstr "El texto que se muestra por encima de la interfaz compartida "
433
 
434
+ #: ../admin/social_sharing.php:406
435
+ #: ../admin/social_sharing.php:731
436
  #: ../admin/social_login.php:41
437
  msgid "Select providers"
438
  msgstr "Seleccionar proveedores"
439
 
440
+ #: ../admin/social_sharing.php:416
441
+ #: ../admin/social_sharing.php:741
 
 
 
 
 
 
442
  #: ../admin/social_login.php:50
443
  msgid "Twitter"
444
  msgstr ""
445
 
446
+ #: ../admin/social_sharing.php:421
447
+ #: ../admin/social_sharing.php:746
448
  #: ../admin/social_login.php:54
449
  msgid "LinkedIn"
450
  msgstr ""
451
 
452
+ #: ../admin/social_sharing.php:426
453
+ #: ../admin/social_sharing.php:751
454
  #: ../admin/social_login.php:58
455
  msgid "Google+"
456
  msgstr ""
457
 
458
+ #: ../admin/social_sharing.php:431
459
+ #: ../admin/social_sharing.php:756
460
  msgid "Print"
461
+ msgstr "Impresión"
462
 
463
+ #: ../admin/social_sharing.php:436
464
+ #: ../admin/social_sharing.php:761
465
  msgid "Email"
466
  msgstr ""
467
 
468
+ #: ../admin/social_sharing.php:441
469
+ #: ../admin/social_sharing.php:766
470
  msgid "Yahoo"
471
  msgstr ""
472
 
473
+ #: ../admin/social_sharing.php:446
474
+ #: ../admin/social_sharing.php:771
475
  msgid "Reddit"
476
  msgstr ""
477
 
478
+ #: ../admin/social_sharing.php:451
479
+ #: ../admin/social_sharing.php:776
480
  msgid "Digg"
481
  msgstr ""
482
 
483
+ #: ../admin/social_sharing.php:456
484
+ #: ../admin/social_sharing.php:781
485
  msgid "Delicious"
486
  msgstr ""
487
 
488
+ #: ../admin/social_sharing.php:461
489
+ #: ../admin/social_sharing.php:786
490
  msgid "StumbleUpon"
491
  msgstr ""
492
 
493
+ #: ../admin/social_sharing.php:466
494
+ #: ../admin/social_sharing.php:791
495
  msgid "Float it"
496
  msgstr ""
497
 
498
+ #: ../admin/social_sharing.php:471
499
+ #: ../admin/social_sharing.php:796
500
  msgid "Tumblr"
501
  msgstr ""
502
 
503
+ #: ../admin/social_sharing.php:476
504
+ #: ../admin/social_sharing.php:801
505
  #: ../admin/social_login.php:62
506
  msgid "Vkontakte"
507
  msgstr ""
508
 
509
+ #: ../admin/social_sharing.php:481
510
+ #: ../admin/social_sharing.php:806
511
  msgid "Pinterest"
512
  msgstr ""
513
 
514
+ #: ../admin/social_sharing.php:486
515
+ #: ../admin/social_sharing.php:811
516
  #: ../admin/social_login.php:70
517
  msgid "Xing"
518
  msgstr ""
519
 
520
+ #: ../admin/social_sharing.php:491
521
+ #: ../admin/social_sharing.php:816
522
  msgid "Whatsapp"
523
  msgstr ""
524
 
525
+ #: ../admin/social_sharing.php:499
526
+ #: ../admin/social_sharing.php:824
527
  msgid "Select the providers for sharing interface"
528
  msgstr "Seleccione los proveedores para compartir la interfaz"
529
 
530
+ #: ../admin/social_sharing.php:507
531
+ #: ../admin/social_sharing.php:832
532
  msgid "Rearrange icons"
533
  msgstr "Reorganizar iconos"
534
 
535
+ #: ../admin/social_sharing.php:541
536
+ #: ../admin/social_sharing.php:866
537
  msgid "Drag the icons to rearrange in desired order"
538
  msgstr "Arrastre los iconos para reorganizar estos con el fin deseado "
539
 
540
+ #: ../admin/social_sharing.php:549
541
+ #: ../admin/social_sharing.php:892
542
+ #: ../admin/like_buttons.php:302
543
+ #: ../admin/like_buttons.php:516
544
+ #, fuzzy
545
+ msgid "Horizontal alignment"
546
+ msgstr "Horizontales Opciones para compartir la interfaz de"
547
+
548
+ #: ../admin/social_sharing.php:553
549
+ #: ../admin/social_sharing.php:896
550
+ #: ../admin/like_buttons.php:306
551
+ #: ../admin/like_buttons.php:520
552
+ msgid "Left"
553
+ msgstr "izquierda"
554
+
555
+ #: ../admin/social_sharing.php:554
556
+ #: ../admin/like_buttons.php:307
557
+ msgid "Center"
558
+ msgstr "centro"
559
+
560
+ #: ../admin/social_sharing.php:555
561
+ #: ../admin/social_sharing.php:897
562
+ #: ../admin/like_buttons.php:308
563
+ #: ../admin/like_buttons.php:521
564
+ #, fuzzy
565
+ msgid "Right"
566
+ msgstr "Claro"
567
+
568
+ #: ../admin/social_sharing.php:563
569
+ #: ../admin/social_sharing.php:905
570
  #, fuzzy
571
  msgid "Horizontal alignment of the sharing interface"
572
  msgstr "Habilitar interfaz de intercambio horizontal"
573
 
574
+ #: ../admin/social_sharing.php:571
575
+ #: ../admin/like_buttons.php:324
576
+ msgid "Position with respect to content"
577
+ msgstr "Posición con respecto al contenido"
578
+
579
+ #: ../admin/social_sharing.php:575
580
+ #: ../admin/like_buttons.php:328
581
+ msgid "Top of the content"
582
+ msgstr "Parte superior del contenido"
583
+
584
+ #: ../admin/social_sharing.php:577
585
+ #: ../admin/like_buttons.php:330
586
+ msgid "Bottom of the content"
587
+ msgstr "Parte inferior del contenido"
588
+
589
+ #: ../admin/social_sharing.php:584
590
  msgid "Specify position of the sharing interface with respect to the content"
591
  msgstr "Especificar la posición de la interfaz compartir con respecto al contenido"
592
 
593
+ #: ../admin/social_sharing.php:592
594
+ #: ../admin/social_sharing.php:971
595
  msgid "Sharing location"
596
  msgstr "Ubicación de uso compartido"
597
 
598
+ #: ../admin/social_sharing.php:596
599
+ #: ../admin/social_sharing.php:975
600
+ #: ../admin/social_login.php:514
601
+ #: ../admin/social_login.php:544
602
+ #: ../admin/like_buttons.php:349
603
+ #: ../admin/like_buttons.php:599
604
+ msgid "Homepage"
605
+ msgstr "Página de inicio"
606
+
607
+ #: ../admin/social_sharing.php:598
608
+ #: ../admin/social_sharing.php:977
609
+ #: ../admin/like_buttons.php:351
610
+ #: ../admin/like_buttons.php:601
611
+ msgid "Posts"
612
+ msgstr "Publicaciones"
613
+
614
+ #: ../admin/social_sharing.php:600
615
+ #: ../admin/social_sharing.php:979
616
+ #: ../admin/like_buttons.php:353
617
+ #: ../admin/like_buttons.php:603
618
+ msgid "Pages"
619
+ msgstr "Páginas"
620
+
621
+ #: ../admin/social_sharing.php:602
622
+ #: ../admin/social_sharing.php:981
623
+ #: ../admin/like_buttons.php:355
624
+ #: ../admin/like_buttons.php:605
625
+ msgid "Excerpts"
626
+ msgstr "Extractos"
627
+
628
+ #: ../admin/social_sharing.php:604
629
+ #: ../admin/social_sharing.php:983
630
+ #: ../admin/like_buttons.php:357
631
+ #: ../admin/like_buttons.php:607
632
+ msgid "Category Archives"
633
+ msgstr "Archivos de la categoría"
634
+
635
+ #: ../admin/social_sharing.php:606
636
+ #: ../admin/social_sharing.php:985
637
+ #: ../admin/like_buttons.php:359
638
+ #: ../admin/like_buttons.php:609
639
+ msgid "Archive Pages (Category, Tag, Author or Date based pages)"
640
+ msgstr "Archivo Páginas (Categoría, Tag, Autor o páginas Fecha basado)"
641
+
642
+ #: ../admin/social_sharing.php:612
643
+ #: ../admin/like_buttons.php:365
644
+ msgid "BuddyPress activity and groups"
645
+ msgstr "Actividad y grupos BuddyPress"
646
+
647
+ #: ../admin/social_sharing.php:619
648
+ #: ../admin/social_sharing.php:991
649
+ #: ../admin/like_buttons.php:372
650
+ #: ../admin/like_buttons.php:615
651
+ msgid "BBPress forum"
652
+ msgstr "foro BBPress"
653
+
654
+ #: ../admin/social_sharing.php:622
655
+ #: ../admin/social_sharing.php:994
656
+ #: ../admin/like_buttons.php:375
657
+ #: ../admin/like_buttons.php:618
658
+ msgid "BBPress topic"
659
+ msgstr "tema BBPress"
660
+
661
+ #: ../admin/social_sharing.php:625
662
+ #: ../admin/like_buttons.php:378
663
+ msgid "BBPress reply"
664
+ msgstr "BBPress respuesta"
665
+
666
+ #: ../admin/social_sharing.php:635
667
  msgid "Specify the pages where you want to enable Sharing interface"
668
  msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido"
669
 
670
+ #: ../admin/social_sharing.php:643
671
+ #: ../admin/social_sharing.php:1012
672
  msgid "Show share counts"
673
  msgstr "conteos muestran acciones"
674
 
675
+ #: ../admin/social_sharing.php:653
676
+ #: ../admin/social_sharing.php:1022
677
  msgid "If enabled, share counts are displayed above sharing icons."
678
  msgstr "Si está habilitado, el recuento de acciones se muestran por encima de los iconos para compartir."
679
 
680
+ #: ../admin/social_sharing.php:662
681
+ #: ../admin/social_sharing.php:1031
682
+ #, fuzzy
683
+ msgid "Enable 'More' icon"
684
+ msgstr "Habilitar verificación de correo electrónico"
685
+
686
+ #: ../admin/social_sharing.php:672
687
+ #: ../admin/social_sharing.php:1041
688
+ msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
689
+ msgstr "Si se activa, icono \"Más\" se mostrará iconos de intercambio después de seleccionados que muestra las redes de intercambio adicionales en popup"
690
+
691
+ #: ../admin/social_sharing.php:682
692
  msgid "Vertical (Floating) Sharing Interface Options"
693
  msgstr "Vertical (flotante) Opciones de interfaz compartir"
694
 
695
+ #: ../admin/social_sharing.php:688
696
  msgid "Enable vertical (floating) sharing interface"
697
  msgstr "Habilitar vertical (flotante) interfaz compartida"
698
 
699
+ #: ../admin/social_sharing.php:698
700
  msgid "Master control to enable vertical (floating) sharing widget"
701
  msgstr "Control maestro para permitir vertical (flotante) widget de intercambio"
702
 
703
+ #: ../admin/social_sharing.php:874
704
+ #: ../admin/like_buttons.php:498
705
+ msgid "Background Color"
706
+ msgstr "color de fondo"
707
+
708
+ #: ../admin/social_sharing.php:884
709
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
710
  msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de la barra de compartir vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
711
 
712
+ #: ../admin/social_sharing.php:914
713
+ #: ../admin/like_buttons.php:538
714
+ msgid "Left offset"
715
+ msgstr "desplazamiento izquierda"
716
+
717
+ #: ../admin/social_sharing.php:924
718
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
719
  msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
720
 
721
+ #: ../admin/social_sharing.php:934
722
+ #: ../admin/like_buttons.php:558
723
+ #, fuzzy
724
+ msgid "Right offset"
725
+ msgstr "desplazamiento izquierda"
726
+
727
+ #: ../admin/social_sharing.php:944
728
  #, fuzzy
729
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
730
  msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
731
 
732
+ #: ../admin/social_sharing.php:953
733
+ #: ../admin/like_buttons.php:577
734
+ msgid "Top offset"
735
+ msgstr "superior compensar"
736
+
737
+ #: ../admin/social_sharing.php:963
738
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
739
  msgstr "Especifique un número. Aumento del número cambiará compartir la interfaz hacia la parte inferior y el descenso se desplazará hacia la parte superior."
740
 
741
+ #: ../admin/social_sharing.php:1004
742
  msgid "Specify the pages where you want to enable vertical Sharing interface"
743
  msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido verticales"
744
 
745
+ #: ../admin/social_sharing.php:1079
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746
  msgid "Facebook Sharing Troubleshooter"
747
  msgstr "Facebook Sharing Solucionador de problemas"
748
 
749
+ #: ../admin/social_sharing.php:1084
750
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
751
  msgstr "Si Facebook compartir no está funcionando bien, haga clic en el siguiente enlace e introduzca la url problemático (donde compartir en Facebook no funciona correctamente) de su sitio web en el campo de texto:"
752
 
753
+ #: ../admin/social_sharing.php:1100
754
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
755
  msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
756
 
757
+ #: ../admin/social_sharing.php:1101
 
 
 
 
758
  #, fuzzy
759
  msgid "How can I disable sharing on particular page/post?"
760
  msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
761
 
762
+ #: ../admin/social_sharing.php:1102
763
  msgid "How can I specify minimum sharing count for sharing networks?"
764
  msgstr "¿Cómo puedo especificar conteo mínimo compartido para las redes de intercambio?"
765
 
766
+ #: ../admin/social_sharing.php:1112
767
+ #: ../admin/social_commenting.php:414
768
+ #: ../admin/social_login.php:665
769
+ #: ../admin/like_buttons.php:655
770
+ msgid "Save Changes"
771
+ msgstr "Guardar cambios"
772
+
773
  #: ../admin/social_commenting.php:10
774
+ #, fuzzy
775
+ msgid "Social Commenting"
776
  msgstr "Comentarios Facebook"
777
 
778
+ #: ../admin/social_commenting.php:11
779
+ #: ../admin/social_commenting.php:392
780
+ #: ../admin/social_commenting.php:394
781
+ msgid "Shortcode"
782
+ msgstr "Shortcodes"
783
+
784
  #: ../admin/social_commenting.php:18
785
  #: ../admin/social_commenting.php:24
 
 
 
786
  #: ../admin/social_commenting.php:34
787
+ #: ../admin/social_commenting.php:134
788
  #, fuzzy
789
+ msgid "Enable Social Commenting"
790
+ msgstr "Habilitar Social Login"
791
 
792
+ #: ../admin/social_commenting.php:42
793
+ msgid "Order of tabs in commenting interface"
794
+ msgstr "Orden de pestañas en la interfaz comentar"
795
 
796
+ #: ../admin/social_commenting.php:52
797
+ msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
798
+ msgstr "Orden de las pestañas que se muestran en la interfaz comentando social. Por defecto es wordpress,facebook,googleplus,disqus"
799
 
800
  #: ../admin/social_commenting.php:60
801
+ msgid "Comment area label"
802
+ msgstr "Etiqueta área Comentario"
803
+
804
+ #: ../admin/social_commenting.php:71
805
+ msgid "Labels"
806
+ msgstr "Etiquetas"
807
+
808
+ #: ../admin/social_commenting.php:77
809
+ #, fuzzy
810
+ msgid "Label for WordPress Commenting tab"
811
+ msgstr "WordPress Comentarios"
812
+
813
+ #: ../admin/social_commenting.php:87
814
  #, fuzzy
815
+ msgid "Label for Facebook Commenting tab"
816
+ msgstr "Habilitar Comentarios Facebook"
817
+
818
+ #: ../admin/social_commenting.php:97
819
+ #, fuzzy
820
+ msgid "Label for G+ Commenting tab"
821
+ msgstr "Comentarios Facebook"
822
+
823
+ #: ../admin/social_commenting.php:107
824
+ msgid "Label for Disqus Commenting tab"
825
+ msgstr "Etiqueta para pestaña Comentando Disqus"
826
+
827
+ #: ../admin/social_commenting.php:118
828
+ msgid "Facebook Commenting Options"
829
+ msgstr "Opciones de Comentarios Facebook"
830
+
831
+ #: ../admin/social_commenting.php:124
832
+ msgid "Enable Facebook Commenting"
833
+ msgstr "Habilitar Comentarios Facebook"
834
 
835
+ #: ../admin/social_commenting.php:143
836
+ #: ../admin/social_commenting.php:323
837
  msgid "Url to comment on"
838
  msgstr "URL donde comentar"
839
 
840
+ #: ../admin/social_commenting.php:153
841
  #, fuzzy
842
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
843
  msgstr "La URL absoluta a la que los comentarios publicados en el plugin se asociarán permanentemente. Historias en Facebook acerca de los comentarios publicados en el plugin se enlazarán a esta URL.<br/> Si se deja en blanco <strong>(recomendado)</strong>, se utilizará la URL de la página web en la que se habilita comentar"
844
 
845
+ #: ../admin/social_commenting.php:161
846
+ #: ../admin/social_commenting.php:305
847
  msgid "Width"
848
  msgstr "Ancho"
849
 
850
+ #: ../admin/social_commenting.php:171
851
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
852
  msgstr "Dejar en blanco para la auto-ajustar el ancho. El ancho (en píxeles) del bloque de comentarios."
853
 
854
+ #: ../admin/social_commenting.php:179
855
  msgid "Color Scheme"
856
  msgstr "Esquema de colores"
857
 
858
+ #: ../admin/social_commenting.php:183
859
  msgid "Light"
860
  msgstr "Claro"
861
 
862
+ #: ../admin/social_commenting.php:184
863
  msgid "Dark"
864
  msgstr "Obscuro"
865
 
866
+ #: ../admin/social_commenting.php:192
867
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
868
  msgstr "El esquema de color usado por el plugin. Puede ser \"\"claro\"\" u \"\"obscuro\"\"."
869
 
870
+ #: ../admin/social_commenting.php:200
871
  #, fuzzy
872
  msgid "Number of comments"
873
  msgstr "Número de publicaciones"
874
 
875
+ #: ../admin/social_commenting.php:210
876
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
877
  msgstr "El número de comentarios para mostrar por defecto. El valor mínimo es 1. El valor predeterminado es 10"
878
 
879
+ #: ../admin/social_commenting.php:218
880
  msgid "Order by"
881
  msgstr "Ordenar por"
882
 
883
+ #: ../admin/social_commenting.php:222
884
  msgid "Social"
885
  msgstr "Social"
886
 
887
+ #: ../admin/social_commenting.php:223
888
  msgid "Reverse Time"
889
  msgstr "Revertir tiempo"
890
 
891
+ #: ../admin/social_commenting.php:224
892
  msgid "Time"
893
  msgstr "Tiempo"
894
 
895
+ #: ../admin/social_commenting.php:232
896
  msgid "The order to use when displaying comments."
897
  msgstr "El orden a utilizar cuando se muestran los comentarios."
898
 
899
+ #: ../admin/social_commenting.php:240
900
  msgid "Mobile"
901
  msgstr "Móvil "
902
 
903
+ #: ../admin/social_commenting.php:244
904
  msgid "Auto Detect"
905
  msgstr "Auto detectar"
906
 
907
+ #: ../admin/social_commenting.php:245
908
  msgid "True"
909
  msgstr "Verdadero"
910
 
911
+ #: ../admin/social_commenting.php:246
912
  msgid "False"
913
  msgstr "Falso"
914
 
915
+ #: ../admin/social_commenting.php:254
916
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
917
  msgstr "Un valor booleano que especifica si se mostrará la versión optimizada para móviles o no. "
918
 
919
+ #: ../admin/social_commenting.php:262
920
+ #: ../admin/like_buttons.php:132
921
+ #: ../admin/like_buttons.php:138
922
+ msgid "Language"
923
+ msgstr "Idioma"
924
+
925
+ #: ../admin/social_commenting.php:272
926
  #, php-format
927
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
928
  msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
929
 
930
+ #: ../admin/social_commenting.php:281
 
 
 
 
931
  #, fuzzy
932
+ msgid "Google Plus Commenting Options"
933
+ msgstr "Opciones de Comentarios Facebook"
 
 
 
 
 
 
 
 
934
 
935
+ #: ../admin/social_commenting.php:287
936
+ #: ../admin/social_commenting.php:297
937
  #, fuzzy
938
+ msgid "Enable Google Plus Commenting"
939
+ msgstr "Habilitar Comentarios Facebook"
940
 
941
+ #: ../admin/social_commenting.php:315
942
+ msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
943
+ msgstr "Ancho de la interfaz Comentando GooglePlus. Dejar en blanco para el ajuste automático"
 
944
 
945
+ #: ../admin/social_commenting.php:333
946
  #, fuzzy
947
+ msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
948
+ msgstr "La URL absoluta a la que los comentarios publicados en el plugin se asociarán permanentemente. Historias en Facebook acerca de los comentarios publicados en el plugin se enlazarán a esta URL.<br/> Si se deja en blanco <strong>(recomendado)</strong>, se utilizará la URL de la página web en la que se habilita comentar"
949
 
950
+ #: ../admin/social_commenting.php:342
951
  #, fuzzy
952
+ msgid "Disqus Commenting Options"
953
+ msgstr "Opciones de Comentarios Facebook"
954
 
955
+ #: ../admin/social_commenting.php:348
956
+ #: ../admin/social_commenting.php:358
957
  #, fuzzy
958
+ msgid "Enable Disqus Commenting"
959
+ msgstr "Habilitar Comentarios Facebook"
960
 
961
+ #: ../admin/social_commenting.php:366
962
+ msgid "Disqus Shortname"
963
+ msgstr ""
964
 
965
+ #: ../admin/social_commenting.php:376
966
+ msgid "<strong>Required to use Disqus commenting.</strong> You can find it in your Disqus plugin settings section as shown in the screenshot below"
967
+ msgstr "<strong>Necesario para utilizar Disqus comentar.</strong> Lo puedes encontrar en la sección de configuración del plugin Disqus como se muestra en la siguiente imagen"
968
 
969
+ #: ../admin/social_commenting.php:406
970
+ #, fuzzy
971
+ msgid "How can I disable Social Commenting at individual page/post?"
972
+ msgstr "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas individuales / mensajes?"
973
 
974
  #: ../admin/social_login.php:10
975
  msgid "Social Login"
1280
  msgstr "Si está activado, el correo electrónico proporcionado por el usuario se verificará mediante el envío de un enlace de confirmación a ese correo electrónico. El usuario no podrá iniciar sesión sin verificar su email"
1281
 
1282
  #: ../admin/social_login.php:656
 
 
 
 
1283
  #, fuzzy
1284
+ msgid "Sortcode & Widget"
1285
+ msgstr "Widgets y shortcodes"
 
 
 
 
 
 
 
 
1286
 
1287
  #: ../admin/admin.php:8
1288
  msgid "Welcome"
1297
  msgstr "Para empezar"
1298
 
1299
  #: ../admin/admin.php:12
1300
+ #, fuzzy
1301
+ msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default."
1302
  msgstr "Comience a configurar las opciones en las siguientes secciones del menú de Super Socializer en el panel izquierdo. Intercambio Social está habilitado en su sitio web por defecto."
1303
 
1304
  #: ../admin/admin.php:13
1317
 
1318
  #: ../admin/admin.php:16
1319
  #, fuzzy
1320
+ msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1321
  msgstr "En la sección Uso compartido Social, puede elegir las Redes Sociales para compartir y configurar los opciones para compartir."
1322
 
1323
+ #: ../admin/like_buttons.php:12
1324
+ msgid "Like Buttons"
1325
+ msgstr "Como Botones"
1326
+
1327
+ #: ../admin/like_buttons.php:25
1328
+ msgid "Enable Like Buttons"
1329
+ msgstr "Habilitar como botones"
1330
+
1331
+ #: ../admin/like_buttons.php:35
1332
+ #, fuzzy
1333
+ msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1334
+ msgstr "Control Maestro para Social Login. Debe comprobarse para permitir la funcionalidad de Social Login"
1335
+
1336
+ #: ../admin/like_buttons.php:57
1337
+ msgid "Use shortlinks already installed, for tweet button"
1338
+ msgstr "Utilice shortlinks ya instalados, para botón de Tweet"
1339
+
1340
+ #: ../admin/like_buttons.php:75
1341
+ msgid "Enable bit.ly url shortener for tweet button"
1342
+ msgstr "Habilitar acortador de url bit.ly para el botón de Twitter"
1343
+
1344
+ #: ../admin/like_buttons.php:148
1345
+ #, fuzzy, php-format
1346
+ msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1347
+ msgstr "Introduzca el código del idioma que desea utilizar para mostrar los comentarios. Usted puede encontrar los códigos de idioma en <a href=\"%s\" target=\"_blank\"> este enlace </ a>. Déjelo vacío para el idioma predeterminado (Inglés)"
1348
+
1349
+ #: ../admin/like_buttons.php:157
1350
+ msgid "Twitter username in tweet button"
1351
+ msgstr "Twitter nombre de usuario en el botón de Twitter"
1352
+
1353
+ #: ../admin/like_buttons.php:173
1354
+ msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1355
+ msgstr "Nombre de usuario proporcionado se añadirá después del contenido que se está tuiteó como \"a travésUSERNAME\". Dejar vacío si no desea ningún nombre de usuario."
1356
+
1357
+ #: ../admin/like_buttons.php:183
1358
+ #, fuzzy
1359
+ msgid "Horizontal Interface Options"
1360
+ msgstr "Horizontales Opciones para compartir la interfaz de"
1361
+
1362
+ #: ../admin/like_buttons.php:189
1363
+ #, fuzzy
1364
+ msgid "Enable horizontal interface"
1365
+ msgstr "Habilitar interfaz de intercambio horizontal"
1366
+
1367
+ #: ../admin/like_buttons.php:199
1368
+ #, fuzzy
1369
+ msgid "Master control to enable horizontal like buttons"
1370
+ msgstr "Control maestro para permitir el intercambio horizontal"
1371
+
1372
+ #: ../admin/like_buttons.php:224
1373
+ #: ../admin/like_buttons.php:439
1374
+ msgid "Url to like/share/tweet and display like/share/tweet counts"
1375
+ msgstr "Url gustarle/share/tweet y pantalla como conteos/share/pío"
1376
+
1377
+ #: ../admin/like_buttons.php:242
1378
+ #, fuzzy
1379
+ msgid "The text to display above the interface"
1380
+ msgstr "El texto que se muestra por encima de la interfaz compartida "
1381
+
1382
+ #: ../admin/like_buttons.php:250
1383
+ #: ../admin/like_buttons.php:447
1384
+ #, fuzzy
1385
+ msgid "Select and rearrange providers"
1386
+ msgstr "Seleccionar proveedores"
1387
+
1388
+ #: ../admin/like_buttons.php:294
1389
+ #: ../admin/like_buttons.php:490
1390
+ #, fuzzy
1391
+ msgid "Select the providers for interface. Drag them to rearrange."
1392
+ msgstr "Seleccione los proveedores para compartir la interfaz"
1393
+
1394
+ #: ../admin/like_buttons.php:316
1395
+ #: ../admin/like_buttons.php:529
1396
+ #, fuzzy
1397
+ msgid "Horizontal alignment of the interface"
1398
+ msgstr "Habilitar interfaz de intercambio horizontal"
1399
+
1400
+ #: ../admin/like_buttons.php:337
1401
+ #, fuzzy
1402
+ msgid "Specify position of the interface with respect to the content"
1403
+ msgstr "Especificar la posición de la interfaz compartir con respecto al contenido"
1404
+
1405
+ #: ../admin/like_buttons.php:345
1406
+ #: ../admin/like_buttons.php:595
1407
+ #, fuzzy
1408
+ msgid "Interface location"
1409
+ msgstr "Ubicación de uso compartido"
1410
+
1411
+ #: ../admin/like_buttons.php:388
1412
+ #, fuzzy
1413
+ msgid "Specify the pages where you want to enable interface"
1414
+ msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido"
1415
+
1416
+ #: ../admin/like_buttons.php:398
1417
+ #, fuzzy
1418
+ msgid "Vertical (Floating) like buttons Options"
1419
+ msgstr "Vertical (flotante) Opciones de interfaz compartir"
1420
+
1421
+ #: ../admin/like_buttons.php:404
1422
+ #, fuzzy
1423
+ msgid "Enable vertical (floating) like buttons"
1424
+ msgstr "Habilitar vertical (flotante) interfaz compartida"
1425
+
1426
+ #: ../admin/like_buttons.php:414
1427
+ #, fuzzy
1428
+ msgid "Master control to enable vertical (floating) counter widget"
1429
+ msgstr "Control maestro para permitir vertical (flotante) widget de intercambio"
1430
+
1431
+ #: ../admin/like_buttons.php:508
1432
+ #, fuzzy
1433
+ msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1434
+ msgstr "Especifique el color o el código hexadecimal (ejemplo # cc78e0) para el fondo de barra de bar vertical. Dejar vacío para transparente. Puede obtener el código hexadecimal del color deseado de <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> este enlace </a>"
1435
+
1436
+ #: ../admin/like_buttons.php:548
1437
+ #, fuzzy
1438
+ msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left."
1439
+ msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
1440
+
1441
+ #: ../admin/like_buttons.php:568
1442
+ #, fuzzy
1443
+ msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right."
1444
+ msgstr "Especifique un número. Aumento del número cambiará interfaz compartida hacia la derecha y la disminución se desplazará hacia la izquierda."
1445
+
1446
+ #: ../admin/like_buttons.php:587
1447
+ #, fuzzy
1448
+ msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1449
+ msgstr "Especifique un número. Aumento del número cambiará compartir la interfaz hacia la parte inferior y el descenso se desplazará hacia la parte superior."
1450
+
1451
+ #: ../admin/like_buttons.php:628
1452
+ #, fuzzy
1453
+ msgid "Specify the pages where you want to enable vertical interface"
1454
+ msgstr "Especifique las páginas en las que desee habilitar la interfaz Uso compartido verticales"
1455
+
1456
+ #: ../inc/social_sharing.php:515
1457
  msgid "Invalid request"
1458
  msgstr "petición no válida"
1459
 
1460
+ #: ../inc/social_sharing.php:522
1461
  msgid "Providers not selected"
1462
  msgstr "Los proveedores no seleccionados"
1463
 
1562
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1563
  msgstr "Widget de flotación vertical. ​​Deje que sus usuarios del website compartan contenidos en las redes sociales populares como Facebook, Twitter, Tumblr, Google+ y muchos más "
1564
 
1565
+ #~ msgid ""
1566
+ #~ "I am a tech enthusiast. I like to play with code and build great stuff "
1567
+ #~ "(and like to call myself - The Champ....:) ). You can connect with me "
1568
+ #~ "(and my upcoming work) via:"
1569
+ #~ msgstr ""
1570
+ #~ "Soy un entusiasta de la tecnología. Me gusta jugar con los códigos y "
1571
+ #~ "construir grandes cosas (y me gusta decir que soy - El Champ .... :)). "
1572
+ #~ "Puede conectar conmigo (y mi próximo trabajo) a través de:"
1573
+
1574
+ #~ msgid "Plugin Fan Page"
1575
+ #~ msgstr "Plugin de Página de fans"
1576
+
1577
+ #~ msgid "My Fan Page"
1578
+ #~ msgstr "Mi página de fans"
1579
+
1580
+ #, fuzzy
1581
+ #~ msgid "Social Counter"
1582
+ #~ msgstr "Social Login"
1583
+
1584
+ #, fuzzy
1585
+ #~ msgid ""
1586
+ #~ "Master control for Social Counter. It must be checked to enable Social "
1587
+ #~ "Counter functionality"
1588
+ #~ msgstr ""
1589
+ #~ "Control Maestro para Social Login. Debe comprobarse para permitir la "
1590
+ #~ "funcionalidad de Social Login"
1591
+
1592
+ #, fuzzy
1593
+ #~ msgid ""
1594
+ #~ "<strong>Note:</strong> To disable counter on particular page/post, edit "
1595
+ #~ "that page/post and check the options at the bottom in <strong>\"Super "
1596
+ #~ "Socializer\"</strong> section"
1597
+ #~ msgstr ""
1598
+ #~ "<strong> Nota: </ strong> Para deshabilitar el uso compartido en concreto "
1599
+ #~ "la página / post, edite la página / post y comprobar el <strong> "
1600
+ #~ "\"Desactivar Intercambio Social en esta página \" </ strong> la opción en "
1601
+ #~ "la parte inferior de <strong > \"Super Socializer \" </ strong>"
1602
+
1603
+ #, fuzzy
1604
+ #~ msgid ""
1605
+ #~ "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content "
1606
+ #~ "of required page/post where you want to display Social Counter interface."
1607
+ #~ msgstr ""
1608
+ #~ "Usted puede utilizar <strong> [TheChamp-Sharing] </ strong> Código corto "
1609
+ #~ "en el contenido de la página requerida / post en el que desea mostrar la "
1610
+ #~ "interfaz Uso compartido Social."
1611
+
1612
+ #~ msgid "Example"
1613
+ #~ msgstr "ejemplo"
1614
+
1615
+ #~ msgid "You can use following attributes in the Shortcode"
1616
+ #~ msgstr "Puede utilizar los atributos siguientes en el Código corto"
1617
+
1618
+ #, fuzzy
1619
+ #~ msgid ""
1620
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Counter "
1621
+ #~ "interface"
1622
+ #~ msgstr ""
1623
+ #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
1624
+ #~ "compartido sociales prestados"
1625
+
1626
+ #, fuzzy
1627
+ #~ msgid ""
1628
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1629
+ #~ "or \"vertical\") of Social Counter interface. Default type is \"horizontal"
1630
+ #~ "\"."
1631
+ #~ msgstr ""
1632
+ #~ "Utilice <strong>type</ strong> atributo para especificar el tipo "
1633
+ #~ "(\"horizontal \" o \"vertical \") de la interfaz Uso compartido Social. "
1634
+ #~ "Tipo por defecto es \"horizontal \"."
1635
+
1636
+ #~ msgid "Left (Works with \"Vertical\" type interface only)"
1637
+ #~ msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
1638
+
1639
+ #, fuzzy
1640
+ #~ msgid ""
1641
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1642
+ #~ "form the left side of the screen) of Social Counter interface."
1643
+ #~ msgstr ""
1644
+ #~ "Uso <strong> left</strong> atributo para especificar el desplazamiento "
1645
+ #~ "izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz "
1646
+ #~ "de uso compartido Social."
1647
+
1648
+ #~ msgid "Top (Works with \"Vertical\" type interface only)"
1649
+ #~ msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
1650
+
1651
+ #, fuzzy
1652
+ #~ msgid ""
1653
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1654
+ #~ "form the top of the screen) of Social Counter interface."
1655
+ #~ msgstr ""
1656
+ #~ "Utilice <strong>top</strong> atributo para especificar el desplazamiento "
1657
+ #~ "superior (distancia forman la parte superior de la pantalla) de la "
1658
+ #~ "interfaz Uso compartido Social."
1659
+
1660
+ #, fuzzy
1661
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be liked"
1662
+ #~ msgstr ""
1663
+ #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
1664
+ #~ "compartido sociales prestados"
1665
+
1666
+ #, fuzzy
1667
+ #~ msgid "You can use shortcode in PHP file as following"
1668
+ #~ msgstr "Usted puede ver el plugin en acción en el siguiente enlace"
1669
+
1670
+ #, fuzzy
1671
+ #~ msgid ""
1672
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1673
+ #~ "shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]"
1674
+ #~ "</strong>, so the final code looks like following"
1675
+ #~ msgstr ""
1676
+ #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
1677
+ #~ "corto requerido como <strong>[TheChamp-Login style=\"background-color: "
1678
+ #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
1679
+
1680
+ #, fuzzy
1681
+ #~ msgid ""
1682
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1683
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1684
+ #~ "Counter (Horizontal Widget)</strong> and <strong>Super Socializer - "
1685
+ #~ "Counter (Vertical Floating Widget)</strong> widgets in the required area."
1686
+ #~ msgstr ""
1687
+ #~ "Usted puede navegar a la <strong>Apariencia</ strong >> <strong> "
1688
+ #~ "Reproductores </ strong> en el platillo izquierdo y arrastre <strong> "
1689
+ #~ "Súper Socializer - Sharing (Horizontal Widget) </ strong> y <strong> "
1690
+ #~ "Súper Socializer - Sharing (Vertical Floating Widget) </ strong> widgets "
1691
+ #~ "en el área requerida."
1692
+
1693
+ #, fuzzy
1694
+ #~ msgid ""
1695
+ #~ "How can I show like counts of my website rather than of individual pages/"
1696
+ #~ "posts?"
1697
+ #~ msgstr ""
1698
+ #~ "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas "
1699
+ #~ "individuales / mensajes?"
1700
+
1701
+ #, fuzzy
1702
+ #~ msgid ""
1703
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
1704
+ #~ msgstr ""
1705
+ #~ "Elija la opción \"Url de la página principal de su sitio web \" en la "
1706
+ #~ "opción \"Target Url \" y permitir \"cuenta Share \""
1707
+
1708
+ #, fuzzy
1709
+ #~ msgid "How can I disable social counter on particular page/post?"
1710
+ #~ msgstr ""
1711
+ #~ "¿Cómo puedo mostrar comparten cargos de mi sitio web y no de páginas "
1712
+ #~ "individuales / mensajes?"
1713
+
1714
+ #, fuzzy
1715
+ #~ msgid ""
1716
+ #~ "Edit that page/post and check the options at the bottom in \"Super "
1717
+ #~ "Socializer\" section"
1718
+ #~ msgstr ""
1719
+ #~ "Editar esta página/post y marque la opción \"Desactivar Comentarios "
1720
+ #~ "Facebook en este post/página \" en la parte inferior en section \"Super "
1721
+ #~ "Socializer\""
1722
+
1723
+ #~ msgid "Social Sharing"
1724
+ #~ msgstr "Social Sharing"
1725
+
1726
+ #, fuzzy
1727
+ #~ msgid ""
1728
+ #~ "<strong>Note:</strong> To disable sharing and specify minimum share "
1729
+ #~ "counts per social network on particular page/post, edit that page/post "
1730
+ #~ "and check the options at the bottom in <strong>\"Super Socializer\"</"
1731
+ #~ "strong> section"
1732
+ #~ msgstr ""
1733
+ #~ "<strong> Nota: </ strong> Para deshabilitar el uso compartido en concreto "
1734
+ #~ "la página / post, edite la página / post y comprobar el <strong> "
1735
+ #~ "\"Desactivar Intercambio Social en esta página \" </ strong> la opción en "
1736
+ #~ "la parte inferior de <strong > \"Super Socializer \" </ strong>"
1737
+
1738
+ #~ msgid ""
1739
+ #~ "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content "
1740
+ #~ "of required page/post where you want to display Social Sharing interface."
1741
+ #~ msgstr ""
1742
+ #~ "Usted puede utilizar <strong> [TheChamp-Sharing] </ strong> Código corto "
1743
+ #~ "en el contenido de la página requerida / post en el que desea mostrar la "
1744
+ #~ "interfaz Uso compartido Social."
1745
+
1746
+ #~ msgid ""
1747
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Sharing "
1748
+ #~ "interface"
1749
+ #~ msgstr ""
1750
+ #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
1751
+ #~ "compartido sociales prestados"
1752
+
1753
+ #, fuzzy
1754
+ #~ msgid ""
1755
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1756
+ #~ "or \"vertical\") of Social Sharing interface. Default type is \"horizontal"
1757
+ #~ "\"."
1758
+ #~ msgstr ""
1759
+ #~ "Utilice <strong>type</ strong> atributo para especificar el tipo "
1760
+ #~ "(\"horizontal \" o \"vertical \") de la interfaz Uso compartido Social. "
1761
+ #~ "Tipo por defecto es \"horizontal \"."
1762
+
1763
+ #, fuzzy
1764
+ #~ msgid ""
1765
+ #~ "Use <strong>count</strong> attribute to enable the share counts on Social "
1766
+ #~ "Sharing interface"
1767
+ #~ msgstr ""
1768
+ #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
1769
+ #~ "compartido sociales prestados"
1770
+
1771
+ #, fuzzy
1772
+ #~ msgid "left (Works with \"Vertical\" type interface only)"
1773
+ #~ msgstr "Izquierda (Trabaja con interfaz tipo \"vertical \" solamente)"
1774
+
1775
+ #~ msgid ""
1776
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1777
+ #~ "form the left side of the screen) of Social Sharing interface."
1778
+ #~ msgstr ""
1779
+ #~ "Uso <strong> left</strong> atributo para especificar el desplazamiento "
1780
+ #~ "izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz "
1781
+ #~ "de uso compartido Social."
1782
+
1783
+ #, fuzzy
1784
+ #~ msgid "top (Works with \"Vertical\" type interface only)"
1785
+ #~ msgstr "Top (Trabaja con \"vertical \" tipo de interfaz única)"
1786
+
1787
+ #~ msgid ""
1788
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1789
+ #~ "form the top of the screen) of Social Sharing interface."
1790
+ #~ msgstr ""
1791
+ #~ "Utilice <strong>top</strong> atributo para especificar el desplazamiento "
1792
+ #~ "superior (distancia forman la parte superior de la pantalla) de la "
1793
+ #~ "interfaz Uso compartido Social."
1794
+
1795
+ #, fuzzy
1796
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be shared"
1797
+ #~ msgstr ""
1798
+ #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
1799
+ #~ "compartido sociales prestados"
1800
+
1801
+ #~ msgid ""
1802
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1803
+ #~ "shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]"
1804
+ #~ "</strong>, so the final code looks like following"
1805
+ #~ msgstr ""
1806
+ #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
1807
+ #~ "corto requerido como <strong>[TheChamp-Sharing style=\"background-color: "
1808
+ #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
1809
+
1810
+ #~ msgid ""
1811
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1812
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1813
+ #~ "Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - "
1814
+ #~ "Sharing (Vertical Floating Widget)</strong> widgets in the required area."
1815
+ #~ msgstr ""
1816
+ #~ "Usted puede navegar a la <strong>Apariencia</ strong >> <strong> "
1817
+ #~ "Reproductores </ strong> en el platillo izquierdo y arrastre <strong> "
1818
+ #~ "Súper Socializer - Sharing (Horizontal Widget) </ strong> y <strong> "
1819
+ #~ "Súper Socializer - Sharing (Vertical Floating Widget) </ strong> widgets "
1820
+ #~ "en el área requerida."
1821
+
1822
+ #~ msgid ""
1823
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option "
1824
+ #~ "and enable \"Show share counts\" option"
1825
+ #~ msgstr ""
1826
+ #~ "Elija la opción \"Url de la página principal de su sitio web \" en la "
1827
+ #~ "opción \"Target Url \" y permitir \"cuenta Share \""
1828
+
1829
+ #, fuzzy
1830
+ #~ msgid ""
1831
+ #~ "After enabling this option, Facebook commenting will appear before "
1832
+ #~ "Wordpress comment form at your website"
1833
+ #~ msgstr ""
1834
+ #~ "Después de habilitar esta opción, Comentarios Facebook aparecerá en lugar "
1835
+ #~ "del formulario de comentarios de Wordpress en su sitio web."
1836
+
1837
+ #~ msgid "Keep only Facebook Commenting"
1838
+ #~ msgstr "Consérvese únicamente Facebook Comentando"
1839
+
1840
+ #, fuzzy
1841
+ #~ msgid ""
1842
+ #~ "If enabled, only Facebook commenting would be visible without default "
1843
+ #~ "comment form"
1844
+ #~ msgstr ""
1845
+ #~ "Si está habilitado, sólo Facebook comentando estarán allí sin la opción "
1846
+ #~ "de cambiar a WordPress comentar"
1847
+
1848
+ #~ msgid ""
1849
+ #~ "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the "
1850
+ #~ "content of required page/post where you want to display Facebook "
1851
+ #~ "Commenting interface."
1852
+ #~ msgstr ""
1853
+ #~ "Usted puede utilizar <strong> [TheChamp-FB-Comments] </strong> Código "
1854
+ #~ "corto en el contenido de la página requerida/post en el que desea mostrar "
1855
+ #~ "la interfaz Uso compartido Social."
1856
+
1857
+ #, fuzzy
1858
+ #~ msgid ""
1859
+ #~ "Use <strong>style</strong> attribute to style the rendered commenting "
1860
+ #~ "interface"
1861
+ #~ msgstr ""
1862
+ #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
1863
+ #~ "compartido sociales prestados"
1864
+
1865
+ #~ msgid ""
1866
+ #~ "Use <strong>url</strong> attribute to specify the target url for "
1867
+ #~ "comments. This defaults to the page where shortcode is used."
1868
+ #~ msgstr ""
1869
+ #~ "Uso <strong> url</strong> atributo para especificar el desplazamiento "
1870
+ #~ "izquierda (distancia formar el lado izquierdo de la pantalla) de interfaz "
1871
+ #~ "de uso compartido Social."
1872
+
1873
+ #, fuzzy
1874
+ #~ msgid ""
1875
+ #~ "Use <strong>num_posts</strong> attribute to specify the number of "
1876
+ #~ "comments to display."
1877
+ #~ msgstr ""
1878
+ #~ "Utilice <strong>style</ strong> atributo de estilo de la interfaz Uso "
1879
+ #~ "compartido sociales prestados"
1880
+
1881
+ #, fuzzy
1882
+ #~ msgid "width"
1883
+ #~ msgstr "Ancho"
1884
+
1885
+ #, fuzzy
1886
+ #~ msgid ""
1887
+ #~ "Use <strong>width</strong> attribute to specify the width of commenting "
1888
+ #~ "interface. Omit it for fluid width"
1889
+ #~ msgstr ""
1890
+ #~ "Utilice <strong>top</strong> atributo para especificar el desplazamiento "
1891
+ #~ "superior (distancia forman la parte superior de la pantalla) de la "
1892
+ #~ "interfaz Uso compartido Social."
1893
+
1894
+ #, fuzzy
1895
+ #~ msgid ""
1896
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1897
+ #~ "shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:"
1898
+ #~ "#000;\"]</strong>, so the final code looks like following"
1899
+ #~ msgstr ""
1900
+ #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
1901
+ #~ "corto requerido como <strong>[TheChamp-Login style=\"background-color: "
1902
+ #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
1903
+
1904
+ #~ msgid ""
1905
+ #~ "Edit that page/post and check the option \"Disable Facebook Comments on "
1906
+ #~ "this post/page\" at the bottom in \"Super Socializer\" section"
1907
+ #~ msgstr ""
1908
+ #~ "Editar esta página/post y marque la opción \"Desactivar Comentarios "
1909
+ #~ "Facebook en este post/página \" en la parte inferior en section \"Super "
1910
+ #~ "Socializer\""
1911
+
1912
+ #~ msgid ""
1913
+ #~ "How to enable only Facebook Comments without enabling default comment "
1914
+ #~ "form?"
1915
+ #~ msgstr ""
1916
+ #~ "Cómo habilitar sólo comentarios de Facebook sin permitir formulario de "
1917
+ #~ "comentarios por defecto?"
1918
+
1919
+ #~ msgid ""
1920
+ #~ "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting"
1921
+ #~ "\" section."
1922
+ #~ msgstr ""
1923
+ #~ "Habilitar \"Consérvese únicamente Facebook Comentando\" opción en "
1924
+ #~ "section \"Facebook Comentando\"."
1925
+
1926
+ #~ msgid ""
1927
+ #~ "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of "
1928
+ #~ "required page/post where you want to display Social Login interface."
1929
+ #~ msgstr ""
1930
+ #~ "Utilice <strong> [TheChamp-Login] </ strong> Código corto en el contenido "
1931
+ #~ "de la página requerida / post en la que desea mostrar la interfaz Login "
1932
+ #~ "Social."
1933
+
1934
+ #, fuzzy
1935
+ #~ msgid ""
1936
+ #~ "You can use \"style\" attribute in the Shortcode to style the rendered "
1937
+ #~ "Social Login interface."
1938
+ #~ msgstr ""
1939
+ #~ "Usted puede utilizar el atributo \"style\" en el Código corto al estilo "
1940
+ #~ "de la interfaz Uso compartido sociales prestados."
1941
+
1942
+ #~ msgid ""
1943
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1944
+ #~ "shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</"
1945
+ #~ "strong>, so the final code looks like following"
1946
+ #~ msgstr ""
1947
+ #~ "Reemplace <strong>SHORTCODE</ strong> en el código anterior con el código "
1948
+ #~ "corto requerido como <strong>[TheChamp-Login style=\"background-color: "
1949
+ #~ "#000;\"]</ strong>, por lo que el código final se parece a siguiente"
1950
+
1951
+ #~ msgid ""
1952
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1953
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1954
+ #~ "Login</strong> widget in the required area."
1955
+ #~ msgstr ""
1956
+ #~ "Usted puede navegar a la Apariencia <strong> </ strong >> <strong> "
1957
+ #~ "Reproductores </ strong> en el platillo izquierdo y arrastre <strong> "
1958
+ #~ "Súper Socializer - Login </ strong> de widget en el área requerida."
1959
+
1960
  #~ msgid ""
1961
  #~ "Remove the plugin credit links (\"Super Socializer by The Champ\") in "
1962
  #~ "just $15. Interested? Email me: <a href=\"mailto:lordofthechamps@gmail.com"
2116
  #~ msgid "Load first"
2117
  #~ msgstr "Cargue primero"
2118
 
 
 
 
 
2119
  #~ msgid "Selected commenting will be loaded first on the page"
2120
  #~ msgstr "Comentando seleccionado se cargará primero en la página de"
2121
 
2157
  #~ msgid "Facebook Comments"
2158
  #~ msgstr "Comentarios Facebook"
2159
 
 
 
 
2160
  #~ msgid ""
2161
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
2162
  #~ "><strong>Note: Social Login at comment form of your website will not get "
languages/Super-Socializer-fr_FR.mo CHANGED
Binary file
languages/Super-Socializer-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-21 05:49+0530\n"
6
- "PO-Revision-Date: 2015-04-21 05:49+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: fr\n"
@@ -25,36 +25,40 @@ msgstr "Entrez exactement l'URL suivante dans <strong>Website</ strong> et <stro
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Assurez-vous que cURL est activé sur votre serveur de site. Vous pouvez avoir besoin de contacter l'administrateur du serveur de votre site Web pour vérifier cette"
27
 
28
- #: ../super_socializer.php:348
29
  msgid "Please verify your email address to login."
30
  msgstr "Merci de vérifier votre adresse mail afin de vous connecter."
31
 
32
- #: ../super_socializer.php:348
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Votre adresse mail a été confirmé ! Vous pouvez vous connecter à votre compte desormais."
35
 
36
- #: ../super_socializer.php:352
37
  msgid "Notification"
38
  msgstr "Notification"
39
 
40
- #: ../super_socializer.php:371
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "E-mail nécessaire"
44
 
45
- #: ../super_socializer.php:374
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Merci de verifier votre boîte mail afin de finaliser votre création de compte."
48
 
49
- #: ../super_socializer.php:387
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Suivez les étapes 11 et 12 au GooglePlus page de configuration de l'application, sur le point d'ouvrir"
52
 
53
- #: ../super_socializer.php:547
 
 
 
 
54
  msgid "Email you entered is already registered or invalid"
55
  msgstr "Envoyer vous avez entré est déjà enregistré ou non valide"
56
 
57
- #: ../super_socializer.php:551
58
  msgid "Please enter a valid email address. You might be required to verify it"
59
  msgstr "Se il vous plaît entrer une adresse email valide. Vous pouvez être amené à vérifier"
60
 
@@ -70,73 +74,75 @@ msgstr "Cliquez pour afficher l'aide"
70
  msgid "Click to hide help"
71
  msgstr "Cliquez sur pour cacher l'aide"
72
 
73
- #: ../helper.php:174
74
  msgid "Settings"
75
  msgstr "Paramètres"
76
 
77
- #: ../helper.php:466
78
  #, fuzzy
79
  msgid "Account linked successfully"
80
  msgstr "Paramètres enregistrées avec succès"
81
 
82
- #: ../helper.php:472
83
  msgid "Account already exists or linked"
84
  msgstr "Compte existe déjà ou liée"
85
 
86
- #: ../helper.php:483
87
  #, fuzzy
88
  msgid "You are already connected with"
89
  msgstr "Vous êtes prêt à Socialiser votre site web."
90
 
91
- #: ../helper.php:483
92
  msgid "as primary social network"
93
  msgstr "comme réseau social primaire"
94
 
95
- #: ../helper.php:500
96
  msgid "Link your social account to login to your account at this website"
97
  msgstr "Lier votre compte sociale pour vous connecter à votre compte à ce site"
98
 
99
- #: ../helper.php:545
100
  msgid "Currently"
101
  msgstr "actuellement"
102
 
103
- #: ../helper.php:545
104
  msgid "Remove"
105
  msgstr "supprimer"
106
 
107
- #: ../helper.php:636
108
  msgid "Disable Horizontal Social Sharing on this "
109
  msgstr "Désactiver les boutons de partage horizontaux sur cette page"
110
 
111
- #: ../helper.php:641
112
  msgid "Disable Vertical Social Sharing on this "
113
  msgstr "Désactiver les boutons de partage verticaux sur cette page"
114
 
115
- #: ../helper.php:646
116
- msgid "Disable Horizontal Social Counter on this "
 
117
  msgstr "Désactiver le compteur social horizontal sur cette page"
118
 
119
- #: ../helper.php:651
120
- msgid "Disable Vertical Social Counter on this "
 
121
  msgstr "Désactiver le compteur social vertical sur cette page"
122
 
123
- #: ../helper.php:656
124
  #, fuzzy
125
- msgid "Disable Facebook Comments on this "
126
  msgstr "Activer les commentaires Facebook"
127
 
128
- #: ../helper.php:665
129
  #, fuzzy
130
  msgid "Horizontal sharing"
131
  msgstr "Alignement horizontal"
132
 
133
- #: ../helper.php:671
134
- #: ../helper.php:690
135
  #, fuzzy
136
  msgid "Starting share count for "
137
  msgstr "Afficher le compteur des partages"
138
 
139
- #: ../helper.php:684
140
  #, fuzzy
141
  msgid "Vertical sharing"
142
  msgstr "Partage social"
@@ -154,994 +160,809 @@ msgid "by"
154
  msgstr "pour"
155
 
156
  #: ../admin/help.php:7
157
- msgid "I am a tech enthusiast. I like to play with code and build great stuff (and like to call myself - The Champ....:) ). You can connect with me (and my upcoming work) via:"
158
- msgstr "Je suis une enthusiaste de la technologie. J'aime jouer avec du code et créér des choses sympas (et j'aime m'appeler \"The Champ\"; le champion). Vous pouvez me suivre et être tenu au courant de mes derniers travaux sur :"
159
 
160
- #: ../admin/help.php:18
161
  msgid "Plugin Demo"
162
  msgstr "Demonstration du plugin"
163
 
164
- #: ../admin/help.php:20
165
  msgid "You can see the plugin in action at following link"
166
  msgstr "Vous pouvez visualiser et tester le plugin ici"
167
 
168
- #: ../admin/help.php:26
169
  msgid "Support"
170
  msgstr "Aide"
171
 
172
- #: ../admin/help.php:28
173
- msgid "If you like my plugin or have any query, you can drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, like my <strong>Facebook</strong> pages and follow me at <strong>Twitter</strong>."
 
174
  msgstr "Si vous aimez mon plugin ou si vous avez des questions, vous pouvez m'envoyer un mail à <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, aimer ma page <strong>Facebook</strong> et me suivre sur <strong>Twitter</strong>."
175
 
176
- #: ../admin/help.php:30
 
177
  #: ../admin/help.php:33
178
  #: ../admin/help.php:34
179
  #: ../admin/help.php:35
180
  #: ../admin/help.php:36
181
- #: ../admin/help.php:37
182
  msgid "Rate 5-star"
183
  msgstr "Avis 5 étoiles"
184
 
185
- #: ../admin/help.php:45
186
- msgid "Plugin Fan Page"
187
- msgstr "Page pour les Fans du plugin"
188
-
189
- #: ../admin/help.php:54
190
- msgid "My Fan Page"
191
- msgstr "Ma page perso"
192
 
193
- #: ../admin/help.php:73
194
  msgid "Want plugin customization?"
195
  msgstr "Vous voulez un plugin personnalisé ?"
196
 
197
- #: ../admin/help.php:75
198
- msgid "If you want custom features in the plugin, I can do it for you. Just drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>"
 
199
  msgstr "Si vous souhaitez avoir des fonctionnalités personnalisés dans ce plugin, je peux le faire. Envoyez-moi un mail à <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>."
200
 
201
- #: ../admin/social_counter.php:11
202
- #: ../admin/social_counter.php:20
203
- #: ../admin/social_sharing.php:14
204
- #: ../admin/social_sharing.php:24
205
  #: ../admin/social_login.php:9
206
  #: ../admin/social_login.php:17
 
 
207
  msgid "Basic Configuration"
208
  msgstr "Configuration basique"
209
 
210
- #: ../admin/social_counter.php:12
211
- msgid "Social Counter"
212
- msgstr "Compteur Social"
 
213
 
214
- #: ../admin/social_counter.php:13
215
- #: ../admin/social_sharing.php:16
 
 
 
 
 
 
216
  #: ../admin/social_login.php:11
 
 
 
 
217
  msgid "Shortcode & Widget"
218
  msgstr "Widgets et shortcodes"
219
 
220
- #: ../admin/social_counter.php:14
221
- #: ../admin/social_sharing.php:18
 
 
 
 
222
  #: ../admin/social_commenting.php:12
 
223
  msgid "FAQ"
224
  msgstr "FAQ"
225
 
226
- #: ../admin/social_counter.php:26
227
- msgid "Enable Social Counter"
228
- msgstr "Activer le Compteur Social"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
 
230
- #: ../admin/social_counter.php:36
231
- msgid "Master control for Social Counter. It must be checked to enable Social Counter functionality"
232
- msgstr "Control maître pour le Compteur Social. Il doit être coché pour active cette fonctionnalité"
 
233
 
234
- #: ../admin/social_counter.php:50
235
- msgid "<strong>Note:</strong> To disable counter on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
236
- msgstr "<strong> NB: </ strong> Afin de désactiver le compteur sur une page/publication particulière, modifies la page ou publication en question et changez les paramètres dans la partie <strong > \"Super Socializer \" </ strong> en bas de la page."
 
237
 
238
- #: ../admin/social_counter.php:67
239
- #: ../admin/social_sharing.php:88
240
- msgid "bit.ly url shortener"
 
241
  msgstr "bit.ly raccourcisseur d'URL"
242
 
243
- #: ../admin/social_counter.php:73
244
- msgid "Enable bit.ly url shortener for tweet button"
245
- msgstr "Activer le raccourcisseur d'URL bit.ly"
246
 
247
- #: ../admin/social_counter.php:83
248
- #: ../admin/social_sharing.php:104
 
 
 
 
 
 
 
 
 
249
  msgid "Master control to enable bit.ly url shortening for sharing"
250
  msgstr "Control maître pour activer les URLs raccourcis par bit.ly, prêts à partager"
251
 
252
- #: ../admin/social_counter.php:91
253
- #: ../admin/social_sharing.php:112
254
  msgid "bit.ly username"
255
  msgstr "Psuedo bit.ly"
256
 
257
- #: ../admin/social_counter.php:101
258
- #: ../admin/social_sharing.php:122
259
  #, php-format
260
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
261
  msgstr "Connectez-vous à votre compte bit.ly et <a href=\"%s\" target=\"_blank\">rendez-vous ici</a> pour obtenir votre pseudo sur bit.ly"
262
 
263
- #: ../admin/social_counter.php:110
264
- #: ../admin/social_sharing.php:131
265
  msgid "bit.ly API Key"
266
  msgstr "Clé API bit.ly"
267
 
268
- #: ../admin/social_counter.php:120
269
- #: ../admin/social_sharing.php:141
270
  #, php-format
271
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
272
  msgstr "Connectez-vous à votre compte bit.ly et <a href=\"%s\" target=\"_blank\">rendez-vous ici</a> pour obtenir votre clé API"
273
 
274
- #: ../admin/social_counter.php:130
275
- #: ../admin/social_counter.php:136
276
- #: ../admin/social_commenting.php:187
277
- msgid "Language"
278
- msgstr "Langue"
279
-
280
- #: ../admin/social_counter.php:146
281
- #, fuzzy, php-format
282
- msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
283
- msgstr "Définissez le langage de code que vous souhaitez utilizer dans les commentaires. Vous trouverez une liste <a href=\"%s\" target=\"_blank\">ici</ a>. Laissez vide pour l'anglais."
284
-
285
- #: ../admin/social_counter.php:155
286
- msgid "Twitter username in tweet button"
287
- msgstr "Psuedo Twitter à utiliser pour le bouton Twitter"
288
 
289
- #: ../admin/social_counter.php:161
290
- #: ../admin/social_sharing.php:157
291
  msgid "Twitter username (without @)"
292
  msgstr "Psuedo Twitter (sans @)"
293
 
294
- #: ../admin/social_counter.php:171
295
- msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
296
- msgstr "Le pseudo fourni sera rajouté à la fin du tweet en tant que \"via @PSUEDO\". Laissez ce champs vide si vous ne souhaitez pas d'y avoir de psuedo."
297
 
298
- #: ../admin/social_counter.php:181
299
- msgid "Horizontal Counter Interface Options"
300
- msgstr "Paramètres du compteur horizontal"
301
 
302
- #: ../admin/social_counter.php:187
303
- msgid "Enable horizontal counter interface"
304
- msgstr "Activer le compteur horizontal"
305
 
306
- #: ../admin/social_counter.php:197
307
- msgid "Master control to enable horizontal counter"
308
- msgstr "Control maître pour activer le compteur horizontal"
309
 
310
- #: ../admin/social_counter.php:207
311
- #: ../admin/social_counter.php:422
312
- #: ../admin/social_sharing.php:203
313
- #: ../admin/social_sharing.php:517
314
  msgid "Target Url"
315
  msgstr "Cible Url"
316
 
317
- #: ../admin/social_counter.php:211
318
- #: ../admin/social_counter.php:426
319
- #: ../admin/social_sharing.php:207
320
- #: ../admin/social_sharing.php:521
321
  msgid "Url of the webpage where icons are located (default)"
322
  msgstr "Url de la page Web où se trouvent les icônes (par défaut)"
323
 
324
- #: ../admin/social_counter.php:213
325
- #: ../admin/social_counter.php:428
326
- #: ../admin/social_sharing.php:209
327
- #: ../admin/social_sharing.php:523
328
  msgid "Url of the homepage of your website"
329
  msgstr "Url de la page d'accueil de votre site Web"
330
 
331
- #: ../admin/social_counter.php:215
332
- #: ../admin/social_counter.php:430
333
- #: ../admin/social_sharing.php:211
334
- #: ../admin/social_sharing.php:525
335
  #, fuzzy
336
  msgid "Custom url"
337
  msgstr "URL personnalisé"
338
 
339
- #: ../admin/social_counter.php:222
340
- #: ../admin/social_counter.php:437
341
- msgid "Url to like/share/tweet and display like/share/tweet counts"
342
- msgstr "Url à aimer/share/tweet et affichage aime/share/compte Tweet"
343
 
344
- #: ../admin/social_counter.php:230
345
- #: ../admin/social_sharing.php:226
346
  #: ../admin/social_login.php:314
 
347
  msgid "Title"
348
  msgstr "Titre"
349
 
350
- #: ../admin/social_counter.php:240
351
- msgid "The text to display above the counter interface"
352
- msgstr "La texte à afficher au-dessus du compteur"
353
-
354
- #: ../admin/social_counter.php:248
355
- #: ../admin/social_counter.php:445
356
- msgid "Select and rearrange providers"
357
- msgstr "Selectionner et repositionner les réseaux sociaux"
358
-
359
- #: ../admin/social_counter.php:292
360
- #: ../admin/social_counter.php:488
361
- msgid "Select the providers for counter interface. Drag them to rearrange."
362
- msgstr "Selectionnez les réseaux sociaux à intégrer dans le compteur. Glissez-les pour les classer."
363
-
364
- #: ../admin/social_counter.php:300
365
- #: ../admin/social_counter.php:514
366
- #: ../admin/social_sharing.php:376
367
- #: ../admin/social_sharing.php:690
368
- msgid "Horizontal alignment"
369
- msgstr "Alignement horizontal"
370
-
371
- #: ../admin/social_counter.php:304
372
- #: ../admin/social_counter.php:518
373
- #: ../admin/social_sharing.php:380
374
- #: ../admin/social_sharing.php:694
375
- msgid "Left"
376
- msgstr "Gauche"
377
-
378
- #: ../admin/social_counter.php:305
379
- #: ../admin/social_sharing.php:381
380
- msgid "Center"
381
- msgstr "centre"
382
-
383
- #: ../admin/social_counter.php:306
384
- #: ../admin/social_counter.php:519
385
- #: ../admin/social_sharing.php:382
386
- #: ../admin/social_sharing.php:695
387
- msgid "Right"
388
- msgstr "Droite"
389
-
390
- #: ../admin/social_counter.php:314
391
- #: ../admin/social_counter.php:527
392
- msgid "Horizontal alignment of the counter interface"
393
- msgstr "Alignement horizontal du compteur"
394
-
395
- #: ../admin/social_counter.php:322
396
  #: ../admin/social_sharing.php:398
397
- msgid "Position with respect to content"
398
- msgstr "Position par rapport au contenu"
399
-
400
- #: ../admin/social_counter.php:326
401
- #: ../admin/social_sharing.php:402
402
- msgid "Top of the content"
403
- msgstr "Au-dessus du contenu"
404
-
405
- #: ../admin/social_counter.php:328
406
- #: ../admin/social_sharing.php:404
407
- msgid "Bottom of the content"
408
- msgstr "En-dessous du contenu"
409
-
410
- #: ../admin/social_counter.php:335
411
- msgid "Specify position of the counter interface with respect to the content"
412
- msgstr "Définir la position du compteur par rapport au contenu de la page"
413
-
414
- #: ../admin/social_counter.php:343
415
- #: ../admin/social_counter.php:593
416
- msgid "Counter location"
417
- msgstr "Position du compteur"
418
-
419
- #: ../admin/social_counter.php:347
420
- #: ../admin/social_counter.php:597
421
- #: ../admin/social_sharing.php:423
422
- #: ../admin/social_sharing.php:773
423
- #: ../admin/social_login.php:514
424
- #: ../admin/social_login.php:544
425
- msgid "Homepage"
426
- msgstr "Page d'accueil"
427
-
428
- #: ../admin/social_counter.php:349
429
- #: ../admin/social_counter.php:599
430
- #: ../admin/social_sharing.php:425
431
- #: ../admin/social_sharing.php:775
432
- msgid "Posts"
433
- msgstr "Publications"
434
-
435
- #: ../admin/social_counter.php:351
436
- #: ../admin/social_counter.php:601
437
- #: ../admin/social_sharing.php:427
438
- #: ../admin/social_sharing.php:777
439
- msgid "Pages"
440
- msgstr "Pages"
441
-
442
- #: ../admin/social_counter.php:353
443
- #: ../admin/social_counter.php:603
444
- #: ../admin/social_sharing.php:429
445
- #: ../admin/social_sharing.php:779
446
- msgid "Excerpts"
447
- msgstr "Extraits"
448
-
449
- #: ../admin/social_counter.php:355
450
- #: ../admin/social_counter.php:605
451
- #: ../admin/social_sharing.php:431
452
- #: ../admin/social_sharing.php:781
453
- msgid "Category Archives"
454
- msgstr "Archives des catégories"
455
-
456
- #: ../admin/social_counter.php:357
457
- #: ../admin/social_counter.php:607
458
- #: ../admin/social_sharing.php:433
459
- #: ../admin/social_sharing.php:783
460
- msgid "Archive Pages (Category, Tag, Author or Date based pages)"
461
- msgstr "Archive Pages (Catégorie, Tag, auteur ou date basée pages)"
462
-
463
- #: ../admin/social_counter.php:363
464
- #: ../admin/social_sharing.php:439
465
- msgid "BuddyPress activity and groups"
466
- msgstr ""
467
-
468
- #: ../admin/social_counter.php:370
469
- #: ../admin/social_counter.php:613
470
- #: ../admin/social_sharing.php:446
471
- #: ../admin/social_sharing.php:789
472
- msgid "BBPress forum"
473
- msgstr ""
474
-
475
- #: ../admin/social_counter.php:373
476
- #: ../admin/social_counter.php:616
477
- #: ../admin/social_sharing.php:449
478
- #: ../admin/social_sharing.php:792
479
- msgid "BBPress topic"
480
- msgstr ""
481
-
482
- #: ../admin/social_counter.php:376
483
- #: ../admin/social_sharing.php:452
484
- msgid "BBPress reply"
485
- msgstr ""
486
-
487
- #: ../admin/social_counter.php:386
488
- msgid "Specify the pages where you want to enable counter interface"
489
- msgstr "Enumérer les pages où vous souhaitez afficher le compteur "
490
-
491
- #: ../admin/social_counter.php:396
492
- msgid "Vertical (Floating) counter interface Options"
493
- msgstr "Paramètres du compteur vertical (flotant)"
494
-
495
- #: ../admin/social_counter.php:402
496
- msgid "Enable vertical (floating) counter interface"
497
- msgstr "Activer le compteur vertical (flotant)"
498
-
499
- #: ../admin/social_counter.php:412
500
- msgid "Master control to enable vertical (floating) counter widget"
501
- msgstr "Control maître pour activer le compteur vertical (flotant)"
502
-
503
- #: ../admin/social_counter.php:496
504
- #: ../admin/social_sharing.php:672
505
- msgid "Background Color"
506
- msgstr "Couleur de fond"
507
-
508
- #: ../admin/social_counter.php:506
509
- msgid "Specify the color or hex code (example #cc78e0) for the background of vertical counter bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
510
- msgstr "Définir le code HEX de la couleur voulue (exemple #cc78e0) pour le fond du compteur vertical. Laisser vide pour la transparence. Vous pouvez obténir un code HEX pour n'importe quelle couleur <a href=\"http://www.colorpicker.com/\" target=\"_blank\">ici</a>"
511
-
512
- #: ../admin/social_counter.php:536
513
- #: ../admin/social_sharing.php:712
514
- msgid "Left offset"
515
- msgstr "Marge à gauche"
516
-
517
- #: ../admin/social_counter.php:546
518
- msgid "Specify a number. Increase in number will shift counter interface towards right and decrease will shift it towards left."
519
- msgstr "La distance en pixels. Une augmentation du chiffre positionnera le compteur plus à droite, une baisse le ramenera à gauche."
520
-
521
- #: ../admin/social_counter.php:556
522
- #: ../admin/social_sharing.php:732
523
- msgid "Right offset"
524
- msgstr "Marge à droite"
525
-
526
- #: ../admin/social_counter.php:566
527
- msgid "Specify a number. Increase in number will shift counter interface towards left and decrease will shift it towards right."
528
- msgstr "La distance en pixels. Une augmentation du chiffre positionnera le compteur plus à gauche, une baisse le ramenera à droite."
529
-
530
- #: ../admin/social_counter.php:575
531
- #: ../admin/social_sharing.php:751
532
- msgid "Top offset"
533
- msgstr "Marge au-dessus"
534
-
535
- #: ../admin/social_counter.php:585
536
- msgid "Specify a number. Increase in number will shift counter interface towards bottom and decrease will shift it towards top."
537
- msgstr "La distance en pixels. Une augmentation du chiffre décalera le compteur vers le bas, une baisse le ramenera vers le haut."
538
-
539
- #: ../admin/social_counter.php:626
540
- msgid "Specify the pages where you want to enable vertical counter interface"
541
- msgstr "Enumérer les pages où vous souhaitez afficher le compteur vertical"
542
-
543
- #: ../admin/social_counter.php:642
544
- #: ../admin/social_sharing.php:837
545
- #: ../admin/social_commenting.php:11
546
- #: ../admin/social_commenting.php:211
547
- #: ../admin/social_login.php:654
548
- msgid "Shortcode"
549
- msgstr "Shortcode"
550
-
551
- #: ../admin/social_counter.php:644
552
- msgid "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content of required page/post where you want to display Social Counter interface."
553
- msgstr "Vous pouvez utiliser le shortcode <strong> [TheChamp-Counter] </strong> dans le contenu d'une page ou publication si vous voulez y afficher les boutons de partage."
554
-
555
- #: ../admin/social_counter.php:645
556
- #: ../admin/social_counter.php:650
557
- #: ../admin/social_counter.php:655
558
- #: ../admin/social_counter.php:660
559
- #: ../admin/social_counter.php:665
560
- #: ../admin/social_counter.php:669
561
- #: ../admin/social_sharing.php:840
562
- #: ../admin/social_sharing.php:845
563
- #: ../admin/social_sharing.php:850
564
- #: ../admin/social_sharing.php:855
565
- #: ../admin/social_sharing.php:860
566
- #: ../admin/social_sharing.php:865
567
- #: ../admin/social_sharing.php:869
568
- #: ../admin/social_commenting.php:214
569
- #: ../admin/social_commenting.php:219
570
- #: ../admin/social_commenting.php:224
571
- #: ../admin/social_commenting.php:229
572
- #: ../admin/social_commenting.php:234
573
- #: ../admin/social_login.php:657
574
- #: ../admin/social_login.php:660
575
- msgid "Example"
576
- msgstr "Exemple"
577
-
578
- #: ../admin/social_counter.php:647
579
- #: ../admin/social_sharing.php:842
580
- #: ../admin/social_commenting.php:216
581
- msgid "You can use following attributes in the Shortcode"
582
- msgstr "Vous pouvez utiliser les attributs suivants dans le shortcode"
583
-
584
- #: ../admin/social_counter.php:649
585
- msgid "Use <strong>style</strong> attribute to style the rendered Social Counter interface"
586
- msgstr "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les boutons de partage."
587
-
588
- #: ../admin/social_counter.php:654
589
- #, fuzzy
590
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Counter interface. Default type is \"horizontal\"."
591
- msgstr "Utilisez l'attribut \"<strong>type</ strong>\" afin de définir le type (\"horizontal \" o \"vertical \") de Compteur Social à afficher. Par défaut, celui-ci est \"horizontal \"."
592
-
593
- #: ../admin/social_counter.php:658
594
- msgid "Left (Works with \"Vertical\" type interface only)"
595
- msgstr "Left (\"gauche\", ne fonctionne qu'avec l'interface vertical)"
596
-
597
- #: ../admin/social_counter.php:659
598
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Counter interface."
599
- msgstr "Utilisez l'attribut <strong>left</strong> afin de définir la distance entre le compteur et le côté gauche de l'écran."
600
-
601
- #: ../admin/social_counter.php:663
602
- msgid "Top (Works with \"Vertical\" type interface only)"
603
- msgstr "Top (\"haut\", ne fonctionne qu'avec l'interface vertical)"
604
-
605
- #: ../admin/social_counter.php:664
606
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Counter interface."
607
- msgstr "Utilisez l'attribut <strong>top</strong> afin de définir la distance entre le compteur et le côté gauche de l'écran."
608
-
609
- #: ../admin/social_counter.php:667
610
- #: ../admin/social_sharing.php:867
611
- msgid "url"
612
- msgstr ""
613
-
614
- #: ../admin/social_counter.php:668
615
- #, fuzzy
616
- msgid "Use <strong>url</strong> attribute to specify the url to be liked"
617
- msgstr "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les boutons de partage."
618
-
619
- #: ../admin/social_counter.php:671
620
- #: ../admin/social_sharing.php:871
621
- #: ../admin/social_commenting.php:236
622
- #: ../admin/social_login.php:662
623
- msgid "You can use shortcode in PHP file as following"
624
- msgstr "Vous pouvez utilizer le shortcode dans un fichier PHP comme ceci :"
625
-
626
- #: ../admin/social_counter.php:673
627
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]</strong>, so the final code looks like following"
628
- msgstr "Remplacez <strong>SHORTCODE</ strong> dans le code ci-dessus avec le code nécessaire, comme <strong>[TheChamp-Login style=\"background-color: #000;\"]</ strong>, pour que le résultat soit ainsi :"
629
-
630
- #: ../admin/social_counter.php:679
631
- #: ../admin/social_sharing.php:879
632
- #: ../admin/social_login.php:670
633
- msgid "Widget"
634
- msgstr "Widget"
635
-
636
- #: ../admin/social_counter.php:681
637
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Counter (Horizontal Widget)</strong> and <strong>Super Socializer - Counter (Vertical Floating Widget)</strong> widgets in the required area."
638
- msgstr "Vous pouvez aller à <strong>Apparence</ strong > > <strong>Widgets</ strong> dans la partie gauche de votre écran et glisser <strong> Super Socializer - Compteur (Widget Horizontal) </ strong> et <strong> Super Socializer - Compteur (Widget Vertical Flotant) </ strong> dans les zones que vous voulez."
639
-
640
- #: ../admin/social_counter.php:691
641
- #, fuzzy
642
- msgid "How can I show like counts of my website rather than of individual pages/posts?"
643
- msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
644
-
645
- #: ../admin/social_counter.php:695
646
- #, fuzzy
647
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
648
- msgstr "Choisissez l'option \"Url de la page d'accueil de votre site Web \" dans option \"URL cible \" et \"Afficher activer part compte \""
649
-
650
- #: ../admin/social_counter.php:702
651
- #, fuzzy
652
- msgid "How can I disable social counter on particular page/post?"
653
- msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
654
-
655
- #: ../admin/social_counter.php:706
656
- #: ../admin/social_sharing.php:925
657
- #: ../admin/social_sharing.php:938
658
- #, fuzzy
659
- msgid "Edit that page/post and check the options at the bottom in \"Super Socializer\" section"
660
- msgstr "Modifier cette page / poste et cochez l'option \"Désactiver Facebook Commentaires sur ce post / la page \" au bas de section \"super Socializer \""
661
-
662
- #: ../admin/social_counter.php:719
663
- #: ../admin/social_sharing.php:949
664
- #: ../admin/social_commenting.php:277
665
- #: ../admin/social_login.php:681
666
- msgid "Save Changes"
667
- msgstr "Sauvegarder"
668
-
669
- #: ../admin/social_sharing.php:15
670
- msgid "Social Sharing"
671
- msgstr "Partage social"
672
-
673
- #: ../admin/social_sharing.php:17
674
- msgid "Troubleshooter"
675
- msgstr "Résolution de problèmes"
676
-
677
- #: ../admin/social_sharing.php:30
678
- msgid "Enable Social Sharing"
679
- msgstr "Activer le partage social"
680
-
681
- #: ../admin/social_sharing.php:40
682
- msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
683
- msgstr "Control maître pour le partage social. Cela doit être active afin d'activer cette fonctionnalité."
684
-
685
- #: ../admin/social_sharing.php:48
686
- msgid "Delete all the options on plugin deletion"
687
- msgstr "Supprimer toutes les paramètres lors de la suppression du plugin"
688
-
689
- #: ../admin/social_sharing.php:58
690
- msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
691
- msgstr "Si activé, toutes les paramètres du plugin seront supprimées lors de sa suppression et vous devriez reconfigurer les paramètres si vous décidez de réinstaller le plugin."
692
-
693
- #: ../admin/social_sharing.php:72
694
- #, fuzzy
695
- msgid "<strong>Note:</strong> To disable sharing and specify minimum share counts per social network on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
696
- msgstr "<strong> NB: </ strong> Pour désactiver la partage sur une page ou publication particulière, modifiez la publication et cochez les cases correspondantes en bas de la page dans <strong > \"Super Socializer \" </ strong>"
697
-
698
- #: ../admin/social_sharing.php:94
699
- msgid "Enable bit.ly url shortener for sharing"
700
- msgstr "Activer le raccoursisseur d'URL bit.ly pour le partage des liens"
701
-
702
- #: ../admin/social_sharing.php:151
703
- msgid "Twitter username in sharing"
704
- msgstr "Psuedo Twitter dans le partage des liens"
705
-
706
- #: ../admin/social_sharing.php:167
707
- msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
708
- msgstr "Le pseudo défini sera rajouté à la fin du contenu du tweet en tant que \"via @PSUEDO\". Laissez vide si vous ne le souhaitez pas."
709
-
710
- #: ../admin/social_sharing.php:177
711
- msgid "Horizontal Sharing Interface Options"
712
- msgstr "Paramètres pour l'interface de partage horizontal"
713
-
714
- #: ../admin/social_sharing.php:183
715
- msgid "Enable horizontal sharing interface"
716
- msgstr "Activer le partage horizontal"
717
-
718
- #: ../admin/social_sharing.php:193
719
- msgid "Master control to enable horizontal sharing"
720
- msgstr "Control maître pour activer le partage horizontal"
721
-
722
- #: ../admin/social_sharing.php:218
723
- #: ../admin/social_sharing.php:532
724
- msgid "Url to share"
725
- msgstr "URL pour partager"
726
-
727
- #: ../admin/social_sharing.php:236
728
  msgid "The text to display above the sharing interface"
729
  msgstr "Le texte à afficher au-dessus des boutons de partage"
730
 
731
- #: ../admin/social_sharing.php:244
732
- #: ../admin/social_sharing.php:540
733
  #: ../admin/social_login.php:41
734
  msgid "Select providers"
735
  msgstr "Selectionner les réseaux sociaux"
736
 
737
- #: ../admin/social_sharing.php:249
738
- #: ../admin/social_sharing.php:545
739
- #: ../admin/social_login.php:46
740
- msgid "Facebook"
741
- msgstr "Facebook"
742
-
743
- #: ../admin/social_sharing.php:254
744
- #: ../admin/social_sharing.php:550
745
  #: ../admin/social_login.php:50
746
  msgid "Twitter"
747
  msgstr "Twitter"
748
 
749
- #: ../admin/social_sharing.php:259
750
- #: ../admin/social_sharing.php:555
751
  #: ../admin/social_login.php:54
752
  msgid "LinkedIn"
753
  msgstr "LinkedIn"
754
 
755
- #: ../admin/social_sharing.php:264
756
- #: ../admin/social_sharing.php:560
757
  #: ../admin/social_login.php:58
758
  msgid "Google+"
759
  msgstr "Google+"
760
 
761
- #: ../admin/social_sharing.php:269
762
- #: ../admin/social_sharing.php:565
763
  msgid "Print"
764
  msgstr "Imprimer"
765
 
766
- #: ../admin/social_sharing.php:274
767
- #: ../admin/social_sharing.php:570
768
  msgid "Email"
769
  msgstr "E-mail"
770
 
771
- #: ../admin/social_sharing.php:279
772
- #: ../admin/social_sharing.php:575
773
  msgid "Yahoo"
774
  msgstr "Yahoo!"
775
 
776
- #: ../admin/social_sharing.php:284
777
- #: ../admin/social_sharing.php:580
778
  msgid "Reddit"
779
  msgstr "Reddit"
780
 
781
- #: ../admin/social_sharing.php:289
782
- #: ../admin/social_sharing.php:585
783
  msgid "Digg"
784
  msgstr "Digg"
785
 
786
- #: ../admin/social_sharing.php:294
787
- #: ../admin/social_sharing.php:590
788
  msgid "Delicious"
789
  msgstr "Delicious"
790
 
791
- #: ../admin/social_sharing.php:299
792
- #: ../admin/social_sharing.php:595
793
  msgid "StumbleUpon"
794
  msgstr "StumbleUpon"
795
 
796
- #: ../admin/social_sharing.php:304
797
- #: ../admin/social_sharing.php:600
798
  msgid "Float it"
799
  msgstr "Float it"
800
 
801
- #: ../admin/social_sharing.php:309
802
- #: ../admin/social_sharing.php:605
803
  msgid "Tumblr"
804
  msgstr "Tumblr"
805
 
806
- #: ../admin/social_sharing.php:314
807
- #: ../admin/social_sharing.php:610
808
  #: ../admin/social_login.php:62
809
  msgid "Vkontakte"
810
  msgstr "Vkontakte"
811
 
812
- #: ../admin/social_sharing.php:319
813
- #: ../admin/social_sharing.php:615
814
  msgid "Pinterest"
815
  msgstr "Pinterest"
816
 
817
- #: ../admin/social_sharing.php:324
818
- #: ../admin/social_sharing.php:620
819
  #: ../admin/social_login.php:70
820
  msgid "Xing"
821
  msgstr ""
822
 
823
- #: ../admin/social_sharing.php:329
824
- #: ../admin/social_sharing.php:625
825
  msgid "Whatsapp"
826
  msgstr ""
827
 
828
- #: ../admin/social_sharing.php:337
829
- #: ../admin/social_sharing.php:633
830
  msgid "Select the providers for sharing interface"
831
  msgstr "Selectionner les réseaux sociaux à inclure"
832
 
833
- #: ../admin/social_sharing.php:345
834
- #: ../admin/social_sharing.php:641
835
  msgid "Rearrange icons"
836
  msgstr "Repositionner les icônes"
837
 
838
- #: ../admin/social_sharing.php:368
839
- #: ../admin/social_sharing.php:664
840
  msgid "Drag the icons to rearrange in desired order"
841
  msgstr "Faites glisser les icônes afin de les repositionner à votre gout."
842
 
843
- #: ../admin/social_sharing.php:390
844
- #: ../admin/social_sharing.php:703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
845
  msgid "Horizontal alignment of the sharing interface"
846
  msgstr "Alignement horizontal des boutons de partage"
847
 
848
- #: ../admin/social_sharing.php:411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  msgid "Specify position of the sharing interface with respect to the content"
850
  msgstr "Définir la position des boutons de partage par rapport au contenu de la page"
851
 
852
- #: ../admin/social_sharing.php:419
853
- #: ../admin/social_sharing.php:769
854
  msgid "Sharing location"
855
  msgstr "Position de partage"
856
 
857
- #: ../admin/social_sharing.php:462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
858
  msgid "Specify the pages where you want to enable Sharing interface"
859
  msgstr "Définir les pages où vous souhaitez activer les boutons partage"
860
 
861
- #: ../admin/social_sharing.php:470
862
- #: ../admin/social_sharing.php:810
863
  msgid "Show share counts"
864
  msgstr "Afficher le compteur des partages"
865
 
866
- #: ../admin/social_sharing.php:480
867
- #: ../admin/social_sharing.php:820
868
  msgid "If enabled, share counts are displayed above sharing icons."
869
  msgstr "Si cela est activé, le compte des partages sera affiché au-dessus des icônes."
870
 
871
- #: ../admin/social_sharing.php:491
 
 
 
 
 
 
 
 
 
 
 
872
  msgid "Vertical (Floating) Sharing Interface Options"
873
  msgstr "Paramètres pour les boutons de partage verticaux (flotants)"
874
 
875
- #: ../admin/social_sharing.php:497
876
  msgid "Enable vertical (floating) sharing interface"
877
  msgstr "Activer les boutons de partage verticaux (flotants)"
878
 
879
- #: ../admin/social_sharing.php:507
880
  msgid "Master control to enable vertical (floating) sharing widget"
881
  msgstr "Control maître pour les boutons de partage verticaux (flotants)"
882
 
883
- #: ../admin/social_sharing.php:682
 
 
 
 
 
884
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
885
  msgstr "Définir le code HEX de la couleur désiré (exemple #cc78e0) pour le fond des boutons verticaux. Laissez vide pour la transparence. Vous pouvez obtenir le code HEX de n'importe quelle couleur <a href=\"http://www.colorpicker.com/\" target=\"_blank\">ici</a>"
886
 
887
- #: ../admin/social_sharing.php:722
 
 
 
 
 
888
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
889
  msgstr "Définir la taille de la marge à gauche (en pixels)."
890
 
891
- #: ../admin/social_sharing.php:742
 
 
 
 
 
892
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
893
  msgstr "La distance en pixels. Une augmentation déplacera les boutons vers la gauche, et une baisse les déplacera vers la droite."
894
 
895
- #: ../admin/social_sharing.php:761
 
 
 
 
 
896
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
897
  msgstr "La distance en pixels. Une augmentation déplacera les boutons vers le bas, et une baisse les déplacera vers le haut."
898
 
899
- #: ../admin/social_sharing.php:802
900
  msgid "Specify the pages where you want to enable vertical Sharing interface"
901
  msgstr "Définir les page où vous souhaitez activer les boutons verticaux"
902
 
903
- #: ../admin/social_sharing.php:839
904
- msgid "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content of required page/post where you want to display Social Sharing interface."
905
- msgstr "Vous pouvez utiliser le shortcode <strong>[TheChamp-Sharing]</strong> dans le contenu d'une page/publication si vous souhaitez y afficher les boutons de partage."
906
-
907
- #: ../admin/social_sharing.php:844
908
- msgid "Use <strong>style</strong> attribute to style the rendered Social Sharing interface"
909
- msgstr "Utilisez l'attribut <strong>style</strong> afin de customizer les boutons."
910
-
911
- #: ../admin/social_sharing.php:849
912
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Sharing interface. Default type is \"horizontal\"."
913
- msgstr "Utilisez l'attribut <strong>type</ strong> afin de définir quel type de boutons à afficher (\"horizontal\" ou \"vertical\"). \"horizontal\" par défaut."
914
-
915
- #: ../admin/social_sharing.php:854
916
- #, fuzzy
917
- msgid "Use <strong>count</strong> attribute to enable the share counts on Social Sharing interface"
918
- msgstr "Utilisez l'attribut <strong>style</strong> afin de customizer les boutons."
919
-
920
- #: ../admin/social_sharing.php:858
921
- #, fuzzy
922
- msgid "left (Works with \"Vertical\" type interface only)"
923
- msgstr "Left (\"gauche\", ne fonctionne qu'avec l'interface vertical)"
924
-
925
- #: ../admin/social_sharing.php:859
926
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Sharing interface."
927
- msgstr "Utilisez l'attribut <strong>left</strong> afin de définir la marge à gauche des boutons."
928
-
929
- #: ../admin/social_sharing.php:863
930
- #, fuzzy
931
- msgid "top (Works with \"Vertical\" type interface only)"
932
- msgstr "Top (\"haut\", ne fonctionne qu'avec l'interface vertical)"
933
-
934
- #: ../admin/social_sharing.php:864
935
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Sharing interface."
936
- msgstr "Utilisez l'attribut <strong>top</strong> afin de définir la marge en haut des boutons."
937
-
938
- #: ../admin/social_sharing.php:868
939
- #, fuzzy
940
- msgid "Use <strong>url</strong> attribute to specify the url to be shared"
941
- msgstr "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les boutons de partage."
942
-
943
- #: ../admin/social_sharing.php:873
944
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]</strong>, so the final code looks like following"
945
- msgstr "Remplacez <strong>SHORTCODE</strong> dans le code ci-dessus avec le shortcode requis, par exemple <strong>[TheChamp-Sharing style=\"background-color:#000;\"]</strong>, pour que le résultat ressemble à ceci"
946
-
947
- #: ../admin/social_sharing.php:881
948
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - Sharing (Vertical Floating Widget)</strong> widgets in the required area."
949
- msgstr "Naviguez dans <strong>Apparence</strong> > <strong>Widgets</strong> à gauche et faites glisser le widget \"Super Socializer - Sharing (Horizontal Widget)\" ou \"Super Socializer - Sharing (Vertical Widget)\" dans le zone désiré."
950
-
951
- #: ../admin/social_sharing.php:891
952
  msgid "Facebook Sharing Troubleshooter"
953
  msgstr "Résoudre les problems Facebook"
954
 
955
- #: ../admin/social_sharing.php:896
956
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
957
  msgstr "Si le partage sur Facebook ne marche pas, cliquez sur le lien suivant et entrez le lien de la page ou le problème se produit."
958
 
959
- #: ../admin/social_sharing.php:910
960
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
961
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
962
 
963
- #: ../admin/social_sharing.php:914
964
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option and enable \"Show share counts\" option"
965
- msgstr "Choisissez l'option \"Url de la page d'accueil de votre site Web \" dans option \"URL cible \" et \"Afficher activer part compte \""
966
-
967
- #: ../admin/social_sharing.php:921
968
  #, fuzzy
969
  msgid "How can I disable sharing on particular page/post?"
970
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
971
 
972
- #: ../admin/social_sharing.php:934
973
  msgid "How can I specify minimum sharing count for sharing networks?"
974
  msgstr "Comment puis-je spécifier le nombre de partage minimum pour les réseaux de partage?"
975
 
 
 
 
 
 
 
 
976
  #: ../admin/social_commenting.php:10
977
- msgid "Facebook Commenting"
978
- msgstr "Commentaires Facebook"
 
 
 
 
 
 
 
979
 
980
  #: ../admin/social_commenting.php:18
981
  #: ../admin/social_commenting.php:24
982
- msgid "Enable Facebook Commenting"
983
- msgstr "Activer les commentaires Facebook"
984
-
985
  #: ../admin/social_commenting.php:34
 
986
  #, fuzzy
987
- msgid "After enabling this option, Facebook commenting will appear before Wordpress comment form at your website"
988
- msgstr "Après l'activation de cette fonctionnalité, les commentaires Facebook s'afficheront à la place des commentaires WordPress sur votre site"
989
 
990
- #: ../admin/social_commenting.php:44
991
- msgid "Facebook Commenting Options"
992
- msgstr "Paramètres des commentaires Facebook"
993
 
994
- #: ../admin/social_commenting.php:50
995
- msgid "Keep only Facebook Commenting"
996
- msgstr "Conserver seul les commentaires Facebook"
997
 
998
  #: ../admin/social_commenting.php:60
 
 
 
 
 
 
 
 
999
  #, fuzzy
1000
- msgid "If enabled, only Facebook commenting would be visible without default comment form"
1001
- msgstr "Une fois activé, seul les commentaires Facebook seront affichées, sans l'option de basculer sur les commentaires WordPress"
1002
 
1003
- #: ../admin/social_commenting.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1004
  msgid "Url to comment on"
1005
  msgstr "URL à commenter"
1006
 
1007
- #: ../admin/social_commenting.php:78
1008
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1009
  msgstr "L'URL absolu auquel les commentaires publiés seront associés de façon permanente. Les publications sur Facebook à propos des commentaires laissés sur votre site seront associés à ce lien. <br/>Si vous le laissez vide <strong>Recommandé</strong>, le lien de la page sera utilisé."
1010
 
1011
- #: ../admin/social_commenting.php:86
 
1012
  msgid "Width"
1013
  msgstr "Largeur"
1014
 
1015
- #: ../admin/social_commenting.php:96
1016
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1017
  msgstr "Laisser vide pour ajuster automatiquement la largeur. La largeur (en pixels) du bloc de commentaires."
1018
 
1019
- #: ../admin/social_commenting.php:104
1020
  msgid "Color Scheme"
1021
  msgstr "Schéma de couleurs"
1022
 
1023
- #: ../admin/social_commenting.php:108
1024
  msgid "Light"
1025
  msgstr "Clair"
1026
 
1027
- #: ../admin/social_commenting.php:109
1028
  msgid "Dark"
1029
  msgstr "Sombre"
1030
 
1031
- #: ../admin/social_commenting.php:117
1032
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1033
  msgstr "Le schema de couleurs utilisé par ce plugin. Peut être \"clair\" ou \"sombre\"."
1034
 
1035
- #: ../admin/social_commenting.php:125
1036
  #, fuzzy
1037
  msgid "Number of comments"
1038
  msgstr "Le nombre de publications"
1039
 
1040
- #: ../admin/social_commenting.php:135
1041
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1042
  msgstr "Le nombre de commentaires à afficher par défaut. Minimum de 1 commentaire. 10 par défaut."
1043
 
1044
- #: ../admin/social_commenting.php:143
1045
  msgid "Order by"
1046
  msgstr "Trier par"
1047
 
1048
- #: ../admin/social_commenting.php:147
1049
  msgid "Social"
1050
  msgstr "Social"
1051
 
1052
- #: ../admin/social_commenting.php:148
1053
  msgid "Reverse Time"
1054
  msgstr "Anachronique"
1055
 
1056
- #: ../admin/social_commenting.php:149
1057
  msgid "Time"
1058
  msgstr "Heure"
1059
 
1060
- #: ../admin/social_commenting.php:157
1061
  msgid "The order to use when displaying comments."
1062
  msgstr "L'ordre à utiliser lors de l'affiche des commentaires."
1063
 
1064
- #: ../admin/social_commenting.php:165
1065
  msgid "Mobile"
1066
  msgstr "Portable"
1067
 
1068
- #: ../admin/social_commenting.php:169
1069
  msgid "Auto Detect"
1070
  msgstr "Detecter automatiquement"
1071
 
1072
- #: ../admin/social_commenting.php:170
1073
  msgid "True"
1074
  msgstr "Vrai"
1075
 
1076
- #: ../admin/social_commenting.php:171
1077
  msgid "False"
1078
  msgstr "Faux"
1079
 
1080
- #: ../admin/social_commenting.php:179
1081
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
1082
  msgstr "Une valeur booléen qui définit si la version mobile s'affiche ou pas."
1083
 
1084
- #: ../admin/social_commenting.php:197
 
 
 
 
 
 
1085
  #, php-format
1086
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1087
- msgstr "Définissez le langage de code que vous souhaitez utilizer dans les commentaires. Vous trouverez une liste <a href=\"%s\" target=\"_blank\">ici</ a>. Laissez vide pour l'anglais."
1088
-
1089
- #: ../admin/social_commenting.php:213
1090
- #, fuzzy
1091
- msgid "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the content of required page/post where you want to display Facebook Commenting interface."
1092
- msgstr "Vous pouvez utiliser le shortcode <strong> [TheChamp-Counter] </strong> dans le contenu d'une page ou publication si vous voulez y afficher les boutons de partage."
1093
 
1094
- #: ../admin/social_commenting.php:218
1095
  #, fuzzy
1096
- msgid "Use <strong>style</strong> attribute to style the rendered commenting interface"
1097
- msgstr "Utilisez l'attribut <strong>style</strong> afin de customizer les boutons."
1098
 
1099
- #: ../admin/social_commenting.php:223
 
1100
  #, fuzzy
1101
- msgid "Use <strong>url</strong> attribute to specify the target url for comments. This defaults to the page where shortcode is used."
1102
- msgstr "Utilisez l'attribut <strong>left</strong> afin de définir la distance entre le compteur et le côté gauche de l'écran."
1103
 
1104
- #: ../admin/social_commenting.php:227
1105
- msgid "num_posts"
1106
- msgstr ""
1107
 
1108
- #: ../admin/social_commenting.php:228
1109
  #, fuzzy
1110
- msgid "Use <strong>num_posts</strong> attribute to specify the number of comments to display."
1111
- msgstr "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les boutons de partage."
1112
 
1113
- #: ../admin/social_commenting.php:232
1114
  #, fuzzy
1115
- msgid "width"
1116
- msgstr "Largeur"
1117
 
1118
- #: ../admin/social_commenting.php:233
 
1119
  #, fuzzy
1120
- msgid "Use <strong>width</strong> attribute to specify the width of commenting interface. Omit it for fluid width"
1121
- msgstr "Utilisez l'attribut <strong>top</strong> afin de définir la marge en haut des boutons."
1122
 
1123
- #: ../admin/social_commenting.php:238
1124
- #, fuzzy
1125
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1126
- msgstr "Remplacez <strong>SHORTCODE</ strong> dans le code ci-dessus avec le code nécessaire, comme <strong>[TheChamp-Login style=\"background-color: #000;\"]</ strong>, pour que le résultat soit ainsi :"
 
 
 
1127
 
1128
- #: ../admin/social_commenting.php:249
1129
  #, fuzzy
1130
- msgid "How can I disable FB comments at individual page/post?"
1131
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
1132
 
1133
- #: ../admin/social_commenting.php:253
1134
- msgid "Edit that page/post and check the option \"Disable Facebook Comments on this post/page\" at the bottom in \"Super Socializer\" section"
1135
- msgstr "Modifier cette page / poste et cochez l'option \"Désactiver Facebook Commentaires sur ce post / la page \" au bas de section \"super Socializer \""
1136
-
1137
- #: ../admin/social_commenting.php:262
1138
- msgid "How to enable only Facebook Comments without enabling default comment form?"
1139
- msgstr "Comment activer uniquement Commentaires Facebook sans permettant commentaire formulaire par défaut?"
1140
-
1141
- #: ../admin/social_commenting.php:266
1142
- msgid "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting\" section."
1143
- msgstr "Activer \"Conserver uniquement Facebook Commentant\" option section \"Facebook Commentant\"."
1144
-
1145
  #: ../admin/social_login.php:10
1146
  msgid "Social Login"
1147
  msgstr "Connection par les réseaux sociaux"
@@ -1447,20 +1268,9 @@ msgid "If enabled, email provided by the user will be verified by sending a conf
1447
  msgstr "Si cela est activé, l'adresse sera vérifié en envoyant un lien de confirmation à l'adresse. L'utilisateur ne pourra pas se connecter sans avoir confirmé son adresse e-mail."
1448
 
1449
  #: ../admin/social_login.php:656
1450
- msgid "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of required page/post where you want to display Social Login interface."
1451
- msgstr "Utilisez le shortcode <strong>[TheChamp-Login]</strong> dans le contenu de la page/publication où vous souhaitez faire apparaître le widget de connection par les réseaux sociaux."
1452
-
1453
- #: ../admin/social_login.php:659
1454
- msgid "You can use \"style\" attribute in the Shortcode to style the rendered Social Login interface."
1455
- msgstr "Vous pouvez utiliser l'attribut \"style\" dans le shortcode afin de customizer le login social."
1456
-
1457
- #: ../admin/social_login.php:664
1458
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1459
- msgstr "Remplacez <strong>SHORTCODE</strong> dans le code ci-dessus avec le code désiré, par exemple <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong> pour que le résultat ressemble à ceci"
1460
-
1461
- #: ../admin/social_login.php:672
1462
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Login</strong> widget in the required area."
1463
- msgstr "Naviguez dans <strong>Apparence</strong> > <strong>Widgets</strong> à gauche et faites glisser le widget \"Super Socializer - Login\" dans le zone désiré."
1464
 
1465
  #: ../admin/admin.php:8
1466
  msgid "Welcome"
@@ -1475,7 +1285,8 @@ msgid "Getting Started"
1475
  msgstr "Pour commencer"
1476
 
1477
  #: ../admin/admin.php:12
1478
- msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left pan. <strong>Social Sharing</strong> is enabled at your website by default."
 
1479
  msgstr "Commencez à changer les options dans les parties sous le menu <strong>Super Socializer</strong> à gauche. <strong>Partage social</strong> est active sur votre site par défaut."
1480
 
1481
  #: ../admin/admin.php:13
@@ -1494,14 +1305,145 @@ msgstr "Dans la section \"Partage Social\" vous pouvez selectionner les réseaux
1494
 
1495
  #: ../admin/admin.php:16
1496
  #, fuzzy
1497
- msgid "In <strong>Social Counter</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1498
  msgstr "Dans la section \"Partage Social\" vous pouvez selectionner les réseaux sociaux pour le partage et configurer les paramètres des boutons de partage."
1499
 
1500
- #: ../inc/social_sharing.php:492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1501
  msgid "Invalid request"
1502
  msgstr "Demande non-valable !"
1503
 
1504
- #: ../inc/social_sharing.php:499
1505
  msgid "Providers not selected"
1506
  msgstr "Réseaux sociaux non-selectionnés !"
1507
 
@@ -1599,6 +1541,386 @@ msgstr "Compteur horizontal. Permettez à vos utilisateurs de partager/\"aimer\"
1599
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1600
  msgstr "Compteur vertical. Permettez à vos utilisateurs de partager/\"aimer\" votre contenu facilement sur les réseaux sociaux comme Facebook, Twitter, Tumblr, Google+ et plus"
1601
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1602
  #~ msgid "White-Label"
1603
  #~ msgstr "Label-Blanche"
1604
 
@@ -1756,9 +2078,6 @@ msgstr "Compteur vertical. Permettez à vos utilisateurs de partager/\"aimer\" v
1756
  #~ msgid "Load first"
1757
  #~ msgstr "Charger en premier"
1758
 
1759
- #~ msgid "Default Commenting"
1760
- #~ msgstr "Commentaires par défaut"
1761
-
1762
  #~ msgid "Selected commenting will be loaded first on the page"
1763
  #~ msgstr ""
1764
  #~ "Le mode de commentaires selectionné sera celui qui sera chargé en premier"
@@ -1798,9 +2117,6 @@ msgstr "Compteur vertical. Permettez à vos utilisateurs de partager/\"aimer\" v
1798
  #~ msgid "Facebook Comments"
1799
  #~ msgstr "Comentarios Facebook"
1800
 
1801
- #~ msgid "WordPress Comments"
1802
- #~ msgstr "WordPress Comentarios"
1803
-
1804
  #~ msgid ""
1805
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
1806
  #~ "><strong>Note: Social Login at comment form of your website will not get "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-29 03:12+0530\n"
6
+ "PO-Revision-Date: 2015-05-29 03:14+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: fr\n"
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Assurez-vous que cURL est activé sur votre serveur de site. Vous pouvez avoir besoin de contacter l'administrateur du serveur de votre site Web pour vérifier cette"
27
 
28
+ #: ../super_socializer.php:349
29
  msgid "Please verify your email address to login."
30
  msgstr "Merci de vérifier votre adresse mail afin de vous connecter."
31
 
32
+ #: ../super_socializer.php:349
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Votre adresse mail a été confirmé ! Vous pouvez vous connecter à votre compte desormais."
35
 
36
+ #: ../super_socializer.php:353
37
  msgid "Notification"
38
  msgstr "Notification"
39
 
40
+ #: ../super_socializer.php:372
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "E-mail nécessaire"
44
 
45
+ #: ../super_socializer.php:375
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Merci de verifier votre boîte mail afin de finaliser votre création de compte."
48
 
49
+ #: ../super_socializer.php:388
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Suivez les étapes 11 et 12 au GooglePlus page de configuration de l'application, sur le point d'ouvrir"
52
 
53
+ #: ../super_socializer.php:463
54
+ msgid "Leave a reply"
55
+ msgstr ""
56
+
57
+ #: ../super_socializer.php:565
58
  msgid "Email you entered is already registered or invalid"
59
  msgstr "Envoyer vous avez entré est déjà enregistré ou non valide"
60
 
61
+ #: ../super_socializer.php:569
62
  msgid "Please enter a valid email address. You might be required to verify it"
63
  msgstr "Se il vous plaît entrer une adresse email valide. Vous pouvez être amené à vérifier"
64
 
74
  msgid "Click to hide help"
75
  msgstr "Cliquez sur pour cacher l'aide"
76
 
77
+ #: ../helper.php:175
78
  msgid "Settings"
79
  msgstr "Paramètres"
80
 
81
+ #: ../helper.php:492
82
  #, fuzzy
83
  msgid "Account linked successfully"
84
  msgstr "Paramètres enregistrées avec succès"
85
 
86
+ #: ../helper.php:498
87
  msgid "Account already exists or linked"
88
  msgstr "Compte existe déjà ou liée"
89
 
90
+ #: ../helper.php:509
91
  #, fuzzy
92
  msgid "You are already connected with"
93
  msgstr "Vous êtes prêt à Socialiser votre site web."
94
 
95
+ #: ../helper.php:509
96
  msgid "as primary social network"
97
  msgstr "comme réseau social primaire"
98
 
99
+ #: ../helper.php:526
100
  msgid "Link your social account to login to your account at this website"
101
  msgstr "Lier votre compte sociale pour vous connecter à votre compte à ce site"
102
 
103
+ #: ../helper.php:571
104
  msgid "Currently"
105
  msgstr "actuellement"
106
 
107
+ #: ../helper.php:571
108
  msgid "Remove"
109
  msgstr "supprimer"
110
 
111
+ #: ../helper.php:664
112
  msgid "Disable Horizontal Social Sharing on this "
113
  msgstr "Désactiver les boutons de partage horizontaux sur cette page"
114
 
115
+ #: ../helper.php:669
116
  msgid "Disable Vertical Social Sharing on this "
117
  msgstr "Désactiver les boutons de partage verticaux sur cette page"
118
 
119
+ #: ../helper.php:674
120
+ #, fuzzy
121
+ msgid "Disable Horizontal like buttons on this "
122
  msgstr "Désactiver le compteur social horizontal sur cette page"
123
 
124
+ #: ../helper.php:679
125
+ #, fuzzy
126
+ msgid "Disable Vertical like buttons on this "
127
  msgstr "Désactiver le compteur social vertical sur cette page"
128
 
129
+ #: ../helper.php:684
130
  #, fuzzy
131
+ msgid "Disable Social Commenting on this "
132
  msgstr "Activer les commentaires Facebook"
133
 
134
+ #: ../helper.php:693
135
  #, fuzzy
136
  msgid "Horizontal sharing"
137
  msgstr "Alignement horizontal"
138
 
139
+ #: ../helper.php:699
140
+ #: ../helper.php:718
141
  #, fuzzy
142
  msgid "Starting share count for "
143
  msgstr "Afficher le compteur des partages"
144
 
145
+ #: ../helper.php:712
146
  #, fuzzy
147
  msgid "Vertical sharing"
148
  msgstr "Partage social"
160
  msgstr "pour"
161
 
162
  #: ../admin/help.php:7
163
+ msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
164
+ msgstr ""
165
 
166
+ #: ../admin/help.php:17
167
  msgid "Plugin Demo"
168
  msgstr "Demonstration du plugin"
169
 
170
+ #: ../admin/help.php:19
171
  msgid "You can see the plugin in action at following link"
172
  msgstr "Vous pouvez visualiser et tester le plugin ici"
173
 
174
+ #: ../admin/help.php:25
175
  msgid "Support"
176
  msgstr "Aide"
177
 
178
+ #: ../admin/help.php:27
179
+ #, fuzzy
180
+ msgid "If you like the plugin or have any query, drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>, like our <strong>Facebook</strong> page and follow us at <strong>Twitter</strong>."
181
  msgstr "Si vous aimez mon plugin ou si vous avez des questions, vous pouvez m'envoyer un mail à <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, aimer ma page <strong>Facebook</strong> et me suivre sur <strong>Twitter</strong>."
182
 
183
+ #: ../admin/help.php:29
184
+ #: ../admin/help.php:32
185
  #: ../admin/help.php:33
186
  #: ../admin/help.php:34
187
  #: ../admin/help.php:35
188
  #: ../admin/help.php:36
 
189
  msgid "Rate 5-star"
190
  msgstr "Avis 5 étoiles"
191
 
192
+ #: ../admin/help.php:44
193
+ #: ../admin/social_sharing.php:411
194
+ #: ../admin/social_sharing.php:736
195
+ #: ../admin/social_login.php:46
196
+ msgid "Facebook"
197
+ msgstr "Facebook"
 
198
 
199
+ #: ../admin/help.php:63
200
  msgid "Want plugin customization?"
201
  msgstr "Vous voulez un plugin personnalisé ?"
202
 
203
+ #: ../admin/help.php:65
204
+ #, fuzzy
205
+ msgid "If you want custom features in the plugin, just drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>"
206
  msgstr "Si vous souhaitez avoir des fonctionnalités personnalisés dans ce plugin, je peux le faire. Envoyez-moi un mail à <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>."
207
 
208
+ #: ../admin/social_sharing.php:11
209
+ #: ../admin/social_sharing.php:22
 
 
210
  #: ../admin/social_login.php:9
211
  #: ../admin/social_login.php:17
212
+ #: ../admin/like_buttons.php:11
213
+ #: ../admin/like_buttons.php:19
214
  msgid "Basic Configuration"
215
  msgstr "Configuration basique"
216
 
217
+ #: ../admin/social_sharing.php:12
218
+ #, fuzzy
219
+ msgid "Sharing Interface"
220
+ msgstr "Paramètres pour l'interface de partage horizontal"
221
 
222
+ #: ../admin/social_sharing.php:13
223
+ #, fuzzy
224
+ msgid "Sharing Options"
225
+ msgstr "Position de partage"
226
+
227
+ #: ../admin/social_sharing.php:14
228
+ #: ../admin/social_sharing.php:1067
229
+ #: ../admin/social_sharing.php:1069
230
  #: ../admin/social_login.php:11
231
+ #: ../admin/social_login.php:654
232
+ #: ../admin/like_buttons.php:13
233
+ #: ../admin/like_buttons.php:644
234
+ #: ../admin/like_buttons.php:646
235
  msgid "Shortcode & Widget"
236
  msgstr "Widgets et shortcodes"
237
 
238
+ #: ../admin/social_sharing.php:15
239
+ msgid "Troubleshooter"
240
+ msgstr "Résolution de problèmes"
241
+
242
+ #: ../admin/social_sharing.php:16
243
+ #: ../admin/social_sharing.php:1098
244
  #: ../admin/social_commenting.php:12
245
+ #: ../admin/social_commenting.php:404
246
  msgid "FAQ"
247
  msgstr "FAQ"
248
 
249
+ #: ../admin/social_sharing.php:28
250
+ msgid "Enable Social Sharing"
251
+ msgstr "Activer le partage social"
252
+
253
+ #: ../admin/social_sharing.php:38
254
+ msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
255
+ msgstr "Control maître pour le partage social. Cela doit être active afin d'activer cette fonctionnalité."
256
+
257
+ #: ../admin/social_sharing.php:46
258
+ msgid "Delete all the options on plugin deletion"
259
+ msgstr "Supprimer toutes les paramètres lors de la suppression du plugin"
260
+
261
+ #: ../admin/social_sharing.php:56
262
+ msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
263
+ msgstr "Si activé, toutes les paramètres du plugin seront supprimées lors de sa suppression et vous devriez reconfigurer les paramètres si vous décidez de réinstaller le plugin."
264
+
265
+ #: ../admin/social_sharing.php:71
266
+ #, fuzzy
267
+ msgid "Horizontal interface options"
268
+ msgstr "Paramètres pour l'interface de partage horizontal"
269
+
270
+ #: ../admin/social_sharing.php:77
271
+ #: ../admin/social_sharing.php:155
272
+ msgid "Shape"
273
+ msgstr ""
274
+
275
+ #: ../admin/social_sharing.php:85
276
+ #: ../admin/social_sharing.php:163
277
+ msgid "Round"
278
+ msgstr ""
279
+
280
+ #: ../admin/social_sharing.php:87
281
+ #: ../admin/social_sharing.php:165
282
+ msgid "Square"
283
+ msgstr ""
284
+
285
+ #: ../admin/social_sharing.php:94
286
+ #: ../admin/social_sharing.php:172
287
+ #, fuzzy
288
+ msgid "Shape of the sharing icons"
289
+ msgstr "Afficher le compteur des partages"
290
+
291
+ #: ../admin/social_sharing.php:102
292
+ #: ../admin/social_sharing.php:180
293
+ msgid "Size (in pixels)"
294
+ msgstr ""
295
+
296
+ #: ../admin/social_sharing.php:120
297
+ #: ../admin/social_sharing.php:198
298
+ #, fuzzy
299
+ msgid "Size of the sharing icons"
300
+ msgstr "Alignement horizontal des boutons de partage"
301
+
302
+ #: ../admin/social_sharing.php:127
303
+ #: ../admin/social_sharing.php:205
304
+ msgid "Icon Preview"
305
+ msgstr ""
306
 
307
+ #: ../admin/social_sharing.php:141
308
+ #: ../admin/social_sharing.php:219
309
+ msgid "Do not forget to save the configuration after making changes by clicking the save button below"
310
+ msgstr ""
311
 
312
+ #: ../admin/social_sharing.php:149
313
+ #, fuzzy
314
+ msgid "Vertical interface options"
315
+ msgstr "Paramètres du compteur vertical (flotant)"
316
 
317
+ #: ../admin/social_sharing.php:232
318
+ #: ../admin/like_buttons.php:51
319
+ #, fuzzy
320
+ msgid "Url shortener"
321
  msgstr "bit.ly raccourcisseur d'URL"
322
 
323
+ #: ../admin/social_sharing.php:238
324
+ msgid "Use shortlinks already installed"
325
+ msgstr ""
326
 
327
+ #: ../admin/social_sharing.php:248
328
+ #: ../admin/like_buttons.php:67
329
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
330
+ msgstr ""
331
+
332
+ #: ../admin/social_sharing.php:256
333
+ msgid "Enable bit.ly url shortener for sharing"
334
+ msgstr "Activer le raccoursisseur d'URL bit.ly pour le partage des liens"
335
+
336
+ #: ../admin/social_sharing.php:266
337
+ #: ../admin/like_buttons.php:85
338
  msgid "Master control to enable bit.ly url shortening for sharing"
339
  msgstr "Control maître pour activer les URLs raccourcis par bit.ly, prêts à partager"
340
 
341
+ #: ../admin/social_sharing.php:274
342
+ #: ../admin/like_buttons.php:93
343
  msgid "bit.ly username"
344
  msgstr "Psuedo bit.ly"
345
 
346
+ #: ../admin/social_sharing.php:284
347
+ #: ../admin/like_buttons.php:103
348
  #, php-format
349
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
350
  msgstr "Connectez-vous à votre compte bit.ly et <a href=\"%s\" target=\"_blank\">rendez-vous ici</a> pour obtenir votre pseudo sur bit.ly"
351
 
352
+ #: ../admin/social_sharing.php:293
353
+ #: ../admin/like_buttons.php:112
354
  msgid "bit.ly API Key"
355
  msgstr "Clé API bit.ly"
356
 
357
+ #: ../admin/social_sharing.php:303
358
+ #: ../admin/like_buttons.php:122
359
  #, php-format
360
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
361
  msgstr "Connectez-vous à votre compte bit.ly et <a href=\"%s\" target=\"_blank\">rendez-vous ici</a> pour obtenir votre clé API"
362
 
363
+ #: ../admin/social_sharing.php:313
364
+ msgid "Twitter username in sharing"
365
+ msgstr "Psuedo Twitter dans le partage des liens"
 
 
 
 
 
 
 
 
 
 
 
366
 
367
+ #: ../admin/social_sharing.php:319
368
+ #: ../admin/like_buttons.php:163
369
  msgid "Twitter username (without @)"
370
  msgstr "Psuedo Twitter (sans @)"
371
 
372
+ #: ../admin/social_sharing.php:329
373
+ msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
374
+ msgstr "Le pseudo défini sera rajouté à la fin du contenu du tweet en tant que \"via @PSUEDO\". Laissez vide si vous ne le souhaitez pas."
375
 
376
+ #: ../admin/social_sharing.php:339
377
+ msgid "Horizontal Sharing Interface Options"
378
+ msgstr "Paramètres pour l'interface de partage horizontal"
379
 
380
+ #: ../admin/social_sharing.php:345
381
+ msgid "Enable horizontal sharing interface"
382
+ msgstr "Activer le partage horizontal"
383
 
384
+ #: ../admin/social_sharing.php:355
385
+ msgid "Master control to enable horizontal sharing"
386
+ msgstr "Control maître pour activer le partage horizontal"
387
 
388
+ #: ../admin/social_sharing.php:365
389
+ #: ../admin/social_sharing.php:708
390
+ #: ../admin/like_buttons.php:209
391
+ #: ../admin/like_buttons.php:424
392
  msgid "Target Url"
393
  msgstr "Cible Url"
394
 
395
+ #: ../admin/social_sharing.php:369
396
+ #: ../admin/social_sharing.php:712
397
+ #: ../admin/like_buttons.php:213
398
+ #: ../admin/like_buttons.php:428
399
  msgid "Url of the webpage where icons are located (default)"
400
  msgstr "Url de la page Web où se trouvent les icônes (par défaut)"
401
 
402
+ #: ../admin/social_sharing.php:371
403
+ #: ../admin/social_sharing.php:714
404
+ #: ../admin/like_buttons.php:215
405
+ #: ../admin/like_buttons.php:430
406
  msgid "Url of the homepage of your website"
407
  msgstr "Url de la page d'accueil de votre site Web"
408
 
409
+ #: ../admin/social_sharing.php:373
410
+ #: ../admin/social_sharing.php:716
411
+ #: ../admin/like_buttons.php:217
412
+ #: ../admin/like_buttons.php:432
413
  #, fuzzy
414
  msgid "Custom url"
415
  msgstr "URL personnalisé"
416
 
417
+ #: ../admin/social_sharing.php:380
418
+ #: ../admin/social_sharing.php:723
419
+ msgid "Url to share"
420
+ msgstr "URL pour partager"
421
 
422
+ #: ../admin/social_sharing.php:388
 
423
  #: ../admin/social_login.php:314
424
+ #: ../admin/like_buttons.php:232
425
  msgid "Title"
426
  msgstr "Titre"
427
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  #: ../admin/social_sharing.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
429
  msgid "The text to display above the sharing interface"
430
  msgstr "Le texte à afficher au-dessus des boutons de partage"
431
 
432
+ #: ../admin/social_sharing.php:406
433
+ #: ../admin/social_sharing.php:731
434
  #: ../admin/social_login.php:41
435
  msgid "Select providers"
436
  msgstr "Selectionner les réseaux sociaux"
437
 
438
+ #: ../admin/social_sharing.php:416
439
+ #: ../admin/social_sharing.php:741
 
 
 
 
 
 
440
  #: ../admin/social_login.php:50
441
  msgid "Twitter"
442
  msgstr "Twitter"
443
 
444
+ #: ../admin/social_sharing.php:421
445
+ #: ../admin/social_sharing.php:746
446
  #: ../admin/social_login.php:54
447
  msgid "LinkedIn"
448
  msgstr "LinkedIn"
449
 
450
+ #: ../admin/social_sharing.php:426
451
+ #: ../admin/social_sharing.php:751
452
  #: ../admin/social_login.php:58
453
  msgid "Google+"
454
  msgstr "Google+"
455
 
456
+ #: ../admin/social_sharing.php:431
457
+ #: ../admin/social_sharing.php:756
458
  msgid "Print"
459
  msgstr "Imprimer"
460
 
461
+ #: ../admin/social_sharing.php:436
462
+ #: ../admin/social_sharing.php:761
463
  msgid "Email"
464
  msgstr "E-mail"
465
 
466
+ #: ../admin/social_sharing.php:441
467
+ #: ../admin/social_sharing.php:766
468
  msgid "Yahoo"
469
  msgstr "Yahoo!"
470
 
471
+ #: ../admin/social_sharing.php:446
472
+ #: ../admin/social_sharing.php:771
473
  msgid "Reddit"
474
  msgstr "Reddit"
475
 
476
+ #: ../admin/social_sharing.php:451
477
+ #: ../admin/social_sharing.php:776
478
  msgid "Digg"
479
  msgstr "Digg"
480
 
481
+ #: ../admin/social_sharing.php:456
482
+ #: ../admin/social_sharing.php:781
483
  msgid "Delicious"
484
  msgstr "Delicious"
485
 
486
+ #: ../admin/social_sharing.php:461
487
+ #: ../admin/social_sharing.php:786
488
  msgid "StumbleUpon"
489
  msgstr "StumbleUpon"
490
 
491
+ #: ../admin/social_sharing.php:466
492
+ #: ../admin/social_sharing.php:791
493
  msgid "Float it"
494
  msgstr "Float it"
495
 
496
+ #: ../admin/social_sharing.php:471
497
+ #: ../admin/social_sharing.php:796
498
  msgid "Tumblr"
499
  msgstr "Tumblr"
500
 
501
+ #: ../admin/social_sharing.php:476
502
+ #: ../admin/social_sharing.php:801
503
  #: ../admin/social_login.php:62
504
  msgid "Vkontakte"
505
  msgstr "Vkontakte"
506
 
507
+ #: ../admin/social_sharing.php:481
508
+ #: ../admin/social_sharing.php:806
509
  msgid "Pinterest"
510
  msgstr "Pinterest"
511
 
512
+ #: ../admin/social_sharing.php:486
513
+ #: ../admin/social_sharing.php:811
514
  #: ../admin/social_login.php:70
515
  msgid "Xing"
516
  msgstr ""
517
 
518
+ #: ../admin/social_sharing.php:491
519
+ #: ../admin/social_sharing.php:816
520
  msgid "Whatsapp"
521
  msgstr ""
522
 
523
+ #: ../admin/social_sharing.php:499
524
+ #: ../admin/social_sharing.php:824
525
  msgid "Select the providers for sharing interface"
526
  msgstr "Selectionner les réseaux sociaux à inclure"
527
 
528
+ #: ../admin/social_sharing.php:507
529
+ #: ../admin/social_sharing.php:832
530
  msgid "Rearrange icons"
531
  msgstr "Repositionner les icônes"
532
 
533
+ #: ../admin/social_sharing.php:541
534
+ #: ../admin/social_sharing.php:866
535
  msgid "Drag the icons to rearrange in desired order"
536
  msgstr "Faites glisser les icônes afin de les repositionner à votre gout."
537
 
538
+ #: ../admin/social_sharing.php:549
539
+ #: ../admin/social_sharing.php:892
540
+ #: ../admin/like_buttons.php:302
541
+ #: ../admin/like_buttons.php:516
542
+ msgid "Horizontal alignment"
543
+ msgstr "Alignement horizontal"
544
+
545
+ #: ../admin/social_sharing.php:553
546
+ #: ../admin/social_sharing.php:896
547
+ #: ../admin/like_buttons.php:306
548
+ #: ../admin/like_buttons.php:520
549
+ msgid "Left"
550
+ msgstr "Gauche"
551
+
552
+ #: ../admin/social_sharing.php:554
553
+ #: ../admin/like_buttons.php:307
554
+ msgid "Center"
555
+ msgstr "centre"
556
+
557
+ #: ../admin/social_sharing.php:555
558
+ #: ../admin/social_sharing.php:897
559
+ #: ../admin/like_buttons.php:308
560
+ #: ../admin/like_buttons.php:521
561
+ msgid "Right"
562
+ msgstr "Droite"
563
+
564
+ #: ../admin/social_sharing.php:563
565
+ #: ../admin/social_sharing.php:905
566
  msgid "Horizontal alignment of the sharing interface"
567
  msgstr "Alignement horizontal des boutons de partage"
568
 
569
+ #: ../admin/social_sharing.php:571
570
+ #: ../admin/like_buttons.php:324
571
+ msgid "Position with respect to content"
572
+ msgstr "Position par rapport au contenu"
573
+
574
+ #: ../admin/social_sharing.php:575
575
+ #: ../admin/like_buttons.php:328
576
+ msgid "Top of the content"
577
+ msgstr "Au-dessus du contenu"
578
+
579
+ #: ../admin/social_sharing.php:577
580
+ #: ../admin/like_buttons.php:330
581
+ msgid "Bottom of the content"
582
+ msgstr "En-dessous du contenu"
583
+
584
+ #: ../admin/social_sharing.php:584
585
  msgid "Specify position of the sharing interface with respect to the content"
586
  msgstr "Définir la position des boutons de partage par rapport au contenu de la page"
587
 
588
+ #: ../admin/social_sharing.php:592
589
+ #: ../admin/social_sharing.php:971
590
  msgid "Sharing location"
591
  msgstr "Position de partage"
592
 
593
+ #: ../admin/social_sharing.php:596
594
+ #: ../admin/social_sharing.php:975
595
+ #: ../admin/social_login.php:514
596
+ #: ../admin/social_login.php:544
597
+ #: ../admin/like_buttons.php:349
598
+ #: ../admin/like_buttons.php:599
599
+ msgid "Homepage"
600
+ msgstr "Page d'accueil"
601
+
602
+ #: ../admin/social_sharing.php:598
603
+ #: ../admin/social_sharing.php:977
604
+ #: ../admin/like_buttons.php:351
605
+ #: ../admin/like_buttons.php:601
606
+ msgid "Posts"
607
+ msgstr "Publications"
608
+
609
+ #: ../admin/social_sharing.php:600
610
+ #: ../admin/social_sharing.php:979
611
+ #: ../admin/like_buttons.php:353
612
+ #: ../admin/like_buttons.php:603
613
+ msgid "Pages"
614
+ msgstr "Pages"
615
+
616
+ #: ../admin/social_sharing.php:602
617
+ #: ../admin/social_sharing.php:981
618
+ #: ../admin/like_buttons.php:355
619
+ #: ../admin/like_buttons.php:605
620
+ msgid "Excerpts"
621
+ msgstr "Extraits"
622
+
623
+ #: ../admin/social_sharing.php:604
624
+ #: ../admin/social_sharing.php:983
625
+ #: ../admin/like_buttons.php:357
626
+ #: ../admin/like_buttons.php:607
627
+ msgid "Category Archives"
628
+ msgstr "Archives des catégories"
629
+
630
+ #: ../admin/social_sharing.php:606
631
+ #: ../admin/social_sharing.php:985
632
+ #: ../admin/like_buttons.php:359
633
+ #: ../admin/like_buttons.php:609
634
+ msgid "Archive Pages (Category, Tag, Author or Date based pages)"
635
+ msgstr "Archive Pages (Catégorie, Tag, auteur ou date basée pages)"
636
+
637
+ #: ../admin/social_sharing.php:612
638
+ #: ../admin/like_buttons.php:365
639
+ msgid "BuddyPress activity and groups"
640
+ msgstr ""
641
+
642
+ #: ../admin/social_sharing.php:619
643
+ #: ../admin/social_sharing.php:991
644
+ #: ../admin/like_buttons.php:372
645
+ #: ../admin/like_buttons.php:615
646
+ msgid "BBPress forum"
647
+ msgstr ""
648
+
649
+ #: ../admin/social_sharing.php:622
650
+ #: ../admin/social_sharing.php:994
651
+ #: ../admin/like_buttons.php:375
652
+ #: ../admin/like_buttons.php:618
653
+ msgid "BBPress topic"
654
+ msgstr ""
655
+
656
+ #: ../admin/social_sharing.php:625
657
+ #: ../admin/like_buttons.php:378
658
+ msgid "BBPress reply"
659
+ msgstr ""
660
+
661
+ #: ../admin/social_sharing.php:635
662
  msgid "Specify the pages where you want to enable Sharing interface"
663
  msgstr "Définir les pages où vous souhaitez activer les boutons partage"
664
 
665
+ #: ../admin/social_sharing.php:643
666
+ #: ../admin/social_sharing.php:1012
667
  msgid "Show share counts"
668
  msgstr "Afficher le compteur des partages"
669
 
670
+ #: ../admin/social_sharing.php:653
671
+ #: ../admin/social_sharing.php:1022
672
  msgid "If enabled, share counts are displayed above sharing icons."
673
  msgstr "Si cela est activé, le compte des partages sera affiché au-dessus des icônes."
674
 
675
+ #: ../admin/social_sharing.php:662
676
+ #: ../admin/social_sharing.php:1031
677
+ #, fuzzy
678
+ msgid "Enable 'More' icon"
679
+ msgstr "Activer la verification de l'adresse e-mail"
680
+
681
+ #: ../admin/social_sharing.php:672
682
+ #: ../admin/social_sharing.php:1041
683
+ msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
684
+ msgstr ""
685
+
686
+ #: ../admin/social_sharing.php:682
687
  msgid "Vertical (Floating) Sharing Interface Options"
688
  msgstr "Paramètres pour les boutons de partage verticaux (flotants)"
689
 
690
+ #: ../admin/social_sharing.php:688
691
  msgid "Enable vertical (floating) sharing interface"
692
  msgstr "Activer les boutons de partage verticaux (flotants)"
693
 
694
+ #: ../admin/social_sharing.php:698
695
  msgid "Master control to enable vertical (floating) sharing widget"
696
  msgstr "Control maître pour les boutons de partage verticaux (flotants)"
697
 
698
+ #: ../admin/social_sharing.php:874
699
+ #: ../admin/like_buttons.php:498
700
+ msgid "Background Color"
701
+ msgstr "Couleur de fond"
702
+
703
+ #: ../admin/social_sharing.php:884
704
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
705
  msgstr "Définir le code HEX de la couleur désiré (exemple #cc78e0) pour le fond des boutons verticaux. Laissez vide pour la transparence. Vous pouvez obtenir le code HEX de n'importe quelle couleur <a href=\"http://www.colorpicker.com/\" target=\"_blank\">ici</a>"
706
 
707
+ #: ../admin/social_sharing.php:914
708
+ #: ../admin/like_buttons.php:538
709
+ msgid "Left offset"
710
+ msgstr "Marge à gauche"
711
+
712
+ #: ../admin/social_sharing.php:924
713
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
714
  msgstr "Définir la taille de la marge à gauche (en pixels)."
715
 
716
+ #: ../admin/social_sharing.php:934
717
+ #: ../admin/like_buttons.php:558
718
+ msgid "Right offset"
719
+ msgstr "Marge à droite"
720
+
721
+ #: ../admin/social_sharing.php:944
722
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
723
  msgstr "La distance en pixels. Une augmentation déplacera les boutons vers la gauche, et une baisse les déplacera vers la droite."
724
 
725
+ #: ../admin/social_sharing.php:953
726
+ #: ../admin/like_buttons.php:577
727
+ msgid "Top offset"
728
+ msgstr "Marge au-dessus"
729
+
730
+ #: ../admin/social_sharing.php:963
731
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
732
  msgstr "La distance en pixels. Une augmentation déplacera les boutons vers le bas, et une baisse les déplacera vers le haut."
733
 
734
+ #: ../admin/social_sharing.php:1004
735
  msgid "Specify the pages where you want to enable vertical Sharing interface"
736
  msgstr "Définir les page où vous souhaitez activer les boutons verticaux"
737
 
738
+ #: ../admin/social_sharing.php:1079
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
739
  msgid "Facebook Sharing Troubleshooter"
740
  msgstr "Résoudre les problems Facebook"
741
 
742
+ #: ../admin/social_sharing.php:1084
743
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
744
  msgstr "Si le partage sur Facebook ne marche pas, cliquez sur le lien suivant et entrez le lien de la page ou le problème se produit."
745
 
746
+ #: ../admin/social_sharing.php:1100
747
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
748
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
749
 
750
+ #: ../admin/social_sharing.php:1101
 
 
 
 
751
  #, fuzzy
752
  msgid "How can I disable sharing on particular page/post?"
753
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
754
 
755
+ #: ../admin/social_sharing.php:1102
756
  msgid "How can I specify minimum sharing count for sharing networks?"
757
  msgstr "Comment puis-je spécifier le nombre de partage minimum pour les réseaux de partage?"
758
 
759
+ #: ../admin/social_sharing.php:1112
760
+ #: ../admin/social_commenting.php:414
761
+ #: ../admin/social_login.php:665
762
+ #: ../admin/like_buttons.php:655
763
+ msgid "Save Changes"
764
+ msgstr "Sauvegarder"
765
+
766
  #: ../admin/social_commenting.php:10
767
+ #, fuzzy
768
+ msgid "Social Commenting"
769
+ msgstr "Commentaires par défaut"
770
+
771
+ #: ../admin/social_commenting.php:11
772
+ #: ../admin/social_commenting.php:392
773
+ #: ../admin/social_commenting.php:394
774
+ msgid "Shortcode"
775
+ msgstr "Shortcode"
776
 
777
  #: ../admin/social_commenting.php:18
778
  #: ../admin/social_commenting.php:24
 
 
 
779
  #: ../admin/social_commenting.php:34
780
+ #: ../admin/social_commenting.php:134
781
  #, fuzzy
782
+ msgid "Enable Social Commenting"
783
+ msgstr "Activer le Compteur Social"
784
 
785
+ #: ../admin/social_commenting.php:42
786
+ msgid "Order of tabs in commenting interface"
787
+ msgstr ""
788
 
789
+ #: ../admin/social_commenting.php:52
790
+ msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
791
+ msgstr ""
792
 
793
  #: ../admin/social_commenting.php:60
794
+ msgid "Comment area label"
795
+ msgstr ""
796
+
797
+ #: ../admin/social_commenting.php:71
798
+ msgid "Labels"
799
+ msgstr ""
800
+
801
+ #: ../admin/social_commenting.php:77
802
  #, fuzzy
803
+ msgid "Label for WordPress Commenting tab"
804
+ msgstr "WordPress Comentarios"
805
 
806
+ #: ../admin/social_commenting.php:87
807
+ #, fuzzy
808
+ msgid "Label for Facebook Commenting tab"
809
+ msgstr "Activer les commentaires Facebook"
810
+
811
+ #: ../admin/social_commenting.php:97
812
+ #, fuzzy
813
+ msgid "Label for G+ Commenting tab"
814
+ msgstr "Commentaires Facebook"
815
+
816
+ #: ../admin/social_commenting.php:107
817
+ msgid "Label for Disqus Commenting tab"
818
+ msgstr "Étiquette pour onglet Commentant Disqus"
819
+
820
+ #: ../admin/social_commenting.php:118
821
+ msgid "Facebook Commenting Options"
822
+ msgstr "Paramètres des commentaires Facebook"
823
+
824
+ #: ../admin/social_commenting.php:124
825
+ msgid "Enable Facebook Commenting"
826
+ msgstr "Activer les commentaires Facebook"
827
+
828
+ #: ../admin/social_commenting.php:143
829
+ #: ../admin/social_commenting.php:323
830
  msgid "Url to comment on"
831
  msgstr "URL à commenter"
832
 
833
+ #: ../admin/social_commenting.php:153
834
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
835
  msgstr "L'URL absolu auquel les commentaires publiés seront associés de façon permanente. Les publications sur Facebook à propos des commentaires laissés sur votre site seront associés à ce lien. <br/>Si vous le laissez vide <strong>Recommandé</strong>, le lien de la page sera utilisé."
836
 
837
+ #: ../admin/social_commenting.php:161
838
+ #: ../admin/social_commenting.php:305
839
  msgid "Width"
840
  msgstr "Largeur"
841
 
842
+ #: ../admin/social_commenting.php:171
843
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
844
  msgstr "Laisser vide pour ajuster automatiquement la largeur. La largeur (en pixels) du bloc de commentaires."
845
 
846
+ #: ../admin/social_commenting.php:179
847
  msgid "Color Scheme"
848
  msgstr "Schéma de couleurs"
849
 
850
+ #: ../admin/social_commenting.php:183
851
  msgid "Light"
852
  msgstr "Clair"
853
 
854
+ #: ../admin/social_commenting.php:184
855
  msgid "Dark"
856
  msgstr "Sombre"
857
 
858
+ #: ../admin/social_commenting.php:192
859
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
860
  msgstr "Le schema de couleurs utilisé par ce plugin. Peut être \"clair\" ou \"sombre\"."
861
 
862
+ #: ../admin/social_commenting.php:200
863
  #, fuzzy
864
  msgid "Number of comments"
865
  msgstr "Le nombre de publications"
866
 
867
+ #: ../admin/social_commenting.php:210
868
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
869
  msgstr "Le nombre de commentaires à afficher par défaut. Minimum de 1 commentaire. 10 par défaut."
870
 
871
+ #: ../admin/social_commenting.php:218
872
  msgid "Order by"
873
  msgstr "Trier par"
874
 
875
+ #: ../admin/social_commenting.php:222
876
  msgid "Social"
877
  msgstr "Social"
878
 
879
+ #: ../admin/social_commenting.php:223
880
  msgid "Reverse Time"
881
  msgstr "Anachronique"
882
 
883
+ #: ../admin/social_commenting.php:224
884
  msgid "Time"
885
  msgstr "Heure"
886
 
887
+ #: ../admin/social_commenting.php:232
888
  msgid "The order to use when displaying comments."
889
  msgstr "L'ordre à utiliser lors de l'affiche des commentaires."
890
 
891
+ #: ../admin/social_commenting.php:240
892
  msgid "Mobile"
893
  msgstr "Portable"
894
 
895
+ #: ../admin/social_commenting.php:244
896
  msgid "Auto Detect"
897
  msgstr "Detecter automatiquement"
898
 
899
+ #: ../admin/social_commenting.php:245
900
  msgid "True"
901
  msgstr "Vrai"
902
 
903
+ #: ../admin/social_commenting.php:246
904
  msgid "False"
905
  msgstr "Faux"
906
 
907
+ #: ../admin/social_commenting.php:254
908
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
909
  msgstr "Une valeur booléen qui définit si la version mobile s'affiche ou pas."
910
 
911
+ #: ../admin/social_commenting.php:262
912
+ #: ../admin/like_buttons.php:132
913
+ #: ../admin/like_buttons.php:138
914
+ msgid "Language"
915
+ msgstr "Langue"
916
+
917
+ #: ../admin/social_commenting.php:272
918
  #, php-format
919
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
920
+ msgstr "Définissez le langage de code que vous souhaitez utilizer dans les commentaires. Vous trouverez une liste <a href=\"%s\" target=\"_blank\">ici</ a>. Laissez vide pour l'anglais."
 
 
 
 
 
921
 
922
+ #: ../admin/social_commenting.php:281
923
  #, fuzzy
924
+ msgid "Google Plus Commenting Options"
925
+ msgstr "Paramètres des commentaires Facebook"
926
 
927
+ #: ../admin/social_commenting.php:287
928
+ #: ../admin/social_commenting.php:297
929
  #, fuzzy
930
+ msgid "Enable Google Plus Commenting"
931
+ msgstr "Activer les commentaires Facebook"
932
 
933
+ #: ../admin/social_commenting.php:315
934
+ msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
935
+ msgstr "Largeur de l'interface Commentant GooglePlus. Laissez vide pour Auto Adjust"
936
 
937
+ #: ../admin/social_commenting.php:333
938
  #, fuzzy
939
+ msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
940
+ msgstr "L'URL absolu auquel les commentaires publiés seront associés de façon permanente. Les publications sur Facebook à propos des commentaires laissés sur votre site seront associés à ce lien. <br/>Si vous le laissez vide <strong>Recommandé</strong>, le lien de la page sera utilisé."
941
 
942
+ #: ../admin/social_commenting.php:342
943
  #, fuzzy
944
+ msgid "Disqus Commenting Options"
945
+ msgstr "Paramètres des commentaires Facebook"
946
 
947
+ #: ../admin/social_commenting.php:348
948
+ #: ../admin/social_commenting.php:358
949
  #, fuzzy
950
+ msgid "Enable Disqus Commenting"
951
+ msgstr "Activer les commentaires Facebook"
952
 
953
+ #: ../admin/social_commenting.php:366
954
+ msgid "Disqus Shortname"
955
+ msgstr ""
956
+
957
+ #: ../admin/social_commenting.php:376
958
+ msgid "<strong>Required to use Disqus commenting.</strong> You can find it in your Disqus plugin settings section as shown in the screenshot below"
959
+ msgstr "<strong>Nécessaire pour utiliser Disqus commentant.</strong> Vous pouvez le trouver dans votre section Disqus des paramètres de plug-in comme le montre la capture d'écran ci-dessous"
960
 
961
+ #: ../admin/social_commenting.php:406
962
  #, fuzzy
963
+ msgid "How can I disable Social Commenting at individual page/post?"
964
  msgstr "Comment je peux afficher le compte des partages de mon site, et non des pages/publications individuelles ?"
965
 
 
 
 
 
 
 
 
 
 
 
 
 
966
  #: ../admin/social_login.php:10
967
  msgid "Social Login"
968
  msgstr "Connection par les réseaux sociaux"
1268
  msgstr "Si cela est activé, l'adresse sera vérifié en envoyant un lien de confirmation à l'adresse. L'utilisateur ne pourra pas se connecter sans avoir confirmé son adresse e-mail."
1269
 
1270
  #: ../admin/social_login.php:656
1271
+ #, fuzzy
1272
+ msgid "Sortcode & Widget"
1273
+ msgstr "Widgets et shortcodes"
 
 
 
 
 
 
 
 
 
 
 
1274
 
1275
  #: ../admin/admin.php:8
1276
  msgid "Welcome"
1285
  msgstr "Pour commencer"
1286
 
1287
  #: ../admin/admin.php:12
1288
+ #, fuzzy
1289
+ msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default."
1290
  msgstr "Commencez à changer les options dans les parties sous le menu <strong>Super Socializer</strong> à gauche. <strong>Partage social</strong> est active sur votre site par défaut."
1291
 
1292
  #: ../admin/admin.php:13
1305
 
1306
  #: ../admin/admin.php:16
1307
  #, fuzzy
1308
+ msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1309
  msgstr "Dans la section \"Partage Social\" vous pouvez selectionner les réseaux sociaux pour le partage et configurer les paramètres des boutons de partage."
1310
 
1311
+ #: ../admin/like_buttons.php:12
1312
+ msgid "Like Buttons"
1313
+ msgstr "comme Boutons"
1314
+
1315
+ #: ../admin/like_buttons.php:25
1316
+ msgid "Enable Like Buttons"
1317
+ msgstr "Activer comme des boutons"
1318
+
1319
+ #: ../admin/like_buttons.php:35
1320
+ #, fuzzy
1321
+ msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1322
+ msgstr "Control maître pour la connection par les réseaux sociaux. Cela doit être active afin de permettre cette fonctionnalité."
1323
+
1324
+ #: ../admin/like_buttons.php:57
1325
+ msgid "Use shortlinks already installed, for tweet button"
1326
+ msgstr "Utilisez shortlinks déjà installés, pour le bouton tweet"
1327
+
1328
+ #: ../admin/like_buttons.php:75
1329
+ msgid "Enable bit.ly url shortener for tweet button"
1330
+ msgstr "Activer le raccourcisseur d'URL bit.ly"
1331
+
1332
+ #: ../admin/like_buttons.php:148
1333
+ #, fuzzy, php-format
1334
+ msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1335
+ msgstr "Définissez le langage de code que vous souhaitez utilizer dans les commentaires. Vous trouverez une liste <a href=\"%s\" target=\"_blank\">ici</ a>. Laissez vide pour l'anglais."
1336
+
1337
+ #: ../admin/like_buttons.php:157
1338
+ msgid "Twitter username in tweet button"
1339
+ msgstr "Psuedo Twitter à utiliser pour le bouton Twitter"
1340
+
1341
+ #: ../admin/like_buttons.php:173
1342
+ msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1343
+ msgstr "Le pseudo fourni sera rajouté à la fin du tweet en tant que \"via @PSUEDO\". Laissez ce champs vide si vous ne souhaitez pas d'y avoir de psuedo."
1344
+
1345
+ #: ../admin/like_buttons.php:183
1346
+ #, fuzzy
1347
+ msgid "Horizontal Interface Options"
1348
+ msgstr "Paramètres du compteur horizontal"
1349
+
1350
+ #: ../admin/like_buttons.php:189
1351
+ #, fuzzy
1352
+ msgid "Enable horizontal interface"
1353
+ msgstr "Activer le compteur horizontal"
1354
+
1355
+ #: ../admin/like_buttons.php:199
1356
+ #, fuzzy
1357
+ msgid "Master control to enable horizontal like buttons"
1358
+ msgstr "Control maître pour activer le compteur horizontal"
1359
+
1360
+ #: ../admin/like_buttons.php:224
1361
+ #: ../admin/like_buttons.php:439
1362
+ msgid "Url to like/share/tweet and display like/share/tweet counts"
1363
+ msgstr "Url à aimer/share/tweet et affichage aime/share/compte Tweet"
1364
+
1365
+ #: ../admin/like_buttons.php:242
1366
+ #, fuzzy
1367
+ msgid "The text to display above the interface"
1368
+ msgstr "La texte à afficher au-dessus du compteur"
1369
+
1370
+ #: ../admin/like_buttons.php:250
1371
+ #: ../admin/like_buttons.php:447
1372
+ msgid "Select and rearrange providers"
1373
+ msgstr "Selectionner et repositionner les réseaux sociaux"
1374
+
1375
+ #: ../admin/like_buttons.php:294
1376
+ #: ../admin/like_buttons.php:490
1377
+ #, fuzzy
1378
+ msgid "Select the providers for interface. Drag them to rearrange."
1379
+ msgstr "Selectionnez les réseaux sociaux à intégrer dans le compteur. Glissez-les pour les classer."
1380
+
1381
+ #: ../admin/like_buttons.php:316
1382
+ #: ../admin/like_buttons.php:529
1383
+ #, fuzzy
1384
+ msgid "Horizontal alignment of the interface"
1385
+ msgstr "Alignement horizontal du compteur"
1386
+
1387
+ #: ../admin/like_buttons.php:337
1388
+ #, fuzzy
1389
+ msgid "Specify position of the interface with respect to the content"
1390
+ msgstr "Définir la position du compteur par rapport au contenu de la page"
1391
+
1392
+ #: ../admin/like_buttons.php:345
1393
+ #: ../admin/like_buttons.php:595
1394
+ #, fuzzy
1395
+ msgid "Interface location"
1396
+ msgstr "Position du compteur"
1397
+
1398
+ #: ../admin/like_buttons.php:388
1399
+ #, fuzzy
1400
+ msgid "Specify the pages where you want to enable interface"
1401
+ msgstr "Enumérer les pages où vous souhaitez afficher le compteur "
1402
+
1403
+ #: ../admin/like_buttons.php:398
1404
+ #, fuzzy
1405
+ msgid "Vertical (Floating) like buttons Options"
1406
+ msgstr "Paramètres du compteur vertical (flotant)"
1407
+
1408
+ #: ../admin/like_buttons.php:404
1409
+ #, fuzzy
1410
+ msgid "Enable vertical (floating) like buttons"
1411
+ msgstr "Activer le compteur vertical (flotant)"
1412
+
1413
+ #: ../admin/like_buttons.php:414
1414
+ msgid "Master control to enable vertical (floating) counter widget"
1415
+ msgstr "Control maître pour activer le compteur vertical (flotant)"
1416
+
1417
+ #: ../admin/like_buttons.php:508
1418
+ #, fuzzy
1419
+ msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1420
+ msgstr "Définir le code HEX de la couleur voulue (exemple #cc78e0) pour le fond du compteur vertical. Laisser vide pour la transparence. Vous pouvez obténir un code HEX pour n'importe quelle couleur <a href=\"http://www.colorpicker.com/\" target=\"_blank\">ici</a>"
1421
+
1422
+ #: ../admin/like_buttons.php:548
1423
+ #, fuzzy
1424
+ msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left."
1425
+ msgstr "La distance en pixels. Une augmentation du chiffre positionnera le compteur plus à droite, une baisse le ramenera à gauche."
1426
+
1427
+ #: ../admin/like_buttons.php:568
1428
+ #, fuzzy
1429
+ msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right."
1430
+ msgstr "La distance en pixels. Une augmentation du chiffre positionnera le compteur plus à gauche, une baisse le ramenera à droite."
1431
+
1432
+ #: ../admin/like_buttons.php:587
1433
+ #, fuzzy
1434
+ msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1435
+ msgstr "La distance en pixels. Une augmentation du chiffre décalera le compteur vers le bas, une baisse le ramenera vers le haut."
1436
+
1437
+ #: ../admin/like_buttons.php:628
1438
+ #, fuzzy
1439
+ msgid "Specify the pages where you want to enable vertical interface"
1440
+ msgstr "Enumérer les pages où vous souhaitez afficher le compteur vertical"
1441
+
1442
+ #: ../inc/social_sharing.php:515
1443
  msgid "Invalid request"
1444
  msgstr "Demande non-valable !"
1445
 
1446
+ #: ../inc/social_sharing.php:522
1447
  msgid "Providers not selected"
1448
  msgstr "Réseaux sociaux non-selectionnés !"
1449
 
1541
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1542
  msgstr "Compteur vertical. Permettez à vos utilisateurs de partager/\"aimer\" votre contenu facilement sur les réseaux sociaux comme Facebook, Twitter, Tumblr, Google+ et plus"
1543
 
1544
+ #~ msgid ""
1545
+ #~ "I am a tech enthusiast. I like to play with code and build great stuff "
1546
+ #~ "(and like to call myself - The Champ....:) ). You can connect with me "
1547
+ #~ "(and my upcoming work) via:"
1548
+ #~ msgstr ""
1549
+ #~ "Je suis une enthusiaste de la technologie. J'aime jouer avec du code et "
1550
+ #~ "créér des choses sympas (et j'aime m'appeler \"The Champ\"; le champion). "
1551
+ #~ "Vous pouvez me suivre et être tenu au courant de mes derniers travaux "
1552
+ #~ "sur :"
1553
+
1554
+ #~ msgid "Plugin Fan Page"
1555
+ #~ msgstr "Page pour les Fans du plugin"
1556
+
1557
+ #~ msgid "My Fan Page"
1558
+ #~ msgstr "Ma page perso"
1559
+
1560
+ #~ msgid "Social Counter"
1561
+ #~ msgstr "Compteur Social"
1562
+
1563
+ #~ msgid ""
1564
+ #~ "Master control for Social Counter. It must be checked to enable Social "
1565
+ #~ "Counter functionality"
1566
+ #~ msgstr ""
1567
+ #~ "Control maître pour le Compteur Social. Il doit être coché pour active "
1568
+ #~ "cette fonctionnalité"
1569
+
1570
+ #~ msgid ""
1571
+ #~ "<strong>Note:</strong> To disable counter on particular page/post, edit "
1572
+ #~ "that page/post and check the options at the bottom in <strong>\"Super "
1573
+ #~ "Socializer\"</strong> section"
1574
+ #~ msgstr ""
1575
+ #~ "<strong> NB: </ strong> Afin de désactiver le compteur sur une page/"
1576
+ #~ "publication particulière, modifies la page ou publication en question et "
1577
+ #~ "changez les paramètres dans la partie <strong > \"Super Socializer \" </ "
1578
+ #~ "strong> en bas de la page."
1579
+
1580
+ #~ msgid ""
1581
+ #~ "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content "
1582
+ #~ "of required page/post where you want to display Social Counter interface."
1583
+ #~ msgstr ""
1584
+ #~ "Vous pouvez utiliser le shortcode <strong> [TheChamp-Counter] </strong> "
1585
+ #~ "dans le contenu d'une page ou publication si vous voulez y afficher les "
1586
+ #~ "boutons de partage."
1587
+
1588
+ #~ msgid "Example"
1589
+ #~ msgstr "Exemple"
1590
+
1591
+ #~ msgid "You can use following attributes in the Shortcode"
1592
+ #~ msgstr "Vous pouvez utiliser les attributs suivants dans le shortcode"
1593
+
1594
+ #~ msgid ""
1595
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Counter "
1596
+ #~ "interface"
1597
+ #~ msgstr ""
1598
+ #~ "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les "
1599
+ #~ "boutons de partage."
1600
+
1601
+ #, fuzzy
1602
+ #~ msgid ""
1603
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1604
+ #~ "or \"vertical\") of Social Counter interface. Default type is \"horizontal"
1605
+ #~ "\"."
1606
+ #~ msgstr ""
1607
+ #~ "Utilisez l'attribut \"<strong>type</ strong>\" afin de définir le type "
1608
+ #~ "(\"horizontal \" o \"vertical \") de Compteur Social à afficher. Par "
1609
+ #~ "défaut, celui-ci est \"horizontal \"."
1610
+
1611
+ #~ msgid "Left (Works with \"Vertical\" type interface only)"
1612
+ #~ msgstr "Left (\"gauche\", ne fonctionne qu'avec l'interface vertical)"
1613
+
1614
+ #~ msgid ""
1615
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1616
+ #~ "form the left side of the screen) of Social Counter interface."
1617
+ #~ msgstr ""
1618
+ #~ "Utilisez l'attribut <strong>left</strong> afin de définir la distance "
1619
+ #~ "entre le compteur et le côté gauche de l'écran."
1620
+
1621
+ #~ msgid "Top (Works with \"Vertical\" type interface only)"
1622
+ #~ msgstr "Top (\"haut\", ne fonctionne qu'avec l'interface vertical)"
1623
+
1624
+ #~ msgid ""
1625
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1626
+ #~ "form the top of the screen) of Social Counter interface."
1627
+ #~ msgstr ""
1628
+ #~ "Utilisez l'attribut <strong>top</strong> afin de définir la distance "
1629
+ #~ "entre le compteur et le côté gauche de l'écran."
1630
+
1631
+ #, fuzzy
1632
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be liked"
1633
+ #~ msgstr ""
1634
+ #~ "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les "
1635
+ #~ "boutons de partage."
1636
+
1637
+ #~ msgid "You can use shortcode in PHP file as following"
1638
+ #~ msgstr "Vous pouvez utilizer le shortcode dans un fichier PHP comme ceci :"
1639
+
1640
+ #~ msgid ""
1641
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1642
+ #~ "shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]"
1643
+ #~ "</strong>, so the final code looks like following"
1644
+ #~ msgstr ""
1645
+ #~ "Remplacez <strong>SHORTCODE</ strong> dans le code ci-dessus avec le code "
1646
+ #~ "nécessaire, comme <strong>[TheChamp-Login style=\"background-color: #000;"
1647
+ #~ "\"]</ strong>, pour que le résultat soit ainsi :"
1648
+
1649
+ #~ msgid "Widget"
1650
+ #~ msgstr "Widget"
1651
+
1652
+ #~ msgid ""
1653
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1654
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1655
+ #~ "Counter (Horizontal Widget)</strong> and <strong>Super Socializer - "
1656
+ #~ "Counter (Vertical Floating Widget)</strong> widgets in the required area."
1657
+ #~ msgstr ""
1658
+ #~ "Vous pouvez aller à <strong>Apparence</ strong > > <strong>Widgets</ "
1659
+ #~ "strong> dans la partie gauche de votre écran et glisser <strong> Super "
1660
+ #~ "Socializer - Compteur (Widget Horizontal) </ strong> et <strong> Super "
1661
+ #~ "Socializer - Compteur (Widget Vertical Flotant) </ strong> dans les zones "
1662
+ #~ "que vous voulez."
1663
+
1664
+ #, fuzzy
1665
+ #~ msgid ""
1666
+ #~ "How can I show like counts of my website rather than of individual pages/"
1667
+ #~ "posts?"
1668
+ #~ msgstr ""
1669
+ #~ "Comment je peux afficher le compte des partages de mon site, et non des "
1670
+ #~ "pages/publications individuelles ?"
1671
+
1672
+ #, fuzzy
1673
+ #~ msgid ""
1674
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
1675
+ #~ msgstr ""
1676
+ #~ "Choisissez l'option \"Url de la page d'accueil de votre site Web \" dans "
1677
+ #~ "option \"URL cible \" et \"Afficher activer part compte \""
1678
+
1679
+ #, fuzzy
1680
+ #~ msgid "How can I disable social counter on particular page/post?"
1681
+ #~ msgstr ""
1682
+ #~ "Comment je peux afficher le compte des partages de mon site, et non des "
1683
+ #~ "pages/publications individuelles ?"
1684
+
1685
+ #, fuzzy
1686
+ #~ msgid ""
1687
+ #~ "Edit that page/post and check the options at the bottom in \"Super "
1688
+ #~ "Socializer\" section"
1689
+ #~ msgstr ""
1690
+ #~ "Modifier cette page / poste et cochez l'option \"Désactiver Facebook "
1691
+ #~ "Commentaires sur ce post / la page \" au bas de section \"super "
1692
+ #~ "Socializer \""
1693
+
1694
+ #~ msgid "Social Sharing"
1695
+ #~ msgstr "Partage social"
1696
+
1697
+ #, fuzzy
1698
+ #~ msgid ""
1699
+ #~ "<strong>Note:</strong> To disable sharing and specify minimum share "
1700
+ #~ "counts per social network on particular page/post, edit that page/post "
1701
+ #~ "and check the options at the bottom in <strong>\"Super Socializer\"</"
1702
+ #~ "strong> section"
1703
+ #~ msgstr ""
1704
+ #~ "<strong> NB: </ strong> Pour désactiver la partage sur une page ou "
1705
+ #~ "publication particulière, modifiez la publication et cochez les cases "
1706
+ #~ "correspondantes en bas de la page dans <strong > \"Super Socializer \" </ "
1707
+ #~ "strong>"
1708
+
1709
+ #~ msgid ""
1710
+ #~ "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content "
1711
+ #~ "of required page/post where you want to display Social Sharing interface."
1712
+ #~ msgstr ""
1713
+ #~ "Vous pouvez utiliser le shortcode <strong>[TheChamp-Sharing]</strong> "
1714
+ #~ "dans le contenu d'une page/publication si vous souhaitez y afficher les "
1715
+ #~ "boutons de partage."
1716
+
1717
+ #~ msgid ""
1718
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Sharing "
1719
+ #~ "interface"
1720
+ #~ msgstr ""
1721
+ #~ "Utilisez l'attribut <strong>style</strong> afin de customizer les boutons."
1722
+
1723
+ #~ msgid ""
1724
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1725
+ #~ "or \"vertical\") of Social Sharing interface. Default type is \"horizontal"
1726
+ #~ "\"."
1727
+ #~ msgstr ""
1728
+ #~ "Utilisez l'attribut <strong>type</ strong> afin de définir quel type de "
1729
+ #~ "boutons à afficher (\"horizontal\" ou \"vertical\"). \"horizontal\" par "
1730
+ #~ "défaut."
1731
+
1732
+ #, fuzzy
1733
+ #~ msgid ""
1734
+ #~ "Use <strong>count</strong> attribute to enable the share counts on Social "
1735
+ #~ "Sharing interface"
1736
+ #~ msgstr ""
1737
+ #~ "Utilisez l'attribut <strong>style</strong> afin de customizer les boutons."
1738
+
1739
+ #, fuzzy
1740
+ #~ msgid "left (Works with \"Vertical\" type interface only)"
1741
+ #~ msgstr "Left (\"gauche\", ne fonctionne qu'avec l'interface vertical)"
1742
+
1743
+ #~ msgid ""
1744
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1745
+ #~ "form the left side of the screen) of Social Sharing interface."
1746
+ #~ msgstr ""
1747
+ #~ "Utilisez l'attribut <strong>left</strong> afin de définir la marge à "
1748
+ #~ "gauche des boutons."
1749
+
1750
+ #, fuzzy
1751
+ #~ msgid "top (Works with \"Vertical\" type interface only)"
1752
+ #~ msgstr "Top (\"haut\", ne fonctionne qu'avec l'interface vertical)"
1753
+
1754
+ #~ msgid ""
1755
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1756
+ #~ "form the top of the screen) of Social Sharing interface."
1757
+ #~ msgstr ""
1758
+ #~ "Utilisez l'attribut <strong>top</strong> afin de définir la marge en haut "
1759
+ #~ "des boutons."
1760
+
1761
+ #, fuzzy
1762
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be shared"
1763
+ #~ msgstr ""
1764
+ #~ "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les "
1765
+ #~ "boutons de partage."
1766
+
1767
+ #~ msgid ""
1768
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1769
+ #~ "shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]"
1770
+ #~ "</strong>, so the final code looks like following"
1771
+ #~ msgstr ""
1772
+ #~ "Remplacez <strong>SHORTCODE</strong> dans le code ci-dessus avec le "
1773
+ #~ "shortcode requis, par exemple <strong>[TheChamp-Sharing style="
1774
+ #~ "\"background-color:#000;\"]</strong>, pour que le résultat ressemble à "
1775
+ #~ "ceci"
1776
+
1777
+ #~ msgid ""
1778
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1779
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1780
+ #~ "Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - "
1781
+ #~ "Sharing (Vertical Floating Widget)</strong> widgets in the required area."
1782
+ #~ msgstr ""
1783
+ #~ "Naviguez dans <strong>Apparence</strong> > <strong>Widgets</strong> à "
1784
+ #~ "gauche et faites glisser le widget \"Super Socializer - Sharing "
1785
+ #~ "(Horizontal Widget)\" ou \"Super Socializer - Sharing (Vertical "
1786
+ #~ "Widget)\" dans le zone désiré."
1787
+
1788
+ #~ msgid ""
1789
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option "
1790
+ #~ "and enable \"Show share counts\" option"
1791
+ #~ msgstr ""
1792
+ #~ "Choisissez l'option \"Url de la page d'accueil de votre site Web \" dans "
1793
+ #~ "option \"URL cible \" et \"Afficher activer part compte \""
1794
+
1795
+ #, fuzzy
1796
+ #~ msgid ""
1797
+ #~ "After enabling this option, Facebook commenting will appear before "
1798
+ #~ "Wordpress comment form at your website"
1799
+ #~ msgstr ""
1800
+ #~ "Après l'activation de cette fonctionnalité, les commentaires Facebook "
1801
+ #~ "s'afficheront à la place des commentaires WordPress sur votre site"
1802
+
1803
+ #~ msgid "Keep only Facebook Commenting"
1804
+ #~ msgstr "Conserver seul les commentaires Facebook"
1805
+
1806
+ #, fuzzy
1807
+ #~ msgid ""
1808
+ #~ "If enabled, only Facebook commenting would be visible without default "
1809
+ #~ "comment form"
1810
+ #~ msgstr ""
1811
+ #~ "Une fois activé, seul les commentaires Facebook seront affichées, sans "
1812
+ #~ "l'option de basculer sur les commentaires WordPress"
1813
+
1814
+ #, fuzzy
1815
+ #~ msgid ""
1816
+ #~ "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the "
1817
+ #~ "content of required page/post where you want to display Facebook "
1818
+ #~ "Commenting interface."
1819
+ #~ msgstr ""
1820
+ #~ "Vous pouvez utiliser le shortcode <strong> [TheChamp-Counter] </strong> "
1821
+ #~ "dans le contenu d'une page ou publication si vous voulez y afficher les "
1822
+ #~ "boutons de partage."
1823
+
1824
+ #, fuzzy
1825
+ #~ msgid ""
1826
+ #~ "Use <strong>style</strong> attribute to style the rendered commenting "
1827
+ #~ "interface"
1828
+ #~ msgstr ""
1829
+ #~ "Utilisez l'attribut <strong>style</strong> afin de customizer les boutons."
1830
+
1831
+ #, fuzzy
1832
+ #~ msgid ""
1833
+ #~ "Use <strong>url</strong> attribute to specify the target url for "
1834
+ #~ "comments. This defaults to the page where shortcode is used."
1835
+ #~ msgstr ""
1836
+ #~ "Utilisez l'attribut <strong>left</strong> afin de définir la distance "
1837
+ #~ "entre le compteur et le côté gauche de l'écran."
1838
+
1839
+ #, fuzzy
1840
+ #~ msgid ""
1841
+ #~ "Use <strong>num_posts</strong> attribute to specify the number of "
1842
+ #~ "comments to display."
1843
+ #~ msgstr ""
1844
+ #~ "Utilisez l'attribut \"<strong>style</ strong>\" afin de customizer les "
1845
+ #~ "boutons de partage."
1846
+
1847
+ #, fuzzy
1848
+ #~ msgid "width"
1849
+ #~ msgstr "Largeur"
1850
+
1851
+ #, fuzzy
1852
+ #~ msgid ""
1853
+ #~ "Use <strong>width</strong> attribute to specify the width of commenting "
1854
+ #~ "interface. Omit it for fluid width"
1855
+ #~ msgstr ""
1856
+ #~ "Utilisez l'attribut <strong>top</strong> afin de définir la marge en haut "
1857
+ #~ "des boutons."
1858
+
1859
+ #, fuzzy
1860
+ #~ msgid ""
1861
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1862
+ #~ "shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:"
1863
+ #~ "#000;\"]</strong>, so the final code looks like following"
1864
+ #~ msgstr ""
1865
+ #~ "Remplacez <strong>SHORTCODE</ strong> dans le code ci-dessus avec le code "
1866
+ #~ "nécessaire, comme <strong>[TheChamp-Login style=\"background-color: #000;"
1867
+ #~ "\"]</ strong>, pour que le résultat soit ainsi :"
1868
+
1869
+ #~ msgid ""
1870
+ #~ "Edit that page/post and check the option \"Disable Facebook Comments on "
1871
+ #~ "this post/page\" at the bottom in \"Super Socializer\" section"
1872
+ #~ msgstr ""
1873
+ #~ "Modifier cette page / poste et cochez l'option \"Désactiver Facebook "
1874
+ #~ "Commentaires sur ce post / la page \" au bas de section \"super "
1875
+ #~ "Socializer \""
1876
+
1877
+ #~ msgid ""
1878
+ #~ "How to enable only Facebook Comments without enabling default comment "
1879
+ #~ "form?"
1880
+ #~ msgstr ""
1881
+ #~ "Comment activer uniquement Commentaires Facebook sans permettant "
1882
+ #~ "commentaire formulaire par défaut?"
1883
+
1884
+ #~ msgid ""
1885
+ #~ "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting"
1886
+ #~ "\" section."
1887
+ #~ msgstr ""
1888
+ #~ "Activer \"Conserver uniquement Facebook Commentant\" option section "
1889
+ #~ "\"Facebook Commentant\"."
1890
+
1891
+ #~ msgid ""
1892
+ #~ "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of "
1893
+ #~ "required page/post where you want to display Social Login interface."
1894
+ #~ msgstr ""
1895
+ #~ "Utilisez le shortcode <strong>[TheChamp-Login]</strong> dans le contenu "
1896
+ #~ "de la page/publication où vous souhaitez faire apparaître le widget de "
1897
+ #~ "connection par les réseaux sociaux."
1898
+
1899
+ #~ msgid ""
1900
+ #~ "You can use \"style\" attribute in the Shortcode to style the rendered "
1901
+ #~ "Social Login interface."
1902
+ #~ msgstr ""
1903
+ #~ "Vous pouvez utiliser l'attribut \"style\" dans le shortcode afin de "
1904
+ #~ "customizer le login social."
1905
+
1906
+ #~ msgid ""
1907
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1908
+ #~ "shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</"
1909
+ #~ "strong>, so the final code looks like following"
1910
+ #~ msgstr ""
1911
+ #~ "Remplacez <strong>SHORTCODE</strong> dans le code ci-dessus avec le code "
1912
+ #~ "désiré, par exemple <strong>[TheChamp-Login style=\"background-color:#000;"
1913
+ #~ "\"]</strong> pour que le résultat ressemble à ceci"
1914
+
1915
+ #~ msgid ""
1916
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1917
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1918
+ #~ "Login</strong> widget in the required area."
1919
+ #~ msgstr ""
1920
+ #~ "Naviguez dans <strong>Apparence</strong> > <strong>Widgets</strong> à "
1921
+ #~ "gauche et faites glisser le widget \"Super Socializer - Login\" dans le "
1922
+ #~ "zone désiré."
1923
+
1924
  #~ msgid "White-Label"
1925
  #~ msgstr "Label-Blanche"
1926
 
2078
  #~ msgid "Load first"
2079
  #~ msgstr "Charger en premier"
2080
 
 
 
 
2081
  #~ msgid "Selected commenting will be loaded first on the page"
2082
  #~ msgstr ""
2083
  #~ "Le mode de commentaires selectionné sera celui qui sera chargé en premier"
2117
  #~ msgid "Facebook Comments"
2118
  #~ msgstr "Comentarios Facebook"
2119
 
 
 
 
2120
  #~ msgid ""
2121
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
2122
  #~ "><strong>Note: Social Login at comment form of your website will not get "
languages/Super-Socializer-hu_HU.mo CHANGED
Binary file
languages/Super-Socializer-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-21 05:49+0530\n"
6
- "PO-Revision-Date: 2015-04-21 05:49+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -25,36 +25,40 @@ msgstr "Illeszd be a következő url-t a <strong>Website</strong> és a <strong>
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
27
 
28
- #: ../super_socializer.php:348
29
  msgid "Please verify your email address to login."
30
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
31
 
32
- #: ../super_socializer.php:348
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
35
 
36
- #: ../super_socializer.php:352
37
  msgid "Notification"
38
  msgstr "Értesítés"
39
 
40
- #: ../super_socializer.php:371
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "E-mail cím szükséges"
44
 
45
- #: ../super_socializer.php:374
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
48
 
49
- #: ../super_socializer.php:387
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Kövesd a 11-ik és 12-ik lépést GooglePlus alkalmazás beállítás oldalon, about to open"
52
 
53
- #: ../super_socializer.php:547
 
 
 
 
54
  msgid "Email you entered is already registered or invalid"
55
  msgstr "A megadott e-maik már regisztrálva van, vagy hibás"
56
 
57
- #: ../super_socializer.php:551
58
  msgid "Please enter a valid email address. You might be required to verify it"
59
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
60
 
@@ -70,75 +74,75 @@ msgstr "Kattintson megmutatni segítség"
70
  msgid "Click to hide help"
71
  msgstr "Elrejtéséhez kattintson segítség"
72
 
73
- #: ../helper.php:174
74
  msgid "Settings"
75
  msgstr "Beállítások"
76
 
77
- #: ../helper.php:466
78
  #, fuzzy
79
  msgid "Account linked successfully"
80
  msgstr "A beállítások mentése sikeres"
81
 
82
- #: ../helper.php:472
83
  msgid "Account already exists or linked"
84
  msgstr "Fiók már létezik, vagy össze van kötve"
85
 
86
- #: ../helper.php:483
87
  #, fuzzy
88
  msgid "You are already connected with"
89
  msgstr "Készen állsz weboldalad \"Közösségesítésére\"."
90
 
91
- #: ../helper.php:483
92
  msgid "as primary social network"
93
  msgstr "elsődleges szociális háló"
94
 
95
- #: ../helper.php:500
96
  msgid "Link your social account to login to your account at this website"
97
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
98
 
99
- #: ../helper.php:545
100
  msgid "Currently"
101
  msgstr "Jelenleg"
102
 
103
- #: ../helper.php:545
104
  msgid "Remove"
105
  msgstr "Eltávolítás"
106
 
107
- #: ../helper.php:636
108
  msgid "Disable Horizontal Social Sharing on this "
109
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
110
 
111
- #: ../helper.php:641
112
  msgid "Disable Vertical Social Sharing on this "
113
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
114
 
115
- #: ../helper.php:646
116
  #, fuzzy
117
- msgid "Disable Horizontal Social Counter on this "
118
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
119
 
120
- #: ../helper.php:651
121
  #, fuzzy
122
- msgid "Disable Vertical Social Counter on this "
123
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
124
 
125
- #: ../helper.php:656
126
  #, fuzzy
127
- msgid "Disable Facebook Comments on this "
128
  msgstr "Facebook Hozzászólás Bekapcsolás"
129
 
130
- #: ../helper.php:665
131
  #, fuzzy
132
  msgid "Horizontal sharing"
133
  msgstr "Függőleges igazítás"
134
 
135
- #: ../helper.php:671
136
- #: ../helper.php:690
137
  #, fuzzy
138
  msgid "Starting share count for "
139
  msgstr "Megosztás számok mutatása"
140
 
141
- #: ../helper.php:684
142
  #, fuzzy
143
  msgid "Vertical sharing"
144
  msgstr "Közösségi Megosztás"
@@ -156,1019 +160,809 @@ msgid "by"
156
  msgstr "készítette"
157
 
158
  #: ../admin/help.php:7
159
- msgid "I am a tech enthusiast. I like to play with code and build great stuff (and like to call myself - The Champ....:) ). You can connect with me (and my upcoming work) via:"
160
- msgstr "A technólógia rajongója vagyok. Szeretek játszani a kóddal és valami nagy dolgot készíteni (és szeretem magam - The Champ-nek nevezni... :) ). Kapcsolatba léphetsz velem (és a készülő munkáimmal) így:"
161
 
162
- #: ../admin/help.php:18
163
  msgid "Plugin Demo"
164
  msgstr "Plugin Demo"
165
 
166
- #: ../admin/help.php:20
167
  msgid "You can see the plugin in action at following link"
168
  msgstr "A Plugin-t itt tudod működés közben kipróbálni"
169
 
170
- #: ../admin/help.php:26
171
  msgid "Support"
172
  msgstr "Támogatás"
173
 
174
- #: ../admin/help.php:28
175
- msgid "If you like my plugin or have any query, you can drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, like my <strong>Facebook</strong> pages and follow me at <strong>Twitter</strong>."
 
176
  msgstr "Ha tetszik a plugin, vagy kérdésed van, írhatsz nekem (angolul) <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a> címen, megtalálsz a <strong>Facebook</strong> oldalaimon és követhetsz a <strong>Twitter-en</strong>."
177
 
178
- #: ../admin/help.php:30
 
179
  #: ../admin/help.php:33
180
  #: ../admin/help.php:34
181
  #: ../admin/help.php:35
182
  #: ../admin/help.php:36
183
- #: ../admin/help.php:37
184
  msgid "Rate 5-star"
185
  msgstr "Osztályozz 5-ösre"
186
 
187
- #: ../admin/help.php:45
188
- msgid "Plugin Fan Page"
189
- msgstr "Plugin Rajongói Oldal"
190
-
191
- #: ../admin/help.php:54
192
- msgid "My Fan Page"
193
- msgstr "Személyes Oldal"
194
 
195
- #: ../admin/help.php:73
196
  msgid "Want plugin customization?"
197
  msgstr "Szeretnél egyedi funkciókat?"
198
 
199
- #: ../admin/help.php:75
200
- msgid "If you want custom features in the plugin, I can do it for you. Just drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>"
 
201
  msgstr "Ha egyedi funkciót szeretnél a plugin-ba, el tudom neked készíteni. Írj nekem egy e-mailt (angolul) a <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a> címre"
202
 
203
- #: ../admin/social_counter.php:11
204
- #: ../admin/social_counter.php:20
205
- #: ../admin/social_sharing.php:14
206
- #: ../admin/social_sharing.php:24
207
  #: ../admin/social_login.php:9
208
  #: ../admin/social_login.php:17
 
 
209
  msgid "Basic Configuration"
210
  msgstr "Alap Beállítások"
211
 
212
- #: ../admin/social_counter.php:12
213
- msgid "Social Counter"
214
- msgstr "Social Counter"
 
215
 
216
- #: ../admin/social_counter.php:13
217
- #: ../admin/social_sharing.php:16
 
 
 
 
 
 
218
  #: ../admin/social_login.php:11
 
 
 
 
219
  msgid "Shortcode & Widget"
220
  msgstr "Shortcode és Widget"
221
 
222
- #: ../admin/social_counter.php:14
223
- #: ../admin/social_sharing.php:18
 
 
 
 
224
  #: ../admin/social_commenting.php:12
 
225
  msgid "FAQ"
226
  msgstr "GYIK"
227
 
228
- #: ../admin/social_counter.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  #, fuzzy
230
- msgid "Enable Social Counter"
231
- msgstr "Közösségi Belépés Belkapcsolása"
232
 
233
- #: ../admin/social_counter.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  #, fuzzy
235
- msgid "Master control for Social Counter. It must be checked to enable Social Counter functionality"
236
- msgstr "Központi Közösségi Belépés beállítás. Be kell kapcsolnod a Közösségi Belépés használatához "
 
 
 
 
 
237
 
238
- #: ../admin/social_counter.php:50
 
239
  #, fuzzy
240
- msgid "<strong>Note:</strong> To disable counter on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
241
- msgstr "<strong>Megjegyzés:</strong> Az egyes bejegyzéseknél/oldalaknál ki tudod kapcsolni a megosztást a szerkesztési felület <strong>\"Super Socializer\"</strong> részében"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
 
243
- #: ../admin/social_counter.php:67
244
- #: ../admin/social_sharing.php:88
245
- msgid "bit.ly url shortener"
 
246
  msgstr "bit.ly url rövidítő"
247
 
248
- #: ../admin/social_counter.php:73
249
- msgid "Enable bit.ly url shortener for tweet button"
250
- msgstr "A bit.ly url rövidítő bekapcsolása a tweet gombhoz"
 
 
 
 
 
 
 
 
 
251
 
252
- #: ../admin/social_counter.php:83
253
- #: ../admin/social_sharing.php:104
254
  #, fuzzy
255
  msgid "Master control to enable bit.ly url shortening for sharing"
256
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
257
 
258
- #: ../admin/social_counter.php:91
259
- #: ../admin/social_sharing.php:112
260
  msgid "bit.ly username"
261
  msgstr "bit.ly felhasználónév"
262
 
263
- #: ../admin/social_counter.php:101
264
- #: ../admin/social_sharing.php:122
265
  #, fuzzy, php-format
266
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
267
  msgstr "Szükséges a Twitter Közösségi Belépés működéséhez. Kérlek, kövesd a dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter API Secret beszerzéséhez"
268
 
269
- #: ../admin/social_counter.php:110
270
- #: ../admin/social_sharing.php:131
271
  msgid "bit.ly API Key"
272
  msgstr "bit.ly API Key"
273
 
274
- #: ../admin/social_counter.php:120
275
- #: ../admin/social_sharing.php:141
276
  #, fuzzy, php-format
277
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
278
  msgstr "Szükséges a Twitter Közösségi Belépés működéséhez. Kérlek, kövesd a dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter API Key beszerzéshez"
279
 
280
- #: ../admin/social_counter.php:130
281
- #: ../admin/social_counter.php:136
282
- #: ../admin/social_commenting.php:187
283
- msgid "Language"
284
- msgstr "NYelv"
285
-
286
- #: ../admin/social_counter.php:146
287
- #, fuzzy, php-format
288
- msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
289
- msgstr "Add meg a nyelv kódját, amit a hozzászólás megjelenítéshez használjunk. A nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen az alapértelmezett (angol) nyelv használatához "
290
-
291
- #: ../admin/social_counter.php:155
292
- msgid "Twitter username in tweet button"
293
- msgstr "Twitter felhasználónév a tweet gombon "
294
 
295
- #: ../admin/social_counter.php:161
296
- #: ../admin/social_sharing.php:157
297
  msgid "Twitter username (without @)"
298
  msgstr "Twitter felhasználónév (@ nélkül)"
299
 
300
- #: ../admin/social_counter.php:171
301
- msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
302
  msgstr "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
303
 
304
- #: ../admin/social_counter.php:181
305
- #, fuzzy
306
- msgid "Horizontal Counter Interface Options"
307
  msgstr "Vízszintes Megosztási Felület Beállítások"
308
 
309
- #: ../admin/social_counter.php:187
310
- #, fuzzy
311
- msgid "Enable horizontal counter interface"
312
  msgstr "Vízszintes megosztási felület bekapcsolása"
313
 
314
- #: ../admin/social_counter.php:197
315
- #, fuzzy
316
- msgid "Master control to enable horizontal counter"
317
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
318
 
319
- #: ../admin/social_counter.php:207
320
- #: ../admin/social_counter.php:422
321
- #: ../admin/social_sharing.php:203
322
- #: ../admin/social_sharing.php:517
323
  msgid "Target Url"
324
  msgstr "Cél Url"
325
 
326
- #: ../admin/social_counter.php:211
327
- #: ../admin/social_counter.php:426
328
- #: ../admin/social_sharing.php:207
329
- #: ../admin/social_sharing.php:521
330
  msgid "Url of the webpage where icons are located (default)"
331
  msgstr "Url, ahol a megosztás ikonok betöltődtek (alapértelmezett)"
332
 
333
- #: ../admin/social_counter.php:213
334
- #: ../admin/social_counter.php:428
335
- #: ../admin/social_sharing.php:209
336
- #: ../admin/social_sharing.php:523
337
  msgid "Url of the homepage of your website"
338
  msgstr "A főoldalad Url-je"
339
 
340
- #: ../admin/social_counter.php:215
341
- #: ../admin/social_counter.php:430
342
- #: ../admin/social_sharing.php:211
343
- #: ../admin/social_sharing.php:525
344
  #, fuzzy
345
  msgid "Custom url"
346
  msgstr "Egyedi URL"
347
 
348
- #: ../admin/social_counter.php:222
349
- #: ../admin/social_counter.php:437
350
- msgid "Url to like/share/tweet and display like/share/tweet counts"
351
- msgstr "Url a like/share/tweet-eléshez és a like/share/tweet számok megjelenítéséhez"
352
 
353
- #: ../admin/social_counter.php:230
354
- #: ../admin/social_sharing.php:226
355
  #: ../admin/social_login.php:314
 
356
  msgid "Title"
357
  msgstr "Cím"
358
 
359
- #: ../admin/social_counter.php:240
360
- #, fuzzy
361
- msgid "The text to display above the counter interface"
362
- msgstr "Szöveg a megosztási felület fölött"
363
-
364
- #: ../admin/social_counter.php:248
365
- #: ../admin/social_counter.php:445
366
- #, fuzzy
367
- msgid "Select and rearrange providers"
368
- msgstr "Válassz szolgáltatókat"
369
-
370
- #: ../admin/social_counter.php:292
371
- #: ../admin/social_counter.php:488
372
- #, fuzzy
373
- msgid "Select the providers for counter interface. Drag them to rearrange."
374
- msgstr "Válassz szolgáltatókat a megosztási felülethez"
375
-
376
- #: ../admin/social_counter.php:300
377
- #: ../admin/social_counter.php:514
378
- #: ../admin/social_sharing.php:376
379
- #: ../admin/social_sharing.php:690
380
- msgid "Horizontal alignment"
381
- msgstr "Függőleges igazítás"
382
-
383
- #: ../admin/social_counter.php:304
384
- #: ../admin/social_counter.php:518
385
- #: ../admin/social_sharing.php:380
386
- #: ../admin/social_sharing.php:694
387
- msgid "Left"
388
- msgstr "Bal"
389
-
390
- #: ../admin/social_counter.php:305
391
- #: ../admin/social_sharing.php:381
392
- msgid "Center"
393
- msgstr "Középen"
394
-
395
- #: ../admin/social_counter.php:306
396
- #: ../admin/social_counter.php:519
397
- #: ../admin/social_sharing.php:382
398
- #: ../admin/social_sharing.php:695
399
- msgid "Right"
400
- msgstr "Jobb"
401
-
402
- #: ../admin/social_counter.php:314
403
- #: ../admin/social_counter.php:527
404
- #, fuzzy
405
- msgid "Horizontal alignment of the counter interface"
406
- msgstr "A megosztási felület függőleges igazítása"
407
-
408
- #: ../admin/social_counter.php:322
409
  #: ../admin/social_sharing.php:398
410
- msgid "Position with respect to content"
411
- msgstr "Elhelyezés a tartalomhoz képest"
412
-
413
- #: ../admin/social_counter.php:326
414
- #: ../admin/social_sharing.php:402
415
- msgid "Top of the content"
416
- msgstr "Tartalom felett"
417
-
418
- #: ../admin/social_counter.php:328
419
- #: ../admin/social_sharing.php:404
420
- msgid "Bottom of the content"
421
- msgstr "Tartalom alatt"
422
-
423
- #: ../admin/social_counter.php:335
424
- #, fuzzy
425
- msgid "Specify position of the counter interface with respect to the content"
426
- msgstr "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
427
-
428
- #: ../admin/social_counter.php:343
429
- #: ../admin/social_counter.php:593
430
- #, fuzzy
431
- msgid "Counter location"
432
- msgstr "Megosztási helyek"
433
-
434
- #: ../admin/social_counter.php:347
435
- #: ../admin/social_counter.php:597
436
- #: ../admin/social_sharing.php:423
437
- #: ../admin/social_sharing.php:773
438
- #: ../admin/social_login.php:514
439
- #: ../admin/social_login.php:544
440
- msgid "Homepage"
441
- msgstr "Kezdő oldal"
442
-
443
- #: ../admin/social_counter.php:349
444
- #: ../admin/social_counter.php:599
445
- #: ../admin/social_sharing.php:425
446
- #: ../admin/social_sharing.php:775
447
- msgid "Posts"
448
- msgstr "Bejegyzések"
449
-
450
- #: ../admin/social_counter.php:351
451
- #: ../admin/social_counter.php:601
452
- #: ../admin/social_sharing.php:427
453
- #: ../admin/social_sharing.php:777
454
- msgid "Pages"
455
- msgstr "Oldalak"
456
-
457
- #: ../admin/social_counter.php:353
458
- #: ../admin/social_counter.php:603
459
- #: ../admin/social_sharing.php:429
460
- #: ../admin/social_sharing.php:779
461
- msgid "Excerpts"
462
- msgstr "Kivonatok"
463
-
464
- #: ../admin/social_counter.php:355
465
- #: ../admin/social_counter.php:605
466
- #: ../admin/social_sharing.php:431
467
- #: ../admin/social_sharing.php:781
468
- msgid "Category Archives"
469
- msgstr "Kategória Archívum"
470
-
471
- #: ../admin/social_counter.php:357
472
- #: ../admin/social_counter.php:607
473
- #: ../admin/social_sharing.php:433
474
- #: ../admin/social_sharing.php:783
475
- msgid "Archive Pages (Category, Tag, Author or Date based pages)"
476
- msgstr "Archívum Pages (Kategória, Tag, Szerző vagy dátum alapján oldalak)"
477
-
478
- #: ../admin/social_counter.php:363
479
- #: ../admin/social_sharing.php:439
480
- msgid "BuddyPress activity and groups"
481
- msgstr "BuddyPress tevékenység és csoportok"
482
-
483
- #: ../admin/social_counter.php:370
484
- #: ../admin/social_counter.php:613
485
- #: ../admin/social_sharing.php:446
486
- #: ../admin/social_sharing.php:789
487
- msgid "BBPress forum"
488
- msgstr "BBPress fórum"
489
-
490
- #: ../admin/social_counter.php:373
491
- #: ../admin/social_counter.php:616
492
- #: ../admin/social_sharing.php:449
493
- #: ../admin/social_sharing.php:792
494
- msgid "BBPress topic"
495
- msgstr "BBPress téma"
496
-
497
- #: ../admin/social_counter.php:376
498
- #: ../admin/social_sharing.php:452
499
- msgid "BBPress reply"
500
- msgstr "BBPress válasz"
501
-
502
- #: ../admin/social_counter.php:386
503
- #, fuzzy
504
- msgid "Specify the pages where you want to enable counter interface"
505
- msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
506
-
507
- #: ../admin/social_counter.php:396
508
- #, fuzzy
509
- msgid "Vertical (Floating) counter interface Options"
510
- msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
511
-
512
- #: ../admin/social_counter.php:402
513
- #, fuzzy
514
- msgid "Enable vertical (floating) counter interface"
515
- msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
516
-
517
- #: ../admin/social_counter.php:412
518
- #, fuzzy
519
- msgid "Master control to enable vertical (floating) counter widget"
520
- msgstr "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
521
-
522
- #: ../admin/social_counter.php:496
523
- #: ../admin/social_sharing.php:672
524
- msgid "Background Color"
525
- msgstr "Háttér Szín"
526
-
527
- #: ../admin/social_counter.php:506
528
- msgid "Specify the color or hex code (example #cc78e0) for the background of vertical counter bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
529
- msgstr "Add meg a színt hexa színkódként (például #cc78e0) a függőleges számláló sáv hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
530
-
531
- #: ../admin/social_counter.php:536
532
- #: ../admin/social_sharing.php:712
533
- msgid "Left offset"
534
- msgstr "Bal margó"
535
-
536
- #: ../admin/social_counter.php:546
537
- #, fuzzy
538
- msgid "Specify a number. Increase in number will shift counter interface towards right and decrease will shift it towards left."
539
- msgstr "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet."
540
-
541
- #: ../admin/social_counter.php:556
542
- #: ../admin/social_sharing.php:732
543
- msgid "Right offset"
544
- msgstr "Jobb margó"
545
-
546
- #: ../admin/social_counter.php:566
547
- #, fuzzy
548
- msgid "Specify a number. Increase in number will shift counter interface towards left and decrease will shift it towards right."
549
- msgstr "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet."
550
-
551
- #: ../admin/social_counter.php:575
552
- #: ../admin/social_sharing.php:751
553
- msgid "Top offset"
554
- msgstr "Felső margó"
555
-
556
- #: ../admin/social_counter.php:585
557
- #, fuzzy
558
- msgid "Specify a number. Increase in number will shift counter interface towards bottom and decrease will shift it towards top."
559
- msgstr "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
560
-
561
- #: ../admin/social_counter.php:626
562
- #, fuzzy
563
- msgid "Specify the pages where you want to enable vertical counter interface"
564
- msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
565
-
566
- #: ../admin/social_counter.php:642
567
- #: ../admin/social_sharing.php:837
568
- #: ../admin/social_commenting.php:11
569
- #: ../admin/social_commenting.php:211
570
- #: ../admin/social_login.php:654
571
- msgid "Shortcode"
572
- msgstr "Shortcode"
573
-
574
- #: ../admin/social_counter.php:644
575
- #, fuzzy
576
- msgid "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content of required page/post where you want to display Social Counter interface."
577
- msgstr "Használhatod a <strong>[TheChamp-Sharing]</strong> Shortcode-ot a megfelelő bejegyzés/oldalon tartalmi részében, ahol a Közösségi Megosztás felületet meg akarod jeleníteni."
578
-
579
- #: ../admin/social_counter.php:645
580
- #: ../admin/social_counter.php:650
581
- #: ../admin/social_counter.php:655
582
- #: ../admin/social_counter.php:660
583
- #: ../admin/social_counter.php:665
584
- #: ../admin/social_counter.php:669
585
- #: ../admin/social_sharing.php:840
586
- #: ../admin/social_sharing.php:845
587
- #: ../admin/social_sharing.php:850
588
- #: ../admin/social_sharing.php:855
589
- #: ../admin/social_sharing.php:860
590
- #: ../admin/social_sharing.php:865
591
- #: ../admin/social_sharing.php:869
592
- #: ../admin/social_commenting.php:214
593
- #: ../admin/social_commenting.php:219
594
- #: ../admin/social_commenting.php:224
595
- #: ../admin/social_commenting.php:229
596
- #: ../admin/social_commenting.php:234
597
- #: ../admin/social_login.php:657
598
- #: ../admin/social_login.php:660
599
- msgid "Example"
600
- msgstr "Példa"
601
-
602
- #: ../admin/social_counter.php:647
603
- #: ../admin/social_sharing.php:842
604
- #: ../admin/social_commenting.php:216
605
- msgid "You can use following attributes in the Shortcode"
606
- msgstr "A következő attributumokat tudod használni a Shortcode-ban"
607
-
608
- #: ../admin/social_counter.php:649
609
- #, fuzzy
610
- msgid "Use <strong>style</strong> attribute to style the rendered Social Counter interface"
611
- msgstr "Használd a <strong>style</strong> attributumot a Közösségi Megosztás felület formázásához"
612
-
613
- #: ../admin/social_counter.php:654
614
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Counter interface. Default type is \"horizontal\"."
615
- msgstr "Használd a <strong>type</strong> attributumot a típus (\"horizontal\" vagy \"vertical\") Közösségi Megosztás felület választásához. Az alapértelmezett \"horizontal\"."
616
-
617
- #: ../admin/social_counter.php:658
618
- msgid "Left (Works with \"Vertical\" type interface only)"
619
- msgstr "Left (csak a \"Függőleges\" típusú felülettel működik)"
620
-
621
- #: ../admin/social_counter.php:659
622
- #, fuzzy
623
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Counter interface."
624
- msgstr "Használd a <strong>left</strong> attributumot a Közösségi Megosztási felület bal oldali margójának meghatározásához (távolság a képernyő bal szélétől)."
625
-
626
- #: ../admin/social_counter.php:663
627
- msgid "Top (Works with \"Vertical\" type interface only)"
628
- msgstr "Top (csak a \"Függőleges\" típusú felülettel működik)"
629
-
630
- #: ../admin/social_counter.php:664
631
- #, fuzzy
632
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Counter interface."
633
- msgstr "Használd a <strong>top</strong> attributumot a Közösségi Megosztási felület felső margójának meghatározásához (távolság a képernyő felső szélétől)."
634
-
635
- #: ../admin/social_counter.php:667
636
- #: ../admin/social_sharing.php:867
637
- msgid "url"
638
- msgstr ""
639
-
640
- #: ../admin/social_counter.php:668
641
- #, fuzzy
642
- msgid "Use <strong>url</strong> attribute to specify the url to be liked"
643
- msgstr "Használd a <strong>style</strong> attributumot a Közösségi Megosztás felület formázásához"
644
-
645
- #: ../admin/social_counter.php:671
646
- #: ../admin/social_sharing.php:871
647
- #: ../admin/social_commenting.php:236
648
- #: ../admin/social_login.php:662
649
- msgid "You can use shortcode in PHP file as following"
650
- msgstr "A shortcode-ot PHP fájlban így használhatod"
651
-
652
- #: ../admin/social_counter.php:673
653
- #, fuzzy
654
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]</strong>, so the final code looks like following"
655
- msgstr "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen szükségesre, mint pl. <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, így a végleges kód így fog kinézni"
656
-
657
- #: ../admin/social_counter.php:679
658
- #: ../admin/social_sharing.php:879
659
- #: ../admin/social_login.php:670
660
- msgid "Widget"
661
- msgstr "Widget"
662
-
663
- #: ../admin/social_counter.php:681
664
- #, fuzzy
665
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Counter (Horizontal Widget)</strong> and <strong>Super Socializer - Counter (Vertical Floating Widget)</strong> widgets in the required area."
666
- msgstr "A bal oldali menü <strong>Megjelenés</strong> > <strong>Widgetek</strong> részében megfoghatod a <strong>Super Socializer - Megosztás (Vízszintes Widget)</strong> és <strong>Super Socializer - Megosztás (Függőleges Widget)</strong>widgetet és a kívánt helyre húzhatod."
667
-
668
- #: ../admin/social_counter.php:691
669
- #, fuzzy
670
- msgid "How can I show like counts of my website rather than of individual pages/posts?"
671
- msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
672
-
673
- #: ../admin/social_counter.php:695
674
- #, fuzzy
675
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
676
- msgstr "Válasszon \"URL a honlapján a honlapon \" a \"cél URL-t \" opciót, és lehetővé teszi \"Show részesedése számít \" opciót"
677
-
678
- #: ../admin/social_counter.php:702
679
- #, fuzzy
680
- msgid "How can I disable social counter on particular page/post?"
681
- msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
682
-
683
- #: ../admin/social_counter.php:706
684
- #: ../admin/social_sharing.php:925
685
- #: ../admin/social_sharing.php:938
686
- #, fuzzy
687
- msgid "Edit that page/post and check the options at the bottom in \"Super Socializer\" section"
688
- msgstr "Szerkeszteni, hogy az oldal / post, és ellenőrizze a lehetőséget, \"Disable Facebook hozzászólásokról / oldal \" alul \"Super Socializer \" fejezetben"
689
-
690
- #: ../admin/social_counter.php:719
691
- #: ../admin/social_sharing.php:949
692
- #: ../admin/social_commenting.php:277
693
- #: ../admin/social_login.php:681
694
- msgid "Save Changes"
695
- msgstr "Változások Mentése"
696
-
697
- #: ../admin/social_sharing.php:15
698
- msgid "Social Sharing"
699
- msgstr "Közösségi Megosztás"
700
-
701
- #: ../admin/social_sharing.php:17
702
- msgid "Troubleshooter"
703
- msgstr "Hibamegoldó"
704
-
705
- #: ../admin/social_sharing.php:30
706
- msgid "Enable Social Sharing"
707
- msgstr "Közösségi Megosztás Bekapcsolás"
708
-
709
- #: ../admin/social_sharing.php:40
710
- msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
711
- msgstr "Központi beállítás a Közösségi Megosztáshoz. Be kell kapcsolnod a Közösségi Megosztás funkció működéséhez"
712
-
713
- #: ../admin/social_sharing.php:48
714
- msgid "Delete all the options on plugin deletion"
715
- msgstr "Minden beállítás törlése a plugin törlésekor"
716
-
717
- #: ../admin/social_sharing.php:58
718
- msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
719
- msgstr "Bekapcsolva a plugin beállítások törlődnek a plugin törlésekor/eltávolításakor és újra be kell állítanod mindent, amikor ismét telepíted azt."
720
-
721
- #: ../admin/social_sharing.php:72
722
- #, fuzzy
723
- msgid "<strong>Note:</strong> To disable sharing and specify minimum share counts per social network on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
724
- msgstr "<strong>Megjegyzés:</strong> Az egyes bejegyzéseknél/oldalaknál ki tudod kapcsolni a megosztást a szerkesztési felület <strong>\"Super Socializer\"</strong> részében"
725
-
726
- #: ../admin/social_sharing.php:94
727
- msgid "Enable bit.ly url shortener for sharing"
728
- msgstr "A bit.ly url rövidítő bekapcsolása a megosztáshoz"
729
-
730
- #: ../admin/social_sharing.php:151
731
- msgid "Twitter username in sharing"
732
- msgstr "Twitter felhasználónév a megosztásban"
733
-
734
- #: ../admin/social_sharing.php:167
735
- msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
736
- msgstr "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
737
-
738
- #: ../admin/social_sharing.php:177
739
- msgid "Horizontal Sharing Interface Options"
740
- msgstr "Vízszintes Megosztási Felület Beállítások"
741
-
742
- #: ../admin/social_sharing.php:183
743
- msgid "Enable horizontal sharing interface"
744
- msgstr "Vízszintes megosztási felület bekapcsolása"
745
-
746
- #: ../admin/social_sharing.php:193
747
- msgid "Master control to enable horizontal sharing"
748
- msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
749
-
750
- #: ../admin/social_sharing.php:218
751
- #: ../admin/social_sharing.php:532
752
- msgid "Url to share"
753
- msgstr "Megosztás Url-je"
754
-
755
- #: ../admin/social_sharing.php:236
756
  msgid "The text to display above the sharing interface"
757
  msgstr "Szöveg a megosztási felület fölött"
758
 
759
- #: ../admin/social_sharing.php:244
760
- #: ../admin/social_sharing.php:540
761
  #: ../admin/social_login.php:41
762
  msgid "Select providers"
763
  msgstr "Válassz szolgáltatókat"
764
 
765
- #: ../admin/social_sharing.php:249
766
- #: ../admin/social_sharing.php:545
767
- #: ../admin/social_login.php:46
768
- msgid "Facebook"
769
- msgstr "Facebook"
770
-
771
- #: ../admin/social_sharing.php:254
772
- #: ../admin/social_sharing.php:550
773
  #: ../admin/social_login.php:50
774
  msgid "Twitter"
775
  msgstr "Twitter"
776
 
777
- #: ../admin/social_sharing.php:259
778
- #: ../admin/social_sharing.php:555
779
  #: ../admin/social_login.php:54
780
  msgid "LinkedIn"
781
  msgstr "LinkedIn"
782
 
783
- #: ../admin/social_sharing.php:264
784
- #: ../admin/social_sharing.php:560
785
  #: ../admin/social_login.php:58
786
  msgid "Google+"
787
  msgstr "Google+"
788
 
789
- #: ../admin/social_sharing.php:269
790
- #: ../admin/social_sharing.php:565
791
  msgid "Print"
792
  msgstr "Nyomtatás"
793
 
794
- #: ../admin/social_sharing.php:274
795
- #: ../admin/social_sharing.php:570
796
  msgid "Email"
797
  msgstr "Email"
798
 
799
- #: ../admin/social_sharing.php:279
800
- #: ../admin/social_sharing.php:575
801
  msgid "Yahoo"
802
  msgstr "Yahoo"
803
 
804
- #: ../admin/social_sharing.php:284
805
- #: ../admin/social_sharing.php:580
806
  msgid "Reddit"
807
  msgstr "Reddit"
808
 
809
- #: ../admin/social_sharing.php:289
810
- #: ../admin/social_sharing.php:585
811
  msgid "Digg"
812
  msgstr "Digg"
813
 
814
- #: ../admin/social_sharing.php:294
815
- #: ../admin/social_sharing.php:590
816
  msgid "Delicious"
817
  msgstr "Delicious"
818
 
819
- #: ../admin/social_sharing.php:299
820
- #: ../admin/social_sharing.php:595
821
  msgid "StumbleUpon"
822
  msgstr "StumbleUpon"
823
 
824
- #: ../admin/social_sharing.php:304
825
- #: ../admin/social_sharing.php:600
826
  msgid "Float it"
827
  msgstr "Float it"
828
 
829
- #: ../admin/social_sharing.php:309
830
- #: ../admin/social_sharing.php:605
831
  msgid "Tumblr"
832
  msgstr "Tumblr"
833
 
834
- #: ../admin/social_sharing.php:314
835
- #: ../admin/social_sharing.php:610
836
  #: ../admin/social_login.php:62
837
  msgid "Vkontakte"
838
  msgstr "Vkontakte"
839
 
840
- #: ../admin/social_sharing.php:319
841
- #: ../admin/social_sharing.php:615
842
  msgid "Pinterest"
843
  msgstr "Pinterest"
844
 
845
- #: ../admin/social_sharing.php:324
846
- #: ../admin/social_sharing.php:620
847
  #: ../admin/social_login.php:70
848
  msgid "Xing"
849
  msgstr "Xing"
850
 
851
- #: ../admin/social_sharing.php:329
852
- #: ../admin/social_sharing.php:625
853
  msgid "Whatsapp"
854
  msgstr ""
855
 
856
- #: ../admin/social_sharing.php:337
857
- #: ../admin/social_sharing.php:633
858
  msgid "Select the providers for sharing interface"
859
  msgstr "Válassz szolgáltatókat a megosztási felülethez"
860
 
861
- #: ../admin/social_sharing.php:345
862
- #: ../admin/social_sharing.php:641
863
  msgid "Rearrange icons"
864
  msgstr "Ikonsorrend beállítás"
865
 
866
- #: ../admin/social_sharing.php:368
867
- #: ../admin/social_sharing.php:664
868
  msgid "Drag the icons to rearrange in desired order"
869
  msgstr "Fogd meg az ikont a megfelelő sorrend beállításához"
870
 
871
- #: ../admin/social_sharing.php:390
872
- #: ../admin/social_sharing.php:703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
873
  msgid "Horizontal alignment of the sharing interface"
874
  msgstr "A megosztási felület függőleges igazítása"
875
 
876
- #: ../admin/social_sharing.php:411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
877
  msgid "Specify position of the sharing interface with respect to the content"
878
  msgstr "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
879
 
880
- #: ../admin/social_sharing.php:419
881
- #: ../admin/social_sharing.php:769
882
  msgid "Sharing location"
883
  msgstr "Megosztási helyek"
884
 
885
- #: ../admin/social_sharing.php:462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
886
  msgid "Specify the pages where you want to enable Sharing interface"
887
  msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
888
 
889
- #: ../admin/social_sharing.php:470
890
- #: ../admin/social_sharing.php:810
891
  msgid "Show share counts"
892
  msgstr "Megosztás számok mutatása"
893
 
894
- #: ../admin/social_sharing.php:480
895
- #: ../admin/social_sharing.php:820
896
  msgid "If enabled, share counts are displayed above sharing icons."
897
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
898
 
899
- #: ../admin/social_sharing.php:491
 
 
 
 
 
 
 
 
 
 
 
900
  msgid "Vertical (Floating) Sharing Interface Options"
901
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
902
 
903
- #: ../admin/social_sharing.php:497
904
  msgid "Enable vertical (floating) sharing interface"
905
  msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
906
 
907
- #: ../admin/social_sharing.php:507
908
  msgid "Master control to enable vertical (floating) sharing widget"
909
  msgstr "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
910
 
911
- #: ../admin/social_sharing.php:682
 
 
 
 
 
912
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
913
  msgstr "Add meg a színt hexa színkódként (például #cc78e0) a függőleges megosztó sáv hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
914
 
915
- #: ../admin/social_sharing.php:722
 
 
 
 
 
916
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
917
  msgstr "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet."
918
 
919
- #: ../admin/social_sharing.php:742
 
 
 
 
 
920
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
921
  msgstr "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet."
922
 
923
- #: ../admin/social_sharing.php:761
 
 
 
 
 
924
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
925
  msgstr "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
926
 
927
- #: ../admin/social_sharing.php:802
928
  msgid "Specify the pages where you want to enable vertical Sharing interface"
929
  msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
930
 
931
- #: ../admin/social_sharing.php:839
932
- msgid "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content of required page/post where you want to display Social Sharing interface."
933
- msgstr "Használhatod a <strong>[TheChamp-Sharing]</strong> Shortcode-ot a megfelelő bejegyzés/oldalon tartalmi részében, ahol a Közösségi Megosztás felületet meg akarod jeleníteni."
934
-
935
- #: ../admin/social_sharing.php:844
936
- msgid "Use <strong>style</strong> attribute to style the rendered Social Sharing interface"
937
- msgstr "Használd a <strong>style</strong> attributumot a Közösségi Megosztás felület formázásához"
938
-
939
- #: ../admin/social_sharing.php:849
940
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Sharing interface. Default type is \"horizontal\"."
941
- msgstr "Használd a <strong>type</strong> attributumot a típus (\"horizontal\" vagy \"vertical\") Közösségi Megosztás felület választásához. Az alapértelmezett \"horizontal\"."
942
-
943
- #: ../admin/social_sharing.php:854
944
- #, fuzzy
945
- msgid "Use <strong>count</strong> attribute to enable the share counts on Social Sharing interface"
946
- msgstr "Használd a <strong>style</strong> attributumot a Közösségi Megosztás felület formázásához"
947
-
948
- #: ../admin/social_sharing.php:858
949
- #, fuzzy
950
- msgid "left (Works with \"Vertical\" type interface only)"
951
- msgstr "Left (csak a \"Függőleges\" típusú felülettel működik)"
952
-
953
- #: ../admin/social_sharing.php:859
954
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Sharing interface."
955
- msgstr "Használd a <strong>left</strong> attributumot a Közösségi Megosztási felület bal oldali margójának meghatározásához (távolság a képernyő bal szélétől)."
956
-
957
- #: ../admin/social_sharing.php:863
958
- #, fuzzy
959
- msgid "top (Works with \"Vertical\" type interface only)"
960
- msgstr "Top (csak a \"Függőleges\" típusú felülettel működik)"
961
-
962
- #: ../admin/social_sharing.php:864
963
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Sharing interface."
964
- msgstr "Használd a <strong>top</strong> attributumot a Közösségi Megosztási felület felső margójának meghatározásához (távolság a képernyő felső szélétől)."
965
-
966
- #: ../admin/social_sharing.php:868
967
- #, fuzzy
968
- msgid "Use <strong>url</strong> attribute to specify the url to be shared"
969
- msgstr "Használd a <strong>style</strong> attributumot a Közösségi Megosztás felület formázásához"
970
-
971
- #: ../admin/social_sharing.php:873
972
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]</strong>, so the final code looks like following"
973
- msgstr "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen szükségesre, mint pl. <strong>[TheChamp-Sharing style=\"background-color:#000;\"</strong>, így a végleges kód így fog kinézni"
974
-
975
- #: ../admin/social_sharing.php:881
976
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - Sharing (Vertical Floating Widget)</strong> widgets in the required area."
977
- msgstr "A bal oldali menü <strong>Megjelenés</strong> > <strong>Widgetek</strong> részében megfoghatod a <strong>Super Socializer - Megosztás (Vízszintes Widget)</strong> és <strong>Super Socializer - Megosztás (Függőleges Widget)</strong>widgetet és a kívánt helyre húzhatod."
978
-
979
- #: ../admin/social_sharing.php:891
980
  msgid "Facebook Sharing Troubleshooter"
981
  msgstr "Facebook Megosztás Hibaelhárító"
982
 
983
- #: ../admin/social_sharing.php:896
984
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
985
  msgstr "Ha a Facebook megosztás nem működik helyesen, kattints a következő linkre, és add meg a problémás url-t (ahol a Facebook megosztás nem működik tökéletesen) a szöveges mezőben:"
986
 
987
- #: ../admin/social_sharing.php:910
988
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
989
  msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
990
 
991
- #: ../admin/social_sharing.php:914
992
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option and enable \"Show share counts\" option"
993
- msgstr "Válasszon \"URL a honlapján a honlapon \" a \"cél URL-t \" opciót, és lehetővé teszi \"Show részesedése számít \" opciót"
994
-
995
- #: ../admin/social_sharing.php:921
996
  #, fuzzy
997
  msgid "How can I disable sharing on particular page/post?"
998
  msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
999
 
1000
- #: ../admin/social_sharing.php:934
1001
  msgid "How can I specify minimum sharing count for sharing networks?"
1002
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
1003
 
 
 
 
 
 
 
 
1004
  #: ../admin/social_commenting.php:10
1005
- msgid "Facebook Commenting"
1006
- msgstr "Facebook Hozzászólás"
 
 
 
 
 
 
 
1007
 
1008
  #: ../admin/social_commenting.php:18
1009
  #: ../admin/social_commenting.php:24
1010
- msgid "Enable Facebook Commenting"
1011
- msgstr "Facebook Hozzászólás Bekapcsolás"
1012
-
1013
  #: ../admin/social_commenting.php:34
 
1014
  #, fuzzy
1015
- msgid "After enabling this option, Facebook commenting will appear before Wordpress comment form at your website"
1016
- msgstr "Bekapcsolás esetén, a Facebook hozzászólások a Wordpress hozzászólások helyén jelennek meg az oldalon"
1017
 
1018
- #: ../admin/social_commenting.php:44
1019
- msgid "Facebook Commenting Options"
1020
- msgstr "Facebook Hozzászólás Beállítások"
1021
 
1022
- #: ../admin/social_commenting.php:50
1023
- msgid "Keep only Facebook Commenting"
1024
- msgstr "Csak Facebook Hozzászólás legyen"
1025
 
1026
  #: ../admin/social_commenting.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1027
  #, fuzzy
1028
- msgid "If enabled, only Facebook commenting would be visible without default comment form"
1029
- msgstr "Bekapcsolás esetén, csak Facebook hozzászólás lesz látható, és nem lehet visszakapcsolni a WordPress hozzászólásokra"
 
 
 
 
 
 
 
 
 
 
 
 
1030
 
1031
- #: ../admin/social_commenting.php:68
 
1032
  msgid "Url to comment on"
1033
  msgstr "A hozzászólás URL"
1034
 
1035
- #: ../admin/social_commenting.php:78
1036
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1037
  msgstr "Abszolut URL, amelyhez a hozzászólások végelegesen kapcsolva lesznek. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1038
 
1039
- #: ../admin/social_commenting.php:86
 
1040
  msgid "Width"
1041
  msgstr "Szélesség"
1042
 
1043
- #: ../admin/social_commenting.php:96
1044
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1045
  msgstr "Hagyja üresen automata beállítás szélességét. A szélessége (pixel) a hozzászólások blokk."
1046
 
1047
- #: ../admin/social_commenting.php:104
1048
  msgid "Color Scheme"
1049
  msgstr "Szín Sablon"
1050
 
1051
- #: ../admin/social_commenting.php:108
1052
  msgid "Light"
1053
  msgstr "Világos"
1054
 
1055
- #: ../admin/social_commenting.php:109
1056
  msgid "Dark"
1057
  msgstr "Sötét"
1058
 
1059
- #: ../admin/social_commenting.php:117
1060
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1061
  msgstr "A plugin által használt színsablon. \"Világos\" vagy \"sötét\" lehet."
1062
 
1063
- #: ../admin/social_commenting.php:125
1064
  #, fuzzy
1065
  msgid "Number of comments"
1066
  msgstr "Hozzászólások száma"
1067
 
1068
- #: ../admin/social_commenting.php:135
1069
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1070
  msgstr "Az elsőre látható hozzászólások száma. A minimum 1, az alapértelmezés 10."
1071
 
1072
- #: ../admin/social_commenting.php:143
1073
  msgid "Order by"
1074
  msgstr "Rendezés"
1075
 
1076
- #: ../admin/social_commenting.php:147
1077
  msgid "Social"
1078
  msgstr "Közösségi"
1079
 
1080
- #: ../admin/social_commenting.php:148
1081
  msgid "Reverse Time"
1082
  msgstr "Fordított Sorrend"
1083
 
1084
- #: ../admin/social_commenting.php:149
1085
  msgid "Time"
1086
  msgstr "Időrend"
1087
 
1088
- #: ../admin/social_commenting.php:157
1089
  msgid "The order to use when displaying comments."
1090
  msgstr "A hozzászólás megjelenésének sorrendje."
1091
 
1092
- #: ../admin/social_commenting.php:165
1093
  msgid "Mobile"
1094
  msgstr "Mobil"
1095
 
1096
- #: ../admin/social_commenting.php:169
1097
  msgid "Auto Detect"
1098
  msgstr "Automata Érzékelés"
1099
 
1100
- #: ../admin/social_commenting.php:170
1101
  msgid "True"
1102
  msgstr "Igaz"
1103
 
1104
- #: ../admin/social_commenting.php:171
1105
  msgid "False"
1106
  msgstr "Hamis"
1107
 
1108
- #: ../admin/social_commenting.php:179
1109
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
1110
  msgstr "Logikai érték, mely meghatározza, hogy mobilra optimalizált legyen-e a megjelenés."
1111
 
1112
- #: ../admin/social_commenting.php:197
 
 
 
 
 
 
1113
  #, php-format
1114
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1115
  msgstr "Add meg a nyelv kódját, amit a hozzászólás megjelenítéshez használjunk. A nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen az alapértelmezett (angol) nyelv használatához "
1116
 
1117
- #: ../admin/social_commenting.php:213
1118
  #, fuzzy
1119
- msgid "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the content of required page/post where you want to display Facebook Commenting interface."
1120
- msgstr "Használhatod a <strong>[TheChamp-Sharing]</strong> Shortcode-ot a megfelelő bejegyzés/oldalon tartalmi részében, ahol a Közösségi Megosztás felületet meg akarod jeleníteni."
1121
-
1122
- #: ../admin/social_commenting.php:218
1123
- #, fuzzy
1124
- msgid "Use <strong>style</strong> attribute to style the rendered commenting interface"
1125
- msgstr "Használd a <strong>style</strong> attributumot a Közösségi Megosztás felület formázásához"
1126
-
1127
- #: ../admin/social_commenting.php:223
1128
- #, fuzzy
1129
- msgid "Use <strong>url</strong> attribute to specify the target url for comments. This defaults to the page where shortcode is used."
1130
- msgstr "Használd a <strong>left</strong> attributumot a Közösségi Megosztási felület bal oldali margójának meghatározásához (távolság a képernyő bal szélétől)."
1131
-
1132
- #: ../admin/social_commenting.php:227
1133
- msgid "num_posts"
1134
- msgstr ""
1135
 
1136
- #: ../admin/social_commenting.php:228
 
1137
  #, fuzzy
1138
- msgid "Use <strong>num_posts</strong> attribute to specify the number of comments to display."
1139
- msgstr "Használd a <strong>style</strong> attributumot a Közösségi Megosztás felület formázásához"
1140
-
1141
- #: ../admin/social_commenting.php:232
1142
- #, fuzzy
1143
- msgid "width"
1144
- msgstr "Szélesség"
1145
 
1146
- #: ../admin/social_commenting.php:233
 
 
 
 
1147
  #, fuzzy
1148
- msgid "Use <strong>width</strong> attribute to specify the width of commenting interface. Omit it for fluid width"
1149
- msgstr "Használd a <strong>top</strong> attributumot a Közösségi Megosztási felület felső margójának meghatározásához (távolság a képernyő felső szélétől)."
1150
 
1151
- #: ../admin/social_commenting.php:238
1152
  #, fuzzy
1153
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1154
- msgstr "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen szükségesre, mint pl. <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, így a végleges kód így fog kinézni"
1155
 
1156
- #: ../admin/social_commenting.php:249
 
1157
  #, fuzzy
1158
- msgid "How can I disable FB comments at individual page/post?"
1159
- msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
1160
 
1161
- #: ../admin/social_commenting.php:253
1162
- msgid "Edit that page/post and check the option \"Disable Facebook Comments on this post/page\" at the bottom in \"Super Socializer\" section"
1163
- msgstr "Szerkeszteni, hogy az oldal / post, és ellenőrizze a lehetőséget, \"Disable Facebook hozzászólásokról / oldal \" alul \"Super Socializer \" fejezetben"
1164
 
1165
- #: ../admin/social_commenting.php:262
1166
- msgid "How to enable only Facebook Comments without enabling default comment form?"
1167
- msgstr "Hogyan kell engedélyezni csak Facebook-hozzászólások engedélyezése nélkül alapértelmezett comment formájában?"
1168
 
1169
- #: ../admin/social_commenting.php:266
1170
- msgid "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting\" section."
1171
- msgstr "Engedélyezze a \"Ne csak Facebook kommentálta\" opciót \"Facebook kommentálta\" fejezetben."
 
1172
 
1173
  #: ../admin/social_login.php:10
1174
  msgid "Social Login"
@@ -1475,20 +1269,9 @@ msgid "If enabled, email provided by the user will be verified by sending a conf
1475
  msgstr "Ha be van kapcsolva, a felhasználó által megadott e-mailcímre ellenőrző üzenetet küldünk egy megerősítő linkkel. A felhasználó nem tud belépni, amíg nem erősítette meg e-mailcímét "
1476
 
1477
  #: ../admin/social_login.php:656
1478
- msgid "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of required page/post where you want to display Social Login interface."
1479
- msgstr "Használd a <strong>[TheChamp-Login]</strong> Shortcode-ot a bejegyzés/oldal tartalomban, ahol a Közösségi Belépés felületet meg akarod jeleníteni."
1480
-
1481
- #: ../admin/social_login.php:659
1482
- msgid "You can use \"style\" attribute in the Shortcode to style the rendered Social Login interface."
1483
- msgstr "Használhatod a \"style\" attributumot a Shortcode-ban a Közösségi Belépés felület formázásához."
1484
-
1485
- #: ../admin/social_login.php:664
1486
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1487
- msgstr "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen szükségesre, mint pl. <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, így a végleges kód így fog kinézni"
1488
-
1489
- #: ../admin/social_login.php:672
1490
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Login</strong> widget in the required area."
1491
- msgstr "A bal oldali menü <strong>Megjelenés</strong> > <strong>Widgetek</strong> részében megfoghatod a <strong>Super Socializer - Belépés</strong> widgetet és a kívánt helyre húzhatod."
1492
 
1493
  #: ../admin/admin.php:8
1494
  msgid "Welcome"
@@ -1503,7 +1286,8 @@ msgid "Getting Started"
1503
  msgstr "Első Lépések"
1504
 
1505
  #: ../admin/admin.php:12
1506
- msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left pan. <strong>Social Sharing</strong> is enabled at your website by default."
 
1507
  msgstr "Kezdd el a beállítást a <strong>Super Socializer</strong> menu alatti menüpontokban a bal oldalon. A <strong>Közösségi Megosztás</strong> már be is van kapcsolva oldaladon."
1508
 
1509
  #: ../admin/admin.php:13
@@ -1522,14 +1306,147 @@ msgstr "A <strong>Közösségi Megosztás</strong> részben, kiválaszthatod, me
1522
 
1523
  #: ../admin/admin.php:16
1524
  #, fuzzy
1525
- msgid "In <strong>Social Counter</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1526
  msgstr "A <strong>Közösségi Megosztás</strong> részben, kiválaszthatod, mely Közösségi Hálózatokon legyen megosztás, és finomíthatod a megosztás beállításait."
1527
 
1528
- #: ../inc/social_sharing.php:492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1529
  msgid "Invalid request"
1530
  msgstr "Hibás kérés"
1531
 
1532
- #: ../inc/social_sharing.php:499
1533
  msgid "Providers not selected"
1534
  msgstr "Nincs kiválasztott szolgáltató"
1535
 
@@ -1634,6 +1551,397 @@ msgstr "Vízszíntes widget. Legyen látogatóidnak egyszerű a megosztás a Kö
1634
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1635
  msgstr "Függőleges lebegő widget. Legyen látogatóidnak egyszerű a megosztás a Közösségi Hálózatokon, mint a Facebook, Twitter, Google+, vagy a LinkedIn"
1636
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1637
  #~ msgid "White-Label"
1638
  #~ msgstr "White-Label"
1639
 
@@ -1787,9 +2095,6 @@ msgstr "Függőleges lebegő widget. Legyen látogatóidnak egyszerű a megoszt
1787
  #~ msgid "Load first"
1788
  #~ msgstr "Elsőként betöltött"
1789
 
1790
- #~ msgid "Default Commenting"
1791
- #~ msgstr "Alapértelmezett Hozzászólás"
1792
-
1793
  #~ msgid "Selected commenting will be loaded first on the page"
1794
  #~ msgstr "A kiválasztott hozzászólás típus töltődik be először az oldalon"
1795
 
@@ -1815,9 +2120,6 @@ msgstr "Függőleges lebegő widget. Legyen látogatóidnak egyszerű a megoszt
1815
  #~ msgid "Facebook Comments"
1816
  #~ msgstr "Comentarios Facebook"
1817
 
1818
- #~ msgid "WordPress Comments"
1819
- #~ msgstr "WordPress Comentarios"
1820
-
1821
  #~ msgid ""
1822
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
1823
  #~ "><strong>Note: Social Login at comment form of your website will not get "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-29 03:14+0530\n"
6
+ "PO-Revision-Date: 2015-05-29 03:20+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
27
 
28
+ #: ../super_socializer.php:349
29
  msgid "Please verify your email address to login."
30
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
31
 
32
+ #: ../super_socializer.php:349
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
35
 
36
+ #: ../super_socializer.php:353
37
  msgid "Notification"
38
  msgstr "Értesítés"
39
 
40
+ #: ../super_socializer.php:372
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "E-mail cím szükséges"
44
 
45
+ #: ../super_socializer.php:375
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
48
 
49
+ #: ../super_socializer.php:388
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Kövesd a 11-ik és 12-ik lépést GooglePlus alkalmazás beállítás oldalon, about to open"
52
 
53
+ #: ../super_socializer.php:463
54
+ msgid "Leave a reply"
55
+ msgstr "Válaszolj"
56
+
57
+ #: ../super_socializer.php:565
58
  msgid "Email you entered is already registered or invalid"
59
  msgstr "A megadott e-maik már regisztrálva van, vagy hibás"
60
 
61
+ #: ../super_socializer.php:569
62
  msgid "Please enter a valid email address. You might be required to verify it"
63
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
64
 
74
  msgid "Click to hide help"
75
  msgstr "Elrejtéséhez kattintson segítség"
76
 
77
+ #: ../helper.php:175
78
  msgid "Settings"
79
  msgstr "Beállítások"
80
 
81
+ #: ../helper.php:492
82
  #, fuzzy
83
  msgid "Account linked successfully"
84
  msgstr "A beállítások mentése sikeres"
85
 
86
+ #: ../helper.php:498
87
  msgid "Account already exists or linked"
88
  msgstr "Fiók már létezik, vagy össze van kötve"
89
 
90
+ #: ../helper.php:509
91
  #, fuzzy
92
  msgid "You are already connected with"
93
  msgstr "Készen állsz weboldalad \"Közösségesítésére\"."
94
 
95
+ #: ../helper.php:509
96
  msgid "as primary social network"
97
  msgstr "elsődleges szociális háló"
98
 
99
+ #: ../helper.php:526
100
  msgid "Link your social account to login to your account at this website"
101
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
102
 
103
+ #: ../helper.php:571
104
  msgid "Currently"
105
  msgstr "Jelenleg"
106
 
107
+ #: ../helper.php:571
108
  msgid "Remove"
109
  msgstr "Eltávolítás"
110
 
111
+ #: ../helper.php:664
112
  msgid "Disable Horizontal Social Sharing on this "
113
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
114
 
115
+ #: ../helper.php:669
116
  msgid "Disable Vertical Social Sharing on this "
117
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
118
 
119
+ #: ../helper.php:674
120
  #, fuzzy
121
+ msgid "Disable Horizontal like buttons on this "
122
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
123
 
124
+ #: ../helper.php:679
125
  #, fuzzy
126
+ msgid "Disable Vertical like buttons on this "
127
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
128
 
129
+ #: ../helper.php:684
130
  #, fuzzy
131
+ msgid "Disable Social Commenting on this "
132
  msgstr "Facebook Hozzászólás Bekapcsolás"
133
 
134
+ #: ../helper.php:693
135
  #, fuzzy
136
  msgid "Horizontal sharing"
137
  msgstr "Függőleges igazítás"
138
 
139
+ #: ../helper.php:699
140
+ #: ../helper.php:718
141
  #, fuzzy
142
  msgid "Starting share count for "
143
  msgstr "Megosztás számok mutatása"
144
 
145
+ #: ../helper.php:712
146
  #, fuzzy
147
  msgid "Vertical sharing"
148
  msgstr "Közösségi Megosztás"
160
  msgstr "készítette"
161
 
162
  #: ../admin/help.php:7
163
+ msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
164
+ msgstr "Mi egy kreatív csapat, egyedi elképzeléseit szem előtt tartva és a szolgáltatás szívében. Szeretjük, amit csinálunk. További info csatlakozzon hozzánk"
165
 
166
+ #: ../admin/help.php:17
167
  msgid "Plugin Demo"
168
  msgstr "Plugin Demo"
169
 
170
+ #: ../admin/help.php:19
171
  msgid "You can see the plugin in action at following link"
172
  msgstr "A Plugin-t itt tudod működés közben kipróbálni"
173
 
174
+ #: ../admin/help.php:25
175
  msgid "Support"
176
  msgstr "Támogatás"
177
 
178
+ #: ../admin/help.php:27
179
+ #, fuzzy
180
+ msgid "If you like the plugin or have any query, drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>, like our <strong>Facebook</strong> page and follow us at <strong>Twitter</strong>."
181
  msgstr "Ha tetszik a plugin, vagy kérdésed van, írhatsz nekem (angolul) <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a> címen, megtalálsz a <strong>Facebook</strong> oldalaimon és követhetsz a <strong>Twitter-en</strong>."
182
 
183
+ #: ../admin/help.php:29
184
+ #: ../admin/help.php:32
185
  #: ../admin/help.php:33
186
  #: ../admin/help.php:34
187
  #: ../admin/help.php:35
188
  #: ../admin/help.php:36
 
189
  msgid "Rate 5-star"
190
  msgstr "Osztályozz 5-ösre"
191
 
192
+ #: ../admin/help.php:44
193
+ #: ../admin/social_sharing.php:411
194
+ #: ../admin/social_sharing.php:736
195
+ #: ../admin/social_login.php:46
196
+ msgid "Facebook"
197
+ msgstr "Facebook"
 
198
 
199
+ #: ../admin/help.php:63
200
  msgid "Want plugin customization?"
201
  msgstr "Szeretnél egyedi funkciókat?"
202
 
203
+ #: ../admin/help.php:65
204
+ #, fuzzy
205
+ msgid "If you want custom features in the plugin, just drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>"
206
  msgstr "Ha egyedi funkciót szeretnél a plugin-ba, el tudom neked készíteni. Írj nekem egy e-mailt (angolul) a <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a> címre"
207
 
208
+ #: ../admin/social_sharing.php:11
209
+ #: ../admin/social_sharing.php:22
 
 
210
  #: ../admin/social_login.php:9
211
  #: ../admin/social_login.php:17
212
+ #: ../admin/like_buttons.php:11
213
+ #: ../admin/like_buttons.php:19
214
  msgid "Basic Configuration"
215
  msgstr "Alap Beállítások"
216
 
217
+ #: ../admin/social_sharing.php:12
218
+ #, fuzzy
219
+ msgid "Sharing Interface"
220
+ msgstr "Vízszintes Megosztási Felület Beállítások"
221
 
222
+ #: ../admin/social_sharing.php:13
223
+ #, fuzzy
224
+ msgid "Sharing Options"
225
+ msgstr "Megosztási helyek"
226
+
227
+ #: ../admin/social_sharing.php:14
228
+ #: ../admin/social_sharing.php:1067
229
+ #: ../admin/social_sharing.php:1069
230
  #: ../admin/social_login.php:11
231
+ #: ../admin/social_login.php:654
232
+ #: ../admin/like_buttons.php:13
233
+ #: ../admin/like_buttons.php:644
234
+ #: ../admin/like_buttons.php:646
235
  msgid "Shortcode & Widget"
236
  msgstr "Shortcode és Widget"
237
 
238
+ #: ../admin/social_sharing.php:15
239
+ msgid "Troubleshooter"
240
+ msgstr "Hibamegoldó"
241
+
242
+ #: ../admin/social_sharing.php:16
243
+ #: ../admin/social_sharing.php:1098
244
  #: ../admin/social_commenting.php:12
245
+ #: ../admin/social_commenting.php:404
246
  msgid "FAQ"
247
  msgstr "GYIK"
248
 
249
+ #: ../admin/social_sharing.php:28
250
+ msgid "Enable Social Sharing"
251
+ msgstr "Közösségi Megosztás Bekapcsolás"
252
+
253
+ #: ../admin/social_sharing.php:38
254
+ msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
255
+ msgstr "Központi beállítás a Közösségi Megosztáshoz. Be kell kapcsolnod a Közösségi Megosztás funkció működéséhez"
256
+
257
+ #: ../admin/social_sharing.php:46
258
+ msgid "Delete all the options on plugin deletion"
259
+ msgstr "Minden beállítás törlése a plugin törlésekor"
260
+
261
+ #: ../admin/social_sharing.php:56
262
+ msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
263
+ msgstr "Bekapcsolva a plugin beállítások törlődnek a plugin törlésekor/eltávolításakor és újra be kell állítanod mindent, amikor ismét telepíted azt."
264
+
265
+ #: ../admin/social_sharing.php:71
266
  #, fuzzy
267
+ msgid "Horizontal interface options"
268
+ msgstr "Vízszintes Megosztási Felület Beállítások"
269
 
270
+ #: ../admin/social_sharing.php:77
271
+ #: ../admin/social_sharing.php:155
272
+ msgid "Shape"
273
+ msgstr "alak"
274
+
275
+ #: ../admin/social_sharing.php:85
276
+ #: ../admin/social_sharing.php:163
277
+ msgid "Round"
278
+ msgstr "kerek"
279
+
280
+ #: ../admin/social_sharing.php:87
281
+ #: ../admin/social_sharing.php:165
282
+ msgid "Square"
283
+ msgstr "szögletes"
284
+
285
+ #: ../admin/social_sharing.php:94
286
+ #: ../admin/social_sharing.php:172
287
  #, fuzzy
288
+ msgid "Shape of the sharing icons"
289
+ msgstr "Megosztás számok mutatása"
290
+
291
+ #: ../admin/social_sharing.php:102
292
+ #: ../admin/social_sharing.php:180
293
+ msgid "Size (in pixels)"
294
+ msgstr "Méret (pixel)"
295
 
296
+ #: ../admin/social_sharing.php:120
297
+ #: ../admin/social_sharing.php:198
298
  #, fuzzy
299
+ msgid "Size of the sharing icons"
300
+ msgstr "A megosztási felület függőleges igazítása"
301
+
302
+ #: ../admin/social_sharing.php:127
303
+ #: ../admin/social_sharing.php:205
304
+ msgid "Icon Preview"
305
+ msgstr "icon Preview"
306
+
307
+ #: ../admin/social_sharing.php:141
308
+ #: ../admin/social_sharing.php:219
309
+ msgid "Do not forget to save the configuration after making changes by clicking the save button below"
310
+ msgstr "Ne felejtsd el menteni a konfigurációs változtatások után, kattintson a Mentés gombra"
311
+
312
+ #: ../admin/social_sharing.php:149
313
+ #, fuzzy
314
+ msgid "Vertical interface options"
315
+ msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
316
 
317
+ #: ../admin/social_sharing.php:232
318
+ #: ../admin/like_buttons.php:51
319
+ #, fuzzy
320
+ msgid "Url shortener"
321
  msgstr "bit.ly url rövidítő"
322
 
323
+ #: ../admin/social_sharing.php:238
324
+ msgid "Use shortlinks already installed"
325
+ msgstr "Használja shortlinks már telepítve"
326
+
327
+ #: ../admin/social_sharing.php:248
328
+ #: ../admin/like_buttons.php:67
329
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
330
+ msgstr "Lehetővé teszi a rövidített URL-ek is, amikor közös tartalmat, ha a zsiradék bővítmény telepítése"
331
+
332
+ #: ../admin/social_sharing.php:256
333
+ msgid "Enable bit.ly url shortener for sharing"
334
+ msgstr "A bit.ly url rövidítő bekapcsolása a megosztáshoz"
335
 
336
+ #: ../admin/social_sharing.php:266
337
+ #: ../admin/like_buttons.php:85
338
  #, fuzzy
339
  msgid "Master control to enable bit.ly url shortening for sharing"
340
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
341
 
342
+ #: ../admin/social_sharing.php:274
343
+ #: ../admin/like_buttons.php:93
344
  msgid "bit.ly username"
345
  msgstr "bit.ly felhasználónév"
346
 
347
+ #: ../admin/social_sharing.php:284
348
+ #: ../admin/like_buttons.php:103
349
  #, fuzzy, php-format
350
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
351
  msgstr "Szükséges a Twitter Közösségi Belépés működéséhez. Kérlek, kövesd a dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter API Secret beszerzéséhez"
352
 
353
+ #: ../admin/social_sharing.php:293
354
+ #: ../admin/like_buttons.php:112
355
  msgid "bit.ly API Key"
356
  msgstr "bit.ly API Key"
357
 
358
+ #: ../admin/social_sharing.php:303
359
+ #: ../admin/like_buttons.php:122
360
  #, fuzzy, php-format
361
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
362
  msgstr "Szükséges a Twitter Közösségi Belépés működéséhez. Kérlek, kövesd a dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter API Key beszerzéshez"
363
 
364
+ #: ../admin/social_sharing.php:313
365
+ msgid "Twitter username in sharing"
366
+ msgstr "Twitter felhasználónév a megosztásban"
 
 
 
 
 
 
 
 
 
 
 
367
 
368
+ #: ../admin/social_sharing.php:319
369
+ #: ../admin/like_buttons.php:163
370
  msgid "Twitter username (without @)"
371
  msgstr "Twitter felhasználónév (@ nélkül)"
372
 
373
+ #: ../admin/social_sharing.php:329
374
+ msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
375
  msgstr "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
376
 
377
+ #: ../admin/social_sharing.php:339
378
+ msgid "Horizontal Sharing Interface Options"
 
379
  msgstr "Vízszintes Megosztási Felület Beállítások"
380
 
381
+ #: ../admin/social_sharing.php:345
382
+ msgid "Enable horizontal sharing interface"
 
383
  msgstr "Vízszintes megosztási felület bekapcsolása"
384
 
385
+ #: ../admin/social_sharing.php:355
386
+ msgid "Master control to enable horizontal sharing"
 
387
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
388
 
389
+ #: ../admin/social_sharing.php:365
390
+ #: ../admin/social_sharing.php:708
391
+ #: ../admin/like_buttons.php:209
392
+ #: ../admin/like_buttons.php:424
393
  msgid "Target Url"
394
  msgstr "Cél Url"
395
 
396
+ #: ../admin/social_sharing.php:369
397
+ #: ../admin/social_sharing.php:712
398
+ #: ../admin/like_buttons.php:213
399
+ #: ../admin/like_buttons.php:428
400
  msgid "Url of the webpage where icons are located (default)"
401
  msgstr "Url, ahol a megosztás ikonok betöltődtek (alapértelmezett)"
402
 
403
+ #: ../admin/social_sharing.php:371
404
+ #: ../admin/social_sharing.php:714
405
+ #: ../admin/like_buttons.php:215
406
+ #: ../admin/like_buttons.php:430
407
  msgid "Url of the homepage of your website"
408
  msgstr "A főoldalad Url-je"
409
 
410
+ #: ../admin/social_sharing.php:373
411
+ #: ../admin/social_sharing.php:716
412
+ #: ../admin/like_buttons.php:217
413
+ #: ../admin/like_buttons.php:432
414
  #, fuzzy
415
  msgid "Custom url"
416
  msgstr "Egyedi URL"
417
 
418
+ #: ../admin/social_sharing.php:380
419
+ #: ../admin/social_sharing.php:723
420
+ msgid "Url to share"
421
+ msgstr "Megosztás Url-je"
422
 
423
+ #: ../admin/social_sharing.php:388
 
424
  #: ../admin/social_login.php:314
425
+ #: ../admin/like_buttons.php:232
426
  msgid "Title"
427
  msgstr "Cím"
428
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
429
  #: ../admin/social_sharing.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  msgid "The text to display above the sharing interface"
431
  msgstr "Szöveg a megosztási felület fölött"
432
 
433
+ #: ../admin/social_sharing.php:406
434
+ #: ../admin/social_sharing.php:731
435
  #: ../admin/social_login.php:41
436
  msgid "Select providers"
437
  msgstr "Válassz szolgáltatókat"
438
 
439
+ #: ../admin/social_sharing.php:416
440
+ #: ../admin/social_sharing.php:741
 
 
 
 
 
 
441
  #: ../admin/social_login.php:50
442
  msgid "Twitter"
443
  msgstr "Twitter"
444
 
445
+ #: ../admin/social_sharing.php:421
446
+ #: ../admin/social_sharing.php:746
447
  #: ../admin/social_login.php:54
448
  msgid "LinkedIn"
449
  msgstr "LinkedIn"
450
 
451
+ #: ../admin/social_sharing.php:426
452
+ #: ../admin/social_sharing.php:751
453
  #: ../admin/social_login.php:58
454
  msgid "Google+"
455
  msgstr "Google+"
456
 
457
+ #: ../admin/social_sharing.php:431
458
+ #: ../admin/social_sharing.php:756
459
  msgid "Print"
460
  msgstr "Nyomtatás"
461
 
462
+ #: ../admin/social_sharing.php:436
463
+ #: ../admin/social_sharing.php:761
464
  msgid "Email"
465
  msgstr "Email"
466
 
467
+ #: ../admin/social_sharing.php:441
468
+ #: ../admin/social_sharing.php:766
469
  msgid "Yahoo"
470
  msgstr "Yahoo"
471
 
472
+ #: ../admin/social_sharing.php:446
473
+ #: ../admin/social_sharing.php:771
474
  msgid "Reddit"
475
  msgstr "Reddit"
476
 
477
+ #: ../admin/social_sharing.php:451
478
+ #: ../admin/social_sharing.php:776
479
  msgid "Digg"
480
  msgstr "Digg"
481
 
482
+ #: ../admin/social_sharing.php:456
483
+ #: ../admin/social_sharing.php:781
484
  msgid "Delicious"
485
  msgstr "Delicious"
486
 
487
+ #: ../admin/social_sharing.php:461
488
+ #: ../admin/social_sharing.php:786
489
  msgid "StumbleUpon"
490
  msgstr "StumbleUpon"
491
 
492
+ #: ../admin/social_sharing.php:466
493
+ #: ../admin/social_sharing.php:791
494
  msgid "Float it"
495
  msgstr "Float it"
496
 
497
+ #: ../admin/social_sharing.php:471
498
+ #: ../admin/social_sharing.php:796
499
  msgid "Tumblr"
500
  msgstr "Tumblr"
501
 
502
+ #: ../admin/social_sharing.php:476
503
+ #: ../admin/social_sharing.php:801
504
  #: ../admin/social_login.php:62
505
  msgid "Vkontakte"
506
  msgstr "Vkontakte"
507
 
508
+ #: ../admin/social_sharing.php:481
509
+ #: ../admin/social_sharing.php:806
510
  msgid "Pinterest"
511
  msgstr "Pinterest"
512
 
513
+ #: ../admin/social_sharing.php:486
514
+ #: ../admin/social_sharing.php:811
515
  #: ../admin/social_login.php:70
516
  msgid "Xing"
517
  msgstr "Xing"
518
 
519
+ #: ../admin/social_sharing.php:491
520
+ #: ../admin/social_sharing.php:816
521
  msgid "Whatsapp"
522
  msgstr ""
523
 
524
+ #: ../admin/social_sharing.php:499
525
+ #: ../admin/social_sharing.php:824
526
  msgid "Select the providers for sharing interface"
527
  msgstr "Válassz szolgáltatókat a megosztási felülethez"
528
 
529
+ #: ../admin/social_sharing.php:507
530
+ #: ../admin/social_sharing.php:832
531
  msgid "Rearrange icons"
532
  msgstr "Ikonsorrend beállítás"
533
 
534
+ #: ../admin/social_sharing.php:541
535
+ #: ../admin/social_sharing.php:866
536
  msgid "Drag the icons to rearrange in desired order"
537
  msgstr "Fogd meg az ikont a megfelelő sorrend beállításához"
538
 
539
+ #: ../admin/social_sharing.php:549
540
+ #: ../admin/social_sharing.php:892
541
+ #: ../admin/like_buttons.php:302
542
+ #: ../admin/like_buttons.php:516
543
+ msgid "Horizontal alignment"
544
+ msgstr "Függőleges igazítás"
545
+
546
+ #: ../admin/social_sharing.php:553
547
+ #: ../admin/social_sharing.php:896
548
+ #: ../admin/like_buttons.php:306
549
+ #: ../admin/like_buttons.php:520
550
+ msgid "Left"
551
+ msgstr "Bal"
552
+
553
+ #: ../admin/social_sharing.php:554
554
+ #: ../admin/like_buttons.php:307
555
+ msgid "Center"
556
+ msgstr "Középen"
557
+
558
+ #: ../admin/social_sharing.php:555
559
+ #: ../admin/social_sharing.php:897
560
+ #: ../admin/like_buttons.php:308
561
+ #: ../admin/like_buttons.php:521
562
+ msgid "Right"
563
+ msgstr "Jobb"
564
+
565
+ #: ../admin/social_sharing.php:563
566
+ #: ../admin/social_sharing.php:905
567
  msgid "Horizontal alignment of the sharing interface"
568
  msgstr "A megosztási felület függőleges igazítása"
569
 
570
+ #: ../admin/social_sharing.php:571
571
+ #: ../admin/like_buttons.php:324
572
+ msgid "Position with respect to content"
573
+ msgstr "Elhelyezés a tartalomhoz képest"
574
+
575
+ #: ../admin/social_sharing.php:575
576
+ #: ../admin/like_buttons.php:328
577
+ msgid "Top of the content"
578
+ msgstr "Tartalom felett"
579
+
580
+ #: ../admin/social_sharing.php:577
581
+ #: ../admin/like_buttons.php:330
582
+ msgid "Bottom of the content"
583
+ msgstr "Tartalom alatt"
584
+
585
+ #: ../admin/social_sharing.php:584
586
  msgid "Specify position of the sharing interface with respect to the content"
587
  msgstr "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
588
 
589
+ #: ../admin/social_sharing.php:592
590
+ #: ../admin/social_sharing.php:971
591
  msgid "Sharing location"
592
  msgstr "Megosztási helyek"
593
 
594
+ #: ../admin/social_sharing.php:596
595
+ #: ../admin/social_sharing.php:975
596
+ #: ../admin/social_login.php:514
597
+ #: ../admin/social_login.php:544
598
+ #: ../admin/like_buttons.php:349
599
+ #: ../admin/like_buttons.php:599
600
+ msgid "Homepage"
601
+ msgstr "Kezdő oldal"
602
+
603
+ #: ../admin/social_sharing.php:598
604
+ #: ../admin/social_sharing.php:977
605
+ #: ../admin/like_buttons.php:351
606
+ #: ../admin/like_buttons.php:601
607
+ msgid "Posts"
608
+ msgstr "Bejegyzések"
609
+
610
+ #: ../admin/social_sharing.php:600
611
+ #: ../admin/social_sharing.php:979
612
+ #: ../admin/like_buttons.php:353
613
+ #: ../admin/like_buttons.php:603
614
+ msgid "Pages"
615
+ msgstr "Oldalak"
616
+
617
+ #: ../admin/social_sharing.php:602
618
+ #: ../admin/social_sharing.php:981
619
+ #: ../admin/like_buttons.php:355
620
+ #: ../admin/like_buttons.php:605
621
+ msgid "Excerpts"
622
+ msgstr "Kivonatok"
623
+
624
+ #: ../admin/social_sharing.php:604
625
+ #: ../admin/social_sharing.php:983
626
+ #: ../admin/like_buttons.php:357
627
+ #: ../admin/like_buttons.php:607
628
+ msgid "Category Archives"
629
+ msgstr "Kategória Archívum"
630
+
631
+ #: ../admin/social_sharing.php:606
632
+ #: ../admin/social_sharing.php:985
633
+ #: ../admin/like_buttons.php:359
634
+ #: ../admin/like_buttons.php:609
635
+ msgid "Archive Pages (Category, Tag, Author or Date based pages)"
636
+ msgstr "Archívum Pages (Kategória, Tag, Szerző vagy dátum alapján oldalak)"
637
+
638
+ #: ../admin/social_sharing.php:612
639
+ #: ../admin/like_buttons.php:365
640
+ msgid "BuddyPress activity and groups"
641
+ msgstr "BuddyPress tevékenység és csoportok"
642
+
643
+ #: ../admin/social_sharing.php:619
644
+ #: ../admin/social_sharing.php:991
645
+ #: ../admin/like_buttons.php:372
646
+ #: ../admin/like_buttons.php:615
647
+ msgid "BBPress forum"
648
+ msgstr "BBPress fórum"
649
+
650
+ #: ../admin/social_sharing.php:622
651
+ #: ../admin/social_sharing.php:994
652
+ #: ../admin/like_buttons.php:375
653
+ #: ../admin/like_buttons.php:618
654
+ msgid "BBPress topic"
655
+ msgstr "BBPress téma"
656
+
657
+ #: ../admin/social_sharing.php:625
658
+ #: ../admin/like_buttons.php:378
659
+ msgid "BBPress reply"
660
+ msgstr "BBPress válasz"
661
+
662
+ #: ../admin/social_sharing.php:635
663
  msgid "Specify the pages where you want to enable Sharing interface"
664
  msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
665
 
666
+ #: ../admin/social_sharing.php:643
667
+ #: ../admin/social_sharing.php:1012
668
  msgid "Show share counts"
669
  msgstr "Megosztás számok mutatása"
670
 
671
+ #: ../admin/social_sharing.php:653
672
+ #: ../admin/social_sharing.php:1022
673
  msgid "If enabled, share counts are displayed above sharing icons."
674
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
675
 
676
+ #: ../admin/social_sharing.php:662
677
+ #: ../admin/social_sharing.php:1031
678
+ #, fuzzy
679
+ msgid "Enable 'More' icon"
680
+ msgstr "E-mail ellenőrzés bekapcsolása"
681
+
682
+ #: ../admin/social_sharing.php:672
683
+ #: ../admin/social_sharing.php:1041
684
+ msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
685
+ msgstr "Ha engedélyezve van, \"More \" ikon jelenik meg, miután a kiválasztott megosztás ikonok ami azt mutatja, további fájlcserélő hálózatok popup"
686
+
687
+ #: ../admin/social_sharing.php:682
688
  msgid "Vertical (Floating) Sharing Interface Options"
689
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
690
 
691
+ #: ../admin/social_sharing.php:688
692
  msgid "Enable vertical (floating) sharing interface"
693
  msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
694
 
695
+ #: ../admin/social_sharing.php:698
696
  msgid "Master control to enable vertical (floating) sharing widget"
697
  msgstr "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
698
 
699
+ #: ../admin/social_sharing.php:874
700
+ #: ../admin/like_buttons.php:498
701
+ msgid "Background Color"
702
+ msgstr "Háttér Szín"
703
+
704
+ #: ../admin/social_sharing.php:884
705
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
706
  msgstr "Add meg a színt hexa színkódként (például #cc78e0) a függőleges megosztó sáv hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
707
 
708
+ #: ../admin/social_sharing.php:914
709
+ #: ../admin/like_buttons.php:538
710
+ msgid "Left offset"
711
+ msgstr "Bal margó"
712
+
713
+ #: ../admin/social_sharing.php:924
714
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
715
  msgstr "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet."
716
 
717
+ #: ../admin/social_sharing.php:934
718
+ #: ../admin/like_buttons.php:558
719
+ msgid "Right offset"
720
+ msgstr "Jobb margó"
721
+
722
+ #: ../admin/social_sharing.php:944
723
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
724
  msgstr "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet."
725
 
726
+ #: ../admin/social_sharing.php:953
727
+ #: ../admin/like_buttons.php:577
728
+ msgid "Top offset"
729
+ msgstr "Felső margó"
730
+
731
+ #: ../admin/social_sharing.php:963
732
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
733
  msgstr "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
734
 
735
+ #: ../admin/social_sharing.php:1004
736
  msgid "Specify the pages where you want to enable vertical Sharing interface"
737
  msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
738
 
739
+ #: ../admin/social_sharing.php:1079
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
  msgid "Facebook Sharing Troubleshooter"
741
  msgstr "Facebook Megosztás Hibaelhárító"
742
 
743
+ #: ../admin/social_sharing.php:1084
744
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
745
  msgstr "Ha a Facebook megosztás nem működik helyesen, kattints a következő linkre, és add meg a problémás url-t (ahol a Facebook megosztás nem működik tökéletesen) a szöveges mezőben:"
746
 
747
+ #: ../admin/social_sharing.php:1100
748
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
749
  msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
750
 
751
+ #: ../admin/social_sharing.php:1101
 
 
 
 
752
  #, fuzzy
753
  msgid "How can I disable sharing on particular page/post?"
754
  msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
755
 
756
+ #: ../admin/social_sharing.php:1102
757
  msgid "How can I specify minimum sharing count for sharing networks?"
758
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
759
 
760
+ #: ../admin/social_sharing.php:1112
761
+ #: ../admin/social_commenting.php:414
762
+ #: ../admin/social_login.php:665
763
+ #: ../admin/like_buttons.php:655
764
+ msgid "Save Changes"
765
+ msgstr "Változások Mentése"
766
+
767
  #: ../admin/social_commenting.php:10
768
+ #, fuzzy
769
+ msgid "Social Commenting"
770
+ msgstr "Alapértelmezett Hozzászólás"
771
+
772
+ #: ../admin/social_commenting.php:11
773
+ #: ../admin/social_commenting.php:392
774
+ #: ../admin/social_commenting.php:394
775
+ msgid "Shortcode"
776
+ msgstr "Shortcode"
777
 
778
  #: ../admin/social_commenting.php:18
779
  #: ../admin/social_commenting.php:24
 
 
 
780
  #: ../admin/social_commenting.php:34
781
+ #: ../admin/social_commenting.php:134
782
  #, fuzzy
783
+ msgid "Enable Social Commenting"
784
+ msgstr "Közösségi Belépés Belkapcsolása"
785
 
786
+ #: ../admin/social_commenting.php:42
787
+ msgid "Order of tabs in commenting interface"
788
+ msgstr "A lapok sorrendjének kommentálva interfész"
789
 
790
+ #: ../admin/social_commenting.php:52
791
+ msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
792
+ msgstr "Lapjainak sorrendjét mutatja szociális kommentálva interfész. Alapértékek wordpress,facebook,googleplus,disqus"
793
 
794
  #: ../admin/social_commenting.php:60
795
+ msgid "Comment area label"
796
+ msgstr "Megjegyzés területen címke"
797
+
798
+ #: ../admin/social_commenting.php:71
799
+ msgid "Labels"
800
+ msgstr "címkék"
801
+
802
+ #: ../admin/social_commenting.php:77
803
+ #, fuzzy
804
+ msgid "Label for WordPress Commenting tab"
805
+ msgstr "WordPress Comentarios"
806
+
807
+ #: ../admin/social_commenting.php:87
808
+ #, fuzzy
809
+ msgid "Label for Facebook Commenting tab"
810
+ msgstr "Facebook Hozzászólás Bekapcsolás"
811
+
812
+ #: ../admin/social_commenting.php:97
813
  #, fuzzy
814
+ msgid "Label for G+ Commenting tab"
815
+ msgstr "Facebook Hozzászólás"
816
+
817
+ #: ../admin/social_commenting.php:107
818
+ msgid "Label for Disqus Commenting tab"
819
+ msgstr "Címke Disqus kommentálva lap"
820
+
821
+ #: ../admin/social_commenting.php:118
822
+ msgid "Facebook Commenting Options"
823
+ msgstr "Facebook Hozzászólás Beállítások"
824
+
825
+ #: ../admin/social_commenting.php:124
826
+ msgid "Enable Facebook Commenting"
827
+ msgstr "Facebook Hozzászólás Bekapcsolás"
828
 
829
+ #: ../admin/social_commenting.php:143
830
+ #: ../admin/social_commenting.php:323
831
  msgid "Url to comment on"
832
  msgstr "A hozzászólás URL"
833
 
834
+ #: ../admin/social_commenting.php:153
835
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
836
  msgstr "Abszolut URL, amelyhez a hozzászólások végelegesen kapcsolva lesznek. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
837
 
838
+ #: ../admin/social_commenting.php:161
839
+ #: ../admin/social_commenting.php:305
840
  msgid "Width"
841
  msgstr "Szélesség"
842
 
843
+ #: ../admin/social_commenting.php:171
844
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
845
  msgstr "Hagyja üresen automata beállítás szélességét. A szélessége (pixel) a hozzászólások blokk."
846
 
847
+ #: ../admin/social_commenting.php:179
848
  msgid "Color Scheme"
849
  msgstr "Szín Sablon"
850
 
851
+ #: ../admin/social_commenting.php:183
852
  msgid "Light"
853
  msgstr "Világos"
854
 
855
+ #: ../admin/social_commenting.php:184
856
  msgid "Dark"
857
  msgstr "Sötét"
858
 
859
+ #: ../admin/social_commenting.php:192
860
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
861
  msgstr "A plugin által használt színsablon. \"Világos\" vagy \"sötét\" lehet."
862
 
863
+ #: ../admin/social_commenting.php:200
864
  #, fuzzy
865
  msgid "Number of comments"
866
  msgstr "Hozzászólások száma"
867
 
868
+ #: ../admin/social_commenting.php:210
869
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
870
  msgstr "Az elsőre látható hozzászólások száma. A minimum 1, az alapértelmezés 10."
871
 
872
+ #: ../admin/social_commenting.php:218
873
  msgid "Order by"
874
  msgstr "Rendezés"
875
 
876
+ #: ../admin/social_commenting.php:222
877
  msgid "Social"
878
  msgstr "Közösségi"
879
 
880
+ #: ../admin/social_commenting.php:223
881
  msgid "Reverse Time"
882
  msgstr "Fordított Sorrend"
883
 
884
+ #: ../admin/social_commenting.php:224
885
  msgid "Time"
886
  msgstr "Időrend"
887
 
888
+ #: ../admin/social_commenting.php:232
889
  msgid "The order to use when displaying comments."
890
  msgstr "A hozzászólás megjelenésének sorrendje."
891
 
892
+ #: ../admin/social_commenting.php:240
893
  msgid "Mobile"
894
  msgstr "Mobil"
895
 
896
+ #: ../admin/social_commenting.php:244
897
  msgid "Auto Detect"
898
  msgstr "Automata Érzékelés"
899
 
900
+ #: ../admin/social_commenting.php:245
901
  msgid "True"
902
  msgstr "Igaz"
903
 
904
+ #: ../admin/social_commenting.php:246
905
  msgid "False"
906
  msgstr "Hamis"
907
 
908
+ #: ../admin/social_commenting.php:254
909
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
910
  msgstr "Logikai érték, mely meghatározza, hogy mobilra optimalizált legyen-e a megjelenés."
911
 
912
+ #: ../admin/social_commenting.php:262
913
+ #: ../admin/like_buttons.php:132
914
+ #: ../admin/like_buttons.php:138
915
+ msgid "Language"
916
+ msgstr "NYelv"
917
+
918
+ #: ../admin/social_commenting.php:272
919
  #, php-format
920
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
921
  msgstr "Add meg a nyelv kódját, amit a hozzászólás megjelenítéshez használjunk. A nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen az alapértelmezett (angol) nyelv használatához "
922
 
923
+ #: ../admin/social_commenting.php:281
924
  #, fuzzy
925
+ msgid "Google Plus Commenting Options"
926
+ msgstr "Facebook Hozzászólás Beállítások"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
927
 
928
+ #: ../admin/social_commenting.php:287
929
+ #: ../admin/social_commenting.php:297
930
  #, fuzzy
931
+ msgid "Enable Google Plus Commenting"
932
+ msgstr "Facebook Hozzászólás Bekapcsolás"
 
 
 
 
 
933
 
934
+ #: ../admin/social_commenting.php:315
935
+ msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
936
+ msgstr "Szélessége googleplus kommentálva interfész. Hagyja üresen BEALLI"
937
+
938
+ #: ../admin/social_commenting.php:333
939
  #, fuzzy
940
+ msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
941
+ msgstr "Abszolut URL, amelyhez a hozzászólások végelegesen kapcsolva lesznek. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
942
 
943
+ #: ../admin/social_commenting.php:342
944
  #, fuzzy
945
+ msgid "Disqus Commenting Options"
946
+ msgstr "Facebook Hozzászólás Beállítások"
947
 
948
+ #: ../admin/social_commenting.php:348
949
+ #: ../admin/social_commenting.php:358
950
  #, fuzzy
951
+ msgid "Enable Disqus Commenting"
952
+ msgstr "Facebook Hozzászólás Bekapcsolás"
953
 
954
+ #: ../admin/social_commenting.php:366
955
+ msgid "Disqus Shortname"
956
+ msgstr ""
957
 
958
+ #: ../admin/social_commenting.php:376
959
+ msgid "<strong>Required to use Disqus commenting.</strong> You can find it in your Disqus plugin settings section as shown in the screenshot below"
960
+ msgstr "<strong>használatához szükséges Disqus kommentálva.</strong> Megtalálható a Disqus bővítmény beállítások részben, amint az a lenti képen"
961
 
962
+ #: ../admin/social_commenting.php:406
963
+ #, fuzzy
964
+ msgid "How can I disable Social Commenting at individual page/post?"
965
+ msgstr "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon kívül is?"
966
 
967
  #: ../admin/social_login.php:10
968
  msgid "Social Login"
1269
  msgstr "Ha be van kapcsolva, a felhasználó által megadott e-mailcímre ellenőrző üzenetet küldünk egy megerősítő linkkel. A felhasználó nem tud belépni, amíg nem erősítette meg e-mailcímét "
1270
 
1271
  #: ../admin/social_login.php:656
1272
+ #, fuzzy
1273
+ msgid "Sortcode & Widget"
1274
+ msgstr "Shortcode és Widget"
 
 
 
 
 
 
 
 
 
 
 
1275
 
1276
  #: ../admin/admin.php:8
1277
  msgid "Welcome"
1286
  msgstr "Első Lépések"
1287
 
1288
  #: ../admin/admin.php:12
1289
+ #, fuzzy
1290
+ msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default."
1291
  msgstr "Kezdd el a beállítást a <strong>Super Socializer</strong> menu alatti menüpontokban a bal oldalon. A <strong>Közösségi Megosztás</strong> már be is van kapcsolva oldaladon."
1292
 
1293
  #: ../admin/admin.php:13
1306
 
1307
  #: ../admin/admin.php:16
1308
  #, fuzzy
1309
+ msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1310
  msgstr "A <strong>Közösségi Megosztás</strong> részben, kiválaszthatod, mely Közösségi Hálózatokon legyen megosztás, és finomíthatod a megosztás beállításait."
1311
 
1312
+ #: ../admin/like_buttons.php:12
1313
+ msgid "Like Buttons"
1314
+ msgstr "Like gombok"
1315
+
1316
+ #: ../admin/like_buttons.php:25
1317
+ msgid "Enable Like Buttons"
1318
+ msgstr "Engedélyezze Like gombok"
1319
+
1320
+ #: ../admin/like_buttons.php:35
1321
+ #, fuzzy
1322
+ msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1323
+ msgstr "Központi Közösségi Belépés beállítás. Be kell kapcsolnod a Közösségi Belépés használatához "
1324
+
1325
+ #: ../admin/like_buttons.php:57
1326
+ msgid "Use shortlinks already installed, for tweet button"
1327
+ msgstr "Használja shortlinks már telepítve van, a tweet gomb"
1328
+
1329
+ #: ../admin/like_buttons.php:75
1330
+ msgid "Enable bit.ly url shortener for tweet button"
1331
+ msgstr "A bit.ly url rövidítő bekapcsolása a tweet gombhoz"
1332
+
1333
+ #: ../admin/like_buttons.php:148
1334
+ #, fuzzy, php-format
1335
+ msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1336
+ msgstr "Add meg a nyelv kódját, amit a hozzászólás megjelenítéshez használjunk. A nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen az alapértelmezett (angol) nyelv használatához "
1337
+
1338
+ #: ../admin/like_buttons.php:157
1339
+ msgid "Twitter username in tweet button"
1340
+ msgstr "Twitter felhasználónév a tweet gombon "
1341
+
1342
+ #: ../admin/like_buttons.php:173
1343
+ msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1344
+ msgstr "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
1345
+
1346
+ #: ../admin/like_buttons.php:183
1347
+ #, fuzzy
1348
+ msgid "Horizontal Interface Options"
1349
+ msgstr "Vízszintes Megosztási Felület Beállítások"
1350
+
1351
+ #: ../admin/like_buttons.php:189
1352
+ #, fuzzy
1353
+ msgid "Enable horizontal interface"
1354
+ msgstr "Vízszintes megosztási felület bekapcsolása"
1355
+
1356
+ #: ../admin/like_buttons.php:199
1357
+ #, fuzzy
1358
+ msgid "Master control to enable horizontal like buttons"
1359
+ msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
1360
+
1361
+ #: ../admin/like_buttons.php:224
1362
+ #: ../admin/like_buttons.php:439
1363
+ msgid "Url to like/share/tweet and display like/share/tweet counts"
1364
+ msgstr "Url a like/share/tweet-eléshez és a like/share/tweet számok megjelenítéséhez"
1365
+
1366
+ #: ../admin/like_buttons.php:242
1367
+ #, fuzzy
1368
+ msgid "The text to display above the interface"
1369
+ msgstr "Szöveg a megosztási felület fölött"
1370
+
1371
+ #: ../admin/like_buttons.php:250
1372
+ #: ../admin/like_buttons.php:447
1373
+ #, fuzzy
1374
+ msgid "Select and rearrange providers"
1375
+ msgstr "Válassz szolgáltatókat"
1376
+
1377
+ #: ../admin/like_buttons.php:294
1378
+ #: ../admin/like_buttons.php:490
1379
+ #, fuzzy
1380
+ msgid "Select the providers for interface. Drag them to rearrange."
1381
+ msgstr "Válassz szolgáltatókat a megosztási felülethez"
1382
+
1383
+ #: ../admin/like_buttons.php:316
1384
+ #: ../admin/like_buttons.php:529
1385
+ #, fuzzy
1386
+ msgid "Horizontal alignment of the interface"
1387
+ msgstr "A megosztási felület függőleges igazítása"
1388
+
1389
+ #: ../admin/like_buttons.php:337
1390
+ #, fuzzy
1391
+ msgid "Specify position of the interface with respect to the content"
1392
+ msgstr "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
1393
+
1394
+ #: ../admin/like_buttons.php:345
1395
+ #: ../admin/like_buttons.php:595
1396
+ #, fuzzy
1397
+ msgid "Interface location"
1398
+ msgstr "Megosztási helyek"
1399
+
1400
+ #: ../admin/like_buttons.php:388
1401
+ #, fuzzy
1402
+ msgid "Specify the pages where you want to enable interface"
1403
+ msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
1404
+
1405
+ #: ../admin/like_buttons.php:398
1406
+ #, fuzzy
1407
+ msgid "Vertical (Floating) like buttons Options"
1408
+ msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
1409
+
1410
+ #: ../admin/like_buttons.php:404
1411
+ #, fuzzy
1412
+ msgid "Enable vertical (floating) like buttons"
1413
+ msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
1414
+
1415
+ #: ../admin/like_buttons.php:414
1416
+ #, fuzzy
1417
+ msgid "Master control to enable vertical (floating) counter widget"
1418
+ msgstr "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
1419
+
1420
+ #: ../admin/like_buttons.php:508
1421
+ #, fuzzy
1422
+ msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1423
+ msgstr "Add meg a színt hexa színkódként (például #cc78e0) a függőleges számláló sáv hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href=\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
1424
+
1425
+ #: ../admin/like_buttons.php:548
1426
+ #, fuzzy
1427
+ msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left."
1428
+ msgstr "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet."
1429
+
1430
+ #: ../admin/like_buttons.php:568
1431
+ #, fuzzy
1432
+ msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right."
1433
+ msgstr "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet."
1434
+
1435
+ #: ../admin/like_buttons.php:587
1436
+ #, fuzzy
1437
+ msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1438
+ msgstr "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
1439
+
1440
+ #: ../admin/like_buttons.php:628
1441
+ #, fuzzy
1442
+ msgid "Specify the pages where you want to enable vertical interface"
1443
+ msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
1444
+
1445
+ #: ../inc/social_sharing.php:515
1446
  msgid "Invalid request"
1447
  msgstr "Hibás kérés"
1448
 
1449
+ #: ../inc/social_sharing.php:522
1450
  msgid "Providers not selected"
1451
  msgstr "Nincs kiválasztott szolgáltató"
1452
 
1551
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1552
  msgstr "Függőleges lebegő widget. Legyen látogatóidnak egyszerű a megosztás a Közösségi Hálózatokon, mint a Facebook, Twitter, Google+, vagy a LinkedIn"
1553
 
1554
+ #~ msgid ""
1555
+ #~ "I am a tech enthusiast. I like to play with code and build great stuff "
1556
+ #~ "(and like to call myself - The Champ....:) ). You can connect with me "
1557
+ #~ "(and my upcoming work) via:"
1558
+ #~ msgstr ""
1559
+ #~ "A technólógia rajongója vagyok. Szeretek játszani a kóddal és valami nagy "
1560
+ #~ "dolgot készíteni (és szeretem magam - The Champ-nek nevezni... :) ). "
1561
+ #~ "Kapcsolatba léphetsz velem (és a készülő munkáimmal) így:"
1562
+
1563
+ #~ msgid "Plugin Fan Page"
1564
+ #~ msgstr "Plugin Rajongói Oldal"
1565
+
1566
+ #~ msgid "My Fan Page"
1567
+ #~ msgstr "Személyes Oldal"
1568
+
1569
+ #~ msgid "Social Counter"
1570
+ #~ msgstr "Social Counter"
1571
+
1572
+ #, fuzzy
1573
+ #~ msgid ""
1574
+ #~ "Master control for Social Counter. It must be checked to enable Social "
1575
+ #~ "Counter functionality"
1576
+ #~ msgstr ""
1577
+ #~ "Központi Közösségi Belépés beállítás. Be kell kapcsolnod a Közösségi "
1578
+ #~ "Belépés használatához "
1579
+
1580
+ #, fuzzy
1581
+ #~ msgid ""
1582
+ #~ "<strong>Note:</strong> To disable counter on particular page/post, edit "
1583
+ #~ "that page/post and check the options at the bottom in <strong>\"Super "
1584
+ #~ "Socializer\"</strong> section"
1585
+ #~ msgstr ""
1586
+ #~ "<strong>Megjegyzés:</strong> Az egyes bejegyzéseknél/oldalaknál ki tudod "
1587
+ #~ "kapcsolni a megosztást a szerkesztési felület <strong>\"Super Socializer"
1588
+ #~ "\"</strong> részében"
1589
+
1590
+ #, fuzzy
1591
+ #~ msgid ""
1592
+ #~ "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content "
1593
+ #~ "of required page/post where you want to display Social Counter interface."
1594
+ #~ msgstr ""
1595
+ #~ "Használhatod a <strong>[TheChamp-Sharing]</strong> Shortcode-ot a "
1596
+ #~ "megfelelő bejegyzés/oldalon tartalmi részében, ahol a Közösségi Megosztás "
1597
+ #~ "felületet meg akarod jeleníteni."
1598
+
1599
+ #~ msgid "Example"
1600
+ #~ msgstr "Példa"
1601
+
1602
+ #~ msgid "You can use following attributes in the Shortcode"
1603
+ #~ msgstr "A következő attributumokat tudod használni a Shortcode-ban"
1604
+
1605
+ #, fuzzy
1606
+ #~ msgid ""
1607
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Counter "
1608
+ #~ "interface"
1609
+ #~ msgstr ""
1610
+ #~ "Használd a <strong>style</strong> attributumot a Közösségi Megosztás "
1611
+ #~ "felület formázásához"
1612
+
1613
+ #~ msgid ""
1614
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1615
+ #~ "or \"vertical\") of Social Counter interface. Default type is \"horizontal"
1616
+ #~ "\"."
1617
+ #~ msgstr ""
1618
+ #~ "Használd a <strong>type</strong> attributumot a típus (\"horizontal\" "
1619
+ #~ "vagy \"vertical\") Közösségi Megosztás felület választásához. Az "
1620
+ #~ "alapértelmezett \"horizontal\"."
1621
+
1622
+ #~ msgid "Left (Works with \"Vertical\" type interface only)"
1623
+ #~ msgstr "Left (csak a \"Függőleges\" típusú felülettel működik)"
1624
+
1625
+ #, fuzzy
1626
+ #~ msgid ""
1627
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1628
+ #~ "form the left side of the screen) of Social Counter interface."
1629
+ #~ msgstr ""
1630
+ #~ "Használd a <strong>left</strong> attributumot a Közösségi Megosztási "
1631
+ #~ "felület bal oldali margójának meghatározásához (távolság a képernyő bal "
1632
+ #~ "szélétől)."
1633
+
1634
+ #~ msgid "Top (Works with \"Vertical\" type interface only)"
1635
+ #~ msgstr "Top (csak a \"Függőleges\" típusú felülettel működik)"
1636
+
1637
+ #, fuzzy
1638
+ #~ msgid ""
1639
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1640
+ #~ "form the top of the screen) of Social Counter interface."
1641
+ #~ msgstr ""
1642
+ #~ "Használd a <strong>top</strong> attributumot a Közösségi Megosztási "
1643
+ #~ "felület felső margójának meghatározásához (távolság a képernyő felső "
1644
+ #~ "szélétől)."
1645
+
1646
+ #, fuzzy
1647
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be liked"
1648
+ #~ msgstr ""
1649
+ #~ "Használd a <strong>style</strong> attributumot a Közösségi Megosztás "
1650
+ #~ "felület formázásához"
1651
+
1652
+ #~ msgid "You can use shortcode in PHP file as following"
1653
+ #~ msgstr "A shortcode-ot PHP fájlban így használhatod"
1654
+
1655
+ #, fuzzy
1656
+ #~ msgid ""
1657
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1658
+ #~ "shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]"
1659
+ #~ "</strong>, so the final code looks like following"
1660
+ #~ msgstr ""
1661
+ #~ "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen "
1662
+ #~ "szükségesre, mint pl. <strong>[TheChamp-Login style=\"background-color:"
1663
+ #~ "#000;\"]</strong>, így a végleges kód így fog kinézni"
1664
+
1665
+ #~ msgid "Widget"
1666
+ #~ msgstr "Widget"
1667
+
1668
+ #, fuzzy
1669
+ #~ msgid ""
1670
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1671
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1672
+ #~ "Counter (Horizontal Widget)</strong> and <strong>Super Socializer - "
1673
+ #~ "Counter (Vertical Floating Widget)</strong> widgets in the required area."
1674
+ #~ msgstr ""
1675
+ #~ "A bal oldali menü <strong>Megjelenés</strong> > <strong>Widgetek</strong> "
1676
+ #~ "részében megfoghatod a <strong>Super Socializer - Megosztás (Vízszintes "
1677
+ #~ "Widget)</strong> és <strong>Super Socializer - Megosztás (Függőleges "
1678
+ #~ "Widget)</strong>widgetet és a kívánt helyre húzhatod."
1679
+
1680
+ #, fuzzy
1681
+ #~ msgid ""
1682
+ #~ "How can I show like counts of my website rather than of individual pages/"
1683
+ #~ "posts?"
1684
+ #~ msgstr ""
1685
+ #~ "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon "
1686
+ #~ "kívül is?"
1687
+
1688
+ #, fuzzy
1689
+ #~ msgid ""
1690
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
1691
+ #~ msgstr ""
1692
+ #~ "Válasszon \"URL a honlapján a honlapon \" a \"cél URL-t \" opciót, és "
1693
+ #~ "lehetővé teszi \"Show részesedése számít \" opciót"
1694
+
1695
+ #, fuzzy
1696
+ #~ msgid "How can I disable social counter on particular page/post?"
1697
+ #~ msgstr ""
1698
+ #~ "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon "
1699
+ #~ "kívül is?"
1700
+
1701
+ #, fuzzy
1702
+ #~ msgid ""
1703
+ #~ "Edit that page/post and check the options at the bottom in \"Super "
1704
+ #~ "Socializer\" section"
1705
+ #~ msgstr ""
1706
+ #~ "Szerkeszteni, hogy az oldal / post, és ellenőrizze a lehetőséget, "
1707
+ #~ "\"Disable Facebook hozzászólásokról / oldal \" alul \"Super Socializer \" "
1708
+ #~ "fejezetben"
1709
+
1710
+ #~ msgid "Social Sharing"
1711
+ #~ msgstr "Közösségi Megosztás"
1712
+
1713
+ #, fuzzy
1714
+ #~ msgid ""
1715
+ #~ "<strong>Note:</strong> To disable sharing and specify minimum share "
1716
+ #~ "counts per social network on particular page/post, edit that page/post "
1717
+ #~ "and check the options at the bottom in <strong>\"Super Socializer\"</"
1718
+ #~ "strong> section"
1719
+ #~ msgstr ""
1720
+ #~ "<strong>Megjegyzés:</strong> Az egyes bejegyzéseknél/oldalaknál ki tudod "
1721
+ #~ "kapcsolni a megosztást a szerkesztési felület <strong>\"Super Socializer"
1722
+ #~ "\"</strong> részében"
1723
+
1724
+ #~ msgid ""
1725
+ #~ "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content "
1726
+ #~ "of required page/post where you want to display Social Sharing interface."
1727
+ #~ msgstr ""
1728
+ #~ "Használhatod a <strong>[TheChamp-Sharing]</strong> Shortcode-ot a "
1729
+ #~ "megfelelő bejegyzés/oldalon tartalmi részében, ahol a Közösségi Megosztás "
1730
+ #~ "felületet meg akarod jeleníteni."
1731
+
1732
+ #~ msgid ""
1733
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Sharing "
1734
+ #~ "interface"
1735
+ #~ msgstr ""
1736
+ #~ "Használd a <strong>style</strong> attributumot a Közösségi Megosztás "
1737
+ #~ "felület formázásához"
1738
+
1739
+ #~ msgid ""
1740
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1741
+ #~ "or \"vertical\") of Social Sharing interface. Default type is \"horizontal"
1742
+ #~ "\"."
1743
+ #~ msgstr ""
1744
+ #~ "Használd a <strong>type</strong> attributumot a típus (\"horizontal\" "
1745
+ #~ "vagy \"vertical\") Közösségi Megosztás felület választásához. Az "
1746
+ #~ "alapértelmezett \"horizontal\"."
1747
+
1748
+ #, fuzzy
1749
+ #~ msgid ""
1750
+ #~ "Use <strong>count</strong> attribute to enable the share counts on Social "
1751
+ #~ "Sharing interface"
1752
+ #~ msgstr ""
1753
+ #~ "Használd a <strong>style</strong> attributumot a Közösségi Megosztás "
1754
+ #~ "felület formázásához"
1755
+
1756
+ #, fuzzy
1757
+ #~ msgid "left (Works with \"Vertical\" type interface only)"
1758
+ #~ msgstr "Left (csak a \"Függőleges\" típusú felülettel működik)"
1759
+
1760
+ #~ msgid ""
1761
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1762
+ #~ "form the left side of the screen) of Social Sharing interface."
1763
+ #~ msgstr ""
1764
+ #~ "Használd a <strong>left</strong> attributumot a Közösségi Megosztási "
1765
+ #~ "felület bal oldali margójának meghatározásához (távolság a képernyő bal "
1766
+ #~ "szélétől)."
1767
+
1768
+ #, fuzzy
1769
+ #~ msgid "top (Works with \"Vertical\" type interface only)"
1770
+ #~ msgstr "Top (csak a \"Függőleges\" típusú felülettel működik)"
1771
+
1772
+ #~ msgid ""
1773
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1774
+ #~ "form the top of the screen) of Social Sharing interface."
1775
+ #~ msgstr ""
1776
+ #~ "Használd a <strong>top</strong> attributumot a Közösségi Megosztási "
1777
+ #~ "felület felső margójának meghatározásához (távolság a képernyő felső "
1778
+ #~ "szélétől)."
1779
+
1780
+ #, fuzzy
1781
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be shared"
1782
+ #~ msgstr ""
1783
+ #~ "Használd a <strong>style</strong> attributumot a Közösségi Megosztás "
1784
+ #~ "felület formázásához"
1785
+
1786
+ #~ msgid ""
1787
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1788
+ #~ "shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]"
1789
+ #~ "</strong>, so the final code looks like following"
1790
+ #~ msgstr ""
1791
+ #~ "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen "
1792
+ #~ "szükségesre, mint pl. <strong>[TheChamp-Sharing style=\"background-color:"
1793
+ #~ "#000;\"</strong>, így a végleges kód így fog kinézni"
1794
+
1795
+ #~ msgid ""
1796
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1797
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1798
+ #~ "Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - "
1799
+ #~ "Sharing (Vertical Floating Widget)</strong> widgets in the required area."
1800
+ #~ msgstr ""
1801
+ #~ "A bal oldali menü <strong>Megjelenés</strong> > <strong>Widgetek</strong> "
1802
+ #~ "részében megfoghatod a <strong>Super Socializer - Megosztás (Vízszintes "
1803
+ #~ "Widget)</strong> és <strong>Super Socializer - Megosztás (Függőleges "
1804
+ #~ "Widget)</strong>widgetet és a kívánt helyre húzhatod."
1805
+
1806
+ #~ msgid ""
1807
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option "
1808
+ #~ "and enable \"Show share counts\" option"
1809
+ #~ msgstr ""
1810
+ #~ "Válasszon \"URL a honlapján a honlapon \" a \"cél URL-t \" opciót, és "
1811
+ #~ "lehetővé teszi \"Show részesedése számít \" opciót"
1812
+
1813
+ #, fuzzy
1814
+ #~ msgid ""
1815
+ #~ "After enabling this option, Facebook commenting will appear before "
1816
+ #~ "Wordpress comment form at your website"
1817
+ #~ msgstr ""
1818
+ #~ "Bekapcsolás esetén, a Facebook hozzászólások a Wordpress hozzászólások "
1819
+ #~ "helyén jelennek meg az oldalon"
1820
+
1821
+ #~ msgid "Keep only Facebook Commenting"
1822
+ #~ msgstr "Csak Facebook Hozzászólás legyen"
1823
+
1824
+ #, fuzzy
1825
+ #~ msgid ""
1826
+ #~ "If enabled, only Facebook commenting would be visible without default "
1827
+ #~ "comment form"
1828
+ #~ msgstr ""
1829
+ #~ "Bekapcsolás esetén, csak Facebook hozzászólás lesz látható, és nem lehet "
1830
+ #~ "visszakapcsolni a WordPress hozzászólásokra"
1831
+
1832
+ #, fuzzy
1833
+ #~ msgid ""
1834
+ #~ "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the "
1835
+ #~ "content of required page/post where you want to display Facebook "
1836
+ #~ "Commenting interface."
1837
+ #~ msgstr ""
1838
+ #~ "Használhatod a <strong>[TheChamp-Sharing]</strong> Shortcode-ot a "
1839
+ #~ "megfelelő bejegyzés/oldalon tartalmi részében, ahol a Közösségi Megosztás "
1840
+ #~ "felületet meg akarod jeleníteni."
1841
+
1842
+ #, fuzzy
1843
+ #~ msgid ""
1844
+ #~ "Use <strong>style</strong> attribute to style the rendered commenting "
1845
+ #~ "interface"
1846
+ #~ msgstr ""
1847
+ #~ "Használd a <strong>style</strong> attributumot a Közösségi Megosztás "
1848
+ #~ "felület formázásához"
1849
+
1850
+ #, fuzzy
1851
+ #~ msgid ""
1852
+ #~ "Use <strong>url</strong> attribute to specify the target url for "
1853
+ #~ "comments. This defaults to the page where shortcode is used."
1854
+ #~ msgstr ""
1855
+ #~ "Használd a <strong>left</strong> attributumot a Közösségi Megosztási "
1856
+ #~ "felület bal oldali margójának meghatározásához (távolság a képernyő bal "
1857
+ #~ "szélétől)."
1858
+
1859
+ #, fuzzy
1860
+ #~ msgid ""
1861
+ #~ "Use <strong>num_posts</strong> attribute to specify the number of "
1862
+ #~ "comments to display."
1863
+ #~ msgstr ""
1864
+ #~ "Használd a <strong>style</strong> attributumot a Közösségi Megosztás "
1865
+ #~ "felület formázásához"
1866
+
1867
+ #, fuzzy
1868
+ #~ msgid "width"
1869
+ #~ msgstr "Szélesség"
1870
+
1871
+ #, fuzzy
1872
+ #~ msgid ""
1873
+ #~ "Use <strong>width</strong> attribute to specify the width of commenting "
1874
+ #~ "interface. Omit it for fluid width"
1875
+ #~ msgstr ""
1876
+ #~ "Használd a <strong>top</strong> attributumot a Közösségi Megosztási "
1877
+ #~ "felület felső margójának meghatározásához (távolság a képernyő felső "
1878
+ #~ "szélétől)."
1879
+
1880
+ #, fuzzy
1881
+ #~ msgid ""
1882
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1883
+ #~ "shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:"
1884
+ #~ "#000;\"]</strong>, so the final code looks like following"
1885
+ #~ msgstr ""
1886
+ #~ "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen "
1887
+ #~ "szükségesre, mint pl. <strong>[TheChamp-Login style=\"background-color:"
1888
+ #~ "#000;\"]</strong>, így a végleges kód így fog kinézni"
1889
+
1890
+ #~ msgid ""
1891
+ #~ "Edit that page/post and check the option \"Disable Facebook Comments on "
1892
+ #~ "this post/page\" at the bottom in \"Super Socializer\" section"
1893
+ #~ msgstr ""
1894
+ #~ "Szerkeszteni, hogy az oldal / post, és ellenőrizze a lehetőséget, "
1895
+ #~ "\"Disable Facebook hozzászólásokról / oldal \" alul \"Super Socializer \" "
1896
+ #~ "fejezetben"
1897
+
1898
+ #~ msgid ""
1899
+ #~ "How to enable only Facebook Comments without enabling default comment "
1900
+ #~ "form?"
1901
+ #~ msgstr ""
1902
+ #~ "Hogyan kell engedélyezni csak Facebook-hozzászólások engedélyezése nélkül "
1903
+ #~ "alapértelmezett comment formájában?"
1904
+
1905
+ #~ msgid ""
1906
+ #~ "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting"
1907
+ #~ "\" section."
1908
+ #~ msgstr ""
1909
+ #~ "Engedélyezze a \"Ne csak Facebook kommentálta\" opciót \"Facebook "
1910
+ #~ "kommentálta\" fejezetben."
1911
+
1912
+ #~ msgid ""
1913
+ #~ "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of "
1914
+ #~ "required page/post where you want to display Social Login interface."
1915
+ #~ msgstr ""
1916
+ #~ "Használd a <strong>[TheChamp-Login]</strong> Shortcode-ot a bejegyzés/"
1917
+ #~ "oldal tartalomban, ahol a Közösségi Belépés felületet meg akarod "
1918
+ #~ "jeleníteni."
1919
+
1920
+ #~ msgid ""
1921
+ #~ "You can use \"style\" attribute in the Shortcode to style the rendered "
1922
+ #~ "Social Login interface."
1923
+ #~ msgstr ""
1924
+ #~ "Használhatod a \"style\" attributumot a Shortcode-ban a Közösségi Belépés "
1925
+ #~ "felület formázásához."
1926
+
1927
+ #~ msgid ""
1928
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1929
+ #~ "shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</"
1930
+ #~ "strong>, so the final code looks like following"
1931
+ #~ msgstr ""
1932
+ #~ "Cseréld ki a <strong>SHORTCODE</strong>-ot a fenti kódban az éppen "
1933
+ #~ "szükségesre, mint pl. <strong>[TheChamp-Login style=\"background-color:"
1934
+ #~ "#000;\"]</strong>, így a végleges kód így fog kinézni"
1935
+
1936
+ #~ msgid ""
1937
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1938
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1939
+ #~ "Login</strong> widget in the required area."
1940
+ #~ msgstr ""
1941
+ #~ "A bal oldali menü <strong>Megjelenés</strong> > <strong>Widgetek</strong> "
1942
+ #~ "részében megfoghatod a <strong>Super Socializer - Belépés</strong> "
1943
+ #~ "widgetet és a kívánt helyre húzhatod."
1944
+
1945
  #~ msgid "White-Label"
1946
  #~ msgstr "White-Label"
1947
 
2095
  #~ msgid "Load first"
2096
  #~ msgstr "Elsőként betöltött"
2097
 
 
 
 
2098
  #~ msgid "Selected commenting will be loaded first on the page"
2099
  #~ msgstr "A kiválasztott hozzászólás típus töltődik be először az oldalon"
2100
 
2120
  #~ msgid "Facebook Comments"
2121
  #~ msgstr "Comentarios Facebook"
2122
 
 
 
 
2123
  #~ msgid ""
2124
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
2125
  #~ "><strong>Note: Social Login at comment form of your website will not get "
languages/Super-Socializer-it_IT.mo CHANGED
Binary file
languages/Super-Socializer-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-21 05:49+0530\n"
6
- "PO-Revision-Date: 2015-04-21 05:50+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: yoonect.com\n"
9
  "Language: it\n"
@@ -25,36 +25,40 @@ msgstr "Immettere esattamente il seguente URL nel <strong>Website</ strong> e <s
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Assicurarsi cURL è abilitato il server web. Potrebbe essere necessario contattare l'amministratore del server del tuo sito web per verificare questo"
27
 
28
- #: ../super_socializer.php:348
29
  msgid "Please verify your email address to login."
30
  msgstr "Per favore verifica il tuo indirzzo e-mail per accedere."
31
 
32
- #: ../super_socializer.php:348
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere alla tua conta."
35
 
36
- #: ../super_socializer.php:352
37
  msgid "Notification"
38
  msgstr "Notificazione"
39
 
40
- #: ../super_socializer.php:371
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "Necessita Indirizzo di Posta Elettronica"
44
 
45
- #: ../super_socializer.php:374
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Per favore controlla la tua casella di posta elettronica per completare la registrazione."
48
 
49
- #: ../super_socializer.php:387
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Seguire i passaggi 11 e 12 a pagina di configurazione app GooglePlus, per aprire"
52
 
53
- #: ../super_socializer.php:547
 
 
 
 
54
  msgid "Email you entered is already registered or invalid"
55
  msgstr "E-mail inserito è già registrato o non valido"
56
 
57
- #: ../super_socializer.php:551
58
  msgid "Please enter a valid email address. You might be required to verify it"
59
  msgstr "Si prega di inserire un indirizzo email valido. Potrebbe essere richiesto di verificarla"
60
 
@@ -70,75 +74,75 @@ msgstr "Clicca per vedere help"
70
  msgid "Click to hide help"
71
  msgstr "Clicca per nascondere aiuto"
72
 
73
- #: ../helper.php:174
74
  msgid "Settings"
75
  msgstr "Configurazione"
76
 
77
- #: ../helper.php:466
78
  #, fuzzy
79
  msgid "Account linked successfully"
80
  msgstr "Opzioni salvate con successo"
81
 
82
- #: ../helper.php:472
83
  msgid "Account already exists or linked"
84
  msgstr "Account esistente o collegato già"
85
 
86
- #: ../helper.php:483
87
  #, fuzzy
88
  msgid "You are already connected with"
89
  msgstr "Sei pronto per socializzare il tuo sito web."
90
 
91
- #: ../helper.php:483
92
  msgid "as primary social network"
93
  msgstr "come rete sociale primaria"
94
 
95
- #: ../helper.php:500
96
  msgid "Link your social account to login to your account at this website"
97
  msgstr "Collega il tuo account sociale per accedere al proprio account su questo sito"
98
 
99
- #: ../helper.php:545
100
  msgid "Currently"
101
  msgstr "attualmente"
102
 
103
- #: ../helper.php:545
104
  msgid "Remove"
105
  msgstr "rimuovere"
106
 
107
- #: ../helper.php:636
108
  msgid "Disable Horizontal Social Sharing on this "
109
  msgstr "Disabilitare Condivisione Sociale orizzontale in questo"
110
 
111
- #: ../helper.php:641
112
  msgid "Disable Vertical Social Sharing on this "
113
  msgstr "Disabilitare Condivisione Sociale Verticale in questo"
114
 
115
- #: ../helper.php:646
116
  #, fuzzy
117
- msgid "Disable Horizontal Social Counter on this "
118
  msgstr "Disabilitare Contatore Sociale orizzontale in questo"
119
 
120
- #: ../helper.php:651
121
  #, fuzzy
122
- msgid "Disable Vertical Social Counter on this "
123
  msgstr "Disabilitare Contatore Sociale Verticale in questo"
124
 
125
- #: ../helper.php:656
126
  #, fuzzy
127
- msgid "Disable Facebook Comments on this "
128
  msgstr "Abilitare Commentando con Facebook"
129
 
130
- #: ../helper.php:665
131
  #, fuzzy
132
  msgid "Horizontal sharing"
133
  msgstr "Allineamento orizzontale"
134
 
135
- #: ../helper.php:671
136
- #: ../helper.php:690
137
  #, fuzzy
138
  msgid "Starting share count for "
139
  msgstr "Mostra la qunatitá di condivisioni"
140
 
141
- #: ../helper.php:684
142
  #, fuzzy
143
  msgid "Vertical sharing"
144
  msgstr "Condivisione Sociale"
@@ -156,1019 +160,816 @@ msgid "by"
156
  msgstr "da"
157
 
158
  #: ../admin/help.php:7
159
- msgid "I am a tech enthusiast. I like to play with code and build great stuff (and like to call myself - The Champ....:) ). You can connect with me (and my upcoming work) via:"
160
- msgstr "Io sono un entusiasta della tecnologia. Mi piace giocare con codice e costruire cose belle (e mi piace chiamare a stesso - Il Campione....:) ). Ti puoi connetare a mé (e il mio futuro lavoro) attraverso:"
161
 
162
- #: ../admin/help.php:18
163
  msgid "Plugin Demo"
164
  msgstr "Dimostrazione del Plugin"
165
 
166
- #: ../admin/help.php:20
167
  msgid "You can see the plugin in action at following link"
168
  msgstr "Puoi vedere il plugin in azione seguendo il successivo collegamento"
169
 
170
- #: ../admin/help.php:26
171
  msgid "Support"
172
  msgstr "Sopporte"
173
 
174
- #: ../admin/help.php:28
175
- msgid "If you like my plugin or have any query, you can drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, like my <strong>Facebook</strong> pages and follow me at <strong>Twitter</strong>."
 
176
  msgstr "Se ti piace il mio plugin o tieni una proposta, puoi scrivermi una posta elettronica a <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, o dare un \"mi piace\" alle mie pagine <strong>Facebook</strong> e seguire il mio <strong>Twitter</strong>."
177
 
178
- #: ../admin/help.php:30
 
179
  #: ../admin/help.php:33
180
  #: ../admin/help.php:34
181
  #: ../admin/help.php:35
182
  #: ../admin/help.php:36
183
- #: ../admin/help.php:37
184
  msgid "Rate 5-star"
185
  msgstr "Tasso di 5-stelle"
186
 
187
- #: ../admin/help.php:45
188
- msgid "Plugin Fan Page"
189
- msgstr "Pagina di tifosi del plugin"
190
-
191
- #: ../admin/help.php:54
192
- msgid "My Fan Page"
193
- msgstr "La mia pagina di tifosi"
194
 
195
- #: ../admin/help.php:73
196
  msgid "Want plugin customization?"
197
  msgstr "Voui una personalizzazione del plugin?"
198
 
199
- #: ../admin/help.php:75
200
- msgid "If you want custom features in the plugin, I can do it for you. Just drop me an email at <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>"
 
201
  msgstr "Se vuoi funzioni personalizzate nel plugin, posso farlo per te. Basta scrivermi una posta elettronica a <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>"
202
 
203
- #: ../admin/social_counter.php:11
204
- #: ../admin/social_counter.php:20
205
- #: ../admin/social_sharing.php:14
206
- #: ../admin/social_sharing.php:24
207
  #: ../admin/social_login.php:9
208
  #: ../admin/social_login.php:17
 
 
209
  msgid "Basic Configuration"
210
  msgstr "Configurazione Basica"
211
 
212
- #: ../admin/social_counter.php:12
213
  #, fuzzy
214
- msgid "Social Counter"
215
- msgstr "Contatore Sociale"
216
 
217
- #: ../admin/social_counter.php:13
218
- #: ../admin/social_sharing.php:16
 
 
 
 
 
 
219
  #: ../admin/social_login.php:11
 
 
 
 
220
  msgid "Shortcode & Widget"
221
  msgstr "Codice Corto & Widget"
222
 
223
- #: ../admin/social_counter.php:14
224
- #: ../admin/social_sharing.php:18
 
 
 
 
225
  #: ../admin/social_commenting.php:12
 
226
  msgid "FAQ"
227
  msgstr "FAQ"
228
 
229
- #: ../admin/social_counter.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  #, fuzzy
231
- msgid "Enable Social Counter"
232
- msgstr "Abilitare il Contatore Sociale"
 
 
 
 
 
233
 
234
- #: ../admin/social_counter.php:36
235
- msgid "Master control for Social Counter. It must be checked to enable Social Counter functionality"
236
- msgstr "Controllo Maestro per il Contatore Sociale. Dev'essere marcato per il buon funzionamento del Contatore Sociale"
 
237
 
238
- #: ../admin/social_counter.php:50
239
- msgid "<strong>Note:</strong> To disable counter on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
240
- msgstr "<strong>Nota:</strong> per disabilitare il Contatore in pagine o posts particolari, edita la pagina o il post in riguardo e controlla le opzioni al basso della sezione <strong>\"Super Socializzatore\"</strong>"
 
241
 
242
- #: ../admin/social_counter.php:67
243
- #: ../admin/social_sharing.php:88
244
- msgid "bit.ly url shortener"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  msgstr "cortatore di url bit.ly"
246
 
247
- #: ../admin/social_counter.php:73
248
- msgid "Enable bit.ly url shortener for tweet button"
249
- msgstr "Abilitare cortatore di url bit.ly per il bottone di Twitter"
 
 
 
 
 
 
 
 
 
250
 
251
- #: ../admin/social_counter.php:83
252
- #: ../admin/social_sharing.php:104
253
  #, fuzzy
254
  msgid "Master control to enable bit.ly url shortening for sharing"
255
  msgstr "Controllo maestro per abilitare la cortazione di url bit.ly per la condivisione"
256
 
257
- #: ../admin/social_counter.php:91
258
- #: ../admin/social_sharing.php:112
259
  msgid "bit.ly username"
260
  msgstr "nome d'utente di bit.ly"
261
 
262
- #: ../admin/social_counter.php:101
263
- #: ../admin/social_sharing.php:122
264
  #, php-format
265
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
266
  msgstr "Per ottenere il nome d'utente di bit.ly, accede alla tua conta di bit.ly e naviga fino a <a href=\"%s\" target=\"_blank\">questo collegamento</a>"
267
 
268
- #: ../admin/social_counter.php:110
269
- #: ../admin/social_sharing.php:131
270
  #, fuzzy
271
  msgid "bit.ly API Key"
272
  msgstr "Chiave API bit.ly"
273
 
274
- #: ../admin/social_counter.php:120
275
- #: ../admin/social_sharing.php:141
276
  #, fuzzy, php-format
277
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
278
  msgstr "Per ottenere la chiave API, accedi alla tua conta di bit.ly e naviga fino a <a href=\"%s\" target=\"_blank\">questo collegamento</a>"
279
 
280
- #: ../admin/social_counter.php:130
281
- #: ../admin/social_counter.php:136
282
- #: ../admin/social_commenting.php:187
283
- msgid "Language"
284
- msgstr "Lingua"
285
-
286
- #: ../admin/social_counter.php:146
287
- #, fuzzy, php-format
288
- msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
289
- msgstr "Ingressa il codice della lingua che vuoi usare per mostrare i commentari. Poui incontrare i codici delle lingue a <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lascia in bianco per la lingua predefinita(inglese)"
290
-
291
- #: ../admin/social_counter.php:155
292
- msgid "Twitter username in tweet button"
293
- msgstr "Il nome d'utente di Twitter nel bottone Twitter"
294
 
295
- #: ../admin/social_counter.php:161
296
- #: ../admin/social_sharing.php:157
297
  msgid "Twitter username (without @)"
298
  msgstr "Nome d'utente di Twitter (senza @)"
299
 
300
- #: ../admin/social_counter.php:171
301
- msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
302
- msgstr "Il nome d'utente selezionato sará attacato al fondo del contenuto che se Tweetea attraverso \"di @USERNAME\". Lascia in bianco se non vuoi un nome d'utente."
303
 
304
- #: ../admin/social_counter.php:181
305
- #, fuzzy
306
- msgid "Horizontal Counter Interface Options"
307
- msgstr "Opzioni dell'interfaccia del contatore orizzontale"
308
 
309
- #: ../admin/social_counter.php:187
310
- #, fuzzy
311
- msgid "Enable horizontal counter interface"
312
- msgstr "Abilitare l'interfaccia del Contatore orizzontale."
313
 
314
- #: ../admin/social_counter.php:197
315
- #, fuzzy
316
- msgid "Master control to enable horizontal counter"
317
- msgstr "Controllo maestro per abilitare il Contatore orizzontale"
318
 
319
- #: ../admin/social_counter.php:207
320
- #: ../admin/social_counter.php:422
321
- #: ../admin/social_sharing.php:203
322
- #: ../admin/social_sharing.php:517
323
  msgid "Target Url"
324
  msgstr "URL di destinazione"
325
 
326
- #: ../admin/social_counter.php:211
327
- #: ../admin/social_counter.php:426
328
- #: ../admin/social_sharing.php:207
329
- #: ../admin/social_sharing.php:521
330
  msgid "Url of the webpage where icons are located (default)"
331
  msgstr "URL della pagina web in cui si trovano le icone (di default)"
332
 
333
- #: ../admin/social_counter.php:213
334
- #: ../admin/social_counter.php:428
335
- #: ../admin/social_sharing.php:209
336
- #: ../admin/social_sharing.php:523
337
  msgid "Url of the homepage of your website"
338
  msgstr "Url della homepage del tuo sito web"
339
 
340
- #: ../admin/social_counter.php:215
341
- #: ../admin/social_counter.php:430
342
- #: ../admin/social_sharing.php:211
343
- #: ../admin/social_sharing.php:525
344
  #, fuzzy
345
  msgid "Custom url"
346
  msgstr "Url personalizzata"
347
 
348
- #: ../admin/social_counter.php:222
349
- #: ../admin/social_counter.php:437
350
- msgid "Url to like/share/tweet and display like/share/tweet counts"
351
- msgstr "Url per piace/share/Twitter e visualizzazione come/share/conteggi Tweet"
352
 
353
- #: ../admin/social_counter.php:230
354
- #: ../admin/social_sharing.php:226
355
  #: ../admin/social_login.php:314
 
356
  msgid "Title"
357
  msgstr "Titolo"
358
 
359
- #: ../admin/social_counter.php:240
360
- #, fuzzy
361
- msgid "The text to display above the counter interface"
362
- msgstr "Il testo che se mostrará sopra l'interfaccia del Contatore"
363
-
364
- #: ../admin/social_counter.php:248
365
- #: ../admin/social_counter.php:445
366
- #, fuzzy
367
- msgid "Select and rearrange providers"
368
- msgstr "Selezionare e riorganizzare i fornitori."
369
-
370
- #: ../admin/social_counter.php:292
371
- #: ../admin/social_counter.php:488
372
- #, fuzzy
373
- msgid "Select the providers for counter interface. Drag them to rearrange."
374
- msgstr "Selezziona i fornitori per l'interfaccia del Contatore. Trascinali per riorganizzarli. "
375
-
376
- #: ../admin/social_counter.php:300
377
- #: ../admin/social_counter.php:514
378
- #: ../admin/social_sharing.php:376
379
- #: ../admin/social_sharing.php:690
380
- #, fuzzy
381
- msgid "Horizontal alignment"
382
- msgstr "Allineamento orizzontale"
383
-
384
- #: ../admin/social_counter.php:304
385
- #: ../admin/social_counter.php:518
386
- #: ../admin/social_sharing.php:380
387
- #: ../admin/social_sharing.php:694
388
- msgid "Left"
389
- msgstr "Sinistra"
390
-
391
- #: ../admin/social_counter.php:305
392
- #: ../admin/social_sharing.php:381
393
- msgid "Center"
394
- msgstr "centro"
395
-
396
- #: ../admin/social_counter.php:306
397
- #: ../admin/social_counter.php:519
398
- #: ../admin/social_sharing.php:382
399
- #: ../admin/social_sharing.php:695
400
- #, fuzzy
401
- msgid "Right"
402
- msgstr "Destra"
403
-
404
- #: ../admin/social_counter.php:314
405
- #: ../admin/social_counter.php:527
406
- #, fuzzy
407
- msgid "Horizontal alignment of the counter interface"
408
- msgstr "Allineamento orizzontale dell'interfaccia del Contatore"
409
-
410
- #: ../admin/social_counter.php:322
411
  #: ../admin/social_sharing.php:398
412
- msgid "Position with respect to content"
413
- msgstr "Posizione al rispetto del contenuto"
414
-
415
- #: ../admin/social_counter.php:326
416
- #: ../admin/social_sharing.php:402
417
- msgid "Top of the content"
418
- msgstr "Parte superiore del contenuto"
419
-
420
- #: ../admin/social_counter.php:328
421
- #: ../admin/social_sharing.php:404
422
- msgid "Bottom of the content"
423
- msgstr "Parte inferiore del contenuto"
424
-
425
- #: ../admin/social_counter.php:335
426
- #, fuzzy
427
- msgid "Specify position of the counter interface with respect to the content"
428
- msgstr "Specificare la posizione dell'interfaccia del Contatore al rispetto del contenuto"
429
-
430
- #: ../admin/social_counter.php:343
431
- #: ../admin/social_counter.php:593
432
- #, fuzzy
433
- msgid "Counter location"
434
- msgstr "Posizione del Contatore"
435
-
436
- #: ../admin/social_counter.php:347
437
- #: ../admin/social_counter.php:597
438
- #: ../admin/social_sharing.php:423
439
- #: ../admin/social_sharing.php:773
440
- #: ../admin/social_login.php:514
441
- #: ../admin/social_login.php:544
442
- msgid "Homepage"
443
- msgstr "Pagina d'inizio"
444
-
445
- #: ../admin/social_counter.php:349
446
- #: ../admin/social_counter.php:599
447
- #: ../admin/social_sharing.php:425
448
- #: ../admin/social_sharing.php:775
449
- msgid "Posts"
450
- msgstr "Pubblicazioni"
451
-
452
- #: ../admin/social_counter.php:351
453
- #: ../admin/social_counter.php:601
454
- #: ../admin/social_sharing.php:427
455
- #: ../admin/social_sharing.php:777
456
- msgid "Pages"
457
- msgstr "Pagine"
458
-
459
- #: ../admin/social_counter.php:353
460
- #: ../admin/social_counter.php:603
461
- #: ../admin/social_sharing.php:429
462
- #: ../admin/social_sharing.php:779
463
- msgid "Excerpts"
464
- msgstr "Estrazioni"
465
-
466
- #: ../admin/social_counter.php:355
467
- #: ../admin/social_counter.php:605
468
- #: ../admin/social_sharing.php:431
469
- #: ../admin/social_sharing.php:781
470
- msgid "Category Archives"
471
- msgstr "Archivi di categorie"
472
-
473
- #: ../admin/social_counter.php:357
474
- #: ../admin/social_counter.php:607
475
- #: ../admin/social_sharing.php:433
476
- #: ../admin/social_sharing.php:783
477
- msgid "Archive Pages (Category, Tag, Author or Date based pages)"
478
- msgstr "Archive Pages (categoria, tag, autore o pagine data base)"
479
-
480
- #: ../admin/social_counter.php:363
481
- #: ../admin/social_sharing.php:439
482
- msgid "BuddyPress activity and groups"
483
- msgstr ""
484
-
485
- #: ../admin/social_counter.php:370
486
- #: ../admin/social_counter.php:613
487
- #: ../admin/social_sharing.php:446
488
- #: ../admin/social_sharing.php:789
489
- msgid "BBPress forum"
490
- msgstr ""
491
-
492
- #: ../admin/social_counter.php:373
493
- #: ../admin/social_counter.php:616
494
- #: ../admin/social_sharing.php:449
495
- #: ../admin/social_sharing.php:792
496
- msgid "BBPress topic"
497
- msgstr ""
498
-
499
- #: ../admin/social_counter.php:376
500
- #: ../admin/social_sharing.php:452
501
- msgid "BBPress reply"
502
- msgstr ""
503
-
504
- #: ../admin/social_counter.php:386
505
- #, fuzzy
506
- msgid "Specify the pages where you want to enable counter interface"
507
- msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia del contatore"
508
-
509
- #: ../admin/social_counter.php:396
510
- msgid "Vertical (Floating) counter interface Options"
511
- msgstr "Opzioni dell'interfaccia verticale (flottante) del Contatore"
512
-
513
- #: ../admin/social_counter.php:402
514
- #, fuzzy
515
- msgid "Enable vertical (floating) counter interface"
516
- msgstr "Abilitare l'interfaccia verticale (flottante) del contatore"
517
-
518
- #: ../admin/social_counter.php:412
519
- #, fuzzy
520
- msgid "Master control to enable vertical (floating) counter widget"
521
- msgstr "Controllo maestro per abilitare il widget contatore verticale (flottante) "
522
-
523
- #: ../admin/social_counter.php:496
524
- #: ../admin/social_sharing.php:672
525
- msgid "Background Color"
526
- msgstr "Colore del fondo"
527
-
528
- #: ../admin/social_counter.php:506
529
- msgid "Specify the color or hex code (example #cc78e0) for the background of vertical counter bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
530
- msgstr "Specifica il colore o il codigo hex (esempio #cc78e0) per il fondo della barra verticale del Contatore. Lascia in bianco per transparente. Puoi ottenere il codigo hex da <a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
531
-
532
- #: ../admin/social_counter.php:536
533
- #: ../admin/social_sharing.php:712
534
- msgid "Left offset"
535
- msgstr "Compensazione a sinistra"
536
-
537
- #: ../admin/social_counter.php:546
538
- msgid "Specify a number. Increase in number will shift counter interface towards right and decrease will shift it towards left."
539
- msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore alla destra, un numero piú piccolo lo muove alla sinistra."
540
-
541
- #: ../admin/social_counter.php:556
542
- #: ../admin/social_sharing.php:732
543
- #, fuzzy
544
- msgid "Right offset"
545
- msgstr "Compensazione alla destra"
546
-
547
- #: ../admin/social_counter.php:566
548
- #, fuzzy
549
- msgid "Specify a number. Increase in number will shift counter interface towards left and decrease will shift it towards right."
550
- msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore alla sinistra, un numero piú piccolo lo muove alla destra."
551
-
552
- #: ../admin/social_counter.php:575
553
- #: ../admin/social_sharing.php:751
554
- msgid "Top offset"
555
- msgstr "Compensazione in cima"
556
-
557
- #: ../admin/social_counter.php:585
558
- #, fuzzy
559
- msgid "Specify a number. Increase in number will shift counter interface towards bottom and decrease will shift it towards top."
560
- msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore verso il basso, un numero piú piccolo lo muove all'alto."
561
-
562
- #: ../admin/social_counter.php:626
563
- msgid "Specify the pages where you want to enable vertical counter interface"
564
- msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia del Contatore verticale"
565
-
566
- #: ../admin/social_counter.php:642
567
- #: ../admin/social_sharing.php:837
568
- #: ../admin/social_commenting.php:11
569
- #: ../admin/social_commenting.php:211
570
- #: ../admin/social_login.php:654
571
- msgid "Shortcode"
572
- msgstr "Codice breve"
573
-
574
- #: ../admin/social_counter.php:644
575
- msgid "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content of required page/post where you want to display Social Counter interface."
576
- msgstr "Puoi usare il Codice breve <strong>[TheChamp-Counter]</strong> nel contenuto delle pagine o dei posts dove vuoi che il Contatore Sociale apparesca."
577
-
578
- #: ../admin/social_counter.php:645
579
- #: ../admin/social_counter.php:650
580
- #: ../admin/social_counter.php:655
581
- #: ../admin/social_counter.php:660
582
- #: ../admin/social_counter.php:665
583
- #: ../admin/social_counter.php:669
584
- #: ../admin/social_sharing.php:840
585
- #: ../admin/social_sharing.php:845
586
- #: ../admin/social_sharing.php:850
587
- #: ../admin/social_sharing.php:855
588
- #: ../admin/social_sharing.php:860
589
- #: ../admin/social_sharing.php:865
590
- #: ../admin/social_sharing.php:869
591
- #: ../admin/social_commenting.php:214
592
- #: ../admin/social_commenting.php:219
593
- #: ../admin/social_commenting.php:224
594
- #: ../admin/social_commenting.php:229
595
- #: ../admin/social_commenting.php:234
596
- #: ../admin/social_login.php:657
597
- #: ../admin/social_login.php:660
598
- msgid "Example"
599
- msgstr "Esempio"
600
-
601
- #: ../admin/social_counter.php:647
602
- #: ../admin/social_sharing.php:842
603
- #: ../admin/social_commenting.php:216
604
- msgid "You can use following attributes in the Shortcode"
605
- msgstr "Puoi usare i siguenti attributi nel Codigo breve"
606
-
607
- #: ../admin/social_counter.php:649
608
- msgid "Use <strong>style</strong> attribute to style the rendered Social Counter interface"
609
- msgstr "Usa l'attributo <strong>style</strong> per cambiare il stilo del Contatore Sociale"
610
-
611
- #: ../admin/social_counter.php:654
612
- #, fuzzy
613
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Counter interface. Default type is \"horizontal\"."
614
- msgstr "Utilizza l'attributo <strong>type</strong> para specificare il tipo (\"horizontal\" o \"vertical\") del Contatore Sociale. Predefinito é \"horizontal\"."
615
-
616
- #: ../admin/social_counter.php:658
617
- msgid "Left (Works with \"Vertical\" type interface only)"
618
- msgstr "Left (funziona solo con il tipo \"verticale\")"
619
-
620
- #: ../admin/social_counter.php:659
621
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Counter interface."
622
- msgstr "Usa l'attributo <strong>left</strong> per specificare la compensazione a sinistra dell'interfaccia del Contatore (distanza del lato sinistro del schermo)."
623
-
624
- #: ../admin/social_counter.php:663
625
- msgid "Top (Works with \"Vertical\" type interface only)"
626
- msgstr "Top (funziona solo con il tipo \"verticale\")"
627
-
628
- #: ../admin/social_counter.php:664
629
- #, fuzzy
630
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Counter interface."
631
- msgstr "Usa l'attributo <strong>top</strong> per specificare la compensazione all'alto dell'interfaccia del Contatore (distanza del lato superiore del schermo)."
632
-
633
- #: ../admin/social_counter.php:667
634
- #: ../admin/social_sharing.php:867
635
- msgid "url"
636
- msgstr ""
637
-
638
- #: ../admin/social_counter.php:668
639
- #, fuzzy
640
- msgid "Use <strong>url</strong> attribute to specify the url to be liked"
641
- msgstr "Usa l'attributo <strong>style</strong> per cambiare il stilo del Contatore Sociale"
642
-
643
- #: ../admin/social_counter.php:671
644
- #: ../admin/social_sharing.php:871
645
- #: ../admin/social_commenting.php:236
646
- #: ../admin/social_login.php:662
647
- #, fuzzy
648
- msgid "You can use shortcode in PHP file as following"
649
- msgstr "Puoi usare i Codici brevi nei documenti PHP como segue"
650
-
651
- #: ../admin/social_counter.php:673
652
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]</strong>, so the final code looks like following"
653
- msgstr "Rimuovi <strong>SHORTCODE</strong> nel codice qui sopra con il Codice breve come: <strong>[TheChamp-Counter style=\"background-color:#000;\"]</strong>, il codigo finale si presenta come segue"
654
-
655
- #: ../admin/social_counter.php:679
656
- #: ../admin/social_sharing.php:879
657
- #: ../admin/social_login.php:670
658
- msgid "Widget"
659
- msgstr "Widget"
660
-
661
- #: ../admin/social_counter.php:681
662
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Counter (Horizontal Widget)</strong> and <strong>Super Socializer - Counter (Vertical Floating Widget)</strong> widgets in the required area."
663
- msgstr "Puoi navigare alla sezione <strong>Appearence</strong> > <strong>Widgets</strong> nella vaschetta sinistra e posizionare i widget <strong>Super Socializer - Counter (Horizontal Widget)</strong> e <strong>Super Socializer - Counter (Vertical Floating Widget)</strong> nell'area desiderata."
664
-
665
- #: ../admin/social_counter.php:691
666
- #, fuzzy
667
- msgid "How can I show like counts of my website rather than of individual pages/posts?"
668
- msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
669
-
670
- #: ../admin/social_counter.php:695
671
- #, fuzzy
672
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
673
- msgstr "Opzione Scegli \"Url della homepage del tuo sito web \" in 'opzione \"Target URL \" e attivare \"Mostra condividere conta \""
674
-
675
- #: ../admin/social_counter.php:702
676
- #, fuzzy
677
- msgid "How can I disable social counter on particular page/post?"
678
- msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
679
-
680
- #: ../admin/social_counter.php:706
681
- #: ../admin/social_sharing.php:925
682
- #: ../admin/social_sharing.php:938
683
- #, fuzzy
684
- msgid "Edit that page/post and check the options at the bottom in \"Super Socializer\" section"
685
- msgstr "Modifica la pagina / posta e selezionare l'opzione \"Disabilita Facebook Commenti su questo post/pagina \" in fondo in sezione \"Super Socializer\""
686
-
687
- #: ../admin/social_counter.php:719
688
- #: ../admin/social_sharing.php:949
689
- #: ../admin/social_commenting.php:277
690
- #: ../admin/social_login.php:681
691
- msgid "Save Changes"
692
- msgstr "Salvare le modifiche."
693
-
694
- #: ../admin/social_sharing.php:15
695
- msgid "Social Sharing"
696
- msgstr "Condivisione Sociale"
697
-
698
- #: ../admin/social_sharing.php:17
699
- msgid "Troubleshooter"
700
- msgstr "Soluzionatore di problemi"
701
-
702
- #: ../admin/social_sharing.php:30
703
- msgid "Enable Social Sharing"
704
- msgstr "Abilitare Condivisione Sociale"
705
-
706
- #: ../admin/social_sharing.php:40
707
- msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
708
- msgstr "Controllo maestro per la condivisione sociale. Dev'essere marcato per abilitare la funzione di condivisione sociale"
709
-
710
- #: ../admin/social_sharing.php:48
711
- msgid "Delete all the options on plugin deletion"
712
- msgstr "Eliminare tutte le opzioni quando si elimina il plugin"
713
-
714
- #: ../admin/social_sharing.php:58
715
- msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
716
- msgstr "Se é attivato, le opzioni saranno cancellate/desinstallizate quando si cancella il plugin e deverái riconfigurare le opzioni quando installaraste il plugin la prossima volta."
717
-
718
- #: ../admin/social_sharing.php:72
719
- #, fuzzy
720
- msgid "<strong>Note:</strong> To disable sharing and specify minimum share counts per social network on particular page/post, edit that page/post and check the options at the bottom in <strong>\"Super Socializer\"</strong> section"
721
- msgstr "<strong>Nota:</strong> per disabilitare la condivisione sociale in pagine o pubblicazioni particolari, edita la pagina o la pubblicazione in riguardo e controlla le opzioni al basso della sezione <strong>\"Super Socializer\"</strong>"
722
-
723
- #: ../admin/social_sharing.php:94
724
- msgid "Enable bit.ly url shortener for sharing"
725
- msgstr "Abilitare il cortatore url bit.ly per la condivisone sociale"
726
-
727
- #: ../admin/social_sharing.php:151
728
- msgid "Twitter username in sharing"
729
- msgstr "Nome d'utente di Twitter per la condivisione sociale"
730
-
731
- #: ../admin/social_sharing.php:167
732
- msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
733
- msgstr "Il nome d'utente sará attacato dopo il contenuto che si condivide come \"via @USERNAME\". Lascia vuoto se non voui nincun nome d'utente nel contenuto che si condivide."
734
-
735
- #: ../admin/social_sharing.php:177
736
- msgid "Horizontal Sharing Interface Options"
737
- msgstr "Opzioni orizzontali dell'interfaccia di condivisione"
738
-
739
- #: ../admin/social_sharing.php:183
740
- msgid "Enable horizontal sharing interface"
741
- msgstr "Abilitare l'interfaccia di condivisione orizzontale"
742
-
743
- #: ../admin/social_sharing.php:193
744
- msgid "Master control to enable horizontal sharing"
745
- msgstr "Controllo maestro per abilitare la condivisione orizzontale"
746
-
747
- #: ../admin/social_sharing.php:218
748
- #: ../admin/social_sharing.php:532
749
- msgid "Url to share"
750
- msgstr "Url per condividere"
751
-
752
- #: ../admin/social_sharing.php:236
753
  msgid "The text to display above the sharing interface"
754
  msgstr "Il testo a mostrare sopra l'interfaccia di condivisione"
755
 
756
- #: ../admin/social_sharing.php:244
757
- #: ../admin/social_sharing.php:540
758
  #: ../admin/social_login.php:41
759
  msgid "Select providers"
760
  msgstr "Selezionare fornitori"
761
 
762
- #: ../admin/social_sharing.php:249
763
- #: ../admin/social_sharing.php:545
764
- #: ../admin/social_login.php:46
765
- msgid "Facebook"
766
- msgstr "Facebook"
767
-
768
- #: ../admin/social_sharing.php:254
769
- #: ../admin/social_sharing.php:550
770
  #: ../admin/social_login.php:50
771
  msgid "Twitter"
772
  msgstr "Twitter"
773
 
774
- #: ../admin/social_sharing.php:259
775
- #: ../admin/social_sharing.php:555
776
  #: ../admin/social_login.php:54
777
  msgid "LinkedIn"
778
  msgstr "LinkedIn"
779
 
780
- #: ../admin/social_sharing.php:264
781
- #: ../admin/social_sharing.php:560
782
  #: ../admin/social_login.php:58
783
  msgid "Google+"
784
  msgstr "Google+"
785
 
786
- #: ../admin/social_sharing.php:269
787
- #: ../admin/social_sharing.php:565
788
  msgid "Print"
789
  msgstr "Stampare"
790
 
791
- #: ../admin/social_sharing.php:274
792
- #: ../admin/social_sharing.php:570
793
  msgid "Email"
794
  msgstr "Email"
795
 
796
- #: ../admin/social_sharing.php:279
797
- #: ../admin/social_sharing.php:575
798
  msgid "Yahoo"
799
  msgstr "Yahoo"
800
 
801
- #: ../admin/social_sharing.php:284
802
- #: ../admin/social_sharing.php:580
803
  msgid "Reddit"
804
  msgstr "Reddit"
805
 
806
- #: ../admin/social_sharing.php:289
807
- #: ../admin/social_sharing.php:585
808
  msgid "Digg"
809
  msgstr "Digg"
810
 
811
- #: ../admin/social_sharing.php:294
812
- #: ../admin/social_sharing.php:590
813
  msgid "Delicious"
814
  msgstr "Delicious"
815
 
816
- #: ../admin/social_sharing.php:299
817
- #: ../admin/social_sharing.php:595
818
  msgid "StumbleUpon"
819
  msgstr "StumbleUpon"
820
 
821
- #: ../admin/social_sharing.php:304
822
- #: ../admin/social_sharing.php:600
823
  msgid "Float it"
824
  msgstr "Float it"
825
 
826
- #: ../admin/social_sharing.php:309
827
- #: ../admin/social_sharing.php:605
828
  msgid "Tumblr"
829
  msgstr "Tumblr"
830
 
831
- #: ../admin/social_sharing.php:314
832
- #: ../admin/social_sharing.php:610
833
  #: ../admin/social_login.php:62
834
  msgid "Vkontakte"
835
  msgstr "Vkontakte"
836
 
837
- #: ../admin/social_sharing.php:319
838
- #: ../admin/social_sharing.php:615
839
  msgid "Pinterest"
840
  msgstr "Pinterest"
841
 
842
- #: ../admin/social_sharing.php:324
843
- #: ../admin/social_sharing.php:620
844
  #: ../admin/social_login.php:70
845
  msgid "Xing"
846
  msgstr ""
847
 
848
- #: ../admin/social_sharing.php:329
849
- #: ../admin/social_sharing.php:625
850
  msgid "Whatsapp"
851
  msgstr ""
852
 
853
- #: ../admin/social_sharing.php:337
854
- #: ../admin/social_sharing.php:633
855
  msgid "Select the providers for sharing interface"
856
  msgstr "Seleziona i fornitori per l'interfaccia di condivisione"
857
 
858
- #: ../admin/social_sharing.php:345
859
- #: ../admin/social_sharing.php:641
860
  msgid "Rearrange icons"
861
  msgstr "riorganizzare gli iconi"
862
 
863
- #: ../admin/social_sharing.php:368
864
- #: ../admin/social_sharing.php:664
865
  msgid "Drag the icons to rearrange in desired order"
866
  msgstr "Arrastra gli iconi per riordinare nell'ordine desiderato"
867
 
868
- #: ../admin/social_sharing.php:390
869
- #: ../admin/social_sharing.php:703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
870
  #, fuzzy
871
  msgid "Horizontal alignment of the sharing interface"
872
  msgstr "Allineamento orizzontale dell'interfaccia di condivisione"
873
 
874
- #: ../admin/social_sharing.php:411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
875
  msgid "Specify position of the sharing interface with respect to the content"
876
  msgstr "Specifica la posizione dell'interfaccia al rispetto del contenuto"
877
 
878
- #: ../admin/social_sharing.php:419
879
- #: ../admin/social_sharing.php:769
880
  msgid "Sharing location"
881
  msgstr "Posto di condivisione"
882
 
883
- #: ../admin/social_sharing.php:462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  msgid "Specify the pages where you want to enable Sharing interface"
885
  msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia di condivisione"
886
 
887
- #: ../admin/social_sharing.php:470
888
- #: ../admin/social_sharing.php:810
889
  msgid "Show share counts"
890
  msgstr "Mostra la qunatitá di condivisioni"
891
 
892
- #: ../admin/social_sharing.php:480
893
- #: ../admin/social_sharing.php:820
894
  msgid "If enabled, share counts are displayed above sharing icons."
895
  msgstr "Sé é abilitato, la quantitá di condivisioni sará mostrato sopra gli iconi di condivisione"
896
 
897
- #: ../admin/social_sharing.php:491
 
 
 
 
 
 
 
 
 
 
 
898
  msgid "Vertical (Floating) Sharing Interface Options"
899
  msgstr "Opzioni verticali (fluotante) dell'interfaccia di condivisione"
900
 
901
- #: ../admin/social_sharing.php:497
902
  msgid "Enable vertical (floating) sharing interface"
903
  msgstr "Abilitare l'interfaccia di condivisione verticale (fluotante)"
904
 
905
- #: ../admin/social_sharing.php:507
906
  msgid "Master control to enable vertical (floating) sharing widget"
907
  msgstr "Controllo maestro per abilitare il widget di condivisione verticale (fluotante)"
908
 
909
- #: ../admin/social_sharing.php:682
 
 
 
 
 
910
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
911
  msgstr "Specifica il colore ó il codice hex (esempio #cc78e0) per il fondo dell'area di condivisione verticale. Lascia vuoto per transparente. Puoi ottenere il codice hex del colore necessitato a <a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
912
 
913
- #: ../admin/social_sharing.php:722
 
 
 
 
 
914
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
915
  msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso destra e un numero minore lo muove verso sinistra."
916
 
917
- #: ../admin/social_sharing.php:742
 
 
 
 
 
 
918
  #, fuzzy
919
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
920
  msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso sinistra e un numero minore lo muove verso destra."
921
 
922
- #: ../admin/social_sharing.php:761
 
 
 
 
 
923
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
924
  msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso il basso e un numero minore lo muove verso l'alto."
925
 
926
- #: ../admin/social_sharing.php:802
927
  msgid "Specify the pages where you want to enable vertical Sharing interface"
928
  msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia di condivisione verticale"
929
 
930
- #: ../admin/social_sharing.php:839
931
- msgid "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content of required page/post where you want to display Social Sharing interface."
932
- msgstr "Puoi utilizzare il codice breve <strong>[TheChamp-Sharing]</strong> nel contenuto della pagina o del post dove vuoi che si mostra l'iterfaccia di condivisione sociale"
933
-
934
- #: ../admin/social_sharing.php:844
935
- msgid "Use <strong>style</strong> attribute to style the rendered Social Sharing interface"
936
- msgstr "Utilizza l'attributo <strong>style</strong> per stilizzare l'interfaccia di condivisione sociale"
937
-
938
- #: ../admin/social_sharing.php:849
939
- msgid "Use <strong>type</strong> attribute to specify the type (\"horizontal\" or \"vertical\") of Social Sharing interface. Default type is \"horizontal\"."
940
- msgstr "Utilizza l'attributo <strong>type</strong> per specificare il tipo (\"horizontal\" o \"vertical\") dell'interfaccia di condivisione sociale. Predefinito é \"horizontal\"."
941
-
942
- #: ../admin/social_sharing.php:854
943
- #, fuzzy
944
- msgid "Use <strong>count</strong> attribute to enable the share counts on Social Sharing interface"
945
- msgstr "Utilizza l'attributo <strong>style</strong> per stilizzare l'interfaccia di condivisione sociale"
946
-
947
- #: ../admin/social_sharing.php:858
948
- #, fuzzy
949
- msgid "left (Works with \"Vertical\" type interface only)"
950
- msgstr "Left (funziona solo con il tipo \"verticale\")"
951
-
952
- #: ../admin/social_sharing.php:859
953
- msgid "Use <strong>left</strong> attribute to specify the left offset (distance form the left side of the screen) of Social Sharing interface."
954
- msgstr "Usa l'attributo <strong>left</strong> per specificare la posizione dell'interfaccia di condivisione sociale in relazione al margine sinistro dello schermo."
955
-
956
- #: ../admin/social_sharing.php:863
957
- #, fuzzy
958
- msgid "top (Works with \"Vertical\" type interface only)"
959
- msgstr "Top (funziona solo con il tipo \"verticale\")"
960
-
961
- #: ../admin/social_sharing.php:864
962
- msgid "Use <strong>top</strong> attribute to specify the top offset (distance form the top of the screen) of Social Sharing interface."
963
- msgstr "Usa l'attributo <strong>top</strong> per specificare la posizione dell'interfaccia di condivisione sociale in relazione al margine superiore dello schermo."
964
-
965
- #: ../admin/social_sharing.php:868
966
- #, fuzzy
967
- msgid "Use <strong>url</strong> attribute to specify the url to be shared"
968
- msgstr "Usa l'attributo <strong>style</strong> per cambiare il stilo del Contatore Sociale"
969
-
970
- #: ../admin/social_sharing.php:873
971
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]</strong>, so the final code looks like following"
972
- msgstr "Rimpiazza <strong>SHORTCODE</strong> nel codice antecedente con il codice breve necessario come <strong>[TheChamp-Sharing style=\"background-color:#000;\"]</strong>, il codice finale si presenterá come segue"
973
-
974
- #: ../admin/social_sharing.php:881
975
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - Sharing (Vertical Floating Widget)</strong> widgets in the required area."
976
- msgstr "Puoi navigare alla sezione <strong>Apparenza</strong> > <strong>Widgets</strong>nella vaschetta di sinistra e muovere i widget <strong>Super-Socializer - Sharing (Horizontal Widget)</strong> e <strong>Super Socializer - Sharing (Vertical Floating Widget)strong> nell'area necessitata."
977
-
978
- #: ../admin/social_sharing.php:891
979
  msgid "Facebook Sharing Troubleshooter"
980
  msgstr "Soluzionatore di problemi della condivisone Facebook"
981
 
982
- #: ../admin/social_sharing.php:896
983
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
984
  msgstr "Se la condivisione di Facebook non funziona bene, fai un clic sul collegamento che segue e ingressa il url problematico (dove la condivisione di Facebook non funziona bene) del tuo sito web nell'area di testo:"
985
 
986
- #: ../admin/social_sharing.php:910
987
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
988
  msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
989
 
990
- #: ../admin/social_sharing.php:914
991
- msgid "Choose \"Url of the homepage of your website\" in \"Target Url\" option and enable \"Show share counts\" option"
992
- msgstr "Opzione Scegli \"Url della homepage del tuo sito web \" in 'opzione \"Target URL \" e attivare \"Mostra condividere conta \""
993
-
994
- #: ../admin/social_sharing.php:921
995
  #, fuzzy
996
  msgid "How can I disable sharing on particular page/post?"
997
  msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
998
 
999
- #: ../admin/social_sharing.php:934
1000
  msgid "How can I specify minimum sharing count for sharing networks?"
1001
  msgstr "Come faccio a specificare conteggio minimo sharing per la condivisione di reti?"
1002
 
 
 
 
 
 
 
 
1003
  #: ../admin/social_commenting.php:10
1004
- msgid "Facebook Commenting"
1005
- msgstr "Commentando con Facebook"
 
 
 
 
 
 
 
1006
 
1007
  #: ../admin/social_commenting.php:18
1008
  #: ../admin/social_commenting.php:24
1009
- msgid "Enable Facebook Commenting"
1010
- msgstr "Abilitare Commentando con Facebook"
1011
-
1012
  #: ../admin/social_commenting.php:34
 
1013
  #, fuzzy
1014
- msgid "After enabling this option, Facebook commenting will appear before Wordpress comment form at your website"
1015
- msgstr "Dopo d'abilitare questa opzione, Commentando con Facebook sará visualizzato in luogo del formulario di Commento di Wordpress nel tuo sito Web."
1016
 
1017
- #: ../admin/social_commenting.php:44
1018
- msgid "Facebook Commenting Options"
1019
- msgstr "Opzioni di Commentando con Facebook"
1020
 
1021
- #: ../admin/social_commenting.php:50
1022
- msgid "Keep only Facebook Commenting"
1023
- msgstr "Conservare solo i Commenti di Facebook"
1024
 
1025
  #: ../admin/social_commenting.php:60
 
 
 
 
 
 
 
 
1026
  #, fuzzy
1027
- msgid "If enabled, only Facebook commenting would be visible without default comment form"
1028
- msgstr "Se abilitato, solo Commentando con Facebook sará visualizzato, senza la opzione di cambiare ai Commenti WordPress"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1029
 
1030
- #: ../admin/social_commenting.php:68
 
 
 
 
 
 
 
 
 
1031
  msgid "Url to comment on"
1032
  msgstr "Url per commentare"
1033
 
1034
- #: ../admin/social_commenting.php:78
1035
  #, fuzzy
1036
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
1037
  msgstr "La URL assoluta a la quale i commentari pubblicati saranno associati permanentemente. Storie in Facebook relazionati ai commentari pubblicati saranno redirezionati a questa URL.<br/>Se lasciato in bianco <strong>(raccomandato)</strong>, si utilizzará la URL della página web nella quale i commentari sono abilitati."
1038
 
1039
- #: ../admin/social_commenting.php:86
 
1040
  msgid "Width"
1041
  msgstr "Larghezza"
1042
 
1043
- #: ../admin/social_commenting.php:96
1044
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
1045
  msgstr "Lasciare vuoto per auto-regolare la larghezza. La larghezza (in pixel) del blocco commenti."
1046
 
1047
- #: ../admin/social_commenting.php:104
1048
  msgid "Color Scheme"
1049
  msgstr "Combinazione di colori"
1050
 
1051
- #: ../admin/social_commenting.php:108
1052
  msgid "Light"
1053
  msgstr "Chiaro"
1054
 
1055
- #: ../admin/social_commenting.php:109
1056
  msgid "Dark"
1057
  msgstr "Scuro"
1058
 
1059
- #: ../admin/social_commenting.php:117
1060
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
1061
  msgstr "La combinazione di colori usato dal plugin. Puó essere \"chiaro\" o \"scuro\"."
1062
 
1063
- #: ../admin/social_commenting.php:125
1064
  #, fuzzy
1065
  msgid "Number of comments"
1066
  msgstr "Numero di pubblicazioni"
1067
 
1068
- #: ../admin/social_commenting.php:135
1069
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
1070
  msgstr "Il numero di commentari a mostrare per impostazione predefinita. Il valore minimo é 1. Predefinito é 10"
1071
 
1072
- #: ../admin/social_commenting.php:143
1073
  msgid "Order by"
1074
  msgstr "Ordinare per"
1075
 
1076
- #: ../admin/social_commenting.php:147
1077
  msgid "Social"
1078
  msgstr "Sociale"
1079
 
1080
- #: ../admin/social_commenting.php:148
1081
  msgid "Reverse Time"
1082
  msgstr "Invertire il tempo"
1083
 
1084
- #: ../admin/social_commenting.php:149
1085
  msgid "Time"
1086
  msgstr "Tempo"
1087
 
1088
- #: ../admin/social_commenting.php:157
1089
  msgid "The order to use when displaying comments."
1090
  msgstr "L'ordine a usare quando si mostrano commentari."
1091
 
1092
- #: ../admin/social_commenting.php:165
1093
  msgid "Mobile"
1094
  msgstr "Mobile"
1095
 
1096
- #: ../admin/social_commenting.php:169
1097
  msgid "Auto Detect"
1098
  msgstr "Rilevare automaticamente"
1099
 
1100
- #: ../admin/social_commenting.php:170
1101
  msgid "True"
1102
  msgstr "Vero"
1103
 
1104
- #: ../admin/social_commenting.php:171
1105
  msgid "False"
1106
  msgstr "Falso"
1107
 
1108
- #: ../admin/social_commenting.php:179
1109
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
1110
  msgstr "Un valore booleano che specifica se si mostrará la versione ottimizata per cellulari o no. "
1111
 
1112
- #: ../admin/social_commenting.php:197
 
 
 
 
 
 
1113
  #, php-format
1114
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1115
  msgstr "Ingressa il codice della lingua che vuoi usare per mostrare i commentari. Poui incontrare i codici delle lingue a <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lascia in bianco per la lingua predefinita(inglese)"
1116
 
1117
- #: ../admin/social_commenting.php:213
1118
- #, fuzzy
1119
- msgid "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the content of required page/post where you want to display Facebook Commenting interface."
1120
- msgstr "Puoi usare il Codice breve <strong>[TheChamp-Counter]</strong> nel contenuto delle pagine o dei posts dove vuoi che il Contatore Sociale apparesca."
1121
-
1122
- #: ../admin/social_commenting.php:218
1123
- #, fuzzy
1124
- msgid "Use <strong>style</strong> attribute to style the rendered commenting interface"
1125
- msgstr "Utilizza l'attributo <strong>style</strong> per stilizzare l'interfaccia di condivisione sociale"
1126
-
1127
- #: ../admin/social_commenting.php:223
1128
  #, fuzzy
1129
- msgid "Use <strong>url</strong> attribute to specify the target url for comments. This defaults to the page where shortcode is used."
1130
- msgstr "Usa l'attributo <strong>left</strong> per specificare la compensazione a sinistra dell'interfaccia del Contatore (distanza del lato sinistro del schermo)."
1131
-
1132
- #: ../admin/social_commenting.php:227
1133
- msgid "num_posts"
1134
- msgstr ""
1135
 
1136
- #: ../admin/social_commenting.php:228
 
1137
  #, fuzzy
1138
- msgid "Use <strong>num_posts</strong> attribute to specify the number of comments to display."
1139
- msgstr "Usa l'attributo <strong>style</strong> per cambiare il stilo del Contatore Sociale"
1140
 
1141
- #: ../admin/social_commenting.php:232
1142
- #, fuzzy
1143
- msgid "width"
1144
- msgstr "Larghezza"
1145
 
1146
- #: ../admin/social_commenting.php:233
1147
  #, fuzzy
1148
- msgid "Use <strong>width</strong> attribute to specify the width of commenting interface. Omit it for fluid width"
1149
- msgstr "Usa l'attributo <strong>top</strong> per specificare la posizione dell'interfaccia di condivisione sociale in relazione al margine superiore dello schermo."
1150
 
1151
- #: ../admin/social_commenting.php:238
1152
  #, fuzzy
1153
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1154
- msgstr "Rimuovi <strong>SHORTCODE</strong> nel codice qui sopra con il Codice breve come: <strong>[TheChamp-Counter style=\"background-color:#000;\"]</strong>, il codigo finale si presenta come segue"
1155
 
1156
- #: ../admin/social_commenting.php:249
 
1157
  #, fuzzy
1158
- msgid "How can I disable FB comments at individual page/post?"
1159
- msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
1160
 
1161
- #: ../admin/social_commenting.php:253
1162
- msgid "Edit that page/post and check the option \"Disable Facebook Comments on this post/page\" at the bottom in \"Super Socializer\" section"
1163
- msgstr "Modifica la pagina / posta e selezionare l'opzione \"Disabilita Facebook Commenti su questo post/pagina \" in fondo in sezione \"Super Socializer\""
1164
 
1165
- #: ../admin/social_commenting.php:262
1166
- msgid "How to enable only Facebook Comments without enabling default comment form?"
1167
- msgstr "Come abilitare solo i commenti di Facebook senza abilitazione modulo dei commenti default?"
1168
 
1169
- #: ../admin/social_commenting.php:266
1170
- msgid "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting\" section."
1171
- msgstr "Abilita \"Conservare soltanto Facebook Commentando\" opzione sezione \"Facebook Commentando\"."
 
1172
 
1173
  #: ../admin/social_login.php:10
1174
  msgid "Social Login"
@@ -1478,20 +1279,9 @@ msgid "If enabled, email provided by the user will be verified by sending a conf
1478
  msgstr "Se é attivato, l'indirizzo di e-mail ingressato dall'utente si verificará mediante l'invio di un collegamento di verificazione al indirizzo e-mail specificato. L'utente non sará capace di ingressare senza verificare l'indirizzo di e-mail"
1479
 
1480
  #: ../admin/social_login.php:656
1481
- msgid "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of required page/post where you want to display Social Login interface."
1482
- msgstr "Utilizza il codice breve <strong> [TheChamp-Login]</strong> nel contenuto della pagina/post dove voui che la interfaccia dell'ingresso sociale sia mostrata."
1483
-
1484
- #: ../admin/social_login.php:659
1485
- msgid "You can use \"style\" attribute in the Shortcode to style the rendered Social Login interface."
1486
- msgstr "Puoi utilizzare attributi \"style\" nel codice breve per stilizzare l'interfaccia dell'ingresso sociale"
1487
-
1488
- #: ../admin/social_login.php:664
1489
- msgid "Replace <strong>SHORTCODE</strong> in above code with the required shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</strong>, so the final code looks like following"
1490
- msgstr "Restituisci <strong>SHORTCODE</strong> nel codice antecedente con il codice breve necessitato come <strong>[TheChamp-Login style=\"background-color: #000;\"]</strong>, in questo caso il codice finale si presenterá come segue"
1491
-
1492
- #: ../admin/social_login.php:672
1493
- msgid "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</strong> section in the left pan and drag <strong>Super Socializer - Login</strong> widget in the required area."
1494
- msgstr "Puoi navigare alla sezione <strong>Apparenza</strong> > <strong>Widgets</strong> nella vaschetta sinistra e trascinare <strong>Super Socializer - Login</strong> widget all'area necessaria."
1495
 
1496
  #: ../admin/admin.php:8
1497
  msgid "Welcome"
@@ -1506,7 +1296,8 @@ msgid "Getting Started"
1506
  msgstr "Iniziando"
1507
 
1508
  #: ../admin/admin.php:12
1509
- msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left pan. <strong>Social Sharing</strong> is enabled at your website by default."
 
1510
  msgstr "Comincia configurando le opzioni nelle sezioni sotto il menu <strong>Super Socializzatore</strong> nella vaschetta di sinistra. <strong>Condivisione Sociale</strong> é impostazione predefinita abilitata nella tuo sito web."
1511
 
1512
  #: ../admin/admin.php:13
@@ -1525,14 +1316,147 @@ msgstr "Nella sezione <strong>Condiviosione Sociale</strong>, puoi scegliere la
1525
 
1526
  #: ../admin/admin.php:16
1527
  #, fuzzy
1528
- msgid "In <strong>Social Counter</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1529
  msgstr "Nella sezione <strong>Condiviosione Sociale</strong>, puoi scegliere la Rete Sociale per la condivisione e configurare le sue opzioni."
1530
 
1531
- #: ../inc/social_sharing.php:492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1532
  msgid "Invalid request"
1533
  msgstr "Domanda invalida"
1534
 
1535
- #: ../inc/social_sharing.php:499
1536
  msgid "Providers not selected"
1537
  msgstr "Fornitori non selezionati"
1538
 
@@ -1636,6 +1560,397 @@ msgstr "Widget contatore orizzontale. Lascia condividire/piacere agli utenti del
1636
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1637
  msgstr "Widget contatore verticale flottante. Lascia condividire/piacere agli utenti del tuo sito web conenuti nelle reti popolari come Facebook, Twitter, Tumblr, Google+, e molti in piú"
1638
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1639
  #~ msgid "White-Label"
1640
  #~ msgstr "Etichetta bianca"
1641
 
@@ -1802,10 +2117,6 @@ msgstr "Widget contatore verticale flottante. Lascia condividire/piacere agli ut
1802
  #~ msgid "Load first"
1803
  #~ msgstr "Caricare prima"
1804
 
1805
- #, fuzzy
1806
- #~ msgid "Default Commenting"
1807
- #~ msgstr "Commento Predefinito"
1808
-
1809
  #~ msgid "Selected commenting will be loaded first on the page"
1810
  #~ msgstr "Commenti selezionati saranno caricati prima nella pagina"
1811
 
@@ -1846,9 +2157,6 @@ msgstr "Widget contatore verticale flottante. Lascia condividire/piacere agli ut
1846
  #~ msgid "Facebook Comments"
1847
  #~ msgstr "Comentarios Facebook"
1848
 
1849
- #~ msgid "WordPress Comments"
1850
- #~ msgstr "WordPress Comentarios"
1851
-
1852
  #~ msgid ""
1853
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
1854
  #~ "><strong>Note: Social Login at comment form of your website will not get "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-29 03:20+0530\n"
6
+ "PO-Revision-Date: 2015-05-29 03:28+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
  "Language-Team: yoonect.com\n"
9
  "Language: it\n"
25
  msgid "Make sure cURL is enabled at your website server. You may need to contact the server administrator of your website to verify this"
26
  msgstr "Assicurarsi cURL è abilitato il server web. Potrebbe essere necessario contattare l'amministratore del server del tuo sito web per verificare questo"
27
 
28
+ #: ../super_socializer.php:349
29
  msgid "Please verify your email address to login."
30
  msgstr "Per favore verifica il tuo indirzzo e-mail per accedere."
31
 
32
+ #: ../super_socializer.php:349
33
  msgid "Your email has been verified. Now you can login to your account"
34
  msgstr "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere alla tua conta."
35
 
36
+ #: ../super_socializer.php:353
37
  msgid "Notification"
38
  msgstr "Notificazione"
39
 
40
+ #: ../super_socializer.php:372
41
  #: ../admin/social_login.php:451
42
  msgid "Email required"
43
  msgstr "Necessita Indirizzo di Posta Elettronica"
44
 
45
+ #: ../super_socializer.php:375
46
  msgid "Please check your email inbox to complete the registration."
47
  msgstr "Per favore controlla la tua casella di posta elettronica per completare la registrazione."
48
 
49
+ #: ../super_socializer.php:388
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
  msgstr "Seguire i passaggi 11 e 12 a pagina di configurazione app GooglePlus, per aprire"
52
 
53
+ #: ../super_socializer.php:463
54
+ msgid "Leave a reply"
55
+ msgstr "Lascia un commento"
56
+
57
+ #: ../super_socializer.php:565
58
  msgid "Email you entered is already registered or invalid"
59
  msgstr "E-mail inserito è già registrato o non valido"
60
 
61
+ #: ../super_socializer.php:569
62
  msgid "Please enter a valid email address. You might be required to verify it"
63
  msgstr "Si prega di inserire un indirizzo email valido. Potrebbe essere richiesto di verificarla"
64
 
74
  msgid "Click to hide help"
75
  msgstr "Clicca per nascondere aiuto"
76
 
77
+ #: ../helper.php:175
78
  msgid "Settings"
79
  msgstr "Configurazione"
80
 
81
+ #: ../helper.php:492
82
  #, fuzzy
83
  msgid "Account linked successfully"
84
  msgstr "Opzioni salvate con successo"
85
 
86
+ #: ../helper.php:498
87
  msgid "Account already exists or linked"
88
  msgstr "Account esistente o collegato già"
89
 
90
+ #: ../helper.php:509
91
  #, fuzzy
92
  msgid "You are already connected with"
93
  msgstr "Sei pronto per socializzare il tuo sito web."
94
 
95
+ #: ../helper.php:509
96
  msgid "as primary social network"
97
  msgstr "come rete sociale primaria"
98
 
99
+ #: ../helper.php:526
100
  msgid "Link your social account to login to your account at this website"
101
  msgstr "Collega il tuo account sociale per accedere al proprio account su questo sito"
102
 
103
+ #: ../helper.php:571
104
  msgid "Currently"
105
  msgstr "attualmente"
106
 
107
+ #: ../helper.php:571
108
  msgid "Remove"
109
  msgstr "rimuovere"
110
 
111
+ #: ../helper.php:664
112
  msgid "Disable Horizontal Social Sharing on this "
113
  msgstr "Disabilitare Condivisione Sociale orizzontale in questo"
114
 
115
+ #: ../helper.php:669
116
  msgid "Disable Vertical Social Sharing on this "
117
  msgstr "Disabilitare Condivisione Sociale Verticale in questo"
118
 
119
+ #: ../helper.php:674
120
  #, fuzzy
121
+ msgid "Disable Horizontal like buttons on this "
122
  msgstr "Disabilitare Contatore Sociale orizzontale in questo"
123
 
124
+ #: ../helper.php:679
125
  #, fuzzy
126
+ msgid "Disable Vertical like buttons on this "
127
  msgstr "Disabilitare Contatore Sociale Verticale in questo"
128
 
129
+ #: ../helper.php:684
130
  #, fuzzy
131
+ msgid "Disable Social Commenting on this "
132
  msgstr "Abilitare Commentando con Facebook"
133
 
134
+ #: ../helper.php:693
135
  #, fuzzy
136
  msgid "Horizontal sharing"
137
  msgstr "Allineamento orizzontale"
138
 
139
+ #: ../helper.php:699
140
+ #: ../helper.php:718
141
  #, fuzzy
142
  msgid "Starting share count for "
143
  msgstr "Mostra la qunatitá di condivisioni"
144
 
145
+ #: ../helper.php:712
146
  #, fuzzy
147
  msgid "Vertical sharing"
148
  msgstr "Condivisione Sociale"
160
  msgstr "da"
161
 
162
  #: ../admin/help.php:7
163
+ msgid "We are a creative team with unique ideas in mind and service in heart. We love what we do. For more info join us at"
164
+ msgstr "Siamo un team creativo con idee uniche in mente e servizio nel cuore. Amiamo quello che facciamo. Per maggiori informazioni noi aderire a"
165
 
166
+ #: ../admin/help.php:17
167
  msgid "Plugin Demo"
168
  msgstr "Dimostrazione del Plugin"
169
 
170
+ #: ../admin/help.php:19
171
  msgid "You can see the plugin in action at following link"
172
  msgstr "Puoi vedere il plugin in azione seguendo il successivo collegamento"
173
 
174
+ #: ../admin/help.php:25
175
  msgid "Support"
176
  msgstr "Sopporte"
177
 
178
+ #: ../admin/help.php:27
179
+ #, fuzzy
180
+ msgid "If you like the plugin or have any query, drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>, like our <strong>Facebook</strong> page and follow us at <strong>Twitter</strong>."
181
  msgstr "Se ti piace il mio plugin o tieni una proposta, puoi scrivermi una posta elettronica a <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>, o dare un \"mi piace\" alle mie pagine <strong>Facebook</strong> e seguire il mio <strong>Twitter</strong>."
182
 
183
+ #: ../admin/help.php:29
184
+ #: ../admin/help.php:32
185
  #: ../admin/help.php:33
186
  #: ../admin/help.php:34
187
  #: ../admin/help.php:35
188
  #: ../admin/help.php:36
 
189
  msgid "Rate 5-star"
190
  msgstr "Tasso di 5-stelle"
191
 
192
+ #: ../admin/help.php:44
193
+ #: ../admin/social_sharing.php:411
194
+ #: ../admin/social_sharing.php:736
195
+ #: ../admin/social_login.php:46
196
+ msgid "Facebook"
197
+ msgstr "Facebook"
 
198
 
199
+ #: ../admin/help.php:63
200
  msgid "Want plugin customization?"
201
  msgstr "Voui una personalizzazione del plugin?"
202
 
203
+ #: ../admin/help.php:65
204
+ #, fuzzy
205
+ msgid "If you want custom features in the plugin, just drop an email at <a href=\"mailto:hello@heateor.com\">hello@heateor.com</a>"
206
  msgstr "Se vuoi funzioni personalizzate nel plugin, posso farlo per te. Basta scrivermi una posta elettronica a <a href=\"mailto:lordofthechamps@gmail.com\">lordofthechamps@gmail.com</a>"
207
 
208
+ #: ../admin/social_sharing.php:11
209
+ #: ../admin/social_sharing.php:22
 
 
210
  #: ../admin/social_login.php:9
211
  #: ../admin/social_login.php:17
212
+ #: ../admin/like_buttons.php:11
213
+ #: ../admin/like_buttons.php:19
214
  msgid "Basic Configuration"
215
  msgstr "Configurazione Basica"
216
 
217
+ #: ../admin/social_sharing.php:12
218
  #, fuzzy
219
+ msgid "Sharing Interface"
220
+ msgstr "Opzioni orizzontali dell'interfaccia di condivisione"
221
 
222
+ #: ../admin/social_sharing.php:13
223
+ #, fuzzy
224
+ msgid "Sharing Options"
225
+ msgstr "Posto di condivisione"
226
+
227
+ #: ../admin/social_sharing.php:14
228
+ #: ../admin/social_sharing.php:1067
229
+ #: ../admin/social_sharing.php:1069
230
  #: ../admin/social_login.php:11
231
+ #: ../admin/social_login.php:654
232
+ #: ../admin/like_buttons.php:13
233
+ #: ../admin/like_buttons.php:644
234
+ #: ../admin/like_buttons.php:646
235
  msgid "Shortcode & Widget"
236
  msgstr "Codice Corto & Widget"
237
 
238
+ #: ../admin/social_sharing.php:15
239
+ msgid "Troubleshooter"
240
+ msgstr "Soluzionatore di problemi"
241
+
242
+ #: ../admin/social_sharing.php:16
243
+ #: ../admin/social_sharing.php:1098
244
  #: ../admin/social_commenting.php:12
245
+ #: ../admin/social_commenting.php:404
246
  msgid "FAQ"
247
  msgstr "FAQ"
248
 
249
+ #: ../admin/social_sharing.php:28
250
+ msgid "Enable Social Sharing"
251
+ msgstr "Abilitare Condivisione Sociale"
252
+
253
+ #: ../admin/social_sharing.php:38
254
+ msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
255
+ msgstr "Controllo maestro per la condivisione sociale. Dev'essere marcato per abilitare la funzione di condivisione sociale"
256
+
257
+ #: ../admin/social_sharing.php:46
258
+ msgid "Delete all the options on plugin deletion"
259
+ msgstr "Eliminare tutte le opzioni quando si elimina il plugin"
260
+
261
+ #: ../admin/social_sharing.php:56
262
+ msgid "If enabled, plugin options will get deleted when plugin is deleted/uninstalled and you will need to reconfigure the options when you install the plugin next time."
263
+ msgstr "Se é attivato, le opzioni saranno cancellate/desinstallizate quando si cancella il plugin e deverái riconfigurare le opzioni quando installaraste il plugin la prossima volta."
264
+
265
+ #: ../admin/social_sharing.php:71
266
  #, fuzzy
267
+ msgid "Horizontal interface options"
268
+ msgstr "Opzioni orizzontali dell'interfaccia di condivisione"
269
+
270
+ #: ../admin/social_sharing.php:77
271
+ #: ../admin/social_sharing.php:155
272
+ msgid "Shape"
273
+ msgstr "Forma"
274
 
275
+ #: ../admin/social_sharing.php:85
276
+ #: ../admin/social_sharing.php:163
277
+ msgid "Round"
278
+ msgstr "Round"
279
 
280
+ #: ../admin/social_sharing.php:87
281
+ #: ../admin/social_sharing.php:165
282
+ msgid "Square"
283
+ msgstr "Piazza"
284
 
285
+ #: ../admin/social_sharing.php:94
286
+ #: ../admin/social_sharing.php:172
287
+ #, fuzzy
288
+ msgid "Shape of the sharing icons"
289
+ msgstr "Mostra la qunatitá di condivisioni"
290
+
291
+ #: ../admin/social_sharing.php:102
292
+ #: ../admin/social_sharing.php:180
293
+ msgid "Size (in pixels)"
294
+ msgstr "Dimensioni (in pixel)"
295
+
296
+ #: ../admin/social_sharing.php:120
297
+ #: ../admin/social_sharing.php:198
298
+ #, fuzzy
299
+ msgid "Size of the sharing icons"
300
+ msgstr "Allineamento orizzontale dell'interfaccia di condivisione"
301
+
302
+ #: ../admin/social_sharing.php:127
303
+ #: ../admin/social_sharing.php:205
304
+ msgid "Icon Preview"
305
+ msgstr "Icona Anteprima"
306
+
307
+ #: ../admin/social_sharing.php:141
308
+ #: ../admin/social_sharing.php:219
309
+ msgid "Do not forget to save the configuration after making changes by clicking the save button below"
310
+ msgstr "Non dimenticate di salvare la configurazione dopo aver apportato le modifiche, fare clic sul pulsante Salva in basso"
311
+
312
+ #: ../admin/social_sharing.php:149
313
+ #, fuzzy
314
+ msgid "Vertical interface options"
315
+ msgstr "Opzioni dell'interfaccia verticale (flottante) del Contatore"
316
+
317
+ #: ../admin/social_sharing.php:232
318
+ #: ../admin/like_buttons.php:51
319
+ #, fuzzy
320
+ msgid "Url shortener"
321
  msgstr "cortatore di url bit.ly"
322
 
323
+ #: ../admin/social_sharing.php:238
324
+ msgid "Use shortlinks already installed"
325
+ msgstr "Utilizzare shortlinks già installati"
326
+
327
+ #: ../admin/social_sharing.php:248
328
+ #: ../admin/like_buttons.php:67
329
+ msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
330
+ msgstr "Permette di URL abbreviati da utilizzare quando la condivisione di contenuti se è installato un plugin accorciamento"
331
+
332
+ #: ../admin/social_sharing.php:256
333
+ msgid "Enable bit.ly url shortener for sharing"
334
+ msgstr "Abilitare il cortatore url bit.ly per la condivisone sociale"
335
 
336
+ #: ../admin/social_sharing.php:266
337
+ #: ../admin/like_buttons.php:85
338
  #, fuzzy
339
  msgid "Master control to enable bit.ly url shortening for sharing"
340
  msgstr "Controllo maestro per abilitare la cortazione di url bit.ly per la condivisione"
341
 
342
+ #: ../admin/social_sharing.php:274
343
+ #: ../admin/like_buttons.php:93
344
  msgid "bit.ly username"
345
  msgstr "nome d'utente di bit.ly"
346
 
347
+ #: ../admin/social_sharing.php:284
348
+ #: ../admin/like_buttons.php:103
349
  #, php-format
350
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
351
  msgstr "Per ottenere il nome d'utente di bit.ly, accede alla tua conta di bit.ly e naviga fino a <a href=\"%s\" target=\"_blank\">questo collegamento</a>"
352
 
353
+ #: ../admin/social_sharing.php:293
354
+ #: ../admin/like_buttons.php:112
355
  #, fuzzy
356
  msgid "bit.ly API Key"
357
  msgstr "Chiave API bit.ly"
358
 
359
+ #: ../admin/social_sharing.php:303
360
+ #: ../admin/like_buttons.php:122
361
  #, fuzzy, php-format
362
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
363
  msgstr "Per ottenere la chiave API, accedi alla tua conta di bit.ly e naviga fino a <a href=\"%s\" target=\"_blank\">questo collegamento</a>"
364
 
365
+ #: ../admin/social_sharing.php:313
366
+ msgid "Twitter username in sharing"
367
+ msgstr "Nome d'utente di Twitter per la condivisione sociale"
 
 
 
 
 
 
 
 
 
 
 
368
 
369
+ #: ../admin/social_sharing.php:319
370
+ #: ../admin/like_buttons.php:163
371
  msgid "Twitter username (without @)"
372
  msgstr "Nome d'utente di Twitter (senza @)"
373
 
374
+ #: ../admin/social_sharing.php:329
375
+ msgid "Provided username will be appended after the content being shared as \"via @USERNAME\". Leave empty if you do not want any username in the content being shared."
376
+ msgstr "Il nome d'utente sará attacato dopo il contenuto che si condivide come \"via @USERNAME\". Lascia vuoto se non voui nincun nome d'utente nel contenuto che si condivide."
377
 
378
+ #: ../admin/social_sharing.php:339
379
+ msgid "Horizontal Sharing Interface Options"
380
+ msgstr "Opzioni orizzontali dell'interfaccia di condivisione"
 
381
 
382
+ #: ../admin/social_sharing.php:345
383
+ msgid "Enable horizontal sharing interface"
384
+ msgstr "Abilitare l'interfaccia di condivisione orizzontale"
 
385
 
386
+ #: ../admin/social_sharing.php:355
387
+ msgid "Master control to enable horizontal sharing"
388
+ msgstr "Controllo maestro per abilitare la condivisione orizzontale"
 
389
 
390
+ #: ../admin/social_sharing.php:365
391
+ #: ../admin/social_sharing.php:708
392
+ #: ../admin/like_buttons.php:209
393
+ #: ../admin/like_buttons.php:424
394
  msgid "Target Url"
395
  msgstr "URL di destinazione"
396
 
397
+ #: ../admin/social_sharing.php:369
398
+ #: ../admin/social_sharing.php:712
399
+ #: ../admin/like_buttons.php:213
400
+ #: ../admin/like_buttons.php:428
401
  msgid "Url of the webpage where icons are located (default)"
402
  msgstr "URL della pagina web in cui si trovano le icone (di default)"
403
 
404
+ #: ../admin/social_sharing.php:371
405
+ #: ../admin/social_sharing.php:714
406
+ #: ../admin/like_buttons.php:215
407
+ #: ../admin/like_buttons.php:430
408
  msgid "Url of the homepage of your website"
409
  msgstr "Url della homepage del tuo sito web"
410
 
411
+ #: ../admin/social_sharing.php:373
412
+ #: ../admin/social_sharing.php:716
413
+ #: ../admin/like_buttons.php:217
414
+ #: ../admin/like_buttons.php:432
415
  #, fuzzy
416
  msgid "Custom url"
417
  msgstr "Url personalizzata"
418
 
419
+ #: ../admin/social_sharing.php:380
420
+ #: ../admin/social_sharing.php:723
421
+ msgid "Url to share"
422
+ msgstr "Url per condividere"
423
 
424
+ #: ../admin/social_sharing.php:388
 
425
  #: ../admin/social_login.php:314
426
+ #: ../admin/like_buttons.php:232
427
  msgid "Title"
428
  msgstr "Titolo"
429
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  #: ../admin/social_sharing.php:398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431
  msgid "The text to display above the sharing interface"
432
  msgstr "Il testo a mostrare sopra l'interfaccia di condivisione"
433
 
434
+ #: ../admin/social_sharing.php:406
435
+ #: ../admin/social_sharing.php:731
436
  #: ../admin/social_login.php:41
437
  msgid "Select providers"
438
  msgstr "Selezionare fornitori"
439
 
440
+ #: ../admin/social_sharing.php:416
441
+ #: ../admin/social_sharing.php:741
 
 
 
 
 
 
442
  #: ../admin/social_login.php:50
443
  msgid "Twitter"
444
  msgstr "Twitter"
445
 
446
+ #: ../admin/social_sharing.php:421
447
+ #: ../admin/social_sharing.php:746
448
  #: ../admin/social_login.php:54
449
  msgid "LinkedIn"
450
  msgstr "LinkedIn"
451
 
452
+ #: ../admin/social_sharing.php:426
453
+ #: ../admin/social_sharing.php:751
454
  #: ../admin/social_login.php:58
455
  msgid "Google+"
456
  msgstr "Google+"
457
 
458
+ #: ../admin/social_sharing.php:431
459
+ #: ../admin/social_sharing.php:756
460
  msgid "Print"
461
  msgstr "Stampare"
462
 
463
+ #: ../admin/social_sharing.php:436
464
+ #: ../admin/social_sharing.php:761
465
  msgid "Email"
466
  msgstr "Email"
467
 
468
+ #: ../admin/social_sharing.php:441
469
+ #: ../admin/social_sharing.php:766
470
  msgid "Yahoo"
471
  msgstr "Yahoo"
472
 
473
+ #: ../admin/social_sharing.php:446
474
+ #: ../admin/social_sharing.php:771
475
  msgid "Reddit"
476
  msgstr "Reddit"
477
 
478
+ #: ../admin/social_sharing.php:451
479
+ #: ../admin/social_sharing.php:776
480
  msgid "Digg"
481
  msgstr "Digg"
482
 
483
+ #: ../admin/social_sharing.php:456
484
+ #: ../admin/social_sharing.php:781
485
  msgid "Delicious"
486
  msgstr "Delicious"
487
 
488
+ #: ../admin/social_sharing.php:461
489
+ #: ../admin/social_sharing.php:786
490
  msgid "StumbleUpon"
491
  msgstr "StumbleUpon"
492
 
493
+ #: ../admin/social_sharing.php:466
494
+ #: ../admin/social_sharing.php:791
495
  msgid "Float it"
496
  msgstr "Float it"
497
 
498
+ #: ../admin/social_sharing.php:471
499
+ #: ../admin/social_sharing.php:796
500
  msgid "Tumblr"
501
  msgstr "Tumblr"
502
 
503
+ #: ../admin/social_sharing.php:476
504
+ #: ../admin/social_sharing.php:801
505
  #: ../admin/social_login.php:62
506
  msgid "Vkontakte"
507
  msgstr "Vkontakte"
508
 
509
+ #: ../admin/social_sharing.php:481
510
+ #: ../admin/social_sharing.php:806
511
  msgid "Pinterest"
512
  msgstr "Pinterest"
513
 
514
+ #: ../admin/social_sharing.php:486
515
+ #: ../admin/social_sharing.php:811
516
  #: ../admin/social_login.php:70
517
  msgid "Xing"
518
  msgstr ""
519
 
520
+ #: ../admin/social_sharing.php:491
521
+ #: ../admin/social_sharing.php:816
522
  msgid "Whatsapp"
523
  msgstr ""
524
 
525
+ #: ../admin/social_sharing.php:499
526
+ #: ../admin/social_sharing.php:824
527
  msgid "Select the providers for sharing interface"
528
  msgstr "Seleziona i fornitori per l'interfaccia di condivisione"
529
 
530
+ #: ../admin/social_sharing.php:507
531
+ #: ../admin/social_sharing.php:832
532
  msgid "Rearrange icons"
533
  msgstr "riorganizzare gli iconi"
534
 
535
+ #: ../admin/social_sharing.php:541
536
+ #: ../admin/social_sharing.php:866
537
  msgid "Drag the icons to rearrange in desired order"
538
  msgstr "Arrastra gli iconi per riordinare nell'ordine desiderato"
539
 
540
+ #: ../admin/social_sharing.php:549
541
+ #: ../admin/social_sharing.php:892
542
+ #: ../admin/like_buttons.php:302
543
+ #: ../admin/like_buttons.php:516
544
+ #, fuzzy
545
+ msgid "Horizontal alignment"
546
+ msgstr "Allineamento orizzontale"
547
+
548
+ #: ../admin/social_sharing.php:553
549
+ #: ../admin/social_sharing.php:896
550
+ #: ../admin/like_buttons.php:306
551
+ #: ../admin/like_buttons.php:520
552
+ msgid "Left"
553
+ msgstr "Sinistra"
554
+
555
+ #: ../admin/social_sharing.php:554
556
+ #: ../admin/like_buttons.php:307
557
+ msgid "Center"
558
+ msgstr "centro"
559
+
560
+ #: ../admin/social_sharing.php:555
561
+ #: ../admin/social_sharing.php:897
562
+ #: ../admin/like_buttons.php:308
563
+ #: ../admin/like_buttons.php:521
564
+ #, fuzzy
565
+ msgid "Right"
566
+ msgstr "Destra"
567
+
568
+ #: ../admin/social_sharing.php:563
569
+ #: ../admin/social_sharing.php:905
570
  #, fuzzy
571
  msgid "Horizontal alignment of the sharing interface"
572
  msgstr "Allineamento orizzontale dell'interfaccia di condivisione"
573
 
574
+ #: ../admin/social_sharing.php:571
575
+ #: ../admin/like_buttons.php:324
576
+ msgid "Position with respect to content"
577
+ msgstr "Posizione al rispetto del contenuto"
578
+
579
+ #: ../admin/social_sharing.php:575
580
+ #: ../admin/like_buttons.php:328
581
+ msgid "Top of the content"
582
+ msgstr "Parte superiore del contenuto"
583
+
584
+ #: ../admin/social_sharing.php:577
585
+ #: ../admin/like_buttons.php:330
586
+ msgid "Bottom of the content"
587
+ msgstr "Parte inferiore del contenuto"
588
+
589
+ #: ../admin/social_sharing.php:584
590
  msgid "Specify position of the sharing interface with respect to the content"
591
  msgstr "Specifica la posizione dell'interfaccia al rispetto del contenuto"
592
 
593
+ #: ../admin/social_sharing.php:592
594
+ #: ../admin/social_sharing.php:971
595
  msgid "Sharing location"
596
  msgstr "Posto di condivisione"
597
 
598
+ #: ../admin/social_sharing.php:596
599
+ #: ../admin/social_sharing.php:975
600
+ #: ../admin/social_login.php:514
601
+ #: ../admin/social_login.php:544
602
+ #: ../admin/like_buttons.php:349
603
+ #: ../admin/like_buttons.php:599
604
+ msgid "Homepage"
605
+ msgstr "Pagina d'inizio"
606
+
607
+ #: ../admin/social_sharing.php:598
608
+ #: ../admin/social_sharing.php:977
609
+ #: ../admin/like_buttons.php:351
610
+ #: ../admin/like_buttons.php:601
611
+ msgid "Posts"
612
+ msgstr "Pubblicazioni"
613
+
614
+ #: ../admin/social_sharing.php:600
615
+ #: ../admin/social_sharing.php:979
616
+ #: ../admin/like_buttons.php:353
617
+ #: ../admin/like_buttons.php:603
618
+ msgid "Pages"
619
+ msgstr "Pagine"
620
+
621
+ #: ../admin/social_sharing.php:602
622
+ #: ../admin/social_sharing.php:981
623
+ #: ../admin/like_buttons.php:355
624
+ #: ../admin/like_buttons.php:605
625
+ msgid "Excerpts"
626
+ msgstr "Estrazioni"
627
+
628
+ #: ../admin/social_sharing.php:604
629
+ #: ../admin/social_sharing.php:983
630
+ #: ../admin/like_buttons.php:357
631
+ #: ../admin/like_buttons.php:607
632
+ msgid "Category Archives"
633
+ msgstr "Archivi di categorie"
634
+
635
+ #: ../admin/social_sharing.php:606
636
+ #: ../admin/social_sharing.php:985
637
+ #: ../admin/like_buttons.php:359
638
+ #: ../admin/like_buttons.php:609
639
+ msgid "Archive Pages (Category, Tag, Author or Date based pages)"
640
+ msgstr "Archive Pages (categoria, tag, autore o pagine data base)"
641
+
642
+ #: ../admin/social_sharing.php:612
643
+ #: ../admin/like_buttons.php:365
644
+ msgid "BuddyPress activity and groups"
645
+ msgstr "Attività BuddyPress e gruppi"
646
+
647
+ #: ../admin/social_sharing.php:619
648
+ #: ../admin/social_sharing.php:991
649
+ #: ../admin/like_buttons.php:372
650
+ #: ../admin/like_buttons.php:615
651
+ msgid "BBPress forum"
652
+ msgstr ""
653
+
654
+ #: ../admin/social_sharing.php:622
655
+ #: ../admin/social_sharing.php:994
656
+ #: ../admin/like_buttons.php:375
657
+ #: ../admin/like_buttons.php:618
658
+ msgid "BBPress topic"
659
+ msgstr "argomento bbPress"
660
+
661
+ #: ../admin/social_sharing.php:625
662
+ #: ../admin/like_buttons.php:378
663
+ msgid "BBPress reply"
664
+ msgstr "bbPress risposta"
665
+
666
+ #: ../admin/social_sharing.php:635
667
  msgid "Specify the pages where you want to enable Sharing interface"
668
  msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia di condivisione"
669
 
670
+ #: ../admin/social_sharing.php:643
671
+ #: ../admin/social_sharing.php:1012
672
  msgid "Show share counts"
673
  msgstr "Mostra la qunatitá di condivisioni"
674
 
675
+ #: ../admin/social_sharing.php:653
676
+ #: ../admin/social_sharing.php:1022
677
  msgid "If enabled, share counts are displayed above sharing icons."
678
  msgstr "Sé é abilitato, la quantitá di condivisioni sará mostrato sopra gli iconi di condivisione"
679
 
680
+ #: ../admin/social_sharing.php:662
681
+ #: ../admin/social_sharing.php:1031
682
+ #, fuzzy
683
+ msgid "Enable 'More' icon"
684
+ msgstr "Abilitare la verificazione dell'indirizzo d'e-mail"
685
+
686
+ #: ../admin/social_sharing.php:672
687
+ #: ../admin/social_sharing.php:1041
688
+ msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
689
+ msgstr "Se abilitata, l'icona \"More \" sarà visualizzato icone di condivisione dopo selezionati che mostra le reti di scambio supplementari in popup"
690
+
691
+ #: ../admin/social_sharing.php:682
692
  msgid "Vertical (Floating) Sharing Interface Options"
693
  msgstr "Opzioni verticali (fluotante) dell'interfaccia di condivisione"
694
 
695
+ #: ../admin/social_sharing.php:688
696
  msgid "Enable vertical (floating) sharing interface"
697
  msgstr "Abilitare l'interfaccia di condivisione verticale (fluotante)"
698
 
699
+ #: ../admin/social_sharing.php:698
700
  msgid "Master control to enable vertical (floating) sharing widget"
701
  msgstr "Controllo maestro per abilitare il widget di condivisione verticale (fluotante)"
702
 
703
+ #: ../admin/social_sharing.php:874
704
+ #: ../admin/like_buttons.php:498
705
+ msgid "Background Color"
706
+ msgstr "Colore del fondo"
707
+
708
+ #: ../admin/social_sharing.php:884
709
  msgid "Specify the color or hex code (example #cc78e0) for the background of vertical sharing bar. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
710
  msgstr "Specifica il colore ó il codice hex (esempio #cc78e0) per il fondo dell'area di condivisione verticale. Lascia vuoto per transparente. Puoi ottenere il codice hex del colore necessitato a <a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
711
 
712
+ #: ../admin/social_sharing.php:914
713
+ #: ../admin/like_buttons.php:538
714
+ msgid "Left offset"
715
+ msgstr "Compensazione a sinistra"
716
+
717
+ #: ../admin/social_sharing.php:924
718
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left."
719
  msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso destra e un numero minore lo muove verso sinistra."
720
 
721
+ #: ../admin/social_sharing.php:934
722
+ #: ../admin/like_buttons.php:558
723
+ #, fuzzy
724
+ msgid "Right offset"
725
+ msgstr "Compensazione alla destra"
726
+
727
+ #: ../admin/social_sharing.php:944
728
  #, fuzzy
729
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right."
730
  msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso sinistra e un numero minore lo muove verso destra."
731
 
732
+ #: ../admin/social_sharing.php:953
733
+ #: ../admin/like_buttons.php:577
734
+ msgid "Top offset"
735
+ msgstr "Compensazione in cima"
736
+
737
+ #: ../admin/social_sharing.php:963
738
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
739
  msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso il basso e un numero minore lo muove verso l'alto."
740
 
741
+ #: ../admin/social_sharing.php:1004
742
  msgid "Specify the pages where you want to enable vertical Sharing interface"
743
  msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia di condivisione verticale"
744
 
745
+ #: ../admin/social_sharing.php:1079
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746
  msgid "Facebook Sharing Troubleshooter"
747
  msgstr "Soluzionatore di problemi della condivisone Facebook"
748
 
749
+ #: ../admin/social_sharing.php:1084
750
  msgid "If Facebook sharing is not working fine, click at the following link and enter the problematic url (where Facebook sharing is not working properly) of your website in the text field:"
751
  msgstr "Se la condivisione di Facebook non funziona bene, fai un clic sul collegamento che segue e ingressa il url problematico (dove la condivisione di Facebook non funziona bene) del tuo sito web nell'area di testo:"
752
 
753
+ #: ../admin/social_sharing.php:1100
754
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
755
  msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
756
 
757
+ #: ../admin/social_sharing.php:1101
 
 
 
 
758
  #, fuzzy
759
  msgid "How can I disable sharing on particular page/post?"
760
  msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
761
 
762
+ #: ../admin/social_sharing.php:1102
763
  msgid "How can I specify minimum sharing count for sharing networks?"
764
  msgstr "Come faccio a specificare conteggio minimo sharing per la condivisione di reti?"
765
 
766
+ #: ../admin/social_sharing.php:1112
767
+ #: ../admin/social_commenting.php:414
768
+ #: ../admin/social_login.php:665
769
+ #: ../admin/like_buttons.php:655
770
+ msgid "Save Changes"
771
+ msgstr "Salvare le modifiche."
772
+
773
  #: ../admin/social_commenting.php:10
774
+ #, fuzzy
775
+ msgid "Social Commenting"
776
+ msgstr "Commento Predefinito"
777
+
778
+ #: ../admin/social_commenting.php:11
779
+ #: ../admin/social_commenting.php:392
780
+ #: ../admin/social_commenting.php:394
781
+ msgid "Shortcode"
782
+ msgstr "Codice breve"
783
 
784
  #: ../admin/social_commenting.php:18
785
  #: ../admin/social_commenting.php:24
 
 
 
786
  #: ../admin/social_commenting.php:34
787
+ #: ../admin/social_commenting.php:134
788
  #, fuzzy
789
+ msgid "Enable Social Commenting"
790
+ msgstr "Abilitare il Contatore Sociale"
791
 
792
+ #: ../admin/social_commenting.php:42
793
+ msgid "Order of tabs in commenting interface"
794
+ msgstr "Ordine di schede di interfaccia commentare"
795
 
796
+ #: ../admin/social_commenting.php:52
797
+ msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
798
+ msgstr "Ordine delle schede mostrate nella interfaccia commentare sociale. Il valore predefinito è wordpress,facebook,googleplus,disqus"
799
 
800
  #: ../admin/social_commenting.php:60
801
+ msgid "Comment area label"
802
+ msgstr "Label Commento zona"
803
+
804
+ #: ../admin/social_commenting.php:71
805
+ msgid "Labels"
806
+ msgstr "Etichette"
807
+
808
+ #: ../admin/social_commenting.php:77
809
  #, fuzzy
810
+ msgid "Label for WordPress Commenting tab"
811
+ msgstr "WordPress Comentarios"
812
+
813
+ #: ../admin/social_commenting.php:87
814
+ #, fuzzy
815
+ msgid "Label for Facebook Commenting tab"
816
+ msgstr "Abilitare Commentando con Facebook"
817
+
818
+ #: ../admin/social_commenting.php:97
819
+ #, fuzzy
820
+ msgid "Label for G+ Commenting tab"
821
+ msgstr "Commentando con Facebook"
822
+
823
+ #: ../admin/social_commenting.php:107
824
+ msgid "Label for Disqus Commenting tab"
825
+ msgstr "Etichetta per scheda Commentando Disqus"
826
 
827
+ #: ../admin/social_commenting.php:118
828
+ msgid "Facebook Commenting Options"
829
+ msgstr "Opzioni di Commentando con Facebook"
830
+
831
+ #: ../admin/social_commenting.php:124
832
+ msgid "Enable Facebook Commenting"
833
+ msgstr "Abilitare Commentando con Facebook"
834
+
835
+ #: ../admin/social_commenting.php:143
836
+ #: ../admin/social_commenting.php:323
837
  msgid "Url to comment on"
838
  msgstr "Url per commentare"
839
 
840
+ #: ../admin/social_commenting.php:153
841
  #, fuzzy
842
  msgid "The absolute URL that comments posted will be permanently associated with. Stories on Facebook about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
843
  msgstr "La URL assoluta a la quale i commentari pubblicati saranno associati permanentemente. Storie in Facebook relazionati ai commentari pubblicati saranno redirezionati a questa URL.<br/>Se lasciato in bianco <strong>(raccomandato)</strong>, si utilizzará la URL della página web nella quale i commentari sono abilitati."
844
 
845
+ #: ../admin/social_commenting.php:161
846
+ #: ../admin/social_commenting.php:305
847
  msgid "Width"
848
  msgstr "Larghezza"
849
 
850
+ #: ../admin/social_commenting.php:171
851
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
852
  msgstr "Lasciare vuoto per auto-regolare la larghezza. La larghezza (in pixel) del blocco commenti."
853
 
854
+ #: ../admin/social_commenting.php:179
855
  msgid "Color Scheme"
856
  msgstr "Combinazione di colori"
857
 
858
+ #: ../admin/social_commenting.php:183
859
  msgid "Light"
860
  msgstr "Chiaro"
861
 
862
+ #: ../admin/social_commenting.php:184
863
  msgid "Dark"
864
  msgstr "Scuro"
865
 
866
+ #: ../admin/social_commenting.php:192
867
  msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
868
  msgstr "La combinazione di colori usato dal plugin. Puó essere \"chiaro\" o \"scuro\"."
869
 
870
+ #: ../admin/social_commenting.php:200
871
  #, fuzzy
872
  msgid "Number of comments"
873
  msgstr "Numero di pubblicazioni"
874
 
875
+ #: ../admin/social_commenting.php:210
876
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
877
  msgstr "Il numero di commentari a mostrare per impostazione predefinita. Il valore minimo é 1. Predefinito é 10"
878
 
879
+ #: ../admin/social_commenting.php:218
880
  msgid "Order by"
881
  msgstr "Ordinare per"
882
 
883
+ #: ../admin/social_commenting.php:222
884
  msgid "Social"
885
  msgstr "Sociale"
886
 
887
+ #: ../admin/social_commenting.php:223
888
  msgid "Reverse Time"
889
  msgstr "Invertire il tempo"
890
 
891
+ #: ../admin/social_commenting.php:224
892
  msgid "Time"
893
  msgstr "Tempo"
894
 
895
+ #: ../admin/social_commenting.php:232
896
  msgid "The order to use when displaying comments."
897
  msgstr "L'ordine a usare quando si mostrano commentari."
898
 
899
+ #: ../admin/social_commenting.php:240
900
  msgid "Mobile"
901
  msgstr "Mobile"
902
 
903
+ #: ../admin/social_commenting.php:244
904
  msgid "Auto Detect"
905
  msgstr "Rilevare automaticamente"
906
 
907
+ #: ../admin/social_commenting.php:245
908
  msgid "True"
909
  msgstr "Vero"
910
 
911
+ #: ../admin/social_commenting.php:246
912
  msgid "False"
913
  msgstr "Falso"
914
 
915
+ #: ../admin/social_commenting.php:254
916
  msgid "A boolean value that specifies whether to show the mobile-optimized version or not."
917
  msgstr "Un valore booleano che specifica se si mostrará la versione ottimizata per cellulari o no. "
918
 
919
+ #: ../admin/social_commenting.php:262
920
+ #: ../admin/like_buttons.php:132
921
+ #: ../admin/like_buttons.php:138
922
+ msgid "Language"
923
+ msgstr "Lingua"
924
+
925
+ #: ../admin/social_commenting.php:272
926
  #, php-format
927
  msgid "Enter the code of the language you want to use to display commenting. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
928
  msgstr "Ingressa il codice della lingua che vuoi usare per mostrare i commentari. Poui incontrare i codici delle lingue a <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lascia in bianco per la lingua predefinita(inglese)"
929
 
930
+ #: ../admin/social_commenting.php:281
 
 
 
 
 
 
 
 
 
 
931
  #, fuzzy
932
+ msgid "Google Plus Commenting Options"
933
+ msgstr "Opzioni di Commentando con Facebook"
 
 
 
 
934
 
935
+ #: ../admin/social_commenting.php:287
936
+ #: ../admin/social_commenting.php:297
937
  #, fuzzy
938
+ msgid "Enable Google Plus Commenting"
939
+ msgstr "Abilitare Commentando con Facebook"
940
 
941
+ #: ../admin/social_commenting.php:315
942
+ msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
943
+ msgstr "Larghezza dell'interfaccia Commentando GooglePlus. Lasciare vuoto per Regolazione automatica"
 
944
 
945
+ #: ../admin/social_commenting.php:333
946
  #, fuzzy
947
+ msgid "The absolute URL that comments posted will be permanently associated with. Stories on Google Plus about comments posted, will link to this URL.<br/>If left empty <strong>(Recommended)</strong>, url of the webpage will be used at which commenting is enabled."
948
+ msgstr "La URL assoluta a la quale i commentari pubblicati saranno associati permanentemente. Storie in Facebook relazionati ai commentari pubblicati saranno redirezionati a questa URL.<br/>Se lasciato in bianco <strong>(raccomandato)</strong>, si utilizzará la URL della página web nella quale i commentari sono abilitati."
949
 
950
+ #: ../admin/social_commenting.php:342
951
  #, fuzzy
952
+ msgid "Disqus Commenting Options"
953
+ msgstr "Opzioni di Commentando con Facebook"
954
 
955
+ #: ../admin/social_commenting.php:348
956
+ #: ../admin/social_commenting.php:358
957
  #, fuzzy
958
+ msgid "Enable Disqus Commenting"
959
+ msgstr "Abilitare Commentando con Facebook"
960
 
961
+ #: ../admin/social_commenting.php:366
962
+ msgid "Disqus Shortname"
963
+ msgstr ""
964
 
965
+ #: ../admin/social_commenting.php:376
966
+ msgid "<strong>Required to use Disqus commenting.</strong> You can find it in your Disqus plugin settings section as shown in the screenshot below"
967
+ msgstr "<strong> Richiesto per l'uso Disqus commentare.</strong> si può trovare nella vostra sezione impostazioni del plugin Disqus, come mostrato nello screenshot qui sotto"
968
 
969
+ #: ../admin/social_commenting.php:406
970
+ #, fuzzy
971
+ msgid "How can I disable Social Commenting at individual page/post?"
972
+ msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
973
 
974
  #: ../admin/social_login.php:10
975
  msgid "Social Login"
1279
  msgstr "Se é attivato, l'indirizzo di e-mail ingressato dall'utente si verificará mediante l'invio di un collegamento di verificazione al indirizzo e-mail specificato. L'utente non sará capace di ingressare senza verificare l'indirizzo di e-mail"
1280
 
1281
  #: ../admin/social_login.php:656
1282
+ #, fuzzy
1283
+ msgid "Sortcode & Widget"
1284
+ msgstr "Codice Corto & Widget"
 
 
 
 
 
 
 
 
 
 
 
1285
 
1286
  #: ../admin/admin.php:8
1287
  msgid "Welcome"
1296
  msgstr "Iniziando"
1297
 
1298
  #: ../admin/admin.php:12
1299
+ #, fuzzy
1300
+ msgid "Start configuring the options in the sections below the <strong>Super Socializer</strong> menu in the left sidebar. <strong>Social Sharing</strong> is enabled at your website by default."
1301
  msgstr "Comincia configurando le opzioni nelle sezioni sotto il menu <strong>Super Socializzatore</strong> nella vaschetta di sinistra. <strong>Condivisione Sociale</strong> é impostazione predefinita abilitata nella tuo sito web."
1302
 
1303
  #: ../admin/admin.php:13
1316
 
1317
  #: ../admin/admin.php:16
1318
  #, fuzzy
1319
+ msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1320
  msgstr "Nella sezione <strong>Condiviosione Sociale</strong>, puoi scegliere la Rete Sociale per la condivisione e configurare le sue opzioni."
1321
 
1322
+ #: ../admin/like_buttons.php:12
1323
+ msgid "Like Buttons"
1324
+ msgstr "Come Buttons"
1325
+
1326
+ #: ../admin/like_buttons.php:25
1327
+ msgid "Enable Like Buttons"
1328
+ msgstr "Attiva come bottoni"
1329
+
1330
+ #: ../admin/like_buttons.php:35
1331
+ #, fuzzy
1332
+ msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1333
+ msgstr "Controllo MAestro per l'Accesso Sociale. Dev'essere abilitato per abilitare la funzionalitá dell'Accesso Sociale"
1334
+
1335
+ #: ../admin/like_buttons.php:57
1336
+ msgid "Use shortlinks already installed, for tweet button"
1337
+ msgstr "Utilizzare shortlinks già installati, per pulsante Tweet"
1338
+
1339
+ #: ../admin/like_buttons.php:75
1340
+ msgid "Enable bit.ly url shortener for tweet button"
1341
+ msgstr "Abilitare cortatore di url bit.ly per il bottone di Twitter"
1342
+
1343
+ #: ../admin/like_buttons.php:148
1344
+ #, fuzzy, php-format
1345
+ msgid "Enter the code of the language you want to use to render counters. You can find the language codes at <a href=\"%s\" target=\"_blank\">this link</a>. Leave it empty for default language(English)"
1346
+ msgstr "Ingressa il codice della lingua che vuoi usare per mostrare i commentari. Poui incontrare i codici delle lingue a <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lascia in bianco per la lingua predefinita(inglese)"
1347
+
1348
+ #: ../admin/like_buttons.php:157
1349
+ msgid "Twitter username in tweet button"
1350
+ msgstr "Il nome d'utente di Twitter nel bottone Twitter"
1351
+
1352
+ #: ../admin/like_buttons.php:173
1353
+ msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1354
+ msgstr "Il nome d'utente selezionato sará attacato al fondo del contenuto che se Tweetea attraverso \"di @USERNAME\". Lascia in bianco se non vuoi un nome d'utente."
1355
+
1356
+ #: ../admin/like_buttons.php:183
1357
+ #, fuzzy
1358
+ msgid "Horizontal Interface Options"
1359
+ msgstr "Opzioni dell'interfaccia del contatore orizzontale"
1360
+
1361
+ #: ../admin/like_buttons.php:189
1362
+ #, fuzzy
1363
+ msgid "Enable horizontal interface"
1364
+ msgstr "Abilitare l'interfaccia del Contatore orizzontale."
1365
+
1366
+ #: ../admin/like_buttons.php:199
1367
+ #, fuzzy
1368
+ msgid "Master control to enable horizontal like buttons"
1369
+ msgstr "Controllo maestro per abilitare il Contatore orizzontale"
1370
+
1371
+ #: ../admin/like_buttons.php:224
1372
+ #: ../admin/like_buttons.php:439
1373
+ msgid "Url to like/share/tweet and display like/share/tweet counts"
1374
+ msgstr "Url per piace/share/Twitter e visualizzazione come/share/conteggi Tweet"
1375
+
1376
+ #: ../admin/like_buttons.php:242
1377
+ #, fuzzy
1378
+ msgid "The text to display above the interface"
1379
+ msgstr "Il testo che se mostrará sopra l'interfaccia del Contatore"
1380
+
1381
+ #: ../admin/like_buttons.php:250
1382
+ #: ../admin/like_buttons.php:447
1383
+ #, fuzzy
1384
+ msgid "Select and rearrange providers"
1385
+ msgstr "Selezionare e riorganizzare i fornitori."
1386
+
1387
+ #: ../admin/like_buttons.php:294
1388
+ #: ../admin/like_buttons.php:490
1389
+ #, fuzzy
1390
+ msgid "Select the providers for interface. Drag them to rearrange."
1391
+ msgstr "Selezziona i fornitori per l'interfaccia del Contatore. Trascinali per riorganizzarli. "
1392
+
1393
+ #: ../admin/like_buttons.php:316
1394
+ #: ../admin/like_buttons.php:529
1395
+ #, fuzzy
1396
+ msgid "Horizontal alignment of the interface"
1397
+ msgstr "Allineamento orizzontale dell'interfaccia del Contatore"
1398
+
1399
+ #: ../admin/like_buttons.php:337
1400
+ #, fuzzy
1401
+ msgid "Specify position of the interface with respect to the content"
1402
+ msgstr "Specificare la posizione dell'interfaccia del Contatore al rispetto del contenuto"
1403
+
1404
+ #: ../admin/like_buttons.php:345
1405
+ #: ../admin/like_buttons.php:595
1406
+ #, fuzzy
1407
+ msgid "Interface location"
1408
+ msgstr "Posizione del Contatore"
1409
+
1410
+ #: ../admin/like_buttons.php:388
1411
+ #, fuzzy
1412
+ msgid "Specify the pages where you want to enable interface"
1413
+ msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia del contatore"
1414
+
1415
+ #: ../admin/like_buttons.php:398
1416
+ #, fuzzy
1417
+ msgid "Vertical (Floating) like buttons Options"
1418
+ msgstr "Opzioni dell'interfaccia verticale (flottante) del Contatore"
1419
+
1420
+ #: ../admin/like_buttons.php:404
1421
+ #, fuzzy
1422
+ msgid "Enable vertical (floating) like buttons"
1423
+ msgstr "Abilitare l'interfaccia verticale (flottante) del contatore"
1424
+
1425
+ #: ../admin/like_buttons.php:414
1426
+ #, fuzzy
1427
+ msgid "Master control to enable vertical (floating) counter widget"
1428
+ msgstr "Controllo maestro per abilitare il widget contatore verticale (flottante) "
1429
+
1430
+ #: ../admin/like_buttons.php:508
1431
+ #, fuzzy
1432
+ msgid "Specify the color or hex code (example #cc78e0) for the background of vertical interface. Leave empty for transparent. You can get the hex code of the required color from <a href=\"http://www.colorpicker.com/\" target=\"_blank\">this link</a>"
1433
+ msgstr "Specifica il colore o il codigo hex (esempio #cc78e0) per il fondo della barra verticale del Contatore. Lascia in bianco per transparente. Puoi ottenere il codigo hex da <a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
1434
+
1435
+ #: ../admin/like_buttons.php:548
1436
+ #, fuzzy
1437
+ msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left."
1438
+ msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore alla destra, un numero piú piccolo lo muove alla sinistra."
1439
+
1440
+ #: ../admin/like_buttons.php:568
1441
+ #, fuzzy
1442
+ msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right."
1443
+ msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore alla sinistra, un numero piú piccolo lo muove alla destra."
1444
+
1445
+ #: ../admin/like_buttons.php:587
1446
+ #, fuzzy
1447
+ msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1448
+ msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore verso il basso, un numero piú piccolo lo muove all'alto."
1449
+
1450
+ #: ../admin/like_buttons.php:628
1451
+ #, fuzzy
1452
+ msgid "Specify the pages where you want to enable vertical interface"
1453
+ msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia del Contatore verticale"
1454
+
1455
+ #: ../inc/social_sharing.php:515
1456
  msgid "Invalid request"
1457
  msgstr "Domanda invalida"
1458
 
1459
+ #: ../inc/social_sharing.php:522
1460
  msgid "Providers not selected"
1461
  msgstr "Fornitori non selezionati"
1462
 
1560
  msgid "Vertical floating counter widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1561
  msgstr "Widget contatore verticale flottante. Lascia condividire/piacere agli utenti del tuo sito web conenuti nelle reti popolari come Facebook, Twitter, Tumblr, Google+, e molti in piú"
1562
 
1563
+ #~ msgid ""
1564
+ #~ "I am a tech enthusiast. I like to play with code and build great stuff "
1565
+ #~ "(and like to call myself - The Champ....:) ). You can connect with me "
1566
+ #~ "(and my upcoming work) via:"
1567
+ #~ msgstr ""
1568
+ #~ "Io sono un entusiasta della tecnologia. Mi piace giocare con codice e "
1569
+ #~ "costruire cose belle (e mi piace chiamare a mé stesso - Il "
1570
+ #~ "Campione....:) ). Ti puoi connetare a mé (e il mio futuro lavoro) "
1571
+ #~ "attraverso:"
1572
+
1573
+ #~ msgid "Plugin Fan Page"
1574
+ #~ msgstr "Pagina di tifosi del plugin"
1575
+
1576
+ #~ msgid "My Fan Page"
1577
+ #~ msgstr "La mia pagina di tifosi"
1578
+
1579
+ #, fuzzy
1580
+ #~ msgid "Social Counter"
1581
+ #~ msgstr "Contatore Sociale"
1582
+
1583
+ #~ msgid ""
1584
+ #~ "Master control for Social Counter. It must be checked to enable Social "
1585
+ #~ "Counter functionality"
1586
+ #~ msgstr ""
1587
+ #~ "Controllo Maestro per il Contatore Sociale. Dev'essere marcato per il "
1588
+ #~ "buon funzionamento del Contatore Sociale"
1589
+
1590
+ #~ msgid ""
1591
+ #~ "<strong>Note:</strong> To disable counter on particular page/post, edit "
1592
+ #~ "that page/post and check the options at the bottom in <strong>\"Super "
1593
+ #~ "Socializer\"</strong> section"
1594
+ #~ msgstr ""
1595
+ #~ "<strong>Nota:</strong> per disabilitare il Contatore in pagine o posts "
1596
+ #~ "particolari, edita la pagina o il post in riguardo e controlla le opzioni "
1597
+ #~ "al basso della sezione <strong>\"Super Socializzatore\"</strong>"
1598
+
1599
+ #~ msgid ""
1600
+ #~ "You can use <strong>[TheChamp-Counter]</strong> Shortcode in the content "
1601
+ #~ "of required page/post where you want to display Social Counter interface."
1602
+ #~ msgstr ""
1603
+ #~ "Puoi usare il Codice breve <strong>[TheChamp-Counter]</strong> nel "
1604
+ #~ "contenuto delle pagine o dei posts dove vuoi che il Contatore Sociale "
1605
+ #~ "apparesca."
1606
+
1607
+ #~ msgid "Example"
1608
+ #~ msgstr "Esempio"
1609
+
1610
+ #~ msgid "You can use following attributes in the Shortcode"
1611
+ #~ msgstr "Puoi usare i siguenti attributi nel Codigo breve"
1612
+
1613
+ #~ msgid ""
1614
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Counter "
1615
+ #~ "interface"
1616
+ #~ msgstr ""
1617
+ #~ "Usa l'attributo <strong>style</strong> per cambiare il stilo del "
1618
+ #~ "Contatore Sociale"
1619
+
1620
+ #, fuzzy
1621
+ #~ msgid ""
1622
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1623
+ #~ "or \"vertical\") of Social Counter interface. Default type is \"horizontal"
1624
+ #~ "\"."
1625
+ #~ msgstr ""
1626
+ #~ "Utilizza l'attributo <strong>type</strong> para specificare il tipo "
1627
+ #~ "(\"horizontal\" o \"vertical\") del Contatore Sociale. Predefinito é "
1628
+ #~ "\"horizontal\"."
1629
+
1630
+ #~ msgid "Left (Works with \"Vertical\" type interface only)"
1631
+ #~ msgstr "Left (funziona solo con il tipo \"verticale\")"
1632
+
1633
+ #~ msgid ""
1634
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1635
+ #~ "form the left side of the screen) of Social Counter interface."
1636
+ #~ msgstr ""
1637
+ #~ "Usa l'attributo <strong>left</strong> per specificare la compensazione a "
1638
+ #~ "sinistra dell'interfaccia del Contatore (distanza del lato sinistro del "
1639
+ #~ "schermo)."
1640
+
1641
+ #~ msgid "Top (Works with \"Vertical\" type interface only)"
1642
+ #~ msgstr "Top (funziona solo con il tipo \"verticale\")"
1643
+
1644
+ #, fuzzy
1645
+ #~ msgid ""
1646
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1647
+ #~ "form the top of the screen) of Social Counter interface."
1648
+ #~ msgstr ""
1649
+ #~ "Usa l'attributo <strong>top</strong> per specificare la compensazione "
1650
+ #~ "all'alto dell'interfaccia del Contatore (distanza del lato superiore del "
1651
+ #~ "schermo)."
1652
+
1653
+ #, fuzzy
1654
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be liked"
1655
+ #~ msgstr ""
1656
+ #~ "Usa l'attributo <strong>style</strong> per cambiare il stilo del "
1657
+ #~ "Contatore Sociale"
1658
+
1659
+ #, fuzzy
1660
+ #~ msgid "You can use shortcode in PHP file as following"
1661
+ #~ msgstr "Puoi usare i Codici brevi nei documenti PHP como segue"
1662
+
1663
+ #~ msgid ""
1664
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1665
+ #~ "shortcode like <strong>[TheChamp-Counter style=\"background-color:#000;\"]"
1666
+ #~ "</strong>, so the final code looks like following"
1667
+ #~ msgstr ""
1668
+ #~ "Rimuovi <strong>SHORTCODE</strong> nel codice qui sopra con il Codice "
1669
+ #~ "breve come: <strong>[TheChamp-Counter style=\"background-color:#000;\"]</"
1670
+ #~ "strong>, il codigo finale si presenta come segue"
1671
+
1672
+ #~ msgid "Widget"
1673
+ #~ msgstr "Widget"
1674
+
1675
+ #~ msgid ""
1676
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1677
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1678
+ #~ "Counter (Horizontal Widget)</strong> and <strong>Super Socializer - "
1679
+ #~ "Counter (Vertical Floating Widget)</strong> widgets in the required area."
1680
+ #~ msgstr ""
1681
+ #~ "Puoi navigare alla sezione <strong>Appearence</strong> > <strong>Widgets</"
1682
+ #~ "strong> nella vaschetta sinistra e posizionare i widget <strong>Super "
1683
+ #~ "Socializer - Counter (Horizontal Widget)</strong> e <strong>Super "
1684
+ #~ "Socializer - Counter (Vertical Floating Widget)</strong> nell'area "
1685
+ #~ "desiderata."
1686
+
1687
+ #, fuzzy
1688
+ #~ msgid ""
1689
+ #~ "How can I show like counts of my website rather than of individual pages/"
1690
+ #~ "posts?"
1691
+ #~ msgstr ""
1692
+ #~ "Como posso mostrare la quantitá di condivisoni del mio sito web invece di "
1693
+ #~ "solo pagine uniche?"
1694
+
1695
+ #, fuzzy
1696
+ #~ msgid ""
1697
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option"
1698
+ #~ msgstr ""
1699
+ #~ "Opzione Scegli \"Url della homepage del tuo sito web \" in 'opzione "
1700
+ #~ "\"Target URL \" e attivare \"Mostra condividere conta \""
1701
+
1702
+ #, fuzzy
1703
+ #~ msgid "How can I disable social counter on particular page/post?"
1704
+ #~ msgstr ""
1705
+ #~ "Como posso mostrare la quantitá di condivisoni del mio sito web invece di "
1706
+ #~ "solo pagine uniche?"
1707
+
1708
+ #, fuzzy
1709
+ #~ msgid ""
1710
+ #~ "Edit that page/post and check the options at the bottom in \"Super "
1711
+ #~ "Socializer\" section"
1712
+ #~ msgstr ""
1713
+ #~ "Modifica la pagina / posta e selezionare l'opzione \"Disabilita Facebook "
1714
+ #~ "Commenti su questo post/pagina \" in fondo in sezione \"Super Socializer\""
1715
+
1716
+ #~ msgid "Social Sharing"
1717
+ #~ msgstr "Condivisione Sociale"
1718
+
1719
+ #, fuzzy
1720
+ #~ msgid ""
1721
+ #~ "<strong>Note:</strong> To disable sharing and specify minimum share "
1722
+ #~ "counts per social network on particular page/post, edit that page/post "
1723
+ #~ "and check the options at the bottom in <strong>\"Super Socializer\"</"
1724
+ #~ "strong> section"
1725
+ #~ msgstr ""
1726
+ #~ "<strong>Nota:</strong> per disabilitare la condivisione sociale in pagine "
1727
+ #~ "o pubblicazioni particolari, edita la pagina o la pubblicazione in "
1728
+ #~ "riguardo e controlla le opzioni al basso della sezione <strong>\"Super "
1729
+ #~ "Socializer\"</strong>"
1730
+
1731
+ #~ msgid ""
1732
+ #~ "You can use <strong>[TheChamp-Sharing]</strong> Shortcode in the content "
1733
+ #~ "of required page/post where you want to display Social Sharing interface."
1734
+ #~ msgstr ""
1735
+ #~ "Puoi utilizzare il codice breve <strong>[TheChamp-Sharing]</strong> nel "
1736
+ #~ "contenuto della pagina o del post dove vuoi che si mostra l'iterfaccia di "
1737
+ #~ "condivisione sociale"
1738
+
1739
+ #~ msgid ""
1740
+ #~ "Use <strong>style</strong> attribute to style the rendered Social Sharing "
1741
+ #~ "interface"
1742
+ #~ msgstr ""
1743
+ #~ "Utilizza l'attributo <strong>style</strong> per stilizzare l'interfaccia "
1744
+ #~ "di condivisione sociale"
1745
+
1746
+ #~ msgid ""
1747
+ #~ "Use <strong>type</strong> attribute to specify the type (\"horizontal\" "
1748
+ #~ "or \"vertical\") of Social Sharing interface. Default type is \"horizontal"
1749
+ #~ "\"."
1750
+ #~ msgstr ""
1751
+ #~ "Utilizza l'attributo <strong>type</strong> per specificare il tipo "
1752
+ #~ "(\"horizontal\" o \"vertical\") dell'interfaccia di condivisione sociale. "
1753
+ #~ "Predefinito é \"horizontal\"."
1754
+
1755
+ #, fuzzy
1756
+ #~ msgid ""
1757
+ #~ "Use <strong>count</strong> attribute to enable the share counts on Social "
1758
+ #~ "Sharing interface"
1759
+ #~ msgstr ""
1760
+ #~ "Utilizza l'attributo <strong>style</strong> per stilizzare l'interfaccia "
1761
+ #~ "di condivisione sociale"
1762
+
1763
+ #, fuzzy
1764
+ #~ msgid "left (Works with \"Vertical\" type interface only)"
1765
+ #~ msgstr "Left (funziona solo con il tipo \"verticale\")"
1766
+
1767
+ #~ msgid ""
1768
+ #~ "Use <strong>left</strong> attribute to specify the left offset (distance "
1769
+ #~ "form the left side of the screen) of Social Sharing interface."
1770
+ #~ msgstr ""
1771
+ #~ "Usa l'attributo <strong>left</strong> per specificare la posizione "
1772
+ #~ "dell'interfaccia di condivisione sociale in relazione al margine sinistro "
1773
+ #~ "dello schermo."
1774
+
1775
+ #, fuzzy
1776
+ #~ msgid "top (Works with \"Vertical\" type interface only)"
1777
+ #~ msgstr "Top (funziona solo con il tipo \"verticale\")"
1778
+
1779
+ #~ msgid ""
1780
+ #~ "Use <strong>top</strong> attribute to specify the top offset (distance "
1781
+ #~ "form the top of the screen) of Social Sharing interface."
1782
+ #~ msgstr ""
1783
+ #~ "Usa l'attributo <strong>top</strong> per specificare la posizione "
1784
+ #~ "dell'interfaccia di condivisione sociale in relazione al margine "
1785
+ #~ "superiore dello schermo."
1786
+
1787
+ #, fuzzy
1788
+ #~ msgid "Use <strong>url</strong> attribute to specify the url to be shared"
1789
+ #~ msgstr ""
1790
+ #~ "Usa l'attributo <strong>style</strong> per cambiare il stilo del "
1791
+ #~ "Contatore Sociale"
1792
+
1793
+ #~ msgid ""
1794
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1795
+ #~ "shortcode like <strong>[TheChamp-Sharing style=\"background-color:#000;\"]"
1796
+ #~ "</strong>, so the final code looks like following"
1797
+ #~ msgstr ""
1798
+ #~ "Rimpiazza <strong>SHORTCODE</strong> nel codice antecedente con il codice "
1799
+ #~ "breve necessario come <strong>[TheChamp-Sharing style=\"background-color:"
1800
+ #~ "#000;\"]</strong>, il codice finale si presenterá come segue"
1801
+
1802
+ #~ msgid ""
1803
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1804
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1805
+ #~ "Sharing (Horizontal Widget)</strong> and <strong>Super Socializer - "
1806
+ #~ "Sharing (Vertical Floating Widget)</strong> widgets in the required area."
1807
+ #~ msgstr ""
1808
+ #~ "Puoi navigare alla sezione <strong>Apparenza</strong> > <strong>Widgets</"
1809
+ #~ "strong>nella vaschetta di sinistra e muovere i widget <strong>Super-"
1810
+ #~ "Socializer - Sharing (Horizontal Widget)</strong> e <strong>Super "
1811
+ #~ "Socializer - Sharing (Vertical Floating Widget)strong> nell'area "
1812
+ #~ "necessitata."
1813
+
1814
+ #~ msgid ""
1815
+ #~ "Choose \"Url of the homepage of your website\" in \"Target Url\" option "
1816
+ #~ "and enable \"Show share counts\" option"
1817
+ #~ msgstr ""
1818
+ #~ "Opzione Scegli \"Url della homepage del tuo sito web \" in 'opzione "
1819
+ #~ "\"Target URL \" e attivare \"Mostra condividere conta \""
1820
+
1821
+ #, fuzzy
1822
+ #~ msgid ""
1823
+ #~ "After enabling this option, Facebook commenting will appear before "
1824
+ #~ "Wordpress comment form at your website"
1825
+ #~ msgstr ""
1826
+ #~ "Dopo d'abilitare questa opzione, Commentando con Facebook sará "
1827
+ #~ "visualizzato in luogo del formulario di Commento di Wordpress nel tuo "
1828
+ #~ "sito Web."
1829
+
1830
+ #~ msgid "Keep only Facebook Commenting"
1831
+ #~ msgstr "Conservare solo i Commenti di Facebook"
1832
+
1833
+ #, fuzzy
1834
+ #~ msgid ""
1835
+ #~ "If enabled, only Facebook commenting would be visible without default "
1836
+ #~ "comment form"
1837
+ #~ msgstr ""
1838
+ #~ "Se abilitato, solo Commentando con Facebook sará visualizzato, senza la "
1839
+ #~ "opzione di cambiare ai Commenti WordPress"
1840
+
1841
+ #, fuzzy
1842
+ #~ msgid ""
1843
+ #~ "You can use <strong>[TheChamp-FB-Comments]</strong> Shortcode in the "
1844
+ #~ "content of required page/post where you want to display Facebook "
1845
+ #~ "Commenting interface."
1846
+ #~ msgstr ""
1847
+ #~ "Puoi usare il Codice breve <strong>[TheChamp-Counter]</strong> nel "
1848
+ #~ "contenuto delle pagine o dei posts dove vuoi che il Contatore Sociale "
1849
+ #~ "apparesca."
1850
+
1851
+ #, fuzzy
1852
+ #~ msgid ""
1853
+ #~ "Use <strong>style</strong> attribute to style the rendered commenting "
1854
+ #~ "interface"
1855
+ #~ msgstr ""
1856
+ #~ "Utilizza l'attributo <strong>style</strong> per stilizzare l'interfaccia "
1857
+ #~ "di condivisione sociale"
1858
+
1859
+ #, fuzzy
1860
+ #~ msgid ""
1861
+ #~ "Use <strong>url</strong> attribute to specify the target url for "
1862
+ #~ "comments. This defaults to the page where shortcode is used."
1863
+ #~ msgstr ""
1864
+ #~ "Usa l'attributo <strong>left</strong> per specificare la compensazione a "
1865
+ #~ "sinistra dell'interfaccia del Contatore (distanza del lato sinistro del "
1866
+ #~ "schermo)."
1867
+
1868
+ #, fuzzy
1869
+ #~ msgid ""
1870
+ #~ "Use <strong>num_posts</strong> attribute to specify the number of "
1871
+ #~ "comments to display."
1872
+ #~ msgstr ""
1873
+ #~ "Usa l'attributo <strong>style</strong> per cambiare il stilo del "
1874
+ #~ "Contatore Sociale"
1875
+
1876
+ #, fuzzy
1877
+ #~ msgid "width"
1878
+ #~ msgstr "Larghezza"
1879
+
1880
+ #, fuzzy
1881
+ #~ msgid ""
1882
+ #~ "Use <strong>width</strong> attribute to specify the width of commenting "
1883
+ #~ "interface. Omit it for fluid width"
1884
+ #~ msgstr ""
1885
+ #~ "Usa l'attributo <strong>top</strong> per specificare la posizione "
1886
+ #~ "dell'interfaccia di condivisione sociale in relazione al margine "
1887
+ #~ "superiore dello schermo."
1888
+
1889
+ #, fuzzy
1890
+ #~ msgid ""
1891
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1892
+ #~ "shortcode like <strong>[TheChamp-FB-Comments style=\"background-color:"
1893
+ #~ "#000;\"]</strong>, so the final code looks like following"
1894
+ #~ msgstr ""
1895
+ #~ "Rimuovi <strong>SHORTCODE</strong> nel codice qui sopra con il Codice "
1896
+ #~ "breve come: <strong>[TheChamp-Counter style=\"background-color:#000;\"]</"
1897
+ #~ "strong>, il codigo finale si presenta come segue"
1898
+
1899
+ #~ msgid ""
1900
+ #~ "Edit that page/post and check the option \"Disable Facebook Comments on "
1901
+ #~ "this post/page\" at the bottom in \"Super Socializer\" section"
1902
+ #~ msgstr ""
1903
+ #~ "Modifica la pagina / posta e selezionare l'opzione \"Disabilita Facebook "
1904
+ #~ "Commenti su questo post/pagina \" in fondo in sezione \"Super Socializer\""
1905
+
1906
+ #~ msgid ""
1907
+ #~ "How to enable only Facebook Comments without enabling default comment "
1908
+ #~ "form?"
1909
+ #~ msgstr ""
1910
+ #~ "Come abilitare solo i commenti di Facebook senza abilitazione modulo dei "
1911
+ #~ "commenti default?"
1912
+
1913
+ #~ msgid ""
1914
+ #~ "Enable \"Keep only Facebook Commenting\" option from \"Facebook Commenting"
1915
+ #~ "\" section."
1916
+ #~ msgstr ""
1917
+ #~ "Abilita \"Conservare soltanto Facebook Commentando\" opzione sezione "
1918
+ #~ "\"Facebook Commentando\"."
1919
+
1920
+ #~ msgid ""
1921
+ #~ "Use <strong>[TheChamp-Login]</strong> Shortcode in the content of "
1922
+ #~ "required page/post where you want to display Social Login interface."
1923
+ #~ msgstr ""
1924
+ #~ "Utilizza il codice breve <strong> [TheChamp-Login]</strong> nel "
1925
+ #~ "contenuto della pagina/post dove voui che la interfaccia dell'ingresso "
1926
+ #~ "sociale sia mostrata."
1927
+
1928
+ #~ msgid ""
1929
+ #~ "You can use \"style\" attribute in the Shortcode to style the rendered "
1930
+ #~ "Social Login interface."
1931
+ #~ msgstr ""
1932
+ #~ "Puoi utilizzare attributi \"style\" nel codice breve per stilizzare "
1933
+ #~ "l'interfaccia dell'ingresso sociale"
1934
+
1935
+ #~ msgid ""
1936
+ #~ "Replace <strong>SHORTCODE</strong> in above code with the required "
1937
+ #~ "shortcode like <strong>[TheChamp-Login style=\"background-color:#000;\"]</"
1938
+ #~ "strong>, so the final code looks like following"
1939
+ #~ msgstr ""
1940
+ #~ "Restituisci <strong>SHORTCODE</strong> nel codice antecedente con il "
1941
+ #~ "codice breve necessitato come <strong>[TheChamp-Login style=\"background-"
1942
+ #~ "color: #000;\"]</strong>, in questo caso il codice finale si presenterá "
1943
+ #~ "come segue"
1944
+
1945
+ #~ msgid ""
1946
+ #~ "You can navigate to the <strong>Appearance</strong> > <strong>Widgets</"
1947
+ #~ "strong> section in the left pan and drag <strong>Super Socializer - "
1948
+ #~ "Login</strong> widget in the required area."
1949
+ #~ msgstr ""
1950
+ #~ "Puoi navigare alla sezione <strong>Apparenza</strong> > <strong>Widgets</"
1951
+ #~ "strong> nella vaschetta sinistra e trascinare <strong>Super Socializer - "
1952
+ #~ "Login</strong> widget all'area necessaria."
1953
+
1954
  #~ msgid "White-Label"
1955
  #~ msgstr "Etichetta bianca"
1956
 
2117
  #~ msgid "Load first"
2118
  #~ msgstr "Caricare prima"
2119
 
 
 
 
 
2120
  #~ msgid "Selected commenting will be loaded first on the page"
2121
  #~ msgstr "Commenti selezionati saranno caricati prima nella pagina"
2122
 
2157
  #~ msgid "Facebook Comments"
2158
  #~ msgstr "Comentarios Facebook"
2159
 
 
 
 
2160
  #~ msgid ""
2161
  #~ "Social Login interface will get enabled at your Wordpress Comment form<br/"
2162
  #~ "><strong>Note: Social Login at comment form of your website will not get "
library/index.php CHANGED
@@ -1 +1 @@
1
- <?php die("God is within you"); ?>
1
+ <?php die("Silence is Golden"); ?>
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Super Socializer ===
2
- Contributors: the_champ, Spanish translator: Andrew Kurtis http://webhostinghub.com, French Translator: Patrick Mac Cann http://pixxi.es, German Translator: Maximilian Kops http://maxkops.de, Hungarian Translator: László Tavaszi http://kerekmese.hu, Italian Translator: Beda http://bluewin.ch
3
- Donate link: http://thechamplord.wordpress.com/
4
  Tags: super socializer, thechamp, champ, social login, social sharing, social commenting, wordpress plugin, buddypress, bbpress, social share, feed, multisite, comments, share post, openid integration, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, plug-in, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, wordpress, social sign-in, signin, sign up, signup, social plugins, social connect, facebook, twitter, google, google+, googleplus, google plus, linkedin, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, widget, social network
5
  Requires at least: 2.5.0
6
  Tested up to: 4.2.2
7
- Stable tag: 4.3.0
8
  License: GPLv2 or later
9
 
10
  A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more
@@ -72,7 +72,7 @@ Below is more detail about the features:
72
  5. **Optimal Loading time**: Loading time of Social Login and Sharing icons is optimal and if you compare with other plugins, you will find it less than that of all those plugins.
73
 
74
  = Important links =
75
- * Plugin Demo: http://super-socializer-wordpress.pyrovolt.com
76
  * Plugin Facebook fan page: https://www.facebook.com/SocializerChamp
77
  * Blog: http://thechamplord.wordpress.com
78
  * My Facebook profile: https://www.facebook.com/thechamp.lord
@@ -164,6 +164,17 @@ Yes, I can help you with it. Just drop me an email at lordofthechamps@gmail.com
164
  7. **Social Counter**: Horizontal Interface
165
 
166
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
167
  = 4.3.0 =
168
  * [Bugfix] Facebook Comments layout was distorted in mobile devices
169
  * Updated Facebook SDK to latest version
@@ -438,4 +449,15 @@ Yes, I can help you with it. Just drop me an email at lordofthechamps@gmail.com
438
  = 4.3.0 =
439
  * [Bugfix] Facebook Comments layout was distorted in mobile devices
440
  * Updated Facebook SDK to latest version
441
- * Added action "the_champ_login_widget_hook" in Social Login widget before logout link
 
 
 
 
 
 
 
 
 
 
 
1
  === Super Socializer ===
2
+ Contributors: the_champ, Heateor, Spanish translator: Andrew Kurtis http://webhostinghub.com, French Translator: Patrick Mac Cann http://pixxi.es, German Translator: Maximilian Kops http://maxkops.de, Hungarian Translator: László Tavaszi http://kerekmese.hu, Italian Translator: Beda http://bluewin.ch
3
+ Donate link: hello@heateor.com
4
  Tags: super socializer, thechamp, champ, social login, social sharing, social commenting, wordpress plugin, buddypress, bbpress, social share, feed, multisite, comments, share post, openid integration, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, plug-in, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, wordpress, social sign-in, signin, sign up, signup, social plugins, social connect, facebook, twitter, google, google+, googleplus, google plus, linkedin, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, widget, social network
5
  Requires at least: 2.5.0
6
  Tested up to: 4.2.2
7
+ Stable tag: 5.0.0
8
  License: GPLv2 or later
9
 
10
  A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more
72
  5. **Optimal Loading time**: Loading time of Social Login and Sharing icons is optimal and if you compare with other plugins, you will find it less than that of all those plugins.
73
 
74
  = Important links =
75
+ * Plugin Demo: http://super-socializer-wordpress.heateor.com
76
  * Plugin Facebook fan page: https://www.facebook.com/SocializerChamp
77
  * Blog: http://thechamplord.wordpress.com
78
  * My Facebook profile: https://www.facebook.com/thechamp.lord
164
  7. **Social Counter**: Horizontal Interface
165
 
166
  == Changelog ==
167
+ = 5.0.0 =
168
+ * Improved Social Sharing icons
169
+ * Two themes for sharing icons (round and square)
170
+ * Option to change size of sharing icons (ranging between 16x16px and 35x35px)
171
+ * Option to disable/enable "More" icon in sharing
172
+ * Improved Social Login icons
173
+ * Feature to slide in/out vertical sharing/counter interface
174
+ * Option to use already enabled shortlinks with sharing
175
+ * GooglePlus and Disqus included in Social Commenting
176
+ * [Bugfix] Cached short urls were not being removed on deletion of plugin
177
+
178
  = 4.3.0 =
179
  * [Bugfix] Facebook Comments layout was distorted in mobile devices
180
  * Updated Facebook SDK to latest version
449
  = 4.3.0 =
450
  * [Bugfix] Facebook Comments layout was distorted in mobile devices
451
  * Updated Facebook SDK to latest version
452
+ * Added action "the_champ_login_widget_hook" in Social Login widget before logout link
453
+
454
+ = 5.0.0 =
455
+ * Improved Social Sharing icons
456
+ * Two themes for sharing icons (round and square)
457
+ * Option to change size of sharing icons (ranging between 16x16px and 35x35px)
458
+ * Option to disable/enable "More" icon in sharing
459
+ * Improved Social Login icons
460
+ * Feature to slide in/out vertical sharing/counter interface
461
+ * Option to use already enabled shortlinks with sharing
462
+ * GooglePlus and Disqus included in Social Commenting
463
+ * [Bugfix] Cached short urls were not being removed on deletion of plugin
super_socializer.php CHANGED
@@ -1,15 +1,15 @@
1
  <?php
2
  /*
3
  Plugin Name: Super Socializer
4
- Plugin URI: http://super-socializer-wordpress.pyrovolt.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
- Version: 4.3.0
7
- Author: The Champ
8
- Author URI: http://thechamplord.wordpress.com
9
  License: GPL2+
10
  */
11
  defined('ABSPATH') or die("Cheating........Uh!!");
12
- define('THE_CHAMP_SS_VERSION', '4.3.0');
13
 
14
  $theChampLoginOptions = get_option('the_champ_login');
15
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
@@ -321,6 +321,7 @@ function the_champ_frontend_scripts(){
321
  global $theChampFacebookOptions, $theChampLoginOptions;
322
  $inFooter = isset($theChampLoginOptions['footer_script']) ? true : false;
323
  // general (required) scripts
 
324
  wp_enqueue_script('the_champ_ss_general_scripts', plugins_url('js/front/social_login/general.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
325
  $websiteUrl = site_url();
326
  ?>
@@ -419,6 +420,7 @@ function the_champ_frontend_scripts(){
419
  ?>
420
  <script> var theChampFBKey = '<?php echo (isset($theChampLoginOptions["fb_key"]) && $theChampLoginOptions["fb_key"] != "") ? $theChampLoginOptions["fb_key"] : "" ?>'; var theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>'; </script>
421
  <?php
 
422
  wp_enqueue_script('the_champ_fb_sdk', plugins_url('js/front/facebook/sdk.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
423
  }
424
  if(the_champ_social_login_provider_enabled('facebook') && !is_user_logged_in()){
@@ -427,8 +429,8 @@ function the_champ_frontend_scripts(){
427
  <?php
428
  wp_enqueue_script('the_champ_sl_facebook', plugins_url('js/front/social_login/facebook.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
429
  }
430
- // Facebook commenting
431
- if(the_champ_facebook_commenting_enabled()){
432
  global $post;
433
  if(isset($theChampFacebookOptions['urlToComment']) && $theChampFacebookOptions['urlToComment'] != ''){
434
  $commentUrl = $theChampFacebookOptions['urlToComment'];
@@ -441,17 +443,34 @@ function the_champ_frontend_scripts(){
441
  $postMeta = get_post_meta($post -> ID, '_the_champ_meta', true);
442
  }
443
  if(!(isset($postMeta) && isset($postMeta['fb_comments']) && $postMeta['fb_comments'] == 1)){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
  ?>
445
- <script>var theChampFBCommentUrl = '<?php echo $commentUrl ?>'; var theChampFBCommentColor = '<?php echo (isset($theChampFacebookOptions['comment_color']) && $theChampFacebookOptions['comment_color'] != '') ? $theChampFacebookOptions["comment_color"] : ''; ?>'; var theChampFBCommentNumPosts = '<?php echo (isset($theChampFacebookOptions['comment_numposts']) && $theChampFacebookOptions['comment_numposts'] != '') ? $theChampFacebookOptions["comment_numposts"] : ''; ?>'; var theChampFBCommentWidth = '<?php echo (isset($theChampFacebookOptions['comment_width']) && $theChampFacebookOptions['comment_width'] != '') ? $theChampFacebookOptions["comment_width"] : '100%'; ?>'; var theChampFBCommentOrderby = '<?php echo (isset($theChampFacebookOptions['comment_orderby']) && $theChampFacebookOptions['comment_orderby'] != '') ? $theChampFacebookOptions["comment_orderby"] : ''; ?>'; var theChampFBCommentMobile = '<?php echo (isset($theChampFacebookOptions['comment_mobile']) && $theChampFacebookOptions['comment_mobile'] != '') ? $theChampFacebookOptions["comment_mobile"] : ''; ?>'; var theChampFBAppID = '<?php echo (isset($theChampLoginOptions['fb_key']) && $theChampLoginOptions['fb_key'] != '') ? $theChampLoginOptions['fb_key'] : '' ?>'; var theChampSiteUrl = '<?php echo site_url() ?>'; var theChampWPCommentingContent = ''; var theChampFBCommentingContent = ''; var theChampCommentingHandle = false;</script>
446
  <?php
447
  wp_enqueue_script('the_champ_fb_commenting', plugins_url('js/front/facebook/commenting.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
448
  }
449
  }
450
  // sharing script
451
- if(the_champ_social_sharing_enabled()){
452
- global $theChampSharingOptions, $post;
453
  ?>
454
- <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php'; var theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>'; var theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>'; var theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['horizontal_counts']) ? 1 : 0 ?>; var theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['vertical_counts']) ? 1 : 0 ?>; </script>
455
  <?php
456
  wp_enqueue_script('the_champ_share_counts', plugins_url('js/front/sharing/sharing.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
457
  }
@@ -476,15 +495,15 @@ function the_champ_frontend_styles(){
476
  * Create plugin menu in admin.
477
  */
478
  function the_champ_create_admin_menu(){
479
- $page = add_menu_page('The Champ', '<b>Super Socializer</b>', 'manage_options', 'the-champ', 'the_champ_option_page', plugins_url('images/logo.png', __FILE__));
480
  // facebook page
481
- $facebookPage = add_submenu_page('the-champ', 'The Champ - Facebook', 'Social Commenting', 'manage_options', 'the-champ-social-commenting', 'the_champ_facebook_page');
482
  // social login page
483
- $loginPage = add_submenu_page('the-champ', 'The Champ - Social Login', 'Social Login', 'manage_options', 'the-champ-social-login', 'the_champ_social_login_page');
484
  // social sharing page
485
- $sharingPage = add_submenu_page('the-champ', 'The Champ - Social Sharing', 'Social Sharing', 'manage_options', 'the-champ-social-sharing', 'the_champ_social_sharing_page');
486
- // social counter page
487
- $counterPage = add_submenu_page('the-champ', 'The Champ - Social Counter', 'Social Counter', 'manage_options', 'the-champ-social-counter', 'the_champ_social_counter_page');
488
  add_action('admin_print_scripts-' . $page, 'the_champ_admin_scripts');
489
  add_action('admin_print_scripts-' . $page, 'the_champ_admin_style');
490
  add_action('admin_print_scripts-' . $page, 'the_champ_fb_sdk_script');
@@ -537,6 +556,8 @@ function the_champ_default_options(){
537
  }
538
  $headers = 'From: Admin <'.$email.'>' . "\r\n";
539
  wp_mail('lordofthechamps@gmail.com', 'Super Socializer installed', site_url(), $headers);
 
 
540
  }
541
  // plugin version
542
  update_option('the_champ_ss_version', THE_CHAMP_SS_VERSION);
@@ -555,14 +576,33 @@ function the_champ_default_options(){
555
  'footer_script' => 1
556
  ));
557
 
558
- // facebook options
559
- add_option('the_champ_facebook', array(
 
560
  'enable_fbcomments' => '1',
561
- 'comment_lang' => get_locale()
562
- ));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
563
 
564
  // sharing options
565
- add_option('the_champ_sharing', array(
566
  'enable' => '1',
567
  'hor_enable' => '1',
568
  'vertical_enable' => '1',
@@ -583,11 +623,36 @@ function the_champ_default_options(){
583
  'top_offset' => '100',
584
  'delete_options' => '1',
585
  'alignment' => 'left',
586
- ));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
 
588
  // counter options
589
  add_option('the_champ_counter', array(
590
- 'language' => get_locale()
 
 
 
 
591
  ));
592
  }
593
- register_activation_hook(__FILE__, 'the_champ_default_options');
 
 
 
 
 
 
1
  <?php
2
  /*
3
  Plugin Name: Super Socializer
4
+ Plugin URI: http://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
+ Version: 5.0.0
7
+ Author: Heateor Team
8
+ Author URI: http://www.heateor.com
9
  License: GPL2+
10
  */
11
  defined('ABSPATH') or die("Cheating........Uh!!");
12
+ define('THE_CHAMP_SS_VERSION', '5.0.0');
13
 
14
  $theChampLoginOptions = get_option('the_champ_login');
15
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
321
  global $theChampFacebookOptions, $theChampLoginOptions;
322
  $inFooter = isset($theChampLoginOptions['footer_script']) ? true : false;
323
  // general (required) scripts
324
+ wp_enqueue_script('the_champ_modernizer', plugins_url('js/modernizr.custom.82187.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
325
  wp_enqueue_script('the_champ_ss_general_scripts', plugins_url('js/front/social_login/general.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
326
  $websiteUrl = site_url();
327
  ?>
420
  ?>
421
  <script> var theChampFBKey = '<?php echo (isset($theChampLoginOptions["fb_key"]) && $theChampLoginOptions["fb_key"] != "") ? $theChampLoginOptions["fb_key"] : "" ?>'; var theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>'; </script>
422
  <?php
423
+ add_action('wp_footer', 'the_champ_fb_root_div');
424
  wp_enqueue_script('the_champ_fb_sdk', plugins_url('js/front/facebook/sdk.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
425
  }
426
  if(the_champ_social_login_provider_enabled('facebook') && !is_user_logged_in()){
429
  <?php
430
  wp_enqueue_script('the_champ_sl_facebook', plugins_url('js/front/social_login/facebook.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
431
  }
432
+ // Social commenting
433
+ if(the_champ_social_commenting_enabled()){
434
  global $post;
435
  if(isset($theChampFacebookOptions['urlToComment']) && $theChampFacebookOptions['urlToComment'] != ''){
436
  $commentUrl = $theChampFacebookOptions['urlToComment'];
443
  $postMeta = get_post_meta($post -> ID, '_the_champ_meta', true);
444
  }
445
  if(!(isset($postMeta) && isset($postMeta['fb_comments']) && $postMeta['fb_comments'] == 1)){
446
+ $commentingTabsOrder = ($theChampFacebookOptions['commenting_order'] != '' ? $theChampFacebookOptions['commenting_order'] : 'wordpress,facebook,googleplus,disqus');
447
+ $commentingTabsOrder = explode(',', str_replace('facebook', 'fb', $commentingTabsOrder));
448
+ $enabledTabs = array();
449
+ foreach($commentingTabsOrder as $tab){
450
+ if($tab == 'wordpress'){
451
+ $enabledTabs[] = 'wordpress';
452
+ }elseif(isset($theChampFacebookOptions['enable_'. $tab .'comments'])){
453
+ $enabledTabs[] = $tab;
454
+ }
455
+ }
456
+ $labels = array();
457
+ $labels['wordpress'] = $theChampFacebookOptions['label_wordpress_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_wordpress_comments'], ENT_QUOTES) : 'Default Comments';
458
+ $labels['wordpress'] .= ' ('. ($post ? get_comments_number($post->ID) : '') .')';
459
+ $labels['fb'] = $theChampFacebookOptions['label_facebook_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_facebook_comments'], ENT_QUOTES) : 'Facebook Comments';
460
+ $labels['fb'] .= ' (<fb:comments-count href='. $commentUrl .'></fb:comments-count>)';
461
+ $labels['googleplus'] = $theChampFacebookOptions['label_googleplus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_googleplus_comments'], ENT_QUOTES) : 'GooglePlus Comments';
462
+ $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
463
  ?>
464
+ <script>var theChampFBCommentUrl = '<?php echo $commentUrl ?>'; var theChampFBCommentColor = '<?php echo (isset($theChampFacebookOptions['comment_color']) && $theChampFacebookOptions['comment_color'] != '') ? $theChampFacebookOptions["comment_color"] : ''; ?>'; var theChampFBCommentNumPosts = '<?php echo (isset($theChampFacebookOptions['comment_numposts']) && $theChampFacebookOptions['comment_numposts'] != '') ? $theChampFacebookOptions["comment_numposts"] : ''; ?>'; var theChampFBCommentWidth = '<?php echo (isset($theChampFacebookOptions['comment_width']) && $theChampFacebookOptions['comment_width'] != '') ? $theChampFacebookOptions["comment_width"] : '100%'; ?>'; var theChampFBCommentOrderby = '<?php echo (isset($theChampFacebookOptions['comment_orderby']) && $theChampFacebookOptions['comment_orderby'] != '') ? $theChampFacebookOptions["comment_orderby"] : ''; ?>'; var theChampFBCommentMobile = '<?php echo (isset($theChampFacebookOptions['comment_mobile']) && $theChampFacebookOptions['comment_mobile'] != '') ? $theChampFacebookOptions["comment_mobile"] : ''; ?>', theChampCommentingTabs = "<?php echo isset($theChampFacebookOptions['commenting_order']) ? $theChampFacebookOptions['commenting_order'] : ''; ?>", theChampGpCommentsUrl = '<?php echo isset($theChampFacebookOptions['gpcomments_url']) && $theChampFacebookOptions['gpcomments_url'] != '' ? $theChampFacebookOptions['gpcomments_url'] : $commentUrl; ?>', theChampDisqusShortname = '<?php echo isset($theChampFacebookOptions['dq_shortname']) ? $theChampFacebookOptions['dq_shortname'] : ''; ?>', theChampScEnabledTabs = '<?php echo implode(',', $enabledTabs) ?>', theChampScLabel = '<?php echo $theChampFacebookOptions['commenting_label'] != '' ? htmlspecialchars($theChampFacebookOptions['commenting_label'], ENT_QUOTES) : __('Leave a reply', 'Super-Socializer'); ?>', theChampScTabLabels = <?php echo json_encode($labels) ?>, theChampGpCommentsWidth = <?php echo isset($theChampFacebookOptions['gpcomments_width']) && $theChampFacebookOptions['gpcomments_width'] != '' ? $theChampFacebookOptions['gpcomments_width'] : 0; ?></script>
465
  <?php
466
  wp_enqueue_script('the_champ_fb_commenting', plugins_url('js/front/facebook/commenting.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
467
  }
468
  }
469
  // sharing script
470
+ if(the_champ_social_sharing_enabled() || (the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled())){
471
+ global $theChampSharingOptions, $theChampCounterOptions, $post;
472
  ?>
473
+ <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php', theChampCloseIconPath = '<?php echo plugins_url('images/close.png', __FILE__) ?>', theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>', theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['horizontal_counts']) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['vertical_counts']) ? 1 : 0 ?>, theChampSharingOffset = <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] : 0) ?>, theChampCounterOffset = <?php echo (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] : 0) ?> </script>
474
  <?php
475
  wp_enqueue_script('the_champ_share_counts', plugins_url('js/front/sharing/sharing.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
476
  }
495
  * Create plugin menu in admin.
496
  */
497
  function the_champ_create_admin_menu(){
498
+ $page = add_menu_page('Heateor - Super Socializer', '<b>Super Socializer</b>', 'manage_options', 'super-socializer', 'the_champ_option_page', plugins_url('images/logo.png', __FILE__));
499
  // facebook page
500
+ $facebookPage = add_submenu_page('super-socializer', 'Heateor - Social Commenting', 'Social Commenting', 'manage_options', 'heateor-social-commenting', 'the_champ_facebook_page');
501
  // social login page
502
+ $loginPage = add_submenu_page('super-socializer', 'Heateor - Social Login', 'Social Login', 'manage_options', 'heateor-social-login', 'the_champ_social_login_page');
503
  // social sharing page
504
+ $sharingPage = add_submenu_page('super-socializer', 'Heateor - Social Sharing', 'Social Sharing', 'manage_options', 'heateor-social-sharing', 'the_champ_social_sharing_page');
505
+ // like buttons page
506
+ $counterPage = add_submenu_page('super-socializer', 'Heateor - Like Buttons', 'Like Buttons', 'manage_options', 'heateor-like-buttons', 'the_champ_like_buttons_page');
507
  add_action('admin_print_scripts-' . $page, 'the_champ_admin_scripts');
508
  add_action('admin_print_scripts-' . $page, 'the_champ_admin_style');
509
  add_action('admin_print_scripts-' . $page, 'the_champ_fb_sdk_script');
556
  }
557
  $headers = 'From: Admin <'.$email.'>' . "\r\n";
558
  wp_mail('lordofthechamps@gmail.com', 'Super Socializer installed', site_url(), $headers);
559
+ }else{
560
+
561
  }
562
  // plugin version
563
  update_option('the_champ_ss_version', THE_CHAMP_SS_VERSION);
576
  'footer_script' => 1
577
  ));
578
 
579
+ // social commenting options
580
+ if(!add_option('the_champ_facebook', array(
581
+ 'enable_commenting' => '1',
582
  'enable_fbcomments' => '1',
583
+ 'comment_lang' => get_locale(),
584
+ 'commenting_order' => 'wordpress,facebook,googleplus,disqus',
585
+ 'commenting_label' => 'Leave a reply',
586
+ 'label_wordpress_comments' => 'Default Comments',
587
+ 'label_facebook_comments' => 'Facebook Comments',
588
+ 'label_googleplus_comments' => 'G+ Comments',
589
+ 'label_disqus_comments' => 'Disqus Comments',
590
+ ))){
591
+ $theChampFacebookOptions = get_option('the_champ_facebook');
592
+ if(isset($theChampFacebookOptions['enable_fbcomments'])){
593
+ $theChampFacebookOptions['enable_commenting'] = '1';
594
+ }
595
+ $theChampFacebookOptions['commenting_order'] = 'wordpress,facebook,googleplus,disqus';
596
+ $theChampFacebookOptions['commenting_label'] = 'Leave a reply';
597
+ $theChampFacebookOptions['label_wordpress_comments'] = 'Default Comments';
598
+ $theChampFacebookOptions['label_facebook_comments'] = 'Facebook Comments';
599
+ $theChampFacebookOptions['label_googleplus_comments'] = 'G+ Comments';
600
+ $theChampFacebookOptions['label_disqus_comments'] = 'Disqus Comments';
601
+ update_option('the_champ_facebook', $theChampFacebookOptions);
602
+ }
603
 
604
  // sharing options
605
+ if(!add_option('the_champ_sharing', array(
606
  'enable' => '1',
607
  'hor_enable' => '1',
608
  'vertical_enable' => '1',
623
  'top_offset' => '100',
624
  'delete_options' => '1',
625
  'alignment' => 'left',
626
+ 'horizontal_sharing_shape' => 'round',
627
+ 'horizontal_sharing_size' => 30,
628
+ 'vertical_sharing_shape' => 'square',
629
+ 'vertical_sharing_size' => 35,
630
+ 'vertical_more' => 1,
631
+ 'horizontal_more' => 1,
632
+ ))){
633
+ $theChampSharingOptions = get_option('the_champ_sharing');
634
+ $theChampSharingOptions['horizontal_sharing_shape'] = 'round';
635
+ $theChampSharingOptions['horizontal_sharing_size'] = 30;
636
+ $theChampSharingOptions['vertical_sharing_shape'] = 'square';
637
+ $theChampSharingOptions['vertical_sharing_size'] = 35;
638
+ $theChampSharingOptions['vertical_more'] = 1;
639
+ $theChampSharingOptions['horizontal_more'] = 1;
640
+ update_option('the_champ_sharing', $theChampSharingOptions);
641
+ }
642
 
643
  // counter options
644
  add_option('the_champ_counter', array(
645
+ 'language' => get_locale(),
646
+ 'left_offset' => '0',
647
+ 'right_offset' => '0',
648
+ 'top_offset' => '100',
649
+ 'alignment' => 'left',
650
  ));
651
  }
652
+ register_activation_hook(__FILE__, 'the_champ_default_options');
653
+
654
+ function the_champ_fb_root_div(){
655
+ ?>
656
+ <div id="fb-root"></div>
657
+ <?php
658
+ }
uninstall.php CHANGED
@@ -19,6 +19,7 @@ if(isset($theChampSharingOptions['delete_options'])){
19
  delete_option( $option );
20
  }
21
  $wpdb->query("delete from $wpdb->usermeta where meta_key like 'thechamp%'");
 
22
  }else{
23
  // For Multisite
24
  $theChampBlogIds = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
19
  delete_option( $option );
20
  }
21
  $wpdb->query("delete from $wpdb->usermeta where meta_key like 'thechamp%'");
22
+ $wpdb->query("delete from $wpdb->postmeta where meta_key like '_the_champ%'");
23
  }else{
24
  // For Multisite
25
  $theChampBlogIds = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );