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

Version Description

  • [Improvement] Minor performance improvements
  • [Improvement] Improved Italian Translation
Download this release

Release Info

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

Code changes from version 6.1 to 6.2

admin/social_sharing.php CHANGED
@@ -545,9 +545,6 @@
545
  <td>
546
  <ul id="the_champ_ss_rearrange">
547
  <?php
548
- if(!isset($theChampSharingOptions['horizontal_re_providers'])){
549
- $theChampSharingOptions['horizontal_re_providers'] = array('facebook', 'twitter', 'google', 'linkedin', 'pinterest', 'reddit', 'delicious', 'stumbleupon', 'whatsapp');
550
- }
551
  $horSharingStyle = 'width:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;height:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;';
552
  $horDeliciousRadius = '';
553
  if($theChampSharingOptions['horizontal_sharing_shape'] == 'round'){
@@ -923,9 +920,6 @@
923
  <td>
924
  <ul id="the_champ_ss_vertical_rearrange">
925
  <?php
926
- if(!isset($theChampSharingOptions['vertical_re_providers'])){
927
- $theChampSharingOptions['vertical_re_providers'] = array('facebook', 'twitter', 'google', 'linkedin', 'pinterest', 'reddit', 'delicious', 'stumbleupon', 'whatsapp');
928
- }
929
  $verticalSharingStyle = 'width:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;height:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;';
930
  $verticalDeliciousRadius = '';
931
  if($theChampSharingOptions['vertical_sharing_shape'] == 'round'){
545
  <td>
546
  <ul id="the_champ_ss_rearrange">
547
  <?php
 
 
 
548
  $horSharingStyle = 'width:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;height:' . $theChampSharingOptions['horizontal_sharing_size'] . 'px;';
549
  $horDeliciousRadius = '';
550
  if($theChampSharingOptions['horizontal_sharing_shape'] == 'round'){
920
  <td>
921
  <ul id="the_champ_ss_vertical_rearrange">
922
  <?php
 
 
 
923
  $verticalSharingStyle = 'width:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;height:' . $theChampSharingOptions['vertical_sharing_size'] . 'px;';
924
  $verticalDeliciousRadius = '';
925
  if($theChampSharingOptions['vertical_sharing_shape'] == 'round'){
helper.php CHANGED
@@ -244,7 +244,7 @@ function the_champ_social_sharing_enabled(){
244
  */
245
  function the_champ_social_counter_enabled(){
246
  global $theChampCounterOptions;
247
- if(isset($theChampCounterOptions['enable']) && $theChampCounterOptions['enable'] == 1){
248
  return true;
249
  }else{
250
  return false;
@@ -352,13 +352,24 @@ function the_champ_social_commenting_enabled(){
352
  */
353
  function the_champ_facebook_plugin_enabled(){
354
  global $theChampFacebookOptions, $theChampCounterOptions;
355
- if( the_champ_social_login_provider_enabled('facebook') || the_champ_facebook_commenting_enabled() || ( isset($theChampCounterOptions['horizontal_providers']) && ( in_array('facebook_like', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_recommend', $theChampCounterOptions['horizontal_providers']) ) ) || ( isset($theChampCounterOptions['vertical_providers']) && ( in_array('facebook_like', $theChampCounterOptions['vertical_providers']) || in_array('facebook_recommend', $theChampCounterOptions['vertical_providers']) ) ) ) {
356
  return true;
357
  }else{
358
  return false;
359
  }
360
  }
361
 
 
 
 
 
 
 
 
 
 
 
 
362
  /**
363
  * Log errors/exceptions
364
  */
244
  */
245
  function the_champ_social_counter_enabled(){
246
  global $theChampCounterOptions;
247
+ if(isset($theChampCounterOptions['enable'])){
248
  return true;
249
  }else{
250
  return false;
352
  */
353
  function the_champ_facebook_plugin_enabled(){
354
  global $theChampFacebookOptions, $theChampCounterOptions;
355
+ if( the_champ_social_login_provider_enabled('facebook') || the_champ_facebook_commenting_enabled() || the_champ_facebook_like_rec_enabled() ) {
356
  return true;
357
  }else{
358
  return false;
359
  }
360
  }
361
 
362
+ /**
363
+ * Check if Facebook Like/Recommend is enabled
364
+ */
365
+ function the_champ_facebook_like_rec_enabled(){
366
+ global $theChampCounterOptions;
367
+ if( the_champ_social_counter_enabled() && ( ( the_champ_horizontal_counter_enabled() && isset($theChampCounterOptions['horizontal_providers']) && ( in_array('facebook_like', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_recommend', $theChampCounterOptions['horizontal_providers']) ) ) || ( the_champ_vertical_counter_enabled() && isset($theChampCounterOptions['vertical_providers']) && ( in_array('facebook_like', $theChampCounterOptions['vertical_providers']) || in_array('facebook_recommend', $theChampCounterOptions['vertical_providers']) ) ) ) ){
368
+ return true;
369
+ }
370
+ return false;
371
+ }
372
+
373
  /**
374
  * Log errors/exceptions
375
  */
inc/social_login.php CHANGED
@@ -589,7 +589,7 @@ function the_champ_save_email(){
589
  if($userId && !$verify){
590
  // login user
591
  $tempData['askemail'] = 1;
592
- the_champ_login_user($userId, array(), $tempData['id']);
593
  if(isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'same' && isset($tempData['twitter_redirect'])){
594
  the_champ_ajax_response(array('status' => 1, 'message' => array('response' => 'success', 'url' => $tempData['twitter_redirect'])));
595
  }elseif(isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'bp_profile'){
589
  if($userId && !$verify){
590
  // login user
591
  $tempData['askemail'] = 1;
592
+ the_champ_login_user($userId, $tempData, $tempData['id']);
593
  if(isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'same' && isset($tempData['twitter_redirect'])){
594
  the_champ_ajax_response(array('status' => 1, 'message' => array('response' => 'success', 'url' => $tempData['twitter_redirect'])));
595
  }elseif(isset($theChampLoginOptions['register_redirection']) && $theChampLoginOptions['register_redirection'] == 'bp_profile'){
inc/social_sharing.php CHANGED
@@ -160,11 +160,11 @@ function the_champ_prepare_counter_html($postUrl, $sharingType = 'horizontal', $
160
  }elseif($provider == 'facebook_recommend'){
161
  $html .= '<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>';
162
  }elseif($provider == 'twitter_tweet'){
163
- $html .= '<li class="the_champ_twitter_tweet"><a href="https://twitter.com/share" class="twitter-share-button" data-url="'. $shortUrl .'" data-counturl="'. $postUrl .'" data-text="'. html_entity_decode($post->post_title, ENT_COMPAT, 'UTF-8') .'" data-via="'. (isset($theChampCounterOptions['twitter_username']) && $theChampCounterOptions['twitter_username'] != '' ? $theChampCounterOptions['twitter_username'] : '') .'" data-lang="'. $language .'" >Tweet</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?"http":"https";if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document, "script", "twitter-wjs");</script></li>';
164
  }elseif($provider == 'linkedin_share'){
165
  $html .= '<li class="the_champ_linkedin_share"><script src="//platform.linkedin.com/in.js" type="text/javascript">lang: '. $language .'</script><script type="IN/Share" data-url="' . $postUrl . '" data-counter="right"></script></li>';
166
  }elseif($provider == 'google_plusone'){
167
- $html .= '<li class="the_champ_google_plusone"><script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "'. $language .'"}</script><div class="g-plusone" data-size="medium" data-href="'. $postUrl .'"></div></li>';
168
  }elseif($provider == 'pinterest_pin_it'){
169
  $html .= '<li class="the_champ_pinterest_pin"><a data-pin-lang="'. $language .'" href="//www.pinterest.com/pin/create/button/?url='. $postUrl .'" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>';
170
  }elseif($provider == 'googleplus_share'){
160
  }elseif($provider == 'facebook_recommend'){
161
  $html .= '<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>';
162
  }elseif($provider == 'twitter_tweet'){
163
+ $html .= '<li class="the_champ_twitter_tweet" heateor-ss-data-href="'. $postUrl .'"><a href="https://twitter.com/share" class="twitter-share-button" data-url="'. $shortUrl .'" data-counturl="'. $postUrl .'" data-text="'. html_entity_decode($post->post_title, ENT_COMPAT, 'UTF-8') .'" data-via="'. (isset($theChampCounterOptions['twitter_username']) && $theChampCounterOptions['twitter_username'] != '' ? $theChampCounterOptions['twitter_username'] : '') .'" data-lang="'. $language .'" >Tweet</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?"http":"https";if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document, "script", "twitter-wjs");</script></li>';
164
  }elseif($provider == 'linkedin_share'){
165
  $html .= '<li class="the_champ_linkedin_share"><script src="//platform.linkedin.com/in.js" type="text/javascript">lang: '. $language .'</script><script type="IN/Share" data-url="' . $postUrl . '" data-counter="right"></script></li>';
166
  }elseif($provider == 'google_plusone'){
167
+ $html .= '<li class="the_champ_google_plusone"><script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "'. $language .'"}</script><div class="g-plusone" data-size="medium" data-href="'. $postUrl .'" data-callback="heateorSsmiGpCallback"></div></li>';
168
  }elseif($provider == 'pinterest_pin_it'){
169
  $html .= '<li class="the_champ_pinterest_pin"><a data-pin-lang="'. $language .'" href="//www.pinterest.com/pin/create/button/?url='. $postUrl .'" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>';
170
  }elseif($provider == 'googleplus_share'){
js/front/facebook/sdk.js CHANGED
@@ -1 +1 @@
1
- function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.4"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),theChampCommentNotification&&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);
1
+ function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.4"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),theChampCommentNotification&&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(){}})}),theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}))},function(e){var t,n="facebook-jssdk",o=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",o.parentNode.insertBefore(t,o))}(document);
languages/Super-Socializer-it_IT.mo CHANGED
Binary file
languages/Super-Socializer-it_IT.po CHANGED
@@ -2,16 +2,16 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-08-25 07:11+0530\n"
6
- "PO-Revision-Date: 2015-08-25 07:11+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
- "Language-Team: yoonect.com\n"
9
  "Language: it\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Generator: Virtaal 0.7.1\n"
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
@@ -19,7 +19,7 @@ msgstr ""
19
  #: ../super_socializer.php:224
20
  #, php-format
21
  msgid "Enter exactly the following url in <strong>Website</strong> and <strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
22
- msgstr "Immettere esattamente il seguente URL nel <strong>Website</ strong> e <strong>Callback URL </ strong> opzioni vostra applicazione Twitter (vedi punto 3 %s)"
23
 
24
  #: ../super_socializer.php:227
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"
@@ -27,67 +27,65 @@ msgstr "Assicurarsi cURL è abilitato il server web. Potrebbe essere necessario
27
 
28
  #: ../super_socializer.php:397
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:397
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:401
37
  msgid "Notification"
38
- msgstr "Notificazione"
39
 
40
  #: ../super_socializer.php:420
41
  #: ../admin/social_login.php:511
42
  msgid "Email required"
43
- msgstr "Necessita Indirizzo di Posta Elettronica"
44
 
45
  #: ../super_socializer.php:423
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:436
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:513
54
  msgid "Leave a reply"
55
  msgstr "Lascia un commento"
56
 
57
  #: ../super_socializer.php:604
58
- #, fuzzy
59
  msgid "Super Socializer - Social Avatar"
60
- msgstr "Super Socializzatore - Accesso"
61
 
62
  #: ../super_socializer.php:607
63
  msgid "Small Avatar Url"
64
- msgstr "Piccolo Avatar Url"
65
 
66
  #: ../super_socializer.php:612
67
- #, fuzzy
68
  msgid "Large Avatar Url"
69
- msgstr "URL di destinazione"
70
 
71
  #: ../super_socializer.php:645
72
  msgid "Email you entered is already registered or invalid"
73
- msgstr "E-mail inserito è già registrato o non valido"
74
 
75
  #: ../super_socializer.php:649
76
  msgid "Please enter a valid email address. You might be required to verify it"
77
- msgstr "Si prega di inserire un indirizzo email valido. Potrebbe essere richiesto di verificarla"
78
 
79
  #: ../helper.php:8
80
  #, fuzzy
81
  msgid "Settings saved"
82
- msgstr "Configurazione"
83
 
84
  #: ../helper.php:8
85
  msgid "Dismiss this notice"
86
- msgstr "Elimina questo avviso"
87
 
88
  #: ../helper.php:150
89
  msgid "Click to show help"
90
- msgstr "Clicca per vedere help"
91
 
92
  #: ../helper.php:150
93
  msgid "Click to hide help"
@@ -95,80 +93,72 @@ msgstr "Clicca per nascondere aiuto"
95
 
96
  #: ../helper.php:190
97
  msgid "Settings"
98
- msgstr "Configurazione"
99
 
100
- #: ../helper.php:503
101
- #, fuzzy
102
  msgid "Account linked successfully"
103
- msgstr "Opzioni salvate con successo"
104
 
105
- #: ../helper.php:507
106
  msgid "Account already exists or linked"
107
- msgstr "Account esistente o collegato già"
108
 
109
- #: ../helper.php:516
110
- #, fuzzy
111
  msgid "You are already connected with"
112
- msgstr "Sei pronto per socializzare il tuo sito web."
113
 
114
- #: ../helper.php:516
115
  msgid "as primary social network"
116
  msgstr "come rete sociale primaria"
117
 
118
- #: ../helper.php:531
119
  msgid "Link your social account to login to your account at this website"
120
- msgstr "Collega il tuo account sociale per accedere al proprio account su questo sito"
121
 
122
- #: ../helper.php:568
123
  msgid "Currently"
124
- msgstr "attualmente"
125
 
126
- #: ../helper.php:568
127
  msgid "Remove"
128
  msgstr "rimuovere"
129
 
130
- #: ../helper.php:669
131
  msgid "Disable Horizontal Social Sharing on this "
132
- msgstr "Disabilitare Condivisione Sociale orizzontale in questo"
133
 
134
- #: ../helper.php:674
135
  msgid "Disable Vertical Social Sharing on this "
136
- msgstr "Disabilitare Condivisione Sociale Verticale in questo"
137
 
138
- #: ../helper.php:679
139
- #, fuzzy
140
  msgid "Disable Horizontal like buttons on this "
141
- msgstr "Disabilitare Contatore Sociale orizzontale in questo"
142
 
143
- #: ../helper.php:684
144
- #, fuzzy
145
  msgid "Disable Vertical like buttons on this "
146
- msgstr "Disabilitare Contatore Sociale Verticale in questo"
147
 
148
- #: ../helper.php:689
149
- #, fuzzy
150
  msgid "Disable Social Commenting on this "
151
- msgstr "Abilitare Commentando con Facebook"
152
 
153
- #: ../helper.php:698
154
- #, fuzzy
155
  msgid "Horizontal sharing"
156
- msgstr "Allineamento orizzontale"
157
 
158
- #: ../helper.php:704
159
- #: ../helper.php:723
160
- #, fuzzy
161
  msgid "Starting share count for "
162
- msgstr "Mostra la qunatitá di condivisioni"
163
 
164
- #: ../helper.php:717
165
- #, fuzzy
166
  msgid "Vertical sharing"
167
- msgstr "Condivisione Sociale"
168
 
169
  #: ../admin/help.php:4
170
  msgid "About"
171
- msgstr "Circa"
172
 
173
  #: ../admin/help.php:4
174
  msgid "Version"
@@ -180,7 +170,7 @@ msgstr "da"
180
 
181
  #: ../admin/help.php:7
182
  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"
183
- msgstr "Siamo un team creativo con idee uniche in mente e servizio nel cuore. Amiamo quello che facciamo. Per maggiori informazioni noi aderire a"
184
 
185
  #: ../admin/help.php:18
186
  msgid "Plugin Demo"
@@ -192,17 +182,15 @@ msgstr "Add-ons"
192
 
193
  #: ../admin/help.php:29
194
  msgid "Need Help?"
195
- msgstr "Ho Bisogno Di Aiuto?"
196
 
197
  #: ../admin/help.php:31
198
- #, fuzzy
199
  msgid "If you <strong>have any query</strong>, need help regarding <strong>plugin setup</strong>, want <strong>custom features</strong> in the plugin or <strong>have any suggestion</strong> to improve the plugin, just drop an email at <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
200
- 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>"
201
 
202
  #: ../admin/help.php:36
203
- #, fuzzy
204
  msgid "Support Us"
205
- msgstr "Sopporte"
206
 
207
  #: ../admin/help.php:39
208
  #: ../admin/help.php:42
@@ -211,11 +199,11 @@ msgstr "Sopporte"
211
  #: ../admin/help.php:45
212
  #: ../admin/help.php:46
213
  msgid "Rate 5-star"
214
- msgstr "Tasso di 5-stelle"
215
 
216
  #: ../admin/help.php:54
217
  #: ../admin/social_sharing.php:437
218
- #: ../admin/social_sharing.php:815
219
  #: ../admin/social_login.php:46
220
  msgid "Facebook"
221
  msgstr "Facebook"
@@ -227,33 +215,31 @@ msgstr "Facebook"
227
  #: ../admin/like_buttons.php:11
228
  #: ../admin/like_buttons.php:19
229
  msgid "Basic Configuration"
230
- msgstr "Configurazione Basica"
231
 
232
  #: ../admin/social_sharing.php:12
233
- #, fuzzy
234
  msgid "Sharing Interface"
235
- msgstr "Opzioni orizzontali dell'interfaccia di condivisione"
236
 
237
  #: ../admin/social_sharing.php:13
238
- #, fuzzy
239
  msgid "Sharing Options"
240
- msgstr "Posto di condivisione"
241
 
242
  #: ../admin/social_sharing.php:14
243
- #: ../admin/social_sharing.php:1211
244
  #: ../admin/social_login.php:11
245
  #: ../admin/social_login.php:714
246
  #: ../admin/like_buttons.php:13
247
  #: ../admin/like_buttons.php:712
248
  msgid "Shortcode & Widget"
249
- msgstr "Codice Corto & Widget"
250
 
251
  #: ../admin/social_sharing.php:15
252
  msgid "Troubleshooter"
253
- msgstr "Soluzionatore di problemi"
254
 
255
  #: ../admin/social_sharing.php:16
256
- #: ../admin/social_sharing.php:1242
257
  #: ../admin/social_commenting.php:12
258
  #: ../admin/social_commenting.php:427
259
  msgid "FAQ"
@@ -261,24 +247,23 @@ msgstr "FAQ"
261
 
262
  #: ../admin/social_sharing.php:28
263
  msgid "Enable Social Sharing"
264
- msgstr "Abilitare Condivisione Sociale"
265
 
266
  #: ../admin/social_sharing.php:38
267
  msgid "Master control for Social Sharing. It must be checked to enable Social Sharing functionality"
268
- msgstr "Controllo maestro per la condivisione sociale. Dev'essere marcato per abilitare la funzione di condivisione sociale"
269
 
270
  #: ../admin/social_sharing.php:46
271
  msgid "Delete all the options on plugin deletion"
272
- msgstr "Eliminare tutte le opzioni quando si elimina il plugin"
273
 
274
  #: ../admin/social_sharing.php:56
275
  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."
276
- 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."
277
 
278
  #: ../admin/social_sharing.php:71
279
- #, fuzzy
280
  msgid "Horizontal interface options"
281
- msgstr "Opzioni orizzontali dell'interfaccia di condivisione"
282
 
283
  #: ../admin/social_sharing.php:77
284
  #: ../admin/social_sharing.php:155
@@ -293,13 +278,12 @@ msgstr "Round"
293
  #: ../admin/social_sharing.php:87
294
  #: ../admin/social_sharing.php:165
295
  msgid "Square"
296
- msgstr "Piazza"
297
 
298
  #: ../admin/social_sharing.php:94
299
  #: ../admin/social_sharing.php:172
300
- #, fuzzy
301
  msgid "Shape of the sharing icons"
302
- msgstr "Mostra la qunatitá di condivisioni"
303
 
304
  #: ../admin/social_sharing.php:102
305
  #: ../admin/social_sharing.php:180
@@ -308,24 +292,22 @@ msgstr "Dimensioni (in pixel)"
308
 
309
  #: ../admin/social_sharing.php:120
310
  #: ../admin/social_sharing.php:198
311
- #, fuzzy
312
  msgid "Size of the sharing icons"
313
- msgstr "Allineamento orizzontale dell'interfaccia di condivisione"
314
 
315
  #: ../admin/social_sharing.php:127
316
  #: ../admin/social_sharing.php:205
317
  msgid "Icon Preview"
318
- msgstr "Icona Anteprima"
319
 
320
  #: ../admin/social_sharing.php:141
321
  #: ../admin/social_sharing.php:219
322
  msgid "Do not forget to save the configuration after making changes by clicking the save button below"
323
- msgstr "Non dimenticate di salvare la configurazione dopo aver apportato le modifiche, fare clic sul pulsante Salva in basso"
324
 
325
  #: ../admin/social_sharing.php:149
326
- #, fuzzy
327
  msgid "Vertical interface options"
328
- msgstr "Opzioni dell'interfaccia verticale (flottante) del Contatore"
329
 
330
  #: ../admin/social_sharing.php:233
331
  msgid "Modernizr"
@@ -333,17 +315,16 @@ msgstr ""
333
 
334
  #: ../admin/social_sharing.php:239
335
  msgid "Do not load Modernizr JS"
336
- msgstr "Non caricare Modernizr JS"
337
 
338
  #: ../admin/social_sharing.php:249
339
  msgid "If you find the plugin breaking your theme, you can try enabling this option"
340
- msgstr "Se si trova il plugin rompere il vostro tema, si può provare ad abilitare questa opzione"
341
 
342
  #: ../admin/social_sharing.php:258
343
  #: ../admin/like_buttons.php:51
344
- #, fuzzy
345
  msgid "Url shortener"
346
- msgstr "cortatore di url bit.ly"
347
 
348
  #: ../admin/social_sharing.php:264
349
  msgid "Use shortlinks already installed"
@@ -352,96 +333,93 @@ msgstr "Utilizzare shortlinks già installati"
352
  #: ../admin/social_sharing.php:274
353
  #: ../admin/like_buttons.php:67
354
  msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
355
- msgstr "Permette di URL abbreviati da utilizzare quando la condivisione di contenuti se è installato un plugin accorciamento"
356
 
357
  #: ../admin/social_sharing.php:282
358
  msgid "Enable bit.ly url shortener for sharing"
359
- msgstr "Abilitare il cortatore url bit.ly per la condivisone sociale"
360
 
361
  #: ../admin/social_sharing.php:292
362
  #: ../admin/like_buttons.php:85
363
- #, fuzzy
364
  msgid "Master control to enable bit.ly url shortening for sharing"
365
- msgstr "Controllo maestro per abilitare la cortazione di url bit.ly per la condivisione"
366
 
367
  #: ../admin/social_sharing.php:300
368
  #: ../admin/like_buttons.php:93
369
  msgid "bit.ly username"
370
- msgstr "nome d'utente di bit.ly"
371
 
372
  #: ../admin/social_sharing.php:310
373
  #: ../admin/like_buttons.php:103
374
  #, php-format
375
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
376
- 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>"
377
 
378
  #: ../admin/social_sharing.php:319
379
  #: ../admin/like_buttons.php:112
380
- #, fuzzy
381
  msgid "bit.ly API Key"
382
- msgstr "Chiave API bit.ly"
383
 
384
  #: ../admin/social_sharing.php:329
385
  #: ../admin/like_buttons.php:122
386
- #, fuzzy, php-format
387
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
388
- 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>"
389
 
390
  #: ../admin/social_sharing.php:339
391
  msgid "Twitter username in sharing"
392
- msgstr "Nome d'utente di Twitter per la condivisione sociale"
393
 
394
  #: ../admin/social_sharing.php:345
395
  msgid "Twitter username (without @)"
396
- msgstr "Nome d'utente di Twitter (senza @)"
397
 
398
  #: ../admin/social_sharing.php:355
399
  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."
400
- 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."
401
 
402
  #: ../admin/social_sharing.php:365
403
  msgid "Horizontal Sharing Interface Options"
404
- msgstr "Opzioni orizzontali dell'interfaccia di condivisione"
405
 
406
  #: ../admin/social_sharing.php:371
407
  msgid "Enable horizontal sharing interface"
408
- msgstr "Abilitare l'interfaccia di condivisione orizzontale"
409
 
410
  #: ../admin/social_sharing.php:381
411
  msgid "Master control to enable horizontal sharing"
412
- msgstr "Controllo maestro per abilitare la condivisione orizzontale"
413
 
414
  #: ../admin/social_sharing.php:391
415
- #: ../admin/social_sharing.php:787
416
  #: ../admin/like_buttons.php:227
417
  #: ../admin/like_buttons.php:465
418
  msgid "Target Url"
419
  msgstr "URL di destinazione"
420
 
421
  #: ../admin/social_sharing.php:395
422
- #: ../admin/social_sharing.php:791
423
  #: ../admin/like_buttons.php:231
424
  #: ../admin/like_buttons.php:469
425
  msgid "Url of the webpage where icons are located (default)"
426
  msgstr "URL della pagina web in cui si trovano le icone (di default)"
427
 
428
  #: ../admin/social_sharing.php:397
429
- #: ../admin/social_sharing.php:793
430
  #: ../admin/like_buttons.php:233
431
  #: ../admin/like_buttons.php:471
432
  msgid "Url of the homepage of your website"
433
  msgstr "Url della homepage del tuo sito web"
434
 
435
  #: ../admin/social_sharing.php:399
436
- #: ../admin/social_sharing.php:795
437
  #: ../admin/like_buttons.php:235
438
  #: ../admin/like_buttons.php:473
439
- #, fuzzy
440
  msgid "Custom url"
441
  msgstr "Url personalizzata"
442
 
443
  #: ../admin/social_sharing.php:406
444
- #: ../admin/social_sharing.php:802
445
  msgid "Url to share"
446
  msgstr "Url per condividere"
447
 
@@ -453,400 +431,389 @@ msgstr "Titolo"
453
 
454
  #: ../admin/social_sharing.php:424
455
  msgid "The text to display above the sharing interface"
456
- msgstr "Il testo a mostrare sopra l'interfaccia di condivisione"
457
 
458
  #: ../admin/social_sharing.php:432
459
- #: ../admin/social_sharing.php:810
460
  #: ../admin/social_login.php:41
461
  msgid "Select providers"
462
- msgstr "Selezionare fornitori"
463
 
464
  #: ../admin/social_sharing.php:442
465
- #: ../admin/social_sharing.php:820
466
  #: ../admin/social_login.php:50
467
  msgid "Twitter"
468
  msgstr "Twitter"
469
 
470
  #: ../admin/social_sharing.php:447
471
- #: ../admin/social_sharing.php:825
472
  #: ../admin/social_login.php:54
473
  msgid "LinkedIn"
474
  msgstr "LinkedIn"
475
 
476
  #: ../admin/social_sharing.php:452
477
- #: ../admin/social_sharing.php:830
478
  #: ../admin/social_login.php:58
479
  msgid "Google+"
480
  msgstr "Google+"
481
 
482
  #: ../admin/social_sharing.php:457
483
- #: ../admin/social_sharing.php:835
484
  msgid "Print"
485
- msgstr "Stampare"
486
 
487
  #: ../admin/social_sharing.php:462
488
- #: ../admin/social_sharing.php:840
489
  msgid "Email"
490
  msgstr "Email"
491
 
492
  #: ../admin/social_sharing.php:467
493
- #: ../admin/social_sharing.php:845
494
  msgid "Yahoo"
495
  msgstr "Yahoo"
496
 
497
  #: ../admin/social_sharing.php:472
498
- #: ../admin/social_sharing.php:850
499
  msgid "Reddit"
500
  msgstr "Reddit"
501
 
502
  #: ../admin/social_sharing.php:477
503
- #: ../admin/social_sharing.php:855
504
  msgid "Digg"
505
  msgstr "Digg"
506
 
507
  #: ../admin/social_sharing.php:482
508
- #: ../admin/social_sharing.php:860
509
  msgid "Delicious"
510
  msgstr "Delicious"
511
 
512
  #: ../admin/social_sharing.php:487
513
- #: ../admin/social_sharing.php:865
514
  msgid "StumbleUpon"
515
  msgstr "StumbleUpon"
516
 
517
  #: ../admin/social_sharing.php:492
518
- #: ../admin/social_sharing.php:870
519
  msgid "Float it"
520
  msgstr "Float it"
521
 
522
  #: ../admin/social_sharing.php:497
523
- #: ../admin/social_sharing.php:875
524
  msgid "Tumblr"
525
  msgstr "Tumblr"
526
 
527
  #: ../admin/social_sharing.php:502
528
- #: ../admin/social_sharing.php:880
529
  #: ../admin/social_login.php:62
530
  msgid "Vkontakte"
531
  msgstr "Vkontakte"
532
 
533
  #: ../admin/social_sharing.php:507
534
- #: ../admin/social_sharing.php:885
535
  msgid "Pinterest"
536
  msgstr "Pinterest"
537
 
538
  #: ../admin/social_sharing.php:512
539
- #: ../admin/social_sharing.php:890
540
  #: ../admin/social_login.php:70
541
  msgid "Xing"
542
  msgstr ""
543
 
544
  #: ../admin/social_sharing.php:517
545
- #: ../admin/social_sharing.php:895
546
  msgid "Whatsapp"
547
  msgstr ""
548
 
549
  #: ../admin/social_sharing.php:522
550
- #: ../admin/social_sharing.php:900
551
  msgid "Yummly"
552
  msgstr ""
553
 
554
  #: ../admin/social_sharing.php:527
555
- #: ../admin/social_sharing.php:905
556
  msgid "Buffer"
557
  msgstr ""
558
 
559
  #: ../admin/social_sharing.php:535
560
- #: ../admin/social_sharing.php:913
561
  msgid "Select the providers for sharing interface"
562
- msgstr "Seleziona i fornitori per l'interfaccia di condivisione"
563
 
564
  #: ../admin/social_sharing.php:543
565
- #: ../admin/social_sharing.php:921
566
  msgid "Rearrange icons"
567
- msgstr "riorganizzare gli iconi"
568
 
569
- #: ../admin/social_sharing.php:578
570
- #: ../admin/social_sharing.php:956
571
  msgid "Drag the icons to rearrange in desired order"
572
- msgstr "Arrastra gli iconi per riordinare nell'ordine desiderato"
573
 
574
- #: ../admin/social_sharing.php:586
575
- #: ../admin/social_sharing.php:982
576
  #: ../admin/like_buttons.php:320
577
  #: ../admin/like_buttons.php:557
578
- #, fuzzy
579
  msgid "Horizontal alignment"
580
  msgstr "Allineamento orizzontale"
581
 
582
- #: ../admin/social_sharing.php:590
583
- #: ../admin/social_sharing.php:986
584
  #: ../admin/like_buttons.php:324
585
  #: ../admin/like_buttons.php:561
586
  msgid "Left"
587
  msgstr "Sinistra"
588
 
589
- #: ../admin/social_sharing.php:591
590
  #: ../admin/like_buttons.php:325
591
  msgid "Center"
592
  msgstr "centro"
593
 
594
- #: ../admin/social_sharing.php:592
595
- #: ../admin/social_sharing.php:987
596
  #: ../admin/like_buttons.php:326
597
  #: ../admin/like_buttons.php:562
598
- #, fuzzy
599
  msgid "Right"
600
  msgstr "Destra"
601
 
602
- #: ../admin/social_sharing.php:600
603
- #: ../admin/social_sharing.php:995
604
- #, fuzzy
605
  msgid "Horizontal alignment of the sharing interface"
606
- msgstr "Allineamento orizzontale dell'interfaccia di condivisione"
607
 
608
- #: ../admin/social_sharing.php:608
609
  #: ../admin/like_buttons.php:342
610
  msgid "Position with respect to content"
611
- msgstr "Posizione al rispetto del contenuto"
612
 
613
- #: ../admin/social_sharing.php:612
614
  #: ../admin/like_buttons.php:346
615
  msgid "Top of the content"
616
  msgstr "Parte superiore del contenuto"
617
 
618
- #: ../admin/social_sharing.php:614
619
  #: ../admin/like_buttons.php:348
620
  msgid "Bottom of the content"
621
  msgstr "Parte inferiore del contenuto"
622
 
623
- #: ../admin/social_sharing.php:621
624
  msgid "Specify position of the sharing interface with respect to the content"
625
- msgstr "Specifica la posizione dell'interfaccia al rispetto del contenuto"
626
 
627
- #: ../admin/social_sharing.php:629
628
- #: ../admin/social_sharing.php:1061
629
  msgid "Sharing location"
630
- msgstr "Posto di condivisione"
631
 
632
- #: ../admin/social_sharing.php:633
633
- #: ../admin/social_sharing.php:1065
634
  #: ../admin/social_login.php:574
635
  #: ../admin/social_login.php:604
636
  #: ../admin/like_buttons.php:367
637
  #: ../admin/like_buttons.php:640
638
  msgid "Homepage"
639
- msgstr "Pagina d'inizio"
640
 
641
- #: ../admin/social_sharing.php:635
642
- #: ../admin/social_sharing.php:1067
643
  #: ../admin/like_buttons.php:369
644
  #: ../admin/like_buttons.php:642
645
  msgid "Posts"
646
- msgstr "Pubblicazioni"
647
 
648
- #: ../admin/social_sharing.php:637
649
- #: ../admin/social_sharing.php:1069
650
  #: ../admin/like_buttons.php:371
651
  #: ../admin/like_buttons.php:644
652
  msgid "Pages"
653
  msgstr "Pagine"
654
 
655
- #: ../admin/social_sharing.php:639
656
- #: ../admin/social_sharing.php:1071
657
  msgid "Excerpts (at Homepage)"
658
- msgstr "Estratti (in homepage)"
659
 
660
- #: ../admin/social_sharing.php:641
661
- #: ../admin/social_sharing.php:1073
662
  #: ../admin/like_buttons.php:375
663
  #: ../admin/like_buttons.php:648
664
  msgid "Category Archives"
665
  msgstr "Archivi di categorie"
666
 
667
- #: ../admin/social_sharing.php:643
668
- #: ../admin/social_sharing.php:1075
669
  #: ../admin/like_buttons.php:377
670
  #: ../admin/like_buttons.php:650
671
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
672
- msgstr "Archive Pages (categoria, tag, autore o pagine data base)"
673
 
674
- #: ../admin/social_sharing.php:659
675
  #: ../admin/like_buttons.php:393
676
  msgid "BuddyPress activity and groups"
677
  msgstr "Attività BuddyPress e gruppi"
678
 
679
- #: ../admin/social_sharing.php:665
680
- #: ../admin/social_sharing.php:1090
681
  #: ../admin/like_buttons.php:400
682
  #: ../admin/like_buttons.php:665
683
  msgid "BBPress forum"
684
  msgstr ""
685
 
686
- #: ../admin/social_sharing.php:668
687
- #: ../admin/social_sharing.php:1093
688
  #: ../admin/like_buttons.php:403
689
  #: ../admin/like_buttons.php:668
690
  msgid "BBPress topic"
691
- msgstr "argomento bbPress"
692
 
693
- #: ../admin/social_sharing.php:671
694
  #: ../admin/like_buttons.php:406
695
  msgid "BBPress reply"
696
- msgstr "bbPress risposta"
697
 
698
- #: ../admin/social_sharing.php:678
699
  #: ../admin/like_buttons.php:412
700
  msgid "After individual product at WooCommerce Shop page"
701
- msgstr "Dopo singolo prodotto a pag WooCommerce negozio"
702
 
703
- #: ../admin/social_sharing.php:681
704
  #: ../admin/like_buttons.php:415
705
  msgid "WooCommerce Product Page"
706
- msgstr "WooCommerce prodotti Page"
707
 
708
- #: ../admin/social_sharing.php:684
709
  #: ../admin/like_buttons.php:418
710
  msgid "WooCommerce Thankyou Page"
711
- msgstr "WooCommerce Grazie Pagina"
712
 
713
- #: ../admin/social_sharing.php:695
714
  msgid "Specify the pages where you want to enable Sharing interface"
715
- msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia di condivisione"
716
 
717
- #: ../admin/social_sharing.php:703
718
- #: ../admin/social_sharing.php:1111
719
  msgid "Show share counts"
720
- msgstr "Mostra la qunatitá di condivisioni"
721
 
722
- #: ../admin/social_sharing.php:713
723
- #: ../admin/social_sharing.php:1121
724
  msgid "If enabled, share counts are displayed above sharing icons."
725
- msgstr " é abilitato, la quantitá di condivisioni sará mostrato sopra gli iconi di condivisione"
726
 
727
- #: ../admin/social_sharing.php:722
728
- #: ../admin/social_sharing.php:1130
729
- #, fuzzy
730
  msgid "Show total shares"
731
- msgstr "Mostra la qunatitá di condivisioni"
732
 
733
- #: ../admin/social_sharing.php:732
734
- #: ../admin/social_sharing.php:1140
735
- #, fuzzy
736
  msgid "If enabled, total shares will be displayed with sharing icons"
737
- msgstr " é abilitato, la quantitá di condivisioni sará mostrato sopra gli iconi di condivisione"
738
 
739
- #: ../admin/social_sharing.php:741
740
- #: ../admin/social_sharing.php:1149
741
- #, fuzzy
742
  msgid "Enable 'More' icon"
743
- msgstr "Abilitare la verificazione dell'indirizzo d'e-mail"
744
 
745
- #: ../admin/social_sharing.php:751
746
- #: ../admin/social_sharing.php:1159
747
  msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
748
- msgstr "Se abilitata, l'icona \"More \" sarà visualizzato icone di condivisione dopo selezionati che mostra le reti di scambio supplementari in popup"
749
 
750
- #: ../admin/social_sharing.php:761
751
  msgid "Vertical (Floating) Sharing Interface Options"
752
  msgstr "Opzioni verticali (fluotante) dell'interfaccia di condivisione"
753
 
754
- #: ../admin/social_sharing.php:767
755
  msgid "Enable vertical (floating) sharing interface"
756
- msgstr "Abilitare l'interfaccia di condivisione verticale (fluotante)"
757
 
758
- #: ../admin/social_sharing.php:777
759
  msgid "Master control to enable vertical (floating) sharing widget"
760
- msgstr "Controllo maestro per abilitare il widget di condivisione verticale (fluotante)"
761
 
762
- #: ../admin/social_sharing.php:964
763
  #: ../admin/like_buttons.php:539
764
  msgid "Background Color"
765
- msgstr "Colore del fondo"
766
 
767
- #: ../admin/social_sharing.php:974
768
  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>"
769
- 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>"
770
 
771
- #: ../admin/social_sharing.php:1004
772
  #: ../admin/like_buttons.php:579
773
  msgid "Left offset"
774
- msgstr "Compensazione a sinistra"
775
 
776
- #: ../admin/social_sharing.php:1014
777
- #, fuzzy
778
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too."
779
- msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso destra e un numero minore lo muove verso sinistra."
780
 
781
- #: ../admin/social_sharing.php:1024
782
  #: ../admin/like_buttons.php:599
783
- #, fuzzy
784
  msgid "Right offset"
785
- msgstr "Compensazione alla destra"
786
 
787
- #: ../admin/social_sharing.php:1034
788
- #, fuzzy
789
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too."
790
- msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso sinistra e un numero minore lo muove verso destra."
791
 
792
- #: ../admin/social_sharing.php:1043
793
  #: ../admin/like_buttons.php:618
794
  msgid "Top offset"
795
- msgstr "Compensazione in cima"
796
 
797
- #: ../admin/social_sharing.php:1053
798
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
799
  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."
800
 
801
- #: ../admin/social_sharing.php:1103
802
  msgid "Specify the pages where you want to enable vertical Sharing interface"
803
- msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia di condivisione verticale"
804
 
805
- #: ../admin/social_sharing.php:1167
806
  #, fuzzy
807
  msgid "Stick sharing bar horizontally at bottom on mobile devices"
808
- msgstr "Nascondere la condivisione su dispositivi mobili"
809
 
810
- #: ../admin/social_sharing.php:1177
811
  #, fuzzy
812
  msgid "If enabled, vertical sharing interface will stick horizontally at bottom on mobile devices"
813
- msgstr "Se abilitata, l'interfaccia di condivisione verticale non apparirà sui dispositivi mobili"
814
 
815
- #: ../admin/social_sharing.php:1186
816
  msgid "Hide sharing on mobile devices"
817
- msgstr "Nascondere la condivisione su dispositivi mobili"
818
 
819
- #: ../admin/social_sharing.php:1196
820
  msgid "If enabled, vertical sharing interface will not appear on mobile devices"
821
- msgstr "Se abilitata, l'interfaccia di condivisione verticale non apparirà sui dispositivi mobili"
822
 
823
- #: ../admin/social_sharing.php:1213
824
- #, fuzzy
825
  msgid "Social Sharing Shortcode & Widget"
826
- msgstr "Codice Corto & Widget"
827
 
828
- #: ../admin/social_sharing.php:1223
829
  msgid "Facebook Sharing Troubleshooter"
830
- msgstr "Soluzionatore di problemi della condivisone Facebook"
831
 
832
- #: ../admin/social_sharing.php:1228
833
  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:"
834
- 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:"
835
 
836
- #: ../admin/social_sharing.php:1244
837
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
838
- msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
839
 
840
- #: ../admin/social_sharing.php:1245
841
- #, fuzzy
842
  msgid "How can I disable sharing on particular page/post?"
843
- msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
844
 
845
- #: ../admin/social_sharing.php:1246
846
  msgid "How can I specify minimum sharing count for sharing networks?"
847
- msgstr "Come faccio a specificare conteggio minimo sharing per la condivisione di reti?"
848
 
849
- #: ../admin/social_sharing.php:1256
850
  #: ../admin/social_commenting.php:438
851
  #: ../admin/social_login.php:726
852
  #: ../admin/like_buttons.php:723
@@ -854,103 +821,94 @@ msgid "Save Changes"
854
  msgstr "Salvare le modifiche."
855
 
856
  #: ../admin/social_commenting.php:10
857
- #, fuzzy
858
  msgid "Social Commenting"
859
- msgstr "Commento Predefinito"
860
 
861
  #: ../admin/social_commenting.php:11
862
  #: ../admin/social_commenting.php:415
863
  msgid "Shortcode"
864
- msgstr "Codice breve"
865
 
866
  #: ../admin/social_commenting.php:18
867
  #, fuzzy
868
  msgid "General Options"
869
- msgstr "Posto di condivisione"
870
 
871
  #: ../admin/social_commenting.php:24
872
- #, fuzzy
873
  msgid "Enable Social Commenting"
874
- msgstr "Abilitare il Contatore Sociale"
875
 
876
  #: ../admin/social_commenting.php:34
877
- #, fuzzy
878
  msgid "Master control to enable Social Commenting"
879
- msgstr "Controllo maestro per abilitare la condivisione orizzontale"
880
 
881
  #: ../admin/social_commenting.php:42
882
  msgid "Order of tabs in commenting interface"
883
- msgstr "Ordine di schede di interfaccia commentare"
884
 
885
  #: ../admin/social_commenting.php:52
886
  msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
887
- msgstr "Ordine delle schede mostrate nella interfaccia commentare sociale. Il valore predefinito è wordpress,facebook,googleplus,disqus"
888
 
889
  #: ../admin/social_commenting.php:60
890
  msgid "Comment area label"
891
- msgstr "Label Commento zona"
892
 
893
  #: ../admin/social_commenting.php:70
894
- #, fuzzy
895
  msgid "Label for comment area"
896
- msgstr "Commentando con Facebook"
897
 
898
  #: ../admin/social_commenting.php:83
899
  #, fuzzy
900
  msgid "Enable Social Commenting at"
901
- msgstr "Abilitare il Contatore Sociale"
902
 
903
  #: ../admin/social_commenting.php:102
904
  #, fuzzy
905
  msgid "Specify the page/post groups where you want to enable Social Commenting"
906
- msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia del contatore"
907
 
908
  #: ../admin/social_commenting.php:114
909
  msgid "Labels"
910
  msgstr "Etichette"
911
 
912
  #: ../admin/social_commenting.php:119
913
- #, fuzzy
914
  msgid "Label for WordPress Commenting tab"
915
- msgstr "WordPress Comentarios"
916
 
917
  #: ../admin/social_commenting.php:128
918
- #, fuzzy
919
  msgid "Label for Facebook Commenting tab"
920
- msgstr "Abilitare Commentando con Facebook"
921
 
922
  #: ../admin/social_commenting.php:137
923
- #, fuzzy
924
  msgid "Label for G+ Commenting tab"
925
- msgstr "Commentando con Facebook"
926
 
927
  #: ../admin/social_commenting.php:146
928
  msgid "Label for Disqus Commenting tab"
929
- msgstr "Etichetta per scheda Commentando Disqus"
930
 
931
  #: ../admin/social_commenting.php:157
932
  msgid "Facebook Commenting Options"
933
- msgstr "Opzioni di Commentando con Facebook"
934
 
935
  #: ../admin/social_commenting.php:163
936
- #, fuzzy
937
  msgid "Enable Facebook Comments notification and moderation"
938
- msgstr "Abilitare Commentando con Facebook"
939
 
940
  #: ../admin/social_commenting.php:171
941
  #: ../admin/social_commenting.php:181
942
  msgid "Enable Facebook Commenting"
943
- msgstr "Abilitare Commentando con Facebook"
944
 
945
  #: ../admin/social_commenting.php:189
946
  #: ../admin/social_commenting.php:347
947
  msgid "Url to comment on"
948
- msgstr "Url per commentare"
949
 
950
  #: ../admin/social_commenting.php:199
951
- #, fuzzy
952
  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."
953
- 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."
954
 
955
  #: ../admin/social_commenting.php:207
956
  #: ../admin/social_commenting.php:329
@@ -959,7 +917,7 @@ msgstr "Larghezza"
959
 
960
  #: ../admin/social_commenting.php:217
961
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
962
- msgstr "Lasciare vuoto per auto-regolare la larghezza. La larghezza (in pixel) del blocco commenti."
963
 
964
  #: ../admin/social_commenting.php:225
965
  msgid "Color Scheme"
@@ -978,13 +936,12 @@ msgid "The color scheme used by the plugin. Can be \"light\" or \"dark\"."
978
  msgstr "La combinazione di colori usato dal plugin. Puó essere \"chiaro\" o \"scuro\"."
979
 
980
  #: ../admin/social_commenting.php:246
981
- #, fuzzy
982
  msgid "Number of comments"
983
- msgstr "Numero di pubblicazioni"
984
 
985
  #: ../admin/social_commenting.php:256
986
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
987
- msgstr "Il numero di commentari a mostrare per impostazione predefinita. Il valore minimo é 1. Predefinito é 10"
988
 
989
  #: ../admin/social_commenting.php:264
990
  msgid "Order by"
@@ -992,11 +949,11 @@ msgstr "Ordinare per"
992
 
993
  #: ../admin/social_commenting.php:268
994
  msgid "Social"
995
- msgstr "Sociale"
996
 
997
  #: ../admin/social_commenting.php:269
998
  msgid "Reverse Time"
999
- msgstr "Invertire il tempo"
1000
 
1001
  #: ../admin/social_commenting.php:270
1002
  msgid "Time"
@@ -1004,7 +961,7 @@ msgstr "Tempo"
1004
 
1005
  #: ../admin/social_commenting.php:278
1006
  msgid "The order to use when displaying comments."
1007
- msgstr "L'ordine a usare quando si mostrano commentari."
1008
 
1009
  #: ../admin/social_commenting.php:286
1010
  #: ../admin/like_buttons.php:132
@@ -1015,73 +972,65 @@ msgstr "Lingua"
1015
  #: ../admin/social_commenting.php:296
1016
  #, php-format
1017
  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)"
1018
- 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)"
1019
 
1020
  #: ../admin/social_commenting.php:305
1021
- #, fuzzy
1022
  msgid "Google Plus Commenting Options"
1023
- msgstr "Opzioni di Commentando con Facebook"
1024
 
1025
  #: ../admin/social_commenting.php:311
1026
  #: ../admin/social_commenting.php:321
1027
- #, fuzzy
1028
  msgid "Enable Google Plus Commenting"
1029
- msgstr "Abilitare Commentando con Facebook"
1030
 
1031
  #: ../admin/social_commenting.php:339
1032
  msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
1033
- msgstr "Larghezza dell'interfaccia Commentando GooglePlus. Lasciare vuoto per Regolazione automatica"
1034
 
1035
  #: ../admin/social_commenting.php:357
1036
- #, fuzzy
1037
  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."
1038
- 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."
1039
 
1040
  #: ../admin/social_commenting.php:366
1041
- #, fuzzy
1042
  msgid "Disqus Commenting Options"
1043
- msgstr "Opzioni di Commentando con Facebook"
1044
 
1045
  #: ../admin/social_commenting.php:372
1046
  #: ../admin/social_commenting.php:382
1047
- #, fuzzy
1048
  msgid "Enable Disqus Commenting"
1049
- msgstr "Abilitare Commentando con Facebook"
1050
 
1051
  #: ../admin/social_commenting.php:390
1052
  msgid "Disqus Shortname"
1053
  msgstr ""
1054
 
1055
  #: ../admin/social_commenting.php:400
1056
- #, fuzzy
1057
  msgid "<strong>Required to use Disqus commenting.</strong> For more info on shortname, visit following link."
1058
- 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"
1059
 
1060
  #: ../admin/social_commenting.php:417
1061
- #, fuzzy
1062
  msgid "Social Commenting Shortcode"
1063
- msgstr "Commento Predefinito"
1064
 
1065
  #: ../admin/social_commenting.php:429
1066
- #, fuzzy
1067
  msgid "How can I disable Social Commenting at individual page/post?"
1068
- msgstr "Como posso mostrare la quantitá di condivisoni del mio sito web invece di solo pagine uniche?"
1069
 
1070
  #: ../admin/social_commenting.php:430
1071
  msgid "How to disable default comment form from Social Commenting?"
1072
- msgstr "Come disattivare forma commento predefinito dalla Commentando Social?"
1073
 
1074
  #: ../admin/social_login.php:10
1075
  msgid "Social Login"
1076
- msgstr "Accesso Sociale"
1077
 
1078
  #: ../admin/social_login.php:23
1079
  msgid "Enable Social Login"
1080
- msgstr "Abilitare Accesso Sociale"
1081
 
1082
  #: ../admin/social_login.php:33
1083
  msgid "Master control for Social Login. It must be checked to enable Social Login functionality"
1084
- msgstr "Controllo MAestro per l'Accesso Sociale. Dev'essere abilitato per abilitare la funzionalitá dell'Accesso Sociale"
1085
 
1086
  #: ../admin/social_login.php:66
1087
  msgid "Instagram"
@@ -1089,246 +1038,239 @@ msgstr "Instagram"
1089
 
1090
  #: ../admin/social_login.php:78
1091
  msgid "Select Social ID provider to enable in Social Login"
1092
- msgstr "Seleziona un fornitore di ID Sociale per abilitare l'Accesso Sociale"
1093
 
1094
  #: ../admin/social_login.php:86
1095
  msgid "Facebook App ID"
1096
- msgstr "ID di Applicazioni Facebook"
1097
 
1098
  #: ../admin/social_login.php:96
1099
  #, php-format
1100
  msgid "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"
1101
- msgstr "Neccessario per far funzionare l'Accesso Sociale Facebook. Per favore, segui la documentazione in <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la ID dell'Applicazione di Facebook"
1102
 
1103
  #: ../admin/social_login.php:98
1104
  msgid "Paste following url in <strong>Site URL</strong> option at the link mentioned"
1105
- msgstr "Incollare seguente URL in <strong>Site URL</ strong> opzione al link di cui"
1106
 
1107
  #: ../admin/social_login.php:108
1108
- #, fuzzy
1109
  msgid "Twitter API Key"
1110
- msgstr "Chiave API Twitter"
1111
 
1112
  #: ../admin/social_login.php:118
1113
- #, fuzzy, php-format
1114
  msgid "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"
1115
- msgstr "Neccessario per far funzionare l'Accesso Sociale Twitter. Per favore, segui la documentazione in <a href=\"%s\" target=\"_blank\">questa pagina</a> per ottenre la chiave API di Twitter"
1116
 
1117
  #: ../admin/social_login.php:120
1118
  #: ../admin/social_login.php:142
1119
  msgid "Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned"
1120
- msgstr "Incollare seguente URL in <strong> Website</ strong> e <strong>Callback URL </ strong> e cenare presso il link indicato"
1121
 
1122
  #: ../admin/social_login.php:130
1123
- #, fuzzy
1124
  msgid "Twitter API Secret"
1125
- msgstr "API segreto di Twitter"
1126
 
1127
  #: ../admin/social_login.php:140
1128
- #, fuzzy, php-format
1129
  msgid "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"
1130
- msgstr "Neccessario per far funzionare l'Accesso Sociale Twitter. Per favore, segui la documentazione in<a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la chiave API segreta di Twitter"
1131
 
1132
  #: ../admin/social_login.php:152
1133
  msgid "LinkedIn API Key"
1134
- msgstr "Chiave API di LinkedIn"
1135
 
1136
  #: ../admin/social_login.php:162
1137
  #, php-format
1138
  msgid "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"
1139
- msgstr "Neccessario per far funzionare l'Accesso Sociale LinkedIn. Per favore, segui la documentazione in<a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la chiave API di LinkedIn"
1140
 
1141
  #: ../admin/social_login.php:164
1142
  #: ../admin/social_login.php:230
1143
  msgid "Paste following url in <strong>Website URL</strong> option at the link mentioned"
1144
- msgstr "Incolla URL seguente in <strong>Website URL</ strong> al link indicato"
1145
 
1146
  #: ../admin/social_login.php:174
1147
  msgid "Google+ Client ID"
1148
- msgstr "ID di Cliente Google+"
1149
 
1150
  #: ../admin/social_login.php:184
1151
  #, php-format
1152
  msgid "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"
1153
- msgstr "Neccessario per far funzionare l'Accesso Sociale di GooglePlus. Per favore, segui la documentazione in <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la ID di Cliente GooglePlus"
1154
 
1155
  #: ../admin/social_login.php:186
1156
  msgid "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
1157
- msgstr "Incolla URL seguente in <strong>AUTHORIZED JAVASCRIPT ORIGINS</ strong> e <strong>AUTHORIZED REDIRECT URI</ strong> e cenare presso il link indicato"
1158
 
1159
  #: ../admin/social_login.php:196
1160
  msgid "Vkontakte Application ID"
1161
- msgstr "ID dell'Applicazione Vkontakte"
1162
 
1163
  #: ../admin/social_login.php:206
1164
  #, php-format
1165
  msgid "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"
1166
- msgstr "Neccessario per far funzionare l'Accesso Sociale Vkontakte. Per favore, segui la documentazione in<a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la ID dell'Applicazione di Vkontakte"
1167
 
1168
  #: ../admin/social_login.php:208
1169
  msgid "Paste following url in <strong>Site address</strong> option at the link mentioned"
1170
- msgstr "Incolla URL seguente in <strong>Site address </ strong> al link indicato"
1171
 
1172
  #: ../admin/social_login.php:218
1173
  msgid "Instagram Client ID"
1174
- msgstr "ID di Cliente Instagram"
1175
 
1176
  #: ../admin/social_login.php:228
1177
  #, php-format
1178
  msgid "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"
1179
- msgstr "Neccessario per far funzionare l'Accesso Sociale Instagram. Per favore, segui la documentazione in <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la ID di Cliente Instagram"
1180
 
1181
  #: ../admin/social_login.php:240
1182
  msgid "Xing Consumer Key"
1183
  msgstr ""
1184
 
1185
  #: ../admin/social_login.php:250
1186
- #, fuzzy, php-format
1187
  msgid "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"
1188
- msgstr "Neccessario per far funzionare l'Accesso Sociale LinkedIn. Per favore, segui la documentazione in<a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la chiave API di LinkedIn"
1189
 
1190
  #: ../admin/social_login.php:252
1191
  #: ../admin/social_login.php:274
1192
  msgid "Paste following url in <strong>Callback domain</strong> option at the link mentioned"
1193
- msgstr "Incolla URL seguente in <strong>Callback domain</ strong> al link indicato"
1194
 
1195
  #: ../admin/social_login.php:262
1196
  msgid "Xing Consumer Secret"
1197
  msgstr ""
1198
 
1199
  #: ../admin/social_login.php:272
1200
- #, fuzzy, php-format
1201
  msgid "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"
1202
- msgstr "Neccessario per far funzionare l'Accesso Sociale Twitter. Per favore, segui la documentazione in<a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la chiave API segreta di Twitter"
1203
 
1204
  #: ../admin/social_login.php:284
1205
  msgid "Include Javascript in website footer"
1206
- msgstr "Includere Javascript nel pié del sito web"
1207
 
1208
  #: ../admin/social_login.php:294
1209
  msgid "If enabled (recommended), Javascript files will be included in the footer of your website."
1210
- msgstr "Se abilitato (consigliato), file Javascript saranno inclusi nel footer del tuo sito web."
1211
 
1212
  #: ../admin/social_login.php:308
1213
  msgid "Login options"
1214
- msgstr "Opzionei d'Accesso"
1215
 
1216
  #: ../admin/social_login.php:324
1217
  msgid "Text to display above the Social Login interface"
1218
- msgstr "Testo per mostrare in cima all'Accesso Sociale"
1219
 
1220
  #: ../admin/social_login.php:333
1221
  msgid "Enable at login page"
1222
- msgstr "Attivare nella pagina d'Accesso"
1223
 
1224
  #: ../admin/social_login.php:343
1225
  msgid "Social Login interface will get enabled at the login page of your website"
1226
- msgstr "L'Interfaccia dell'Accesso Sociale si attivará nella pagina d'Accesso del suo sito web"
1227
 
1228
  #: ../admin/social_login.php:351
1229
  msgid "Enable at register page"
1230
- msgstr "Abilitare nella pagina di registro"
1231
 
1232
  #: ../admin/social_login.php:361
1233
- #, fuzzy
1234
  msgid "Social Login interface will get enabled at the registration page of your website"
1235
- msgstr "L'Interfaccia dell'Accesso Sociale si attivará nella pagina di registrazione del suo sito web"
1236
 
1237
  #: ../admin/social_login.php:369
1238
  msgid "Enable at comment form"
1239
- msgstr "Attivare nella forma di contatto"
1240
 
1241
  #: ../admin/social_login.php:379
1242
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
1243
- msgstr "L'Accesso Sociale si attivará nel suo formulario di commenti Wordpress"
1244
 
1245
  #: ../admin/social_login.php:393
1246
  msgid "Enable before WooCommerce Customer Login Form"
1247
- msgstr "Abilita prima WooCommerce Login cliente Form"
1248
 
1249
  #: ../admin/social_login.php:403
1250
- #, fuzzy
1251
  msgid "Social Login Interface will get enabled before the customer login form at WooCommerce My Account page"
1252
- msgstr "L'Interfaccia dell'Accesso Sociale si attivará nella pagina d'Accesso del suo sito web"
1253
 
1254
  #: ../admin/social_login.php:411
1255
  msgid "Enable after WooCommerce Customer Login Form"
1256
- msgstr "Abilitazione dopo WooCommerce Login cliente Form"
1257
 
1258
  #: ../admin/social_login.php:421
1259
- #, fuzzy
1260
  msgid "Social Login Interface will get enabled after the customer login form at WooCommerce My Account page"
1261
- msgstr "L'Interfaccia dell'Accesso Sociale si attivará nella pagina d'Accesso del suo sito web"
1262
 
1263
  #: ../admin/social_login.php:429
1264
- #, fuzzy
1265
  msgid "Enable at WooCommerce checkout page"
1266
- msgstr "Abilitare nella pagina di registro"
1267
 
1268
  #: ../admin/social_login.php:439
1269
- #, fuzzy
1270
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
1271
- msgstr "L'Accesso Sociale si attivará nel suo formulario di commenti Wordpress"
1272
 
1273
  #: ../admin/social_login.php:450
1274
  msgid "Auto-approve comments made by Social Login users"
1275
- msgstr "Auto-approvare i commenti fatti da utenti dell'Accesso Sociale"
1276
 
1277
  #: ../admin/social_login.php:460
1278
  msgid "If this option is enabled, and WordPress comment is made by Social Login user, comment will get approved immediately without keeping in moderation."
1279
- msgstr "Se questa opzione é attivata, e il commentario WordPress é fatto da un usuario d'Accesso Sociale, il commentario sará accettato immediatamente senza dar possibilitá di moderazione."
1280
 
1281
  #: ../admin/social_login.php:461
1282
  msgid "Note: This is not related to Facebook comments"
1283
- msgstr "Nota: Questo non é relazionato ai commentari Facebook"
1284
 
1285
  #: ../admin/social_login.php:471
1286
  msgid "Enable social avatar"
1287
- msgstr "Abilitare l'avatar sociale "
1288
 
1289
  #: ../admin/social_login.php:481
1290
  msgid "Social profile pictures of the logged in user will be displayed as profile avatar"
1291
- msgstr "Immagini del perfilo sociale dell'utente loggato sará mostrato como avatar di perfilo"
1292
 
1293
  #: ../admin/social_login.php:491
1294
  msgid "Avatar quality"
1295
- msgstr "qualità Avatar"
1296
 
1297
  #: ../admin/social_login.php:494
1298
  msgid "Average"
1299
- msgstr "media"
1300
 
1301
  #: ../admin/social_login.php:495
1302
  msgid "Best"
1303
- msgstr "migliore"
1304
 
1305
  #: ../admin/social_login.php:502
1306
  msgid "Choose avatar quality"
1307
- msgstr "Scegli avatar qualità"
1308
 
1309
  #: ../admin/social_login.php:521
1310
  msgid "If enabled and Social ID provider does not provide user's email address on login, user will be asked to provide his/her email address. Otherwise, a dummy email will be generated"
1311
- msgstr "Se é abilitato e il fornitore di ID sociale non da informazioni sull'email dell'utente durante il procedimento d'accesso sociale, l'utente deverá complementare questa informazione. Caso contrario, un email dummy sará fatto"
1312
 
1313
  #: ../admin/social_login.php:530
1314
  msgid "Send username-password after user registration"
1315
- msgstr "Invia il codigo d'accesso dell'utente dopo la registrazione"
1316
 
1317
  #: ../admin/social_login.php:540
1318
  msgid "If enabled, an email will be sent to user after registration through Social Login, regarding his/her login credentials (username-password to be able to login via traditional login form)"
1319
- msgstr "Se abilitato, un email con la informazione d'accesso (codigo d'accesso dell'utente per accedere attraverso il formulario tradizionale) sará inviato all'utente dopo la registrazione attraverso dell' Accesso Sociale."
1320
 
1321
  #: ../admin/social_login.php:549
1322
  msgid "Enable social account linking at BuddyPress profile page"
1323
- msgstr "Abilita conto sociale di collegamento in profilo BuddyPress"
1324
 
1325
  #: ../admin/social_login.php:559
1326
  msgid "Enable this option to show social account linking interface at BuddyPress profile page"
1327
- msgstr "Attivare questa opzione per visualizzare account di social interfaccia per il collegamento al profilo BuddyPress"
1328
 
1329
  #: ../admin/social_login.php:568
1330
  msgid "Login redirection"
1331
- msgstr "Redirezionamento d'Accesso Sociale"
1332
 
1333
  #: ../admin/social_login.php:572
1334
  msgid "Same page where user logged in"
@@ -1337,12 +1279,12 @@ msgstr "La stessa pagina dove l'utente ha iniziato la sessione"
1337
  #: ../admin/social_login.php:576
1338
  #: ../admin/social_login.php:606
1339
  msgid "Account dashboard"
1340
- msgstr "Pannello della conta"
1341
 
1342
  #: ../admin/social_login.php:579
1343
  #: ../admin/social_login.php:609
1344
  msgid "BuddyPress profile page"
1345
- msgstr "Pagina profilo BuddyPress"
1346
 
1347
  #: ../admin/social_login.php:582
1348
  #: ../admin/social_login.php:612
@@ -1351,61 +1293,59 @@ msgstr "Url personalizzata"
1351
 
1352
  #: ../admin/social_login.php:590
1353
  msgid "User will be redirected to the selected page after Social Login"
1354
- msgstr "L'utente sará redirezionato alla pagina selezionata dopo l'Accesso Sociale"
1355
 
1356
  #: ../admin/social_login.php:598
1357
  msgid "Registration redirection"
1358
- msgstr "Ridirezione di registrazione"
1359
 
1360
  #: ../admin/social_login.php:602
1361
- #, fuzzy
1362
  msgid "Same page from where user registered"
1363
- msgstr "La stessa pagina dove l'utente ha iniziato la sessione"
1364
 
1365
  #: ../admin/social_login.php:620
1366
  msgid "User will be redirected to the selected page after registration (first Social Login) through Social Login"
1367
- msgstr "L'utente sará redirizionato alla pagina selezionata dopo di registrarse (primo ingresso sociale) attraverso dell' ingresso sociale"
1368
 
1369
  #: ../admin/social_login.php:628
1370
  msgid "Email popup options"
1371
- msgstr "opzioni emergenti di e-mail"
1372
 
1373
  #: ../admin/social_login.php:634
1374
  msgid "Text on 'Email required' popup"
1375
- msgstr "Testo dela finestra emergente \"indirizzo di e-mail necessario\""
1376
 
1377
  #: ../admin/social_login.php:644
1378
  msgid "This text will be displayed on email required popup. Leave empty if not required."
1379
- msgstr "Questo é il testo che si mostrará nella finestra emergente \"indirizzo di e-mail necessario'. Lasciare in bianco caso che non si necessita."
1380
 
1381
  #: ../admin/social_login.php:653
1382
  msgid "Error message for 'Email required' popup"
1383
- msgstr "Messaggio d'errore per la finestra emergente del \"E-mail neccessario'"
1384
 
1385
  #: ../admin/social_login.php:663
1386
  msgid "This message will be displayed to user if it provides invalid or already registered email"
1387
- msgstr "Questo messaggio si mostrará all'utente caso che ingressa un indirizzo d'e-mail invalido ó gia registrato"
1388
 
1389
  #: ../admin/social_login.php:672
1390
  msgid "Email popup height"
1391
- msgstr "altura finestra emergente dell'e-mail"
1392
 
1393
  #: ../admin/social_login.php:682
1394
  msgid "If you are seeing vertical scrollbar in the \"Email required\" popup, you can increase the height of popup by specifying in this option. Leave empty for default."
1395
- msgstr "Caso che vedi la barra di scorrimento verticale nella finestra emergente \"e-mail neccessario\", puoi aumentare la altura della finestra emergente specificandola in questa opzione. Lascia in bianco per l'impostazione predefinita."
1396
 
1397
  #: ../admin/social_login.php:690
1398
  msgid "Enable email verification"
1399
- msgstr "Abilitare la verificazione dell'indirizzo d'e-mail"
1400
 
1401
  #: ../admin/social_login.php:700
1402
  msgid "If enabled, email provided by the user will be verified by sending a confirmation link to that email. User would not be able to login without verifying his/her email"
1403
- 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"
1404
 
1405
  #: ../admin/social_login.php:716
1406
- #, fuzzy
1407
  msgid "Social Login Shortcode & Widget"
1408
- msgstr "Codice Corto & Widget"
1409
 
1410
  #: ../admin/social_login.php:717
1411
  msgid "Social Linking Shortcode"
@@ -1417,48 +1357,43 @@ msgstr "Benvenuto"
1417
 
1418
  #: ../admin/admin.php:10
1419
  msgid "You are ready to Socialize your website."
1420
- msgstr "Sei pronto per socializzare il tuo sito web."
1421
 
1422
  #: ../admin/admin.php:11
1423
  msgid "Getting Started"
1424
- msgstr "Iniziando"
1425
 
1426
  #: ../admin/admin.php:12
1427
- #, fuzzy
1428
  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."
1429
- 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."
1430
 
1431
  #: ../admin/admin.php:13
1432
- #, fuzzy
1433
  msgid "In <strong>Social Commenting</strong> section, you can configure Social Commenting."
1434
- msgstr "Nella sezione <strong>Facebook</strong>, puoi configurare i commentari e il Feed di Notizie di Facebook."
1435
 
1436
  #: ../admin/admin.php:14
1437
  msgid "In <strong>Social Login</strong> section, you can select Social ID provders and configure the Social Login options."
1438
- msgstr "Nella sezione <strong>Accesso Sociale</strong>, puoi selezionare i provedori delle ID sociali e configurare le opzioni dell'Accesso Sociale."
1439
 
1440
  #: ../admin/admin.php:15
1441
- #, fuzzy
1442
  msgid "In <strong>Social Sharing</strong> section, you can choose the Social Networks for Sharing and configure the options for sharing."
1443
- msgstr "Nella sezione <strong>Condiviosione Sociale</strong>, puoi scegliere la Rete Sociale per la condivisione e configurare le sue opzioni."
1444
 
1445
  #: ../admin/admin.php:16
1446
- #, fuzzy
1447
  msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1448
- msgstr "Nella sezione <strong>Condiviosione Sociale</strong>, puoi scegliere la Rete Sociale per la condivisione e configurare le sue opzioni."
1449
 
1450
  #: ../admin/like_buttons.php:12
1451
  msgid "Like Buttons"
1452
- msgstr "Come Buttons"
1453
 
1454
  #: ../admin/like_buttons.php:25
1455
  msgid "Enable Like Buttons"
1456
- msgstr "Attiva come bottoni"
1457
 
1458
  #: ../admin/like_buttons.php:35
1459
- #, fuzzy
1460
  msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1461
- msgstr "Controllo MAestro per l'Accesso Sociale. Dev'essere abilitato per abilitare la funzionalitá dell'Accesso Sociale"
1462
 
1463
  #: ../admin/like_buttons.php:57
1464
  msgid "Use shortlinks already installed, for tweet button"
@@ -1466,183 +1401,159 @@ msgstr "Utilizzare shortlinks già installati, per pulsante Tweet"
1466
 
1467
  #: ../admin/like_buttons.php:75
1468
  msgid "Enable bit.ly url shortener for tweet button"
1469
- msgstr "Abilitare cortatore di url bit.ly per il bottone di Twitter"
1470
 
1471
  #: ../admin/like_buttons.php:148
1472
- #, fuzzy, php-format
1473
  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)"
1474
- 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)"
1475
 
1476
  #: ../admin/like_buttons.php:157
1477
- #, fuzzy
1478
  msgid "Twitter Username"
1479
- msgstr "Nome d'utente di Twitter per la condivisione sociale"
1480
 
1481
  #: ../admin/like_buttons.php:163
1482
- #, fuzzy
1483
  msgid "Twitter username for Tweet (without @)"
1484
- msgstr "Nome d'utente di Twitter (senza @)"
1485
 
1486
  #: ../admin/like_buttons.php:173
1487
  msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1488
- 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."
1489
 
1490
  #: ../admin/like_buttons.php:182
1491
- #, fuzzy
1492
  msgid "Twitter username for Buffer sharing (without @)"
1493
- msgstr "Nome d'utente di Twitter (senza @)"
1494
 
1495
  #: ../admin/like_buttons.php:192
1496
- #, fuzzy
1497
  msgid "Provided username will be appended after the content in Buffer sharing as \"via @USERNAME\". Leave empty if you do not want any username."
1498
- 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."
1499
 
1500
  #: ../admin/like_buttons.php:201
1501
- #, fuzzy
1502
  msgid "Horizontal Interface Options"
1503
- msgstr "Opzioni dell'interfaccia del contatore orizzontale"
1504
 
1505
  #: ../admin/like_buttons.php:207
1506
- #, fuzzy
1507
  msgid "Enable horizontal interface"
1508
- msgstr "Abilitare l'interfaccia del Contatore orizzontale."
1509
 
1510
  #: ../admin/like_buttons.php:217
1511
- #, fuzzy
1512
  msgid "Master control to enable horizontal like buttons"
1513
- msgstr "Controllo maestro per abilitare il Contatore orizzontale"
1514
 
1515
  #: ../admin/like_buttons.php:242
1516
  #: ../admin/like_buttons.php:480
1517
  msgid "Url to like/share/tweet and display like/share/tweet counts"
1518
- msgstr "Url per piace/share/Twitter e visualizzazione come/share/conteggi Tweet"
1519
 
1520
  #: ../admin/like_buttons.php:260
1521
- #, fuzzy
1522
  msgid "The text to display above the interface"
1523
- msgstr "Il testo che se mostrará sopra l'interfaccia del Contatore"
1524
 
1525
  #: ../admin/like_buttons.php:268
1526
  #: ../admin/like_buttons.php:488
1527
- #, fuzzy
1528
  msgid "Select and rearrange providers"
1529
- msgstr "Selezionare e riorganizzare i fornitori."
1530
 
1531
  #: ../admin/like_buttons.php:312
1532
  #: ../admin/like_buttons.php:531
1533
- #, fuzzy
1534
  msgid "Select the providers for interface. Drag them to rearrange."
1535
- msgstr "Selezziona i fornitori per l'interfaccia del Contatore. Trascinali per riorganizzarli. "
1536
 
1537
  #: ../admin/like_buttons.php:334
1538
  #: ../admin/like_buttons.php:570
1539
- #, fuzzy
1540
  msgid "Horizontal alignment of the interface"
1541
- msgstr "Allineamento orizzontale dell'interfaccia del Contatore"
1542
 
1543
  #: ../admin/like_buttons.php:355
1544
- #, fuzzy
1545
  msgid "Specify position of the interface with respect to the content"
1546
- msgstr "Specificare la posizione dell'interfaccia del Contatore al rispetto del contenuto"
1547
 
1548
  #: ../admin/like_buttons.php:363
1549
  #: ../admin/like_buttons.php:636
1550
- #, fuzzy
1551
  msgid "Interface location"
1552
- msgstr "Posizione del Contatore"
1553
 
1554
  #: ../admin/like_buttons.php:373
1555
  #: ../admin/like_buttons.php:646
1556
  msgid "Excerpts"
1557
- msgstr "Estrazioni"
1558
 
1559
  #: ../admin/like_buttons.php:429
1560
- #, fuzzy
1561
  msgid "Specify the pages where you want to enable interface"
1562
- msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia del contatore"
1563
 
1564
  #: ../admin/like_buttons.php:439
1565
- #, fuzzy
1566
  msgid "Vertical (Floating) like buttons Options"
1567
- msgstr "Opzioni dell'interfaccia verticale (flottante) del Contatore"
1568
 
1569
  #: ../admin/like_buttons.php:445
1570
- #, fuzzy
1571
  msgid "Enable vertical (floating) like buttons"
1572
- msgstr "Abilitare l'interfaccia verticale (flottante) del contatore"
1573
 
1574
  #: ../admin/like_buttons.php:455
1575
- #, fuzzy
1576
  msgid "Master control to enable vertical (floating) counter widget"
1577
- msgstr "Controllo maestro per abilitare il widget contatore verticale (flottante) "
1578
 
1579
  #: ../admin/like_buttons.php:549
1580
- #, fuzzy
1581
  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>"
1582
- 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>"
1583
 
1584
  #: ../admin/like_buttons.php:589
1585
- #, fuzzy
1586
  msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left. Number can be negative too."
1587
- msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore alla destra, un numero piú piccolo lo muove alla sinistra."
1588
 
1589
  #: ../admin/like_buttons.php:609
1590
- #, fuzzy
1591
  msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right. Number can be negative too."
1592
- msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore alla sinistra, un numero piú piccolo lo muove alla destra."
1593
 
1594
  #: ../admin/like_buttons.php:628
1595
- #, fuzzy
1596
  msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1597
  msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore verso il basso, un numero piú piccolo lo muove all'alto."
1598
 
1599
  #: ../admin/like_buttons.php:678
1600
- #, fuzzy
1601
  msgid "Specify the pages where you want to enable vertical interface"
1602
- msgstr "Specifica le pagine dove vuoi abilitare l'interfaccia del Contatore verticale"
1603
 
1604
  #: ../admin/like_buttons.php:686
1605
  msgid "Hide like buttons on mobile devices"
1606
- msgstr "Hide come i pulsanti su dispositivi mobili"
1607
 
1608
  #: ../admin/like_buttons.php:696
1609
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
1610
- msgstr "Se attivato, i pulsanti come verticali non appariranno sui dispositivi mobili"
1611
 
1612
  #: ../admin/like_buttons.php:714
1613
- #, fuzzy
1614
  msgid "Like Buttons Shortcode & Widget"
1615
- msgstr "Codice Corto & Widget"
1616
 
1617
  #: ../inc/shortcode.php:245
1618
- #, fuzzy
1619
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1620
- msgstr "Győződjön meg arról, Szociális Login engedélyezve van az \"Super Socializer > Social Login\""
1621
 
1622
  #: ../inc/social_sharing.php:596
1623
  msgid "Invalid request"
1624
- msgstr "Domanda invalida"
1625
 
1626
  #: ../inc/social_sharing.php:603
1627
  msgid "Providers not selected"
1628
- msgstr "Fornitori non selezionati"
1629
 
1630
  #: ../inc/widget.php:11
1631
  msgid "Super Socializer - Login"
1632
- msgstr "Super Socializzatore - Accesso"
1633
 
1634
  #: ../inc/widget.php:13
1635
  msgid "Let your website users login/register using their favorite Social ID Provider, such as Facebook, Twitter, Google+, LinkedIn"
1636
- msgstr "Permetti agli utenti del tuo sito web di accedere/registrarse usando i loro Fornitori di ID Sociale favoriti, come Facebook, Twitter, Goolge+, LinkedIn"
1637
 
1638
  #: ../inc/widget.php:47
1639
  msgid "Log Out"
1640
- msgstr "Chiudere la sessione"
1641
 
1642
  #: ../inc/widget.php:78
1643
  #, fuzzy
1644
  msgid "Make sure Social Login is enabled at \"Super Socializer > Social Login\" page."
1645
- msgstr "Győződjön meg arról, Szociális Login engedélyezve van az \"Super Socializer > Social Login\""
1646
 
1647
  #: ../inc/widget.php:79
1648
  #: ../inc/widget.php:219
@@ -1660,7 +1571,7 @@ msgstr "Prima del contenuto del widget:"
1660
  #: ../inc/widget.php:235
1661
  #: ../inc/widget.php:536
1662
  msgid "After widget content:"
1663
- msgstr "Dopo del contenuto del widget:"
1664
 
1665
  #: ../inc/widget.php:86
1666
  #: ../inc/widget.php:237
@@ -1671,26 +1582,23 @@ msgid "Hide for logged in users:"
1671
  msgstr "Nascondere per gli utenti loggati:"
1672
 
1673
  #: ../inc/widget.php:105
1674
- #, fuzzy
1675
  msgid "Horizontal sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
1676
- msgstr "Widget orizzontale di condivisione. Lascia condividire gli utenti del tuo sito web contenuti nelle reti sociali populari come Facebook, Twitter, Tumblr, Google+ e molti in piú "
1677
 
1678
  #: ../inc/widget.php:218
1679
  #, fuzzy
1680
  msgid "Make sure \"Horizontal Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
1681
- msgstr "Győződjön meg arról, \"horizontális szociális Sharing\" engedélyezve az \"Super Socializer > Social Sharing\" oldalon."
1682
 
1683
  #: ../inc/widget.php:221
1684
  #: ../inc/widget.php:370
1685
- #, fuzzy
1686
  msgid "Show individual share counts:"
1687
- msgstr "Mostra la qunatitá di condivisioni"
1688
 
1689
  #: ../inc/widget.php:223
1690
  #: ../inc/widget.php:372
1691
- #, fuzzy
1692
  msgid "Show total shares:"
1693
- msgstr "Mostra la qunatitá di condivisioni"
1694
 
1695
  #: ../inc/widget.php:225
1696
  #: ../inc/widget.php:374
@@ -1708,12 +1616,12 @@ msgstr "selezionare"
1708
 
1709
  #: ../inc/widget.php:256
1710
  msgid "Vertical floating sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
1711
- msgstr "Widget verticale flottante di condivisione. Lascia condividire gli utenti del tuo sito web conenuti nelle reti popolari come Facebook, Twitter, Tumblr, Google+, e molti in piú"
1712
 
1713
  #: ../inc/widget.php:369
1714
  #, fuzzy
1715
  msgid "Make sure \"Vertical Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
1716
- msgstr "Győződjön meg arról, \"Vertical társadalmi megosztás\" engedélyezve az \"Super Socializer > Social Sharing\" oldalon."
1717
 
1718
  #: ../inc/widget.php:382
1719
  #: ../inc/widget.php:669
@@ -1722,46 +1630,40 @@ msgstr "Allineamento"
1722
 
1723
  #: ../inc/widget.php:388
1724
  #: ../inc/widget.php:675
1725
- #, fuzzy
1726
  msgid "Left Offset"
1727
- msgstr "Compensazione a sinistra"
1728
 
1729
  #: ../inc/widget.php:392
1730
  #: ../inc/widget.php:679
1731
- #, fuzzy
1732
  msgid "Right Offset"
1733
- msgstr "Compensazione a destra"
1734
 
1735
  #: ../inc/widget.php:395
1736
  #: ../inc/widget.php:682
1737
- #, fuzzy
1738
  msgid "Top Offset"
1739
- msgstr "Compensazione superiore"
1740
 
1741
  #: ../inc/widget.php:420
1742
- #, fuzzy
1743
  msgid "Horizontal like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1744
- msgstr "Widget contatore orizzontale. Lascia condividire/piacere agli utenti del tuo sito web contenuti nelle reti popolari come Facebook, Twitter, Tumblr, Google+, e molti in piú"
1745
 
1746
  #: ../inc/widget.php:523
1747
  msgid "Make sure \"Horizontal Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
1748
- msgstr "Győződjön meg arról, \"Vízszintes Like gombok\" engedélyezve az \"Super Socializer > Like gombok\" oldalon."
1749
 
1750
  #: ../inc/widget.php:557
1751
- #, fuzzy
1752
  msgid "Vertical floating like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1753
- 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ú"
1754
 
1755
  #: ../inc/widget.php:660
1756
  msgid "Make sure \"Vertical Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
1757
- msgstr "Győződjön meg arról, \"Vertical Like gombok\" engedélyezve az \"Super Socializer > Like gombok\" oldalon."
1758
-
1759
- #~ msgid "Options saved successfully"
1760
- #~ msgstr "Opzioni salvate con successo"
1761
 
1762
- #, fuzzy
1763
  #~ msgid "Better"
1764
- #~ msgstr "Twitter"
 
 
 
1765
 
1766
  #~ msgid "You can see the plugin in action at following link"
1767
  #~ msgstr "Puoi vedere il plugin in azione seguendo il successivo collegamento"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-09-17 03:26+0530\n"
6
+ "PO-Revision-Date: 2015-09-17 03:26+0530\n"
7
  "Last-Translator: The Champ <lordofthechamps@gmail.com>\n"
8
+ "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Generator: Poedit 1.8.1\n"
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
19
  #: ../super_socializer.php:224
20
  #, php-format
21
  msgid "Enter exactly the following url in <strong>Website</strong> and <strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
22
+ msgstr "Immettere esattamente il seguente URL nelle opzioni <strong>Website</ strong> e <strong>Callback URL </ strong> della vostra applicazione Twitter (vedere punto 3 %s)"
23
 
24
  #: ../super_socializer.php:227
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"
27
 
28
  #: ../super_socializer.php:397
29
  msgid "Please verify your email address to login."
30
+ msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
31
 
32
  #: ../super_socializer.php:397
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 al tuo account"
35
 
36
  #: ../super_socializer.php:401
37
  msgid "Notification"
38
+ msgstr "Notifiche"
39
 
40
  #: ../super_socializer.php:420
41
  #: ../admin/social_login.php:511
42
  msgid "Email required"
43
+ msgstr "Email Obbligatoria"
44
 
45
  #: ../super_socializer.php:423
46
  msgid "Please check your email inbox to complete the registration."
47
+ msgstr "Per favore, per completare la registrazione, controlla la tua casella di posta elettronica."
48
 
49
  #: ../super_socializer.php:436
50
  msgid "Follow steps 11 and 12 at GooglePlus app configuration page, about to open"
51
+ msgstr "Seguire i passaggi 11 e 12 nella pagina di configurazione app GooglePlus, per aprire"
52
 
53
  #: ../super_socializer.php:513
54
  msgid "Leave a reply"
55
  msgstr "Lascia un commento"
56
 
57
  #: ../super_socializer.php:604
 
58
  msgid "Super Socializer - Social Avatar"
59
+ msgstr "Super Socializer - Social Avatar"
60
 
61
  #: ../super_socializer.php:607
62
  msgid "Small Avatar Url"
63
+ msgstr "Url Avatar Piccolo"
64
 
65
  #: ../super_socializer.php:612
 
66
  msgid "Large Avatar Url"
67
+ msgstr "URL Avatar Grande"
68
 
69
  #: ../super_socializer.php:645
70
  msgid "Email you entered is already registered or invalid"
71
+ msgstr "La email inserita è già registrata o non è valida"
72
 
73
  #: ../super_socializer.php:649
74
  msgid "Please enter a valid email address. You might be required to verify it"
75
+ msgstr "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta una verifica"
76
 
77
  #: ../helper.php:8
78
  #, fuzzy
79
  msgid "Settings saved"
80
+ msgstr "Configurazioni"
81
 
82
  #: ../helper.php:8
83
  msgid "Dismiss this notice"
84
+ msgstr ""
85
 
86
  #: ../helper.php:150
87
  msgid "Click to show help"
88
+ msgstr "Clicca per vedere aiuto"
89
 
90
  #: ../helper.php:150
91
  msgid "Click to hide help"
93
 
94
  #: ../helper.php:190
95
  msgid "Settings"
96
+ msgstr "Configurazioni"
97
 
98
+ #: ../helper.php:514
 
99
  msgid "Account linked successfully"
100
+ msgstr "Account collegato correttamente"
101
 
102
+ #: ../helper.php:518
103
  msgid "Account already exists or linked"
104
+ msgstr "Account esistente o già collegato"
105
 
106
+ #: ../helper.php:527
 
107
  msgid "You are already connected with"
108
+ msgstr "Si è già connessi con"
109
 
110
+ #: ../helper.php:527
111
  msgid "as primary social network"
112
  msgstr "come rete sociale primaria"
113
 
114
+ #: ../helper.php:542
115
  msgid "Link your social account to login to your account at this website"
116
+ msgstr "Collega il tuo social account per accedere al tuo account su questo sito"
117
 
118
+ #: ../helper.php:579
119
  msgid "Currently"
120
+ msgstr "Attualmente"
121
 
122
+ #: ../helper.php:579
123
  msgid "Remove"
124
  msgstr "rimuovere"
125
 
126
+ #: ../helper.php:680
127
  msgid "Disable Horizontal Social Sharing on this "
128
+ msgstr "Disabilitare Horizontal Social Sharing in questo"
129
 
130
+ #: ../helper.php:685
131
  msgid "Disable Vertical Social Sharing on this "
132
+ msgstr "Disabilitare Vertical Social Sharing in questo"
133
 
134
+ #: ../helper.php:690
 
135
  msgid "Disable Horizontal like buttons on this "
136
+ msgstr "Disabilitare Horizontal like buttons in questo"
137
 
138
+ #: ../helper.php:695
 
139
  msgid "Disable Vertical like buttons on this "
140
+ msgstr "Disabilitare Vertical like buttons in questo"
141
 
142
+ #: ../helper.php:700
 
143
  msgid "Disable Social Commenting on this "
144
+ msgstr "Disabilitare Social Commenting in questo"
145
 
146
+ #: ../helper.php:709
 
147
  msgid "Horizontal sharing"
148
+ msgstr "Horizontal Sharing"
149
 
150
+ #: ../helper.php:715
151
+ #: ../helper.php:734
 
152
  msgid "Starting share count for "
153
+ msgstr "Avvio share count per"
154
 
155
+ #: ../helper.php:728
 
156
  msgid "Vertical sharing"
157
+ msgstr "Vertical sharing"
158
 
159
  #: ../admin/help.php:4
160
  msgid "About"
161
+ msgstr "Chi Siamo"
162
 
163
  #: ../admin/help.php:4
164
  msgid "Version"
170
 
171
  #: ../admin/help.php:7
172
  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"
173
+ msgstr "Siamo un team creativo con idee uniche in mente e servizio nel cuore. Amiamo quello che facciamo. Per maggiori informazioni unisciti a noi su"
174
 
175
  #: ../admin/help.php:18
176
  msgid "Plugin Demo"
182
 
183
  #: ../admin/help.php:29
184
  msgid "Need Help?"
185
+ msgstr "Hai Bisogno di Aiuto?"
186
 
187
  #: ../admin/help.php:31
 
188
  msgid "If you <strong>have any query</strong>, need help regarding <strong>plugin setup</strong>, want <strong>custom features</strong> in the plugin or <strong>have any suggestion</strong> to improve the plugin, just drop an email at <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
189
+ msgstr "Se hai suggerimenti, domade. Se vuoi funzioni personalizzate per il plugin, posso farlo per te. Basta scrivermi via email a <a href=\"mailto:support@heateor.com\">support@heateor.com</a>"
190
 
191
  #: ../admin/help.php:36
 
192
  msgid "Support Us"
193
+ msgstr "Supportaci"
194
 
195
  #: ../admin/help.php:39
196
  #: ../admin/help.php:42
199
  #: ../admin/help.php:45
200
  #: ../admin/help.php:46
201
  msgid "Rate 5-star"
202
+ msgstr "Rate 5-star"
203
 
204
  #: ../admin/help.php:54
205
  #: ../admin/social_sharing.php:437
206
+ #: ../admin/social_sharing.php:812
207
  #: ../admin/social_login.php:46
208
  msgid "Facebook"
209
  msgstr "Facebook"
215
  #: ../admin/like_buttons.php:11
216
  #: ../admin/like_buttons.php:19
217
  msgid "Basic Configuration"
218
+ msgstr "Configurazione di Base"
219
 
220
  #: ../admin/social_sharing.php:12
 
221
  msgid "Sharing Interface"
222
+ msgstr "Sharing Interface"
223
 
224
  #: ../admin/social_sharing.php:13
 
225
  msgid "Sharing Options"
226
+ msgstr "Opzioni Condivisione"
227
 
228
  #: ../admin/social_sharing.php:14
229
+ #: ../admin/social_sharing.php:1205
230
  #: ../admin/social_login.php:11
231
  #: ../admin/social_login.php:714
232
  #: ../admin/like_buttons.php:13
233
  #: ../admin/like_buttons.php:712
234
  msgid "Shortcode & Widget"
235
+ msgstr "Shortcode & Widget"
236
 
237
  #: ../admin/social_sharing.php:15
238
  msgid "Troubleshooter"
239
+ msgstr "Risoluzione dei problemi"
240
 
241
  #: ../admin/social_sharing.php:16
242
+ #: ../admin/social_sharing.php:1236
243
  #: ../admin/social_commenting.php:12
244
  #: ../admin/social_commenting.php:427
245
  msgid "FAQ"
247
 
248
  #: ../admin/social_sharing.php:28
249
  msgid "Enable Social Sharing"
250
+ msgstr "Abilitare Social Sharing"
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 "Master control per la Social Sharing. Dev'essere abilitato per abilitare le funzionalitá Social Sharing"
255
 
256
  #: ../admin/social_sharing.php:46
257
  msgid "Delete all the options on plugin deletion"
258
+ msgstr "Eliminare tutte le opzioni quando si cancella il plugin"
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 "Se questa opzione è abilitata, le opzioni saranno cancellate quando si cancella il plugin e, nel caso di una nuova istallazione, si dovranno riconfigurare di nuovo"
263
 
264
  #: ../admin/social_sharing.php:71
 
265
  msgid "Horizontal interface options"
266
+ msgstr "Opzioni Horizontal interface"
267
 
268
  #: ../admin/social_sharing.php:77
269
  #: ../admin/social_sharing.php:155
278
  #: ../admin/social_sharing.php:87
279
  #: ../admin/social_sharing.php:165
280
  msgid "Square"
281
+ msgstr ""
282
 
283
  #: ../admin/social_sharing.php:94
284
  #: ../admin/social_sharing.php:172
 
285
  msgid "Shape of the sharing icons"
286
+ msgstr "Forma delle icone di sharing"
287
 
288
  #: ../admin/social_sharing.php:102
289
  #: ../admin/social_sharing.php:180
292
 
293
  #: ../admin/social_sharing.php:120
294
  #: ../admin/social_sharing.php:198
 
295
  msgid "Size of the sharing icons"
296
+ msgstr "Dimensione delle icone condivise"
297
 
298
  #: ../admin/social_sharing.php:127
299
  #: ../admin/social_sharing.php:205
300
  msgid "Icon Preview"
301
+ msgstr "Anteprima Icona"
302
 
303
  #: ../admin/social_sharing.php:141
304
  #: ../admin/social_sharing.php:219
305
  msgid "Do not forget to save the configuration after making changes by clicking the save button below"
306
+ msgstr "Dopo aver apportato le modifiche, non dimenticate di salvare la configurazione, fare clic sul pulsante Salva in basso"
307
 
308
  #: ../admin/social_sharing.php:149
 
309
  msgid "Vertical interface options"
310
+ msgstr "Opzioni Vertical interface"
311
 
312
  #: ../admin/social_sharing.php:233
313
  msgid "Modernizr"
315
 
316
  #: ../admin/social_sharing.php:239
317
  msgid "Do not load Modernizr JS"
318
+ msgstr "Non usare Modernizr JS"
319
 
320
  #: ../admin/social_sharing.php:249
321
  msgid "If you find the plugin breaking your theme, you can try enabling this option"
322
+ msgstr "Se il plugin compromette il vostro tema, si può provare ad abilitare questa opzione"
323
 
324
  #: ../admin/social_sharing.php:258
325
  #: ../admin/like_buttons.php:51
 
326
  msgid "Url shortener"
327
+ msgstr "Url shortener"
328
 
329
  #: ../admin/social_sharing.php:264
330
  msgid "Use shortlinks already installed"
333
  #: ../admin/social_sharing.php:274
334
  #: ../admin/like_buttons.php:67
335
  msgid "Allows for shortened URLs to be used when sharing content if a shortening plugin is installed"
336
+ msgstr "Permette di utilizzare URL abbreviati quando c'è condivisione di contenuti e se è installato uno shortening plugin"
337
 
338
  #: ../admin/social_sharing.php:282
339
  msgid "Enable bit.ly url shortener for sharing"
340
+ msgstr "Abilitare bit.ly url shortener per la condivisone sociale"
341
 
342
  #: ../admin/social_sharing.php:292
343
  #: ../admin/like_buttons.php:85
 
344
  msgid "Master control to enable bit.ly url shortening for sharing"
345
+ msgstr "Master control per abilitare bit.ly url shortening per la condivisione"
346
 
347
  #: ../admin/social_sharing.php:300
348
  #: ../admin/like_buttons.php:93
349
  msgid "bit.ly username"
350
+ msgstr "bit.ly username"
351
 
352
  #: ../admin/social_sharing.php:310
353
  #: ../admin/like_buttons.php:103
354
  #, php-format
355
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get bit.ly username"
356
+ msgstr "Accedete al vostro account bit.ly e andate su <a href=\"%s\" target=\"_blank\">questo link</a> per ottenere il vostro username"
357
 
358
  #: ../admin/social_sharing.php:319
359
  #: ../admin/like_buttons.php:112
 
360
  msgid "bit.ly API Key"
361
+ msgstr "bit.ly API Key"
362
 
363
  #: ../admin/social_sharing.php:329
364
  #: ../admin/like_buttons.php:122
365
+ #, php-format
366
  msgid "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank\">this link</a> to get your API key"
367
+ msgstr "Accedete al vostro account bit.ly e navigate su<a href=\"%s\" target=\"_blank\">questo link</a> per ottenere la vostra API key"
368
 
369
  #: ../admin/social_sharing.php:339
370
  msgid "Twitter username in sharing"
371
+ msgstr "Twitter usernamer in sharing"
372
 
373
  #: ../admin/social_sharing.php:345
374
  msgid "Twitter username (without @)"
375
+ msgstr "Twitter username (senza @)"
376
 
377
  #: ../admin/social_sharing.php:355
378
  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."
379
+ msgstr "La username fornita viene aggiunta dopo il contenuto condiviso come \"via @USERNAME\". Lasciare vuoto se non si desidera alcuna username."
380
 
381
  #: ../admin/social_sharing.php:365
382
  msgid "Horizontal Sharing Interface Options"
383
+ msgstr "Opzioni Horizontal Sharing Interface"
384
 
385
  #: ../admin/social_sharing.php:371
386
  msgid "Enable horizontal sharing interface"
387
+ msgstr "Abilitare horizontal sharing interface"
388
 
389
  #: ../admin/social_sharing.php:381
390
  msgid "Master control to enable horizontal sharing"
391
+ msgstr "Master control per abilitare horizontal sharing"
392
 
393
  #: ../admin/social_sharing.php:391
394
+ #: ../admin/social_sharing.php:784
395
  #: ../admin/like_buttons.php:227
396
  #: ../admin/like_buttons.php:465
397
  msgid "Target Url"
398
  msgstr "URL di destinazione"
399
 
400
  #: ../admin/social_sharing.php:395
401
+ #: ../admin/social_sharing.php:788
402
  #: ../admin/like_buttons.php:231
403
  #: ../admin/like_buttons.php:469
404
  msgid "Url of the webpage where icons are located (default)"
405
  msgstr "URL della pagina web in cui si trovano le icone (di default)"
406
 
407
  #: ../admin/social_sharing.php:397
408
+ #: ../admin/social_sharing.php:790
409
  #: ../admin/like_buttons.php:233
410
  #: ../admin/like_buttons.php:471
411
  msgid "Url of the homepage of your website"
412
  msgstr "Url della homepage del tuo sito web"
413
 
414
  #: ../admin/social_sharing.php:399
415
+ #: ../admin/social_sharing.php:792
416
  #: ../admin/like_buttons.php:235
417
  #: ../admin/like_buttons.php:473
 
418
  msgid "Custom url"
419
  msgstr "Url personalizzata"
420
 
421
  #: ../admin/social_sharing.php:406
422
+ #: ../admin/social_sharing.php:799
423
  msgid "Url to share"
424
  msgstr "Url per condividere"
425
 
431
 
432
  #: ../admin/social_sharing.php:424
433
  msgid "The text to display above the sharing interface"
434
+ msgstr "Il testo da mostrare sopra l'interfaccia di condivisione"
435
 
436
  #: ../admin/social_sharing.php:432
437
+ #: ../admin/social_sharing.php:807
438
  #: ../admin/social_login.php:41
439
  msgid "Select providers"
440
+ msgstr "Scelta Providers"
441
 
442
  #: ../admin/social_sharing.php:442
443
+ #: ../admin/social_sharing.php:817
444
  #: ../admin/social_login.php:50
445
  msgid "Twitter"
446
  msgstr "Twitter"
447
 
448
  #: ../admin/social_sharing.php:447
449
+ #: ../admin/social_sharing.php:822
450
  #: ../admin/social_login.php:54
451
  msgid "LinkedIn"
452
  msgstr "LinkedIn"
453
 
454
  #: ../admin/social_sharing.php:452
455
+ #: ../admin/social_sharing.php:827
456
  #: ../admin/social_login.php:58
457
  msgid "Google+"
458
  msgstr "Google+"
459
 
460
  #: ../admin/social_sharing.php:457
461
+ #: ../admin/social_sharing.php:832
462
  msgid "Print"
463
+ msgstr "Stampa"
464
 
465
  #: ../admin/social_sharing.php:462
466
+ #: ../admin/social_sharing.php:837
467
  msgid "Email"
468
  msgstr "Email"
469
 
470
  #: ../admin/social_sharing.php:467
471
+ #: ../admin/social_sharing.php:842
472
  msgid "Yahoo"
473
  msgstr "Yahoo"
474
 
475
  #: ../admin/social_sharing.php:472
476
+ #: ../admin/social_sharing.php:847
477
  msgid "Reddit"
478
  msgstr "Reddit"
479
 
480
  #: ../admin/social_sharing.php:477
481
+ #: ../admin/social_sharing.php:852
482
  msgid "Digg"
483
  msgstr "Digg"
484
 
485
  #: ../admin/social_sharing.php:482
486
+ #: ../admin/social_sharing.php:857
487
  msgid "Delicious"
488
  msgstr "Delicious"
489
 
490
  #: ../admin/social_sharing.php:487
491
+ #: ../admin/social_sharing.php:862
492
  msgid "StumbleUpon"
493
  msgstr "StumbleUpon"
494
 
495
  #: ../admin/social_sharing.php:492
496
+ #: ../admin/social_sharing.php:867
497
  msgid "Float it"
498
  msgstr "Float it"
499
 
500
  #: ../admin/social_sharing.php:497
501
+ #: ../admin/social_sharing.php:872
502
  msgid "Tumblr"
503
  msgstr "Tumblr"
504
 
505
  #: ../admin/social_sharing.php:502
506
+ #: ../admin/social_sharing.php:877
507
  #: ../admin/social_login.php:62
508
  msgid "Vkontakte"
509
  msgstr "Vkontakte"
510
 
511
  #: ../admin/social_sharing.php:507
512
+ #: ../admin/social_sharing.php:882
513
  msgid "Pinterest"
514
  msgstr "Pinterest"
515
 
516
  #: ../admin/social_sharing.php:512
517
+ #: ../admin/social_sharing.php:887
518
  #: ../admin/social_login.php:70
519
  msgid "Xing"
520
  msgstr ""
521
 
522
  #: ../admin/social_sharing.php:517
523
+ #: ../admin/social_sharing.php:892
524
  msgid "Whatsapp"
525
  msgstr ""
526
 
527
  #: ../admin/social_sharing.php:522
528
+ #: ../admin/social_sharing.php:897
529
  msgid "Yummly"
530
  msgstr ""
531
 
532
  #: ../admin/social_sharing.php:527
533
+ #: ../admin/social_sharing.php:902
534
  msgid "Buffer"
535
  msgstr ""
536
 
537
  #: ../admin/social_sharing.php:535
538
+ #: ../admin/social_sharing.php:910
539
  msgid "Select the providers for sharing interface"
540
+ msgstr "Seleziona i provider per la sharing interface"
541
 
542
  #: ../admin/social_sharing.php:543
543
+ #: ../admin/social_sharing.php:918
544
  msgid "Rearrange icons"
545
+ msgstr "Riorganizzare le icone"
546
 
547
+ #: ../admin/social_sharing.php:575
548
+ #: ../admin/social_sharing.php:950
549
  msgid "Drag the icons to rearrange in desired order"
550
+ msgstr "Trascina le icone per riordinare"
551
 
552
+ #: ../admin/social_sharing.php:583
553
+ #: ../admin/social_sharing.php:976
554
  #: ../admin/like_buttons.php:320
555
  #: ../admin/like_buttons.php:557
 
556
  msgid "Horizontal alignment"
557
  msgstr "Allineamento orizzontale"
558
 
559
+ #: ../admin/social_sharing.php:587
560
+ #: ../admin/social_sharing.php:980
561
  #: ../admin/like_buttons.php:324
562
  #: ../admin/like_buttons.php:561
563
  msgid "Left"
564
  msgstr "Sinistra"
565
 
566
+ #: ../admin/social_sharing.php:588
567
  #: ../admin/like_buttons.php:325
568
  msgid "Center"
569
  msgstr "centro"
570
 
571
+ #: ../admin/social_sharing.php:589
572
+ #: ../admin/social_sharing.php:981
573
  #: ../admin/like_buttons.php:326
574
  #: ../admin/like_buttons.php:562
 
575
  msgid "Right"
576
  msgstr "Destra"
577
 
578
+ #: ../admin/social_sharing.php:597
579
+ #: ../admin/social_sharing.php:989
 
580
  msgid "Horizontal alignment of the sharing interface"
581
+ msgstr "Allineamento orizzontale della sharing interface"
582
 
583
+ #: ../admin/social_sharing.php:605
584
  #: ../admin/like_buttons.php:342
585
  msgid "Position with respect to content"
586
+ msgstr "Posizione rispetto al contenuto"
587
 
588
+ #: ../admin/social_sharing.php:609
589
  #: ../admin/like_buttons.php:346
590
  msgid "Top of the content"
591
  msgstr "Parte superiore del contenuto"
592
 
593
+ #: ../admin/social_sharing.php:611
594
  #: ../admin/like_buttons.php:348
595
  msgid "Bottom of the content"
596
  msgstr "Parte inferiore del contenuto"
597
 
598
+ #: ../admin/social_sharing.php:618
599
  msgid "Specify position of the sharing interface with respect to the content"
600
+ msgstr "Specifica la posizione dell'interfaccia rispetto al contenuto"
601
 
602
+ #: ../admin/social_sharing.php:626
603
+ #: ../admin/social_sharing.php:1055
604
  msgid "Sharing location"
605
+ msgstr "Sharing location"
606
 
607
+ #: ../admin/social_sharing.php:630
608
+ #: ../admin/social_sharing.php:1059
609
  #: ../admin/social_login.php:574
610
  #: ../admin/social_login.php:604
611
  #: ../admin/like_buttons.php:367
612
  #: ../admin/like_buttons.php:640
613
  msgid "Homepage"
614
+ msgstr "Homepage"
615
 
616
+ #: ../admin/social_sharing.php:632
617
+ #: ../admin/social_sharing.php:1061
618
  #: ../admin/like_buttons.php:369
619
  #: ../admin/like_buttons.php:642
620
  msgid "Posts"
621
+ msgstr "Post"
622
 
623
+ #: ../admin/social_sharing.php:634
624
+ #: ../admin/social_sharing.php:1063
625
  #: ../admin/like_buttons.php:371
626
  #: ../admin/like_buttons.php:644
627
  msgid "Pages"
628
  msgstr "Pagine"
629
 
630
+ #: ../admin/social_sharing.php:636
631
+ #: ../admin/social_sharing.php:1065
632
  msgid "Excerpts (at Homepage)"
633
+ msgstr ""
634
 
635
+ #: ../admin/social_sharing.php:638
636
+ #: ../admin/social_sharing.php:1067
637
  #: ../admin/like_buttons.php:375
638
  #: ../admin/like_buttons.php:648
639
  msgid "Category Archives"
640
  msgstr "Archivi di categorie"
641
 
642
+ #: ../admin/social_sharing.php:640
643
+ #: ../admin/social_sharing.php:1069
644
  #: ../admin/like_buttons.php:377
645
  #: ../admin/like_buttons.php:650
646
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
647
+ msgstr "Arch. Pagine (Categoria., Tag, Autore o Pagine basate su data)"
648
 
649
+ #: ../admin/social_sharing.php:656
650
  #: ../admin/like_buttons.php:393
651
  msgid "BuddyPress activity and groups"
652
  msgstr "Attività BuddyPress e gruppi"
653
 
654
+ #: ../admin/social_sharing.php:662
655
+ #: ../admin/social_sharing.php:1084
656
  #: ../admin/like_buttons.php:400
657
  #: ../admin/like_buttons.php:665
658
  msgid "BBPress forum"
659
  msgstr ""
660
 
661
+ #: ../admin/social_sharing.php:665
662
+ #: ../admin/social_sharing.php:1087
663
  #: ../admin/like_buttons.php:403
664
  #: ../admin/like_buttons.php:668
665
  msgid "BBPress topic"
666
+ msgstr "Argomento BBPress"
667
 
668
+ #: ../admin/social_sharing.php:668
669
  #: ../admin/like_buttons.php:406
670
  msgid "BBPress reply"
671
+ msgstr "Risposta BBPress"
672
 
673
+ #: ../admin/social_sharing.php:675
674
  #: ../admin/like_buttons.php:412
675
  msgid "After individual product at WooCommerce Shop page"
676
+ msgstr "Dopo singolo prodotto nella pagina Shop WooCommerce"
677
 
678
+ #: ../admin/social_sharing.php:678
679
  #: ../admin/like_buttons.php:415
680
  msgid "WooCommerce Product Page"
681
+ msgstr "WooCommerce Pagina Prodotto"
682
 
683
+ #: ../admin/social_sharing.php:681
684
  #: ../admin/like_buttons.php:418
685
  msgid "WooCommerce Thankyou Page"
686
+ msgstr "WooCommerce Pagina Thankyou"
687
 
688
+ #: ../admin/social_sharing.php:692
689
  msgid "Specify the pages where you want to enable Sharing interface"
690
+ msgstr "Specifica le pagine dove vuoi abilitare la Sharing interface"
691
 
692
+ #: ../admin/social_sharing.php:700
693
+ #: ../admin/social_sharing.php:1105
694
  msgid "Show share counts"
695
+ msgstr "Mostra quantitá di condivisioni"
696
 
697
+ #: ../admin/social_sharing.php:710
698
+ #: ../admin/social_sharing.php:1115
699
  msgid "If enabled, share counts are displayed above sharing icons."
700
+ msgstr "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato sopra le icone condivise"
701
 
702
+ #: ../admin/social_sharing.php:719
703
+ #: ../admin/social_sharing.php:1124
 
704
  msgid "Show total shares"
705
+ msgstr "Mostra totale condivisioni"
706
 
707
+ #: ../admin/social_sharing.php:729
708
+ #: ../admin/social_sharing.php:1134
 
709
  msgid "If enabled, total shares will be displayed with sharing icons"
710
+ msgstr "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato con le icone condivise"
711
 
712
+ #: ../admin/social_sharing.php:738
713
+ #: ../admin/social_sharing.php:1143
 
714
  msgid "Enable 'More' icon"
715
+ msgstr "Abilitare icona 'Altro'"
716
 
717
+ #: ../admin/social_sharing.php:748
718
+ #: ../admin/social_sharing.php:1153
719
  msgid "If enabled, \"More\" icon will be displayed after selected sharing icons which shows additional sharing networks in popup"
720
+ msgstr "Se questa opzione è abilitata, l'icona \"Altro\" sarà visualizzata dopo le sharing icon selezionate per mostrare in un popup sharing networks aggiuntivi"
721
 
722
+ #: ../admin/social_sharing.php:758
723
  msgid "Vertical (Floating) Sharing Interface Options"
724
  msgstr "Opzioni verticali (fluotante) dell'interfaccia di condivisione"
725
 
726
+ #: ../admin/social_sharing.php:764
727
  msgid "Enable vertical (floating) sharing interface"
728
+ msgstr "Abilitare vertical (floating) sharing interface"
729
 
730
+ #: ../admin/social_sharing.php:774
731
  msgid "Master control to enable vertical (floating) sharing widget"
732
+ msgstr "Master control per abilitare il vertical (floating) sharing widget"
733
 
734
+ #: ../admin/social_sharing.php:958
735
  #: ../admin/like_buttons.php:539
736
  msgid "Background Color"
737
+ msgstr "Colore Background"
738
 
739
+ #: ../admin/social_sharing.php:968
740
  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>"
741
+ msgstr "Specifica il colore o il codice hex (esempio #cc78e0) per il background della sharing bar verticale. Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
742
 
743
+ #: ../admin/social_sharing.php:998
744
  #: ../admin/like_buttons.php:579
745
  msgid "Left offset"
746
+ msgstr "Left offset"
747
 
748
+ #: ../admin/social_sharing.php:1008
 
749
  msgid "Specify a number. Increase in number will shift sharing interface towards right and decrease will shift it towards left. Number can be negative too."
750
+ msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso destra e un numero minore lo muove verso sinistra. Il Numero può anche essere negativo."
751
 
752
+ #: ../admin/social_sharing.php:1018
753
  #: ../admin/like_buttons.php:599
 
754
  msgid "Right offset"
755
+ msgstr "Right offset"
756
 
757
+ #: ../admin/social_sharing.php:1028
 
758
  msgid "Specify a number. Increase in number will shift sharing interface towards left and decrease will shift it towards right. Number can be negative too."
759
+ msgstr "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione verso sinistra e un numero minore lo muove verso destra.Il Numero può anche essere negativo."
760
 
761
+ #: ../admin/social_sharing.php:1037
762
  #: ../admin/like_buttons.php:618
763
  msgid "Top offset"
764
+ msgstr "Top offset"
765
 
766
+ #: ../admin/social_sharing.php:1047
767
  msgid "Specify a number. Increase in number will shift sharing interface towards bottom and decrease will shift it towards top."
768
  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."
769
 
770
+ #: ../admin/social_sharing.php:1097
771
  msgid "Specify the pages where you want to enable vertical Sharing interface"
772
+ msgstr "Specifica le pagine dove vuoi abilitare la vertical Sharing interface"
773
 
774
+ #: ../admin/social_sharing.php:1161
775
  #, fuzzy
776
  msgid "Stick sharing bar horizontally at bottom on mobile devices"
777
+ msgstr "Nascondere la condivisione sui dispositivi mobili"
778
 
779
+ #: ../admin/social_sharing.php:1171
780
  #, fuzzy
781
  msgid "If enabled, vertical sharing interface will stick horizontally at bottom on mobile devices"
782
+ msgstr "Se questa opzione è abilitata, l'interfaccia di condivisione verticale non apparirà sui dispositivi mobili"
783
 
784
+ #: ../admin/social_sharing.php:1180
785
  msgid "Hide sharing on mobile devices"
786
+ msgstr "Nascondere la condivisione sui dispositivi mobili"
787
 
788
+ #: ../admin/social_sharing.php:1190
789
  msgid "If enabled, vertical sharing interface will not appear on mobile devices"
790
+ msgstr "Se questa opzione è abilitata, l'interfaccia di condivisione verticale non apparirà sui dispositivi mobili"
791
 
792
+ #: ../admin/social_sharing.php:1207
 
793
  msgid "Social Sharing Shortcode & Widget"
794
+ msgstr "Shortcode & Widget"
795
 
796
+ #: ../admin/social_sharing.php:1217
797
  msgid "Facebook Sharing Troubleshooter"
798
+ msgstr "Risoluzione dei problemi Facebook Sharing"
799
 
800
+ #: ../admin/social_sharing.php:1222
801
  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:"
802
+ msgstr "Se la condivisione di Facebook non funziona bene, fai un clic sul collegamento che segue e inserisci nell'area di testo la url del tuo sito web che ti ha dato i problemi (dove quindi la condivisione di Facebook non ha funzionato bene):"
803
 
804
+ #: ../admin/social_sharing.php:1238
805
  msgid "How can I show share counts of my website rather than of individual pages/posts?"
806
+ msgstr "Come posso mostrare conteggi del mio sito web, piuttosto che di singole pagine/post?"
807
 
808
+ #: ../admin/social_sharing.php:1239
 
809
  msgid "How can I disable sharing on particular page/post?"
810
+ msgstr "Come è possibile disattivare la condivisione di una pagina/post in particolare?"
811
 
812
+ #: ../admin/social_sharing.php:1240
813
  msgid "How can I specify minimum sharing count for sharing networks?"
814
+ msgstr "Come faccio a specificare il conteggio minimo di sharing per la condivisione di reti?"
815
 
816
+ #: ../admin/social_sharing.php:1250
817
  #: ../admin/social_commenting.php:438
818
  #: ../admin/social_login.php:726
819
  #: ../admin/like_buttons.php:723
821
  msgstr "Salvare le modifiche."
822
 
823
  #: ../admin/social_commenting.php:10
 
824
  msgid "Social Commenting"
825
+ msgstr "Social Commenting"
826
 
827
  #: ../admin/social_commenting.php:11
828
  #: ../admin/social_commenting.php:415
829
  msgid "Shortcode"
830
+ msgstr "Shortcode"
831
 
832
  #: ../admin/social_commenting.php:18
833
  #, fuzzy
834
  msgid "General Options"
835
+ msgstr "Opzioni Condivisione"
836
 
837
  #: ../admin/social_commenting.php:24
 
838
  msgid "Enable Social Commenting"
839
+ msgstr "Abilita Social Commenting"
840
 
841
  #: ../admin/social_commenting.php:34
 
842
  msgid "Master control to enable Social Commenting"
843
+ msgstr "Master control per abilitare Social Commenting"
844
 
845
  #: ../admin/social_commenting.php:42
846
  msgid "Order of tabs in commenting interface"
847
+ msgstr "Ordine delle schede nell'interfaccia commenti"
848
 
849
  #: ../admin/social_commenting.php:52
850
  msgid "Order of the tabs shown in social commenting interface. Defaults to wordpress,facebook,googleplus,disqus"
851
+ msgstr "Ordine delle schede mostrate nell'interfaccia commenti. Il valore predefinito è wordpress,facebook,googleplus,disqus"
852
 
853
  #: ../admin/social_commenting.php:60
854
  msgid "Comment area label"
855
+ msgstr "Etichetta Commento"
856
 
857
  #: ../admin/social_commenting.php:70
 
858
  msgid "Label for comment area"
859
+ msgstr "Etichetta per Area Commenti"
860
 
861
  #: ../admin/social_commenting.php:83
862
  #, fuzzy
863
  msgid "Enable Social Commenting at"
864
+ msgstr "Abilita Social Commenting"
865
 
866
  #: ../admin/social_commenting.php:102
867
  #, fuzzy
868
  msgid "Specify the page/post groups where you want to enable Social Commenting"
869
+ msgstr "Specifica le pagine in cui si desidera attivare l'interfaccia"
870
 
871
  #: ../admin/social_commenting.php:114
872
  msgid "Labels"
873
  msgstr "Etichette"
874
 
875
  #: ../admin/social_commenting.php:119
 
876
  msgid "Label for WordPress Commenting tab"
877
+ msgstr "Etichetta per WordPress Commenting"
878
 
879
  #: ../admin/social_commenting.php:128
 
880
  msgid "Label for Facebook Commenting tab"
881
+ msgstr "Etichetta per Facebook Commenting"
882
 
883
  #: ../admin/social_commenting.php:137
 
884
  msgid "Label for G+ Commenting tab"
885
+ msgstr "Etichetta per G+ Commenting"
886
 
887
  #: ../admin/social_commenting.php:146
888
  msgid "Label for Disqus Commenting tab"
889
+ msgstr "Etichetta per Disqus Commenting"
890
 
891
  #: ../admin/social_commenting.php:157
892
  msgid "Facebook Commenting Options"
893
+ msgstr "Opzioni Facebook Commenting"
894
 
895
  #: ../admin/social_commenting.php:163
 
896
  msgid "Enable Facebook Comments notification and moderation"
897
+ msgstr "Facebook Comments notifiche e moderazione"
898
 
899
  #: ../admin/social_commenting.php:171
900
  #: ../admin/social_commenting.php:181
901
  msgid "Enable Facebook Commenting"
902
+ msgstr "Abilitare Facebook Commenting"
903
 
904
  #: ../admin/social_commenting.php:189
905
  #: ../admin/social_commenting.php:347
906
  msgid "Url to comment on"
907
+ msgstr "Url per commenti"
908
 
909
  #: ../admin/social_commenting.php:199
 
910
  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."
911
+ msgstr "La URL assoluta a la quale i commentii pubblicati saranno associati permanentemente. Storie in Facebook relazionati ai commenti pubblicati saranno redirezionati a questa URL.<br/>Se lasciato in bianco <strong>(Consigliato)</strong>, si utilizzará la URL della página web nella quale i commenti sono abilitati."
912
 
913
  #: ../admin/social_commenting.php:207
914
  #: ../admin/social_commenting.php:329
917
 
918
  #: ../admin/social_commenting.php:217
919
  msgid "Leave empty to auto-adjust the width. The width (in pixels) of the Comments block."
920
+ msgstr "Lasciare vuoto per auto-regolare la larghezza. La larghezza (in pixel) del Blocco Commenti."
921
 
922
  #: ../admin/social_commenting.php:225
923
  msgid "Color Scheme"
936
  msgstr "La combinazione di colori usato dal plugin. Puó essere \"chiaro\" o \"scuro\"."
937
 
938
  #: ../admin/social_commenting.php:246
 
939
  msgid "Number of comments"
940
+ msgstr "Numero di commenti"
941
 
942
  #: ../admin/social_commenting.php:256
943
  msgid "The number of comments to show by default. The minimum value is 1. Defaults to 10"
944
+ msgstr "Numero di commenti mostrati. Il valore minimo é 1. Il valore Predefinito é 10"
945
 
946
  #: ../admin/social_commenting.php:264
947
  msgid "Order by"
949
 
950
  #: ../admin/social_commenting.php:268
951
  msgid "Social"
952
+ msgstr "Social"
953
 
954
  #: ../admin/social_commenting.php:269
955
  msgid "Reverse Time"
956
+ msgstr "Tempo Invertito"
957
 
958
  #: ../admin/social_commenting.php:270
959
  msgid "Time"
961
 
962
  #: ../admin/social_commenting.php:278
963
  msgid "The order to use when displaying comments."
964
+ msgstr "L'ordine da usare quando si mostrano i commenti."
965
 
966
  #: ../admin/social_commenting.php:286
967
  #: ../admin/like_buttons.php:132
972
  #: ../admin/social_commenting.php:296
973
  #, php-format
974
  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)"
975
+ msgstr "Inserire il codice della lingua che si vuole usare per mostrare i commenti. I codici dei differenti linguaggi si possono trovare su <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua predefinita"
976
 
977
  #: ../admin/social_commenting.php:305
 
978
  msgid "Google Plus Commenting Options"
979
+ msgstr "Opzioni Google Plus Commenting"
980
 
981
  #: ../admin/social_commenting.php:311
982
  #: ../admin/social_commenting.php:321
 
983
  msgid "Enable Google Plus Commenting"
984
+ msgstr "Abilita Google+ Commenting"
985
 
986
  #: ../admin/social_commenting.php:339
987
  msgid "Width of GooglePlus Commenting interface. Leave empty for auto adjust"
988
+ msgstr "Larghezza dell'interfaccia GooglePlus Commenting. Lasciare vuoto per Regolazione automatica"
989
 
990
  #: ../admin/social_commenting.php:357
 
991
  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."
992
+ msgstr "La URL assoluta alla quale i commenti pubblicati saranno associati permanentemente. Storie in Google+ relazionati ai commenti 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 commenti sono abilitati."
993
 
994
  #: ../admin/social_commenting.php:366
 
995
  msgid "Disqus Commenting Options"
996
+ msgstr "Opzioni Disqus Commenting"
997
 
998
  #: ../admin/social_commenting.php:372
999
  #: ../admin/social_commenting.php:382
 
1000
  msgid "Enable Disqus Commenting"
1001
+ msgstr "Abilita Disqus Commenting"
1002
 
1003
  #: ../admin/social_commenting.php:390
1004
  msgid "Disqus Shortname"
1005
  msgstr ""
1006
 
1007
  #: ../admin/social_commenting.php:400
 
1008
  msgid "<strong>Required to use Disqus commenting.</strong> For more info on shortname, visit following link."
1009
+ msgstr "<strong> Richiesto per usare Disqus commenting.</strong> Per ulteriori informazioni, visitare il seguente link."
1010
 
1011
  #: ../admin/social_commenting.php:417
 
1012
  msgid "Social Commenting Shortcode"
1013
+ msgstr "Social Commenting Shortcode"
1014
 
1015
  #: ../admin/social_commenting.php:429
 
1016
  msgid "How can I disable Social Commenting at individual page/post?"
1017
+ msgstr "Come è possibile disattivare Social Commenting in una singola pagina/post?"
1018
 
1019
  #: ../admin/social_commenting.php:430
1020
  msgid "How to disable default comment form from Social Commenting?"
1021
+ msgstr "Come disattivare il commento predefinito da Social Commenting?"
1022
 
1023
  #: ../admin/social_login.php:10
1024
  msgid "Social Login"
1025
+ msgstr "Social Login"
1026
 
1027
  #: ../admin/social_login.php:23
1028
  msgid "Enable Social Login"
1029
+ msgstr "Abilitare \"Social Login\""
1030
 
1031
  #: ../admin/social_login.php:33
1032
  msgid "Master control for Social Login. It must be checked to enable Social Login functionality"
1033
+ msgstr "Master control per Social Login. Dev'essere abilitato per abilitare le funzionalitá di Social Login"
1034
 
1035
  #: ../admin/social_login.php:66
1036
  msgid "Instagram"
1038
 
1039
  #: ../admin/social_login.php:78
1040
  msgid "Select Social ID provider to enable in Social Login"
1041
+ msgstr "Seleziona allmeno un Social Provider per abilitare Social Login"
1042
 
1043
  #: ../admin/social_login.php:86
1044
  msgid "Facebook App ID"
1045
+ msgstr "Facebook App ID"
1046
 
1047
  #: ../admin/social_login.php:96
1048
  #, php-format
1049
  msgid "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"
1050
+ msgstr "Necessario per far funzionare Facebook Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la Facebook App ID"
1051
 
1052
  #: ../admin/social_login.php:98
1053
  msgid "Paste following url in <strong>Site URL</strong> option at the link mentioned"
1054
+ msgstr "Incollare la seguente URL nelle opzioni <strong>Site URL</ strong> al link indicato"
1055
 
1056
  #: ../admin/social_login.php:108
 
1057
  msgid "Twitter API Key"
1058
+ msgstr "Twitter API Key"
1059
 
1060
  #: ../admin/social_login.php:118
1061
+ #, php-format
1062
  msgid "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"
1063
+ msgstr "Necessario per far funzionare Twitter Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questa pagina</a> per ottenere la Twitter API Key"
1064
 
1065
  #: ../admin/social_login.php:120
1066
  #: ../admin/social_login.php:142
1067
  msgid "Paste following url in <strong>Website</strong> and <strong>Callback URL</strong> options at the link mentioned"
1068
+ msgstr "Incollare la seguente URL nelle opzioni <strong>Website</ strong> e <strong>Callback URL</ strong> presso il link indicato"
1069
 
1070
  #: ../admin/social_login.php:130
 
1071
  msgid "Twitter API Secret"
1072
+ msgstr "Twitter API Secret"
1073
 
1074
  #: ../admin/social_login.php:140
1075
+ #, php-format
1076
  msgid "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"
1077
+ msgstr "Necessario per far funzionare Twitter Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la Twitter API Secret"
1078
 
1079
  #: ../admin/social_login.php:152
1080
  msgid "LinkedIn API Key"
1081
+ msgstr "LinkedIn API Key"
1082
 
1083
  #: ../admin/social_login.php:162
1084
  #, php-format
1085
  msgid "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"
1086
+ msgstr "Necessario per far funzionare LinkedIn Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la LinkedIn API Key"
1087
 
1088
  #: ../admin/social_login.php:164
1089
  #: ../admin/social_login.php:230
1090
  msgid "Paste following url in <strong>Website URL</strong> option at the link mentioned"
1091
+ msgstr "Incollare la seguente URL nelle opzioni <strong>Website URL</ strong> al link indicato"
1092
 
1093
  #: ../admin/social_login.php:174
1094
  msgid "Google+ Client ID"
1095
+ msgstr "Google+ Client ID"
1096
 
1097
  #: ../admin/social_login.php:184
1098
  #, php-format
1099
  msgid "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"
1100
+ msgstr "Necessario per far funzionare GooglePlus Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere il GooglePlus Client ID"
1101
 
1102
  #: ../admin/social_login.php:186
1103
  msgid "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and <strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
1104
+ msgstr "Incollare la seguente URL nelle opzioni <strong>AUTHORIZED JAVASCRIPT ORIGINS</ strong> e <strong>AUTHORIZED REDIRECT URI</ strong> al link indicato"
1105
 
1106
  #: ../admin/social_login.php:196
1107
  msgid "Vkontakte Application ID"
1108
+ msgstr "Vkontakte App ID"
1109
 
1110
  #: ../admin/social_login.php:206
1111
  #, php-format
1112
  msgid "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"
1113
+ msgstr "Necessario per far funzionare Vkontakte Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la Vkontakte Application ID"
1114
 
1115
  #: ../admin/social_login.php:208
1116
  msgid "Paste following url in <strong>Site address</strong> option at the link mentioned"
1117
+ msgstr "Incollare la seguente URL nelle opzioni <strong>Site address</ strong> al link indicato"
1118
 
1119
  #: ../admin/social_login.php:218
1120
  msgid "Instagram Client ID"
1121
+ msgstr "Instagram Client ID"
1122
 
1123
  #: ../admin/social_login.php:228
1124
  #, php-format
1125
  msgid "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"
1126
+ msgstr "Necessario per far funzionare Instagram Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere l'Instagram Client ID"
1127
 
1128
  #: ../admin/social_login.php:240
1129
  msgid "Xing Consumer Key"
1130
  msgstr ""
1131
 
1132
  #: ../admin/social_login.php:250
1133
+ #, php-format
1134
  msgid "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"
1135
+ msgstr "Necessario per far funzionare Xing Social Login. Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la Xing Consumer Key"
1136
 
1137
  #: ../admin/social_login.php:252
1138
  #: ../admin/social_login.php:274
1139
  msgid "Paste following url in <strong>Callback domain</strong> option at the link mentioned"
1140
+ msgstr "Incollare la seguente URL nelle opzioni <strong>Callback domain</ strong> al link indicato"
1141
 
1142
  #: ../admin/social_login.php:262
1143
  msgid "Xing Consumer Secret"
1144
  msgstr ""
1145
 
1146
  #: ../admin/social_login.php:272
1147
+ #, php-format
1148
  msgid "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"
1149
+ msgstr "Necessario per far funzionare Xing Social Login to work.Per favore, consulta la documentazione che trovi su <a href=\"%s\" target=\"_blank\">questo collegamento</a> per ottenere la Xing"
1150
 
1151
  #: ../admin/social_login.php:284
1152
  msgid "Include Javascript in website footer"
1153
+ msgstr "Includere Javascript nel footer del sito web"
1154
 
1155
  #: ../admin/social_login.php:294
1156
  msgid "If enabled (recommended), Javascript files will be included in the footer of your website."
1157
+ msgstr "Se questa opzione è abilitata (consigliato), file Javascript saranno inclusi nel footer del tuo sito web."
1158
 
1159
  #: ../admin/social_login.php:308
1160
  msgid "Login options"
1161
+ msgstr "Opzioni di Login"
1162
 
1163
  #: ../admin/social_login.php:324
1164
  msgid "Text to display above the Social Login interface"
1165
+ msgstr "Testo da mostrare sopra l'interfaccia Social Login"
1166
 
1167
  #: ../admin/social_login.php:333
1168
  msgid "Enable at login page"
1169
+ msgstr "Attivare nella pagina di Login"
1170
 
1171
  #: ../admin/social_login.php:343
1172
  msgid "Social Login interface will get enabled at the login page of your website"
1173
+ msgstr "L'Interfaccia Social Login si attiverá nella pagina di Login del tuo sito web"
1174
 
1175
  #: ../admin/social_login.php:351
1176
  msgid "Enable at register page"
1177
+ msgstr "Abilitare nella pagina di registrazione"
1178
 
1179
  #: ../admin/social_login.php:361
 
1180
  msgid "Social Login interface will get enabled at the registration page of your website"
1181
+ msgstr "L'Interfaccia Social Login si attiverá nella pagina di registrazione del tuo sito web"
1182
 
1183
  #: ../admin/social_login.php:369
1184
  msgid "Enable at comment form"
1185
+ msgstr "Attivare nel form dei commenti"
1186
 
1187
  #: ../admin/social_login.php:379
1188
  msgid "Social Login interface will get enabled at your Wordpress Comment form"
1189
+ msgstr "L'Interfaccia Social Login si attiverá nel form di commenti Wordpress"
1190
 
1191
  #: ../admin/social_login.php:393
1192
  msgid "Enable before WooCommerce Customer Login Form"
1193
+ msgstr "Abilitare prima del form Customer Login di WooCommerce"
1194
 
1195
  #: ../admin/social_login.php:403
 
1196
  msgid "Social Login Interface will get enabled before the customer login form at WooCommerce My Account page"
1197
+ msgstr "L'Interfaccia Social Login si attiverá prima del Login Form nella pagina il mio Account di Woocommerce."
1198
 
1199
  #: ../admin/social_login.php:411
1200
  msgid "Enable after WooCommerce Customer Login Form"
1201
+ msgstr "Abilitare dopo il form Customer Login di WooCommerce"
1202
 
1203
  #: ../admin/social_login.php:421
 
1204
  msgid "Social Login Interface will get enabled after the customer login form at WooCommerce My Account page"
1205
+ msgstr "L'Interfaccia Social Login si attiverá dopo il Login Form nella pagina il mio Account di Woocommerce."
1206
 
1207
  #: ../admin/social_login.php:429
 
1208
  msgid "Enable at WooCommerce checkout page"
1209
+ msgstr "Abilitare nella pagina checkout di WooCommerce"
1210
 
1211
  #: ../admin/social_login.php:439
 
1212
  msgid "Social Login Interface will get enabled at WooCommerce checkout page"
1213
+ msgstr "L'Interfaccia Social Login si attiverá nella pagina di Checkout di Woocommerce"
1214
 
1215
  #: ../admin/social_login.php:450
1216
  msgid "Auto-approve comments made by Social Login users"
1217
+ msgstr "Auto-approvare i commenti fatti da utenti con accesso Social Login"
1218
 
1219
  #: ../admin/social_login.php:460
1220
  msgid "If this option is enabled, and WordPress comment is made by Social Login user, comment will get approved immediately without keeping in moderation."
1221
+ msgstr "Se questa opzione é attivata, e i commenti WordPress sono fatti da uutenti che hanno avuto accesso tramite Social Login, il commento sará approvato immediatamente senza nessuna possibilitá di moderazione."
1222
 
1223
  #: ../admin/social_login.php:461
1224
  msgid "Note: This is not related to Facebook comments"
1225
+ msgstr "Nota: Questo non é relazionato ai Facebook comments"
1226
 
1227
  #: ../admin/social_login.php:471
1228
  msgid "Enable social avatar"
1229
+ msgstr "Abilitare Avatar"
1230
 
1231
  #: ../admin/social_login.php:481
1232
  msgid "Social profile pictures of the logged in user will be displayed as profile avatar"
1233
+ msgstr "Le immagini del profilo degli utenti registrati verranno visualizzate come avatar del profilo sul tuo sito"
1234
 
1235
  #: ../admin/social_login.php:491
1236
  msgid "Avatar quality"
1237
+ msgstr "Qualità Avatar"
1238
 
1239
  #: ../admin/social_login.php:494
1240
  msgid "Average"
1241
+ msgstr "Media"
1242
 
1243
  #: ../admin/social_login.php:495
1244
  msgid "Best"
1245
+ msgstr ""
1246
 
1247
  #: ../admin/social_login.php:502
1248
  msgid "Choose avatar quality"
1249
+ msgstr "Scelta qualità Avatar"
1250
 
1251
  #: ../admin/social_login.php:521
1252
  msgid "If enabled and Social ID provider does not provide user's email address on login, user will be asked to provide his/her email address. Otherwise, a dummy email will be generated"
1253
+ msgstr "Se questa opzione é abilitata e il Social ID provider non da informazioni sull'email dell'utente durante la login, verrà chiesto all'utente di completare questa informazione. In caso contrario, sará generata una email fittizia"
1254
 
1255
  #: ../admin/social_login.php:530
1256
  msgid "Send username-password after user registration"
1257
+ msgstr "Invia username-password dopo la registrazione dell'utente"
1258
 
1259
  #: ../admin/social_login.php:540
1260
  msgid "If enabled, an email will be sent to user after registration through Social Login, regarding his/her login credentials (username-password to be able to login via traditional login form)"
1261
+ msgstr "Se questa opzione è abilitata, dopo la registrazione attraverso Social Login, sará inviato all'utente una email con le informazioni di accesso (codice d'accesso e password per accedere attraverso il metodo tradizionale)"
1262
 
1263
  #: ../admin/social_login.php:549
1264
  msgid "Enable social account linking at BuddyPress profile page"
1265
+ msgstr "Abilitare collegamento social account nella pagina di profilo BuddyPress"
1266
 
1267
  #: ../admin/social_login.php:559
1268
  msgid "Enable this option to show social account linking interface at BuddyPress profile page"
1269
+ msgstr "Attivare questa opzione per visualizzare l'interfaccia social account linking nella pagina di profilo BuddyPress"
1270
 
1271
  #: ../admin/social_login.php:568
1272
  msgid "Login redirection"
1273
+ msgstr "Reindirizzamento Login"
1274
 
1275
  #: ../admin/social_login.php:572
1276
  msgid "Same page where user logged in"
1279
  #: ../admin/social_login.php:576
1280
  #: ../admin/social_login.php:606
1281
  msgid "Account dashboard"
1282
+ msgstr "Pannello Account"
1283
 
1284
  #: ../admin/social_login.php:579
1285
  #: ../admin/social_login.php:609
1286
  msgid "BuddyPress profile page"
1287
+ msgstr "Pagina di profilo BuddyPress"
1288
 
1289
  #: ../admin/social_login.php:582
1290
  #: ../admin/social_login.php:612
1293
 
1294
  #: ../admin/social_login.php:590
1295
  msgid "User will be redirected to the selected page after Social Login"
1296
+ msgstr "L'utente sará reindirizzato alla pagina selezionata dopo il Social Login"
1297
 
1298
  #: ../admin/social_login.php:598
1299
  msgid "Registration redirection"
1300
+ msgstr "Reindirizzamento Registratione"
1301
 
1302
  #: ../admin/social_login.php:602
 
1303
  msgid "Same page from where user registered"
1304
+ msgstr "La stessa pagina dove l'utente si è registrato"
1305
 
1306
  #: ../admin/social_login.php:620
1307
  msgid "User will be redirected to the selected page after registration (first Social Login) through Social Login"
1308
+ msgstr "L'utente sará reindirizzato alla pagina selezionata dopo la registrazione (il primo Social Login) tramite il Social Login"
1309
 
1310
  #: ../admin/social_login.php:628
1311
  msgid "Email popup options"
1312
+ msgstr "Opzioni del popup 'Email Obbligatoria'"
1313
 
1314
  #: ../admin/social_login.php:634
1315
  msgid "Text on 'Email required' popup"
1316
+ msgstr "Testo del pop-up"
1317
 
1318
  #: ../admin/social_login.php:644
1319
  msgid "This text will be displayed on email required popup. Leave empty if not required."
1320
+ msgstr "Questo é il testo che verrà mostrato nella finestra pop-up. Lasciare in bianco se non si vuole utilizzare."
1321
 
1322
  #: ../admin/social_login.php:653
1323
  msgid "Error message for 'Email required' popup"
1324
+ msgstr "Messaggio d'errore"
1325
 
1326
  #: ../admin/social_login.php:663
1327
  msgid "This message will be displayed to user if it provides invalid or already registered email"
1328
+ msgstr "Questo é il testo che verrà mostrato all'utente nel caso inserisca un indirizzo email non valido o già registrato."
1329
 
1330
  #: ../admin/social_login.php:672
1331
  msgid "Email popup height"
1332
+ msgstr "Altezza pop-up Email"
1333
 
1334
  #: ../admin/social_login.php:682
1335
  msgid "If you are seeing vertical scrollbar in the \"Email required\" popup, you can increase the height of popup by specifying in this option. Leave empty for default."
1336
+ msgstr "Se state vedendo la barra di scorrimento verticale nel pop-up \"Email Obbligatoria\", è possibile aumentare l'altezza del popup specificandolo in questa opzione. Lasciare vuoto per l'impostazione predefinita."
1337
 
1338
  #: ../admin/social_login.php:690
1339
  msgid "Enable email verification"
1340
+ msgstr "Abilitare verifica email"
1341
 
1342
  #: ../admin/social_login.php:700
1343
  msgid "If enabled, email provided by the user will be verified by sending a confirmation link to that email. User would not be able to login without verifying his/her email"
1344
+ msgstr "Se questa opzione è abilitata, l'indirizzo e-mail fornito dall'utente varrà verificato mediante l'invio di un link all' indirizzo e-mail specificato. L'utente non potrà accedere senza aver effettuato la procedura di verifica."
1345
 
1346
  #: ../admin/social_login.php:716
 
1347
  msgid "Social Login Shortcode & Widget"
1348
+ msgstr "Shortcode & Widget"
1349
 
1350
  #: ../admin/social_login.php:717
1351
  msgid "Social Linking Shortcode"
1357
 
1358
  #: ../admin/admin.php:10
1359
  msgid "You are ready to Socialize your website."
1360
+ msgstr "Sei pronto per \"Socializzare\" il tuo sito web."
1361
 
1362
  #: ../admin/admin.php:11
1363
  msgid "Getting Started"
1364
+ msgstr "Per Cominciare"
1365
 
1366
  #: ../admin/admin.php:12
 
1367
  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."
1368
+ msgstr "Comincia configurando le opzioni nelle sezioni sotto il menu <strong>Super Socializer</strong> nella sidebar di sinistra. <strong>Social Sharing</strong> é abilitata come impostazione predefinita nel tuo sito web."
1369
 
1370
  #: ../admin/admin.php:13
 
1371
  msgid "In <strong>Social Commenting</strong> section, you can configure Social Commenting."
1372
+ msgstr "Nella sezione <strong>Social Commenting</strong>, puoi configurare i Social Commenting."
1373
 
1374
  #: ../admin/admin.php:14
1375
  msgid "In <strong>Social Login</strong> section, you can select Social ID provders and configure the Social Login options."
1376
+ msgstr "Nella sezione <strong>Social Login</strong>, puoi selezionare i Social Network e configurare le opzioni disponibili."
1377
 
1378
  #: ../admin/admin.php:15
 
1379
  msgid "In <strong>Social Sharing</strong> section, you can choose the Social Networks for Sharing and configure the options for sharing."
1380
+ msgstr "Nella sezione <strong>Social Sharing</strong>, puoi scegliere i Social Network per la Condivisione e configurarne le sue opzioni."
1381
 
1382
  #: ../admin/admin.php:16
 
1383
  msgid "In <strong>Like Buttons</strong> section, you can choose the like/+1 buttons and configure the options for the same"
1384
+ msgstr "Nella sezione <strong>Like Buttons</strong>, puoi scegliere i pulsanti ike/+1 e configurarne le opzioni"
1385
 
1386
  #: ../admin/like_buttons.php:12
1387
  msgid "Like Buttons"
1388
+ msgstr "Like Buttons"
1389
 
1390
  #: ../admin/like_buttons.php:25
1391
  msgid "Enable Like Buttons"
1392
+ msgstr "Attivare Like Buttons"
1393
 
1394
  #: ../admin/like_buttons.php:35
 
1395
  msgid "Master control for like buttons. It must be checked to enable like buttons functionality"
1396
+ msgstr "Master control per like buttons. Dev'essere abilitato per abilitare le funzionalitá dei like button"
1397
 
1398
  #: ../admin/like_buttons.php:57
1399
  msgid "Use shortlinks already installed, for tweet button"
1401
 
1402
  #: ../admin/like_buttons.php:75
1403
  msgid "Enable bit.ly url shortener for tweet button"
1404
+ msgstr "Abilitare bit.ly url shortener per il bottone di Twitter"
1405
 
1406
  #: ../admin/like_buttons.php:148
1407
+ #, php-format
1408
  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)"
1409
+ msgstr "Inserire il codice della lingua che si vuole usare perrender counters. I codici dei differenti linguaggi si possono trovare su <a href=\"%s\" target=\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua predefinita"
1410
 
1411
  #: ../admin/like_buttons.php:157
 
1412
  msgid "Twitter Username"
1413
+ msgstr "Twitter Username"
1414
 
1415
  #: ../admin/like_buttons.php:163
 
1416
  msgid "Twitter username for Tweet (without @)"
1417
+ msgstr "Twitter username per Tweet (senza @)"
1418
 
1419
  #: ../admin/like_buttons.php:173
1420
  msgid "Provided username will be appended after the content being tweeted as \"via @USERNAME\". Leave empty if you do not want any username."
1421
+ msgstr "La username fornita viene aggiunta dopo il contenuto del tweet come \"via @USERNAME\". Lasciare vuoto se non si desidera alcuna username."
1422
 
1423
  #: ../admin/like_buttons.php:182
 
1424
  msgid "Twitter username for Buffer sharing (without @)"
1425
+ msgstr "Twitter Username per Buffer sharing (senza @)"
1426
 
1427
  #: ../admin/like_buttons.php:192
 
1428
  msgid "Provided username will be appended after the content in Buffer sharing as \"via @USERNAME\". Leave empty if you do not want any username."
1429
+ msgstr "La username fornita viene aggiunta dopo il contenuto del Buffer sharing come \"via @USERNAME\". Lasciare vuoto se non si desidera alcuna username."
1430
 
1431
  #: ../admin/like_buttons.php:201
 
1432
  msgid "Horizontal Interface Options"
1433
+ msgstr "Opzioni Horizontal Interface"
1434
 
1435
  #: ../admin/like_buttons.php:207
 
1436
  msgid "Enable horizontal interface"
1437
+ msgstr "Abilitare horizontal interface"
1438
 
1439
  #: ../admin/like_buttons.php:217
 
1440
  msgid "Master control to enable horizontal like buttons"
1441
+ msgstr "Master control per abilitare il like buttons orizzontale"
1442
 
1443
  #: ../admin/like_buttons.php:242
1444
  #: ../admin/like_buttons.php:480
1445
  msgid "Url to like/share/tweet and display like/share/tweet counts"
1446
+ msgstr "Url perlike/share/tweet e visualizzazione like/share/conteggi tweet"
1447
 
1448
  #: ../admin/like_buttons.php:260
 
1449
  msgid "The text to display above the interface"
1450
+ msgstr "Il testo che sarà mostrato sopra l'interfaccia"
1451
 
1452
  #: ../admin/like_buttons.php:268
1453
  #: ../admin/like_buttons.php:488
 
1454
  msgid "Select and rearrange providers"
1455
+ msgstr "Selezionare e riorganizzare i provider"
1456
 
1457
  #: ../admin/like_buttons.php:312
1458
  #: ../admin/like_buttons.php:531
 
1459
  msgid "Select the providers for interface. Drag them to rearrange."
1460
+ msgstr "Seleziona i providers per l'interfaccia. Trascinali per riorganizzarli. "
1461
 
1462
  #: ../admin/like_buttons.php:334
1463
  #: ../admin/like_buttons.php:570
 
1464
  msgid "Horizontal alignment of the interface"
1465
+ msgstr "Allineamento orizzontale dell'interfaccia"
1466
 
1467
  #: ../admin/like_buttons.php:355
 
1468
  msgid "Specify position of the interface with respect to the content"
1469
+ msgstr "Specificare la posizione dell'interfaccia rispetto al contenuto"
1470
 
1471
  #: ../admin/like_buttons.php:363
1472
  #: ../admin/like_buttons.php:636
 
1473
  msgid "Interface location"
1474
+ msgstr "Posizione Interfaccia"
1475
 
1476
  #: ../admin/like_buttons.php:373
1477
  #: ../admin/like_buttons.php:646
1478
  msgid "Excerpts"
1479
+ msgstr "Estratti"
1480
 
1481
  #: ../admin/like_buttons.php:429
 
1482
  msgid "Specify the pages where you want to enable interface"
1483
+ msgstr "Specifica le pagine in cui si desidera attivare l'interfaccia"
1484
 
1485
  #: ../admin/like_buttons.php:439
 
1486
  msgid "Vertical (Floating) like buttons Options"
1487
+ msgstr "Opzioni Vertical (Floating) like buttons"
1488
 
1489
  #: ../admin/like_buttons.php:445
 
1490
  msgid "Enable vertical (floating) like buttons"
1491
+ msgstr "Abilitare vertical (floating) like buttons"
1492
 
1493
  #: ../admin/like_buttons.php:455
 
1494
  msgid "Master control to enable vertical (floating) counter widget"
1495
+ msgstr "Master control per abilitare il vertical (floating) counter widget"
1496
 
1497
  #: ../admin/like_buttons.php:549
 
1498
  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>"
1499
+ msgstr "Specifica il colore o il codice hex (esempio #cc78e0) per il background della barra verticale. Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
1500
 
1501
  #: ../admin/like_buttons.php:589
 
1502
  msgid "Specify a number. Increase in number will shift interface towards right and decrease will shift it towards left. Number can be negative too."
1503
+ msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore verso destra, un numero piú piccolo lo muove verso sinistra. Il Numero può anche essere negativo."
1504
 
1505
  #: ../admin/like_buttons.php:609
 
1506
  msgid "Specify a number. Increase in number will shift interface towards left and decrease will shift it towards right. Number can be negative too."
1507
+ msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore verso sinistra, un numero piú piccolo lo muove verso destra.Il Numero può anche essere negativo."
1508
 
1509
  #: ../admin/like_buttons.php:628
 
1510
  msgid "Specify a number. Increase in number will shift interface towards bottom and decrease will shift it towards top."
1511
  msgstr "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore verso il basso, un numero piú piccolo lo muove all'alto."
1512
 
1513
  #: ../admin/like_buttons.php:678
 
1514
  msgid "Specify the pages where you want to enable vertical interface"
1515
+ msgstr "Specifica le pagine dove vuoi abilitare la vertical interface"
1516
 
1517
  #: ../admin/like_buttons.php:686
1518
  msgid "Hide like buttons on mobile devices"
1519
+ msgstr "Nascondere i like buttons sui dispositivi mobili"
1520
 
1521
  #: ../admin/like_buttons.php:696
1522
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
1523
+ msgstr "Se questa opzione è abilitata, i vertical like buttons non appariranno sui dispositivi mobili"
1524
 
1525
  #: ../admin/like_buttons.php:714
 
1526
  msgid "Like Buttons Shortcode & Widget"
1527
+ msgstr "Shortcode & Widget"
1528
 
1529
  #: ../inc/shortcode.php:245
 
1530
  msgid "Enable Social Login from \"Basic Configuration\" section at \"Super Socializer > Social Login\" page in admin panel"
1531
+ msgstr "Abilitare Social Login nella sezione \"Configurazione di base\" che si trova nella pagina \"Super Socializer > Social Login\" del pannello di amministrazione"
1532
 
1533
  #: ../inc/social_sharing.php:596
1534
  msgid "Invalid request"
1535
+ msgstr "Domanda non valida"
1536
 
1537
  #: ../inc/social_sharing.php:603
1538
  msgid "Providers not selected"
1539
+ msgstr "Providers non selezionati"
1540
 
1541
  #: ../inc/widget.php:11
1542
  msgid "Super Socializer - Login"
1543
+ msgstr "Super Socializer - Login"
1544
 
1545
  #: ../inc/widget.php:13
1546
  msgid "Let your website users login/register using their favorite Social ID Provider, such as Facebook, Twitter, Google+, LinkedIn"
1547
+ msgstr "Permetti agli utenti del tuo sito web di accedere/registrarsi usando i loro Social ID Provider favoriti, come Facebook, Twitter, Goolge+, LinkedIn"
1548
 
1549
  #: ../inc/widget.php:47
1550
  msgid "Log Out"
1551
+ msgstr "Log Out"
1552
 
1553
  #: ../inc/widget.php:78
1554
  #, fuzzy
1555
  msgid "Make sure Social Login is enabled at \"Super Socializer > Social Login\" page."
1556
+ msgstr "Assicurarsi che Social Login sia abilitato nella pagina \"Super Socializer> Social Login\"."
1557
 
1558
  #: ../inc/widget.php:79
1559
  #: ../inc/widget.php:219
1571
  #: ../inc/widget.php:235
1572
  #: ../inc/widget.php:536
1573
  msgid "After widget content:"
1574
+ msgstr "Dopo il contenuto del widget:"
1575
 
1576
  #: ../inc/widget.php:86
1577
  #: ../inc/widget.php:237
1582
  msgstr "Nascondere per gli utenti loggati:"
1583
 
1584
  #: ../inc/widget.php:105
 
1585
  msgid "Horizontal sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
1586
+ msgstr "Horizontal sharing widget. Lascia condividire agli utenti i contenuti del tuo sito web nelle reti sociali popolari come Facebook, Twitter, Tumblr, Google+ e molti altri"
1587
 
1588
  #: ../inc/widget.php:218
1589
  #, fuzzy
1590
  msgid "Make sure \"Horizontal Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
1591
+ msgstr "Assicurarsi che \"Horizontal Social Sharing\" sia abilitata nella pagina \"Super Socializer> Social Sharing\"."
1592
 
1593
  #: ../inc/widget.php:221
1594
  #: ../inc/widget.php:370
 
1595
  msgid "Show individual share counts:"
1596
+ msgstr "Mostra conteggi condivisioni individuali:"
1597
 
1598
  #: ../inc/widget.php:223
1599
  #: ../inc/widget.php:372
 
1600
  msgid "Show total shares:"
1601
+ msgstr "Mostra totale condivisioni:"
1602
 
1603
  #: ../inc/widget.php:225
1604
  #: ../inc/widget.php:374
1616
 
1617
  #: ../inc/widget.php:256
1618
  msgid "Vertical floating sharing widget. Let your website users share content on popular Social networks like Facebook, Twitter, Tumblr, Google+ and many more"
1619
+ msgstr "Vertical floating sharing widget. Lascia condividire agli utenti i contenuti del tuo sito web nei Social networks più popolari come Facebook, Twitter, Tumblr, Google+, e molti altri"
1620
 
1621
  #: ../inc/widget.php:369
1622
  #, fuzzy
1623
  msgid "Make sure \"Vertical Social Sharing\" is enabled at \"Super Socializer > Social Sharing\" page."
1624
+ msgstr "Assicurarsi che \"Vertical Social Sharing\" sia abilitata nella pagina \"Super Socializer > Social Sharing\"."
1625
 
1626
  #: ../inc/widget.php:382
1627
  #: ../inc/widget.php:669
1630
 
1631
  #: ../inc/widget.php:388
1632
  #: ../inc/widget.php:675
 
1633
  msgid "Left Offset"
1634
+ msgstr "Left Offset"
1635
 
1636
  #: ../inc/widget.php:392
1637
  #: ../inc/widget.php:679
 
1638
  msgid "Right Offset"
1639
+ msgstr "Right Offset"
1640
 
1641
  #: ../inc/widget.php:395
1642
  #: ../inc/widget.php:682
 
1643
  msgid "Top Offset"
1644
+ msgstr "Top Offset"
1645
 
1646
  #: ../inc/widget.php:420
 
1647
  msgid "Horizontal like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1648
+ msgstr "Horizontal like buttons widget. Lascia condividire/piacere agli utenti i contenuti del tuo sito web nelle reti popolari come Facebook, Twitter, Tumblr, Google+, e molti altri"
1649
 
1650
  #: ../inc/widget.php:523
1651
  msgid "Make sure \"Horizontal Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
1652
+ msgstr "Assicurarsi che \"Horizontal Like Buttons\" siano abilitati nella pagina \"Super Socializer > Like Buttons\"."
1653
 
1654
  #: ../inc/widget.php:557
 
1655
  msgid "Vertical floating like buttons widget. Let your website users share/like content on popular Social networks like Facebook, Twitter, Google+ and many more"
1656
+ msgstr "Vertical floating like buttons widget. Lascia condividire/like agli utenti i contenuti del tuo sito web nei Social networks più popolari come Facebook, Twitter, Tumblr, Google+, e molti altri"
1657
 
1658
  #: ../inc/widget.php:660
1659
  msgid "Make sure \"Vertical Like Buttons\" are enabled from \"Super Socializer > Like Buttons\" page."
1660
+ msgstr "Assicurarsi che i \"Vertical Like Buttons\" siano abilitati nella pagina \"Super Socializer > Like Buttons\"."
 
 
 
1661
 
 
1662
  #~ msgid "Better"
1663
+ #~ msgstr "Migliore"
1664
+
1665
+ #~ msgid "Options saved successfully"
1666
+ #~ msgstr "Opzioni salvate correttamente"
1667
 
1668
  #~ msgid "You can see the plugin in action at following link"
1669
  #~ msgstr "Puoi vedere il plugin in azione seguendo il successivo collegamento"
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Super Socializer ===
2
- Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Serbo-Croatian Translator: Andrijana Nikolic http://webhostinggeeks.com/, Spanish translator: Andrew Kurtis http://webhostinghub.com, German Translator: Maximilian Kops http://maxkops.de, Arabic Translator: http://www.ArabsSM.com, Russian Translator: Nicholas Lagunov http://tobehip.com.ua
3
  Donate link: https://www.heateor.com/add-ons
4
  Tags: the champ, champ, social login, social sharing, social commenting, social comments, social plugin, buddypress, bbpress, social share, comments, share post, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, social sign-in, signin, sign up, signup, social connect, facebook login, twitter login, google login, google+ login, linkedin login, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, social network
5
  Requires at least: 2.5.0
6
- Tested up to: 4.3
7
- Stable tag: 6.1
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
@@ -196,6 +196,10 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
196
  8. **Social Commenting**: Disqus Commenting selected
197
 
198
  == Changelog ==
 
 
 
 
199
  = 6.1 =
200
  * [Bugfix] Facebook Comments Email Notifications were working only for first comment when posted multiple comments without refreshing the page
201
 
@@ -640,4 +644,8 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
640
  * [Improvement] If social profile data has username, it is being used as is for WordPress username
641
 
642
  = 6.1 =
643
- * [Bugfix] Facebook Comments Email Notifications were working only for first comment when posted multiple comments without refreshing the page
 
 
 
 
1
  === Super Socializer ===
2
+ Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://kerekmese.hu, Serbo-Croatian Translator: Andrijana Nikolic http://webhostinggeeks.com/, Italian Translator: Maurizio http://freedomsgate.tk, Spanish translator: Andrew Kurtis http://webhostinghub.com, German Translator: Maximilian Kops http://maxkops.de, Arabic Translator: http://www.ArabsSM.com, Russian Translator: Nicholas Lagunov http://tobehip.com.ua
3
  Donate link: https://www.heateor.com/add-ons
4
  Tags: the champ, champ, social login, social sharing, social commenting, social comments, social plugin, buddypress, bbpress, social share, comments, share post, user profile data, social analytics, online identity, social profile storage, id provider, single sign-on, social media tools, free social login, post to social networks, social authentication, social app, connect, capture social data, social sign-in, signin, sign up, signup, social connect, facebook login, twitter login, google login, google+ login, linkedin login, yahoo, vkontakte, instagram, reddit, digg, stumbleupon, delicious, float it, tumblr, social network
5
  Requires at least: 2.5.0
6
+ Tested up to: 4.3.1
7
+ Stable tag: 6.2
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
196
  8. **Social Commenting**: Disqus Commenting selected
197
 
198
  == Changelog ==
199
+ = 6.2 =
200
+ * [Improvement] Minor performance improvements
201
+ * [Improvement] Improved Italian Translation
202
+
203
  = 6.1 =
204
  * [Bugfix] Facebook Comments Email Notifications were working only for first comment when posted multiple comments without refreshing the page
205
 
644
  * [Improvement] If social profile data has username, it is being used as is for WordPress username
645
 
646
  = 6.1 =
647
+ * [Bugfix] Facebook Comments Email Notifications were working only for first comment when posted multiple comments without refreshing the page
648
+
649
+ = 6.2 =
650
+ * [Improvement] Minor performance improvements
651
+ * [Improvement] Improved Italian Translation
super_socializer.php CHANGED
@@ -3,13 +3,13 @@
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: 6.1
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', '6.1');
13
 
14
  $theChampLoginOptions = get_option('the_champ_login');
15
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
@@ -467,7 +467,7 @@ function the_champ_frontend_scripts(){
467
  if(the_champ_facebook_plugin_enabled()){
468
  global $heateor_fcn_options;
469
  ?>
470
- <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>', theChampCommentNotification = <?php echo isset($heateor_fcn_options) || function_exists('heateor_ss_check_querystring') || function_exists('the_champ_check_querystring') ? 1 : 0; ?>, theChampFbIosLogin = <?php echo !is_user_logged_in() && isset($_GET['code']) && esc_attr($_GET['code']) != '' ? 1 : 0; ?>; </script>
471
  <?php
472
  add_action('wp_footer', 'the_champ_fb_root_div');
473
  wp_enqueue_script('the_champ_fb_sdk', plugins_url('js/front/facebook/sdk.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
@@ -519,7 +519,7 @@ function the_champ_frontend_scripts(){
519
  if(the_champ_social_sharing_enabled() || (the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled())){
520
  global $theChampSharingOptions, $theChampCounterOptions, $post;
521
  ?>
522
- <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']) || isset($theChampSharingOptions['horizontal_total_shares']) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']) ? 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>
523
  <?php
524
  wp_enqueue_script('the_champ_share_counts', plugins_url('js/front/sharing/sharing.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
525
  }
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: 6.2
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', '6.2');
13
 
14
  $theChampLoginOptions = get_option('the_champ_login');
15
  if(isset($theChampLoginOptions['providers']) && in_array('twitter', $theChampLoginOptions['providers'])){
467
  if(the_champ_facebook_plugin_enabled()){
468
  global $heateor_fcn_options;
469
  ?>
470
+ <script> var theChampFBKey = '<?php echo $fbKey ?>', theChampFBLang = '<?php echo (isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '') ? $theChampFacebookOptions["comment_lang"] : "en_US" ?>', theChampFbLikeMycred = <?php echo defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && the_champ_facebook_like_rec_enabled() ? 1 : 0 ?>, theChampCommentNotification = <?php echo isset($heateor_fcn_options) || function_exists('heateor_ss_check_querystring') || function_exists('the_champ_check_querystring') ? 1 : 0; ?>, theChampFbIosLogin = <?php echo !is_user_logged_in() && isset($_GET['code']) && esc_attr($_GET['code']) != '' ? 1 : 0; ?>; </script>
471
  <?php
472
  add_action('wp_footer', 'the_champ_fb_root_div');
473
  wp_enqueue_script('the_champ_fb_sdk', plugins_url('js/front/facebook/sdk.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
519
  if(the_champ_social_sharing_enabled() || (the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled())){
520
  global $theChampSharingOptions, $theChampCounterOptions, $post;
521
  ?>
522
+ <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['enable']) && isset($theChampSharingOptions['hor_enable']) && ( isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares']) ) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && ( isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']) ) ? 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>
523
  <?php
524
  wp_enqueue_script('the_champ_share_counts', plugins_url('js/front/sharing/sharing.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
525
  }