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

Version Description

[17 July 2021] = * [Bugfix] Fixed a Javascript error being logged in the browser's developer console * [Bugfix] Redirection after authentication from Social network was not working in the mobile webview * [Improvement] Admin UI improvements

Download this release

Release Info

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

Code changes from version 7.13.21 to 7.13.22

admin/social_sharing.php CHANGED
@@ -45,10 +45,6 @@
45
  $theChampSharingOptions['vertical_re_providers'] = array();
46
  }
47
  ?>
48
- <div id="setting-error-settings_updated" class="error settings-error notice is-dismissible below-h2" <?php echo !(isset($theChampLoginOptions['enable']) && $theChampLoginOptions['fb_key'] && $theChampLoginOptions['fb_secret'] && in_array('facebook', $theChampLoginOptions['providers'])) && (((in_array('facebook', $theChampSharingOptions['vertical_re_providers']) && (isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']))) || (in_array('facebook', $theChampSharingOptions['horizontal_re_providers']) && (isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares'])))) && (!$theChampSharingOptions['fb_key'] || !$theChampSharingOptions['fb_secret'])) ? '' : 'style = "display: none"';?>>
49
- <?php echo '<p><strong>' . __('Save Facebook App Id and Secret in the "Miscellaneous" section for Facebook share count to work', 'super-socializer') . '</strong></p><button type="button" class="notice-dismiss"><span class="screen-reader-text">' . __('Dismiss this notice', 'super-socializer') . '</span></button>'; ?>
50
- </div>
51
-
52
  <div class="menu_div" id="tabs" <?php echo isset($theChampSharingOptions['enable']) ? '' : 'style="display:none"' ?>>
53
 
54
  <h2 class="nav-tab-wrapper" style="height:34px">
@@ -806,7 +802,7 @@
806
  <td colspan="2">
807
  <script>
808
  // facebook app id and secret options toggle variables
809
- var heateorSsHorizontalFacebookShareEnabled = <?php echo in_array('facebook', $theChampSharingOptions['horizontal_re_providers']) ? 'true' : 'false'; ?>, heateorSsVerticalFacebookShareEnabled = <?php echo in_array('facebook', $theChampSharingOptions['vertical_re_providers']) ? 'true' : 'false'; ?>, heateorSsFacebookAppSecretSaved = <?php echo isset($theChampLoginOptions['enable']) && $theChampLoginOptions['fb_key'] && $theChampLoginOptions['fb_secret'] && in_array('facebook', $theChampLoginOptions['providers']) ? 'true' : 'false'; ?>;
810
  <?php
811
  $horSharingStyle = 'width:' . ( $theChampSharingOptions['horizontal_sharing_shape'] != 'rectangle' ? $theChampSharingOptions['horizontal_sharing_size'] : $theChampSharingOptions['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
812
  $horDeliciousRadius = '';
@@ -1582,51 +1578,6 @@
1582
  <div class="menu_containt_div" id="tabs-4">
1583
  <div class="clear"></div>
1584
  <div class="the_champ_left_column">
1585
-
1586
- <div class="stuffbox" id="heateor_ss_fb_share_count_options" <?php echo !(isset($theChampLoginOptions['enable']) && $theChampLoginOptions['fb_key'] && $theChampLoginOptions['fb_secret'] && in_array('facebook', $theChampLoginOptions['providers'])) && ((in_array('facebook', $theChampSharingOptions['vertical_re_providers'])) || (in_array('facebook', $theChampSharingOptions['horizontal_re_providers']))) ? '' : 'style = "display: none"';?>>
1587
- <h3><label><?php _e('Facebook Share Count', 'super-socializer');?></label></h3>
1588
- <div class="inside">
1589
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
1590
- <tr>
1591
- <td colspan="2"><strong><?php _e('Note', 'super-socializer') ?>:</strong> <?php _e('Required only to track Facebook share count', 'super-socializer') ?></td>
1592
- </tr>
1593
-
1594
- <tr>
1595
- <th>
1596
- <label for="the_champ_fb_key"><?php _e("Facebook App ID", 'super-socializer'); ?></label><img id="the_champ_fb_key_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1597
- </th>
1598
- <td>
1599
- <input id="the_champ_fb_key" name="the_champ_sharing[fb_key]" type="text" value="<?php echo $theChampSharingOptions['fb_key'] ?>" />
1600
- </td>
1601
- </tr>
1602
-
1603
- <tr class="the_champ_help_content" id="the_champ_fb_key_help_cont">
1604
- <td colspan="2">
1605
- <div>
1606
- <?php echo sprintf(__('Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App ID', 'super-socializer'), 'http://support.heateor.com/how-to-get-facebook-app-id/') ?>
1607
- </div>
1608
- </td>
1609
- </tr>
1610
-
1611
- <tr>
1612
- <th>
1613
- <label for="the_champ_fblogin_secret"><?php _e("Facebook App Secret", 'super-socializer'); ?></label><img id="the_champ_fb_secret_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1614
- </th>
1615
- <td>
1616
- <input id="the_champ_fblogin_secret" name="the_champ_sharing[fb_secret]" type="text" value="<?php echo $theChampSharingOptions['fb_secret'] ?>" />
1617
- </td>
1618
- </tr>
1619
-
1620
- <tr class="the_champ_help_content" id="the_champ_fb_secret_help_cont">
1621
- <td colspan="2">
1622
- <div>
1623
- <?php echo sprintf(__('Required for Facebook share count to work. Please follow the documentation at <a href="%s" target="_blank">this link</a> to get Facebook App Secret', 'super-socializer'), 'http://support.heateor.com/how-to-get-facebook-app-id/') ?>
1624
- </div>
1625
- </td>
1626
- </tr>
1627
- </table>
1628
- </div>
1629
- </div>
1630
 
1631
  <div class="stuffbox">
1632
  <h3><label><?php _e('Url shortener', 'super-socializer');?></label></h3>
@@ -1921,7 +1872,7 @@
1921
  <p><?php _e('<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'super-socializer'); ?></p>
1922
  <p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e('Why is sharer not showing the correct image, title and other meta tags content?', 'super-socializer') ?></a></p>
1923
  <a href="javascript:void(0)"><?php _e('Why is Facebook share count not working?', 'super-socializer'); ?></a>
1924
- <div><?php _e('Save Facebook App Id and Secret in the "Miscellaneous" section for Facebook share count to work', 'super-socializer'); ?></div>
1925
  <p>
1926
  <a href="javascript:void(0)"><?php _e('Why is Instagram icon redirecting to Instagram website?', 'super-socializer'); ?></a>
1927
  <div><?php _e('Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'super-socializer'); ?></div>
45
  $theChampSharingOptions['vertical_re_providers'] = array();
46
  }
47
  ?>
 
 
 
 
48
  <div class="menu_div" id="tabs" <?php echo isset($theChampSharingOptions['enable']) ? '' : 'style="display:none"' ?>>
49
 
50
  <h2 class="nav-tab-wrapper" style="height:34px">
802
  <td colspan="2">
803
  <script>
804
  // facebook app id and secret options toggle variables
805
+ var heateorSsHorizontalFacebookShareEnabled = <?php echo in_array('facebook', $theChampSharingOptions['horizontal_re_providers']) ? 'true' : 'false'; ?>, heateorSsVerticalFacebookShareEnabled = <?php echo in_array('facebook', $theChampSharingOptions['vertical_re_providers']) ? 'true' : 'false'; ?>;
806
  <?php
807
  $horSharingStyle = 'width:' . ( $theChampSharingOptions['horizontal_sharing_shape'] != 'rectangle' ? $theChampSharingOptions['horizontal_sharing_size'] : $theChampSharingOptions['horizontal_sharing_width'] ) . 'px;height:' . $line_height . 'px;';
808
  $horDeliciousRadius = '';
1578
  <div class="menu_containt_div" id="tabs-4">
1579
  <div class="clear"></div>
1580
  <div class="the_champ_left_column">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1581
 
1582
  <div class="stuffbox">
1583
  <h3><label><?php _e('Url shortener', 'super-socializer');?></label></h3>
1872
  <p><?php _e('<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'super-socializer'); ?></p>
1873
  <p><a href="http://support.heateor.com/why-is-sharer-not-showing-the-correct-image-title-and-other-meta-tags-content" target="_blank"><?php _e('Why is sharer not showing the correct image, title and other meta tags content?', 'super-socializer') ?></a></p>
1874
  <a href="javascript:void(0)"><?php _e('Why is Facebook share count not working?', 'super-socializer'); ?></a>
1875
+ <div><?php echo sprintf(__("After the recent changes introduced in the Facebook graph API, it's not possible to track Facebook shares using it. <a href='%s' target='_blank'>Social Shares Tracker</a> add-on allows you to track shares not just for Facebook but for all the social networks", 'super-socializer'), 'https://www.heateor.com/social-shares-tracker/'); ?></div>
1876
  <p>
1877
  <a href="javascript:void(0)"><?php _e('Why is Instagram icon redirecting to Instagram website?', 'super-socializer'); ?></a>
1878
  <div><?php _e('Instagram icon is there to send website visitors to the Instagram page of your choice. You can save the desired Instagram handle in "Instagram Username" option in "Standard Interface" and "Floating Interface" sections.', 'super-socializer'); ?></div>
js/admin/sharing/admin.js CHANGED
@@ -242,14 +242,6 @@ function theChampVerticalCounterPreview(val){
242
  }
243
  }
244
 
245
- function heateorSsToggleFbShareCountOptions() {
246
- if((heateorSsHorizontalFacebookShareEnabled || heateorSsVerticalFacebookShareEnabled) && !heateorSsFacebookAppSecretSaved){
247
- jQuery('#heateor_ss_fb_share_count_options').css('display', 'block');
248
- }else{
249
- jQuery('#heateor_ss_fb_share_count_options').css('display', 'none');
250
- }
251
- }
252
-
253
  "function" != typeof String.prototype.trim && (String.prototype.trim = function() {
254
  return this.replace(/^\s+|\s+$/g, "")
255
  }), jQuery(document).ready(function() {
242
  }
243
  }
244
 
 
 
 
 
 
 
 
 
245
  "function" != typeof String.prototype.trim && (String.prototype.trim = function() {
246
  return this.replace(/^\s+|\s+$/g, "")
247
  }), jQuery(document).ready(function() {
js/front/combined.js CHANGED
@@ -569,7 +569,7 @@ if(typeof theChampHorizontalSharingCountEnable == 'undefined'){
569
  if(typeof theChampVerticalSharingCountEnable == 'undefined'){
570
  var theChampVerticalSharingCountEnable = 0;
571
  }
572
- if(theChampSaveSharesLocally == 0 && (theChampHorizontalSharingCountEnable || theChampVerticalSharingCountEnable)){
573
  // get sharing counts on window load
574
  theChampLoadEvent(
575
  function(){
569
  if(typeof theChampVerticalSharingCountEnable == 'undefined'){
570
  var theChampVerticalSharingCountEnable = 0;
571
  }
572
+ if((typeof theChampSaveSharesLocally == 'undefined' || theChampSaveSharesLocally == 0) && (theChampHorizontalSharingCountEnable || theChampVerticalSharingCountEnable)){
573
  // get sharing counts on window load
574
  theChampLoadEvent(
575
  function(){
js/front/sharing/sharing.js CHANGED
@@ -558,7 +558,7 @@ if(typeof theChampHorizontalSharingCountEnable == 'undefined'){
558
  if(typeof theChampVerticalSharingCountEnable == 'undefined'){
559
  var theChampVerticalSharingCountEnable = 0;
560
  }
561
- if(theChampSaveSharesLocally == 0 && (theChampHorizontalSharingCountEnable || theChampVerticalSharingCountEnable)){
562
  // get sharing counts on window load
563
  theChampLoadEvent(
564
  function(){
558
  if(typeof theChampVerticalSharingCountEnable == 'undefined'){
559
  var theChampVerticalSharingCountEnable = 0;
560
  }
561
+ if((typeof theChampSaveSharesLocally == 'undefined' || theChampSaveSharesLocally == 0) && (theChampHorizontalSharingCountEnable || theChampVerticalSharingCountEnable)){
562
  // get sharing counts on window load
563
  theChampLoadEvent(
564
  function(){
languages/super-socializer-ar_AR.mo CHANGED
Binary file
languages/super-socializer-ar_AR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-15 14:15+0530\n"
6
- "PO-Revision-Date: 2021-06-15 14:16+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
21
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
22
  #: admin/social_login.php:5 admin/social_login.php:1984
23
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
24
  #, fuzzy, php-format
25
  msgid ""
26
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -31,7 +31,7 @@ msgstr ""
31
  "التغريد\""
32
 
33
  #: admin/general_options.php:15 admin/social_commenting.php:47
34
- #: super_socializer.php:2279
35
  #, fuzzy
36
  msgid "General Options"
37
  msgstr "المشاركات الأفقي"
@@ -85,21 +85,21 @@ msgstr ""
85
 
86
  #: admin/general_options.php:89 admin/like_buttons.php:780
87
  #: admin/social_commenting.php:400 admin/social_login.php:1980
88
- #: admin/social_sharing.php:1944 helper.php:942
89
  #, fuzzy
90
  msgid "Save Changes"
91
  msgstr "حفظ"
92
 
93
  #: admin/general_options.php:103 admin/like_buttons.php:790
94
  #: admin/social_commenting.php:410 admin/social_login.php:1990
95
- #: admin/social_sharing.php:1954
96
  #, fuzzy
97
  msgid "Instagram Shoutout"
98
  msgstr "إنستاجرام"
99
 
100
  #: admin/general_options.php:105 admin/like_buttons.php:792
101
  #: admin/social_commenting.php:412 admin/social_login.php:1992
102
- #: admin/social_sharing.php:1956
103
  msgid ""
104
  "If you can send (to hello@heateor.com) how this plugin is helping your "
105
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -218,28 +218,28 @@ msgid ""
218
  msgstr ""
219
  "عنصر التحكم الرئيسي لمثل الأزرار. يجب أن يتم التحقق من تمكين مثل وظائف الأزرار"
220
 
221
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
222
  #, fuzzy
223
  msgid "Standard Interface"
224
  msgstr "المشاركات الأفقي"
225
 
226
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
227
  #, fuzzy
228
  msgid "Floating Interface"
229
  msgstr "المشاركات الأفقي"
230
 
231
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
232
  msgid "Miscellaneous"
233
  msgstr ""
234
 
235
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
236
  msgid "3rd Party Integration"
237
  msgstr ""
238
 
239
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
240
  #: admin/social_login.php:45 admin/social_login.php:1946
241
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
242
- #: admin/social_sharing.php:1871
243
  #, fuzzy
244
  msgid "Shortcode & Widget"
245
  msgstr "استخدم كود مختصر | Include the shortcode"
@@ -247,7 +247,7 @@ msgstr "استخدم كود مختصر | Include the shortcode"
247
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
248
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
249
  #: admin/social_login.php:46 admin/social_login.php:1960
250
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
251
  #, fuzzy
252
  msgid "FAQ"
253
  msgstr "الأسئلة الشائعة "
@@ -268,25 +268,25 @@ msgid "Master control to enable horizontal like buttons"
268
  msgstr "عنصر التحكم الرئيسي لتمكين الأفقية مثل الأزرار"
269
 
270
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
271
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
272
  #, fuzzy
273
  msgid "Target Url"
274
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
275
 
276
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
277
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
278
  #, fuzzy
279
  msgid "Url of the webpage where icons are located (default)"
280
  msgstr "عنوان Url لصفحة ويب حيث توجد رموز (افتراضي)"
281
 
282
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
283
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
284
  #, fuzzy
285
  msgid "Url of the homepage of your website"
286
  msgstr "URL لعملاء الموقع (اختياري)"
287
 
288
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
289
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
290
  #, fuzzy
291
  msgid "Custom url"
292
  msgstr "رابط (URL) مخصّص"
@@ -297,7 +297,7 @@ msgid "Url to like/share/tweet and display like/share/tweet counts"
297
  msgstr "عنوان Url للتهم مثل/مشاركة/سقسقة مثل/مشاركة/سقسقة وعرض"
298
 
299
  #: admin/like_buttons.php:105 admin/social_login.php:1231
300
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
301
  #, fuzzy
302
  msgid "Title"
303
  msgstr "العنوان"
@@ -318,27 +318,27 @@ msgid "Select the providers for interface. Drag them to rearrange."
318
  msgstr "تحديد موفري للواجهة. اسحبها إلى إعادة ترتيب."
319
 
320
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
321
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
322
  #, fuzzy
323
  msgid "Horizontal alignment"
324
  msgstr "بلا محاذاة"
325
 
326
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
327
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
328
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308 inc/widget.php:446
329
  #: inc/widget.php:758
330
  #, fuzzy
331
  msgid "Left"
332
  msgstr "يسار"
333
 
334
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
335
  #, fuzzy
336
  msgid "Center"
337
  msgstr "وسط"
338
 
339
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
340
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
341
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309 inc/widget.php:447
342
  #: inc/widget.php:759
343
  #, fuzzy
344
  msgid "Right"
@@ -349,17 +349,17 @@ msgstr "يمين"
349
  msgid "Horizontal alignment of the interface"
350
  msgstr "بلا محاذاة"
351
 
352
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
353
  #, fuzzy
354
  msgid "Position with respect to content"
355
  msgstr "موضع الخلفية"
356
 
357
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
358
  #, fuzzy
359
  msgid "Top of the content"
360
  msgstr "أعلى"
361
 
362
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
363
  #, fuzzy
364
  msgid "Bottom of the content"
365
  msgstr "أسفل"
@@ -376,75 +376,75 @@ msgstr "واجهة الموقع"
376
 
377
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
378
  #: admin/social_login.php:1548 admin/social_login.php:1577
379
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
380
  #, fuzzy
381
  msgid "Homepage"
382
  msgstr "الصفحة الرئيسية لبرنامج المساعد "
383
 
384
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
385
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
386
  #, fuzzy
387
  msgid "Posts"
388
  msgstr "مقالات"
389
 
390
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
391
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
392
  #, fuzzy
393
  msgid "Pages"
394
  msgstr "صفحات"
395
 
396
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
397
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
398
  msgid "Excerpts and Posts page"
399
  msgstr ""
400
 
401
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
402
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
403
  #, fuzzy
404
  msgid "Category Archives"
405
  msgstr "الأرشيف"
406
 
407
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
408
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
409
  #, fuzzy
410
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
411
  msgstr "أرشفة صفحات (الفئة والعلامة والمؤلف أو تاريخ بناء صفحات)"
412
 
413
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
414
  #, fuzzy
415
  msgid "BuddyPress activity"
416
  msgstr "النشاط BuddyPress والمجموعات"
417
 
418
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
419
  msgid "BuddyPress group (only at top of content)"
420
  msgstr ""
421
 
422
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
423
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
424
  #, fuzzy
425
  msgid "BBPress forum"
426
  msgstr "المنتدى المستعمل | User Forum"
427
 
428
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
429
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
430
  #, fuzzy
431
  msgid "BBPress topic"
432
  msgstr "إضافات الموضوع"
433
 
434
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
435
  #, fuzzy
436
  msgid "BBPress reply"
437
  msgstr "رد"
438
 
439
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
440
  msgid "After individual product at WooCommerce Shop page"
441
  msgstr "بعد كل منتج على حدة في WooCommerce متجر الصفحة"
442
 
443
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
444
  msgid "WooCommerce Product Page"
445
  msgstr "WooCommerce صفحة المنتج"
446
 
447
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
448
  msgid "WooCommerce Thankyou Page"
449
  msgstr "WooCommerce الشكر الصفحة"
450
 
@@ -468,8 +468,8 @@ msgstr "تعطيل زر الإعجاب الموجود عمودياً على هذ
468
  msgid "Master control to enable vertical (floating) counter widget"
469
  msgstr "عنصر التحكم الرئيسي لتمكين القطعة العداد (عائمة) عمودي"
470
 
471
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
472
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287 inc/widget.php:460
473
  #: inc/widget.php:772
474
  #, fuzzy
475
  msgid "Background Color"
@@ -487,7 +487,7 @@ msgstr ""
487
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
488
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
489
 
490
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
491
  #, fuzzy
492
  msgid "Left offset"
493
  msgstr "يسار"
@@ -501,7 +501,7 @@ msgstr ""
501
  "تحديد رقم. زيادة في عدد سوف تحول واجهة نحو اليمين، ونقصان سيتحول نحو اليسار. "
502
  "يمكن أن يكون رقم سلبي جداً."
503
 
504
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
505
  #, fuzzy
506
  msgid "Right offset"
507
  msgstr "يمين"
@@ -515,7 +515,7 @@ msgstr ""
515
  "تحديد رقم. زيادة في عدد سيتحول واجهة نحو اليسار ونقصان سيتحول نحو اليمين. "
516
  "يمكن أن يكون رقم سلبي جداً."
517
 
518
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
519
  #, fuzzy
520
  msgid "Top offset"
521
  msgstr "أعلى"
@@ -528,7 +528,7 @@ msgid ""
528
  msgstr ""
529
  "تحديد رقم. زيادة في عدد سيتحول واجهة نحو الأسفل ونقصان سيتحول نحو الأعلى."
530
 
531
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
532
  #, fuzzy
533
  msgid "BuddyPress group"
534
  msgstr "تحرير ملفي الشخصي"
@@ -546,7 +546,7 @@ msgstr "إخفاء مثل أزرار على الأجهزة المحمولة"
546
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
547
  msgstr "إذا تمكين، وأزرار تشبه العمودية لا تظهر على الأجهزة المحمولة"
548
 
549
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
550
  #, fuzzy
551
  msgid "Url shortener"
552
  msgstr "عنوان Url للقيام بالتعليق على"
@@ -570,16 +570,16 @@ msgstr ""
570
  msgid "Enable bit.ly url shortener for tweet button"
571
  msgstr "تمكين bit.ly عنوان المنقص لزر سقسقة"
572
 
573
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
574
  #, fuzzy
575
  msgid "Master control to enable bit.ly url shortening for sharing"
576
  msgstr "عنصر التحكم الرئيسي لتمكين اختصار لمشاركة عنوان bit.ly"
577
 
578
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
579
  msgid "Bit.ly generic access token"
580
  msgstr ""
581
 
582
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
583
  #, php-format
584
  msgid ""
585
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -587,16 +587,16 @@ msgid ""
587
  "access token. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
588
  msgstr ""
589
 
590
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
591
  msgid "Clear Bitly Cache"
592
  msgstr ""
593
 
594
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
595
  #, fuzzy
596
  msgid "ShortUrl cache cleared successfully."
597
  msgstr "تم ربط حسابك بنجاح"
598
 
599
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
600
  msgid ""
601
  "Use this to delete short urls saved in database. Handy, if urls of your "
602
  "website have been changed but short urls are still being generated for old "
@@ -604,8 +604,8 @@ msgid ""
604
  msgstr ""
605
 
606
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
607
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
608
- #: admin/social_sharing.php:1749
609
  #, fuzzy
610
  msgid "Language"
611
  msgstr ""
@@ -656,11 +656,11 @@ msgstr ""
656
  "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى يجري تويتد ك \"عبر @USERNAME\". "
657
  "ترك فارغاً إذا كنت لا تريد أي اسم مستخدم."
658
 
659
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
660
  msgid "myCRED"
661
  msgstr ""
662
 
663
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
664
  msgid "Append myCRED referral ID to the urls being shared"
665
  msgstr ""
666
 
@@ -669,15 +669,15 @@ msgstr ""
669
  msgid "Like Buttons Shortcode & Widget"
670
  msgstr "استخدم كود مختصر | Include the shortcode"
671
 
672
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
673
  msgid "Why is there so much space between like buttons?"
674
  msgstr ""
675
 
676
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
677
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
678
  msgstr ""
679
 
680
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
681
  msgid "How to Place Title and Social Share Icons in the Same Row?"
682
  msgstr ""
683
 
@@ -918,7 +918,7 @@ msgid "Social Commenting Shortcode"
918
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
919
 
920
  #: admin/social_commenting.php:386 admin/social_login.php:1962
921
- #: admin/social_sharing.php:1904
922
  msgid ""
923
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
924
  "an online website for the plugin to function properly."
@@ -936,7 +936,7 @@ msgid ""
936
  msgstr ""
937
 
938
  #: admin/social_commenting.php:389 admin/social_login.php:1969
939
- #: admin/social_sharing.php:1919
940
  msgid "Why is my browser blocking some features of the plugin?"
941
  msgstr ""
942
 
@@ -974,7 +974,7 @@ msgid "Advanced Configuration"
974
  msgstr "إنشاء ملف الإعدادات"
975
 
976
  #: admin/social_login.php:41 admin/social_login.php:1746
977
- #: super_socializer.php:2347
978
  msgid "GDPR"
979
  msgstr ""
980
 
@@ -1132,7 +1132,7 @@ msgid "Reddit"
1132
  msgstr "ريديت"
1133
 
1134
  #: admin/social_login.php:203
1135
- msgid "Mailru"
1136
  msgstr ""
1137
 
1138
  #: admin/social_login.php:207
@@ -1148,7 +1148,7 @@ msgstr ""
1148
  msgid "Select Social ID provider to enable in Social Login"
1149
  msgstr "حدد موفر \"معرف الاجتماعية\" لتمكين \"تسجيل الدخول الاجتماعي\""
1150
 
1151
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1152
  #, fuzzy
1153
  msgid "Facebook App ID"
1154
  msgstr "رقم التعريف الخالص بك | ID"
@@ -1171,7 +1171,7 @@ msgstr ""
1171
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في الوصلة "
1172
  "المذكورة"
1173
 
1174
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1175
  #, fuzzy
1176
  msgid "Facebook App Secret"
1177
  msgstr "رقم التعريف الخالص بك | ID"
@@ -2187,7 +2187,7 @@ msgid ""
2187
  "photo\" section in BuddyPress profile at front-end"
2188
  msgstr ""
2189
 
2190
- #: admin/social_login.php:1490 super_socializer.php:1946
2191
  msgid "Email required"
2192
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
2193
 
@@ -2514,34 +2514,24 @@ msgstr "عنصر التحكم الرئيسي لتمكين مشاركة أفقي
2514
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2515
  msgstr ""
2516
 
2517
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2518
- msgid ""
2519
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for Facebook "
2520
- "share count to work"
2521
- msgstr ""
2522
-
2523
- #: admin/social_sharing.php:49
2524
- msgid "Dismiss this notice"
2525
- msgstr "إقالة هذا الإشعار"
2526
-
2527
- #: admin/social_sharing.php:56
2528
  msgid "Theme Selection"
2529
  msgstr ""
2530
 
2531
- #: admin/social_sharing.php:68
2532
  #, fuzzy
2533
  msgid "Troubleshooter"
2534
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
2535
 
2536
- #: admin/social_sharing.php:77
2537
  msgid "Standard interface theme"
2538
  msgstr ""
2539
 
2540
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2541
  msgid "Icon Preview"
2542
  msgstr "الرمز معاينة"
2543
 
2544
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2545
  #, fuzzy
2546
  msgid ""
2547
  "Do not forget to save the configuration after making changes by clicking the "
@@ -2549,79 +2539,79 @@ msgid ""
2549
  msgstr ""
2550
  "لا ننسى لحفظ التكوين بعد إجراء التغييرات بواسطة النقر فوق الحفظ الزر أدناه"
2551
 
2552
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2553
  #, fuzzy
2554
  msgid "Shape"
2555
  msgstr "شكل"
2556
 
2557
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2558
  #, fuzzy
2559
  msgid "Round"
2560
  msgstr "مستدير"
2561
 
2562
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2563
  #, fuzzy
2564
  msgid "Square"
2565
  msgstr "مربع"
2566
 
2567
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2568
  msgid "Rectangle"
2569
  msgstr ""
2570
 
2571
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2572
  #, fuzzy
2573
  msgid "Shape of the sharing icons"
2574
  msgstr "المشاركات الأفقي"
2575
 
2576
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2577
  #, fuzzy
2578
  msgid "Size (in pixels)"
2579
  msgstr "حجم"
2580
 
2581
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2582
  #, fuzzy
2583
  msgid "Size of the sharing icons"
2584
  msgstr "المشاركات الأفقي"
2585
 
2586
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2587
  #, fuzzy
2588
  msgid "Width (in pixels)"
2589
  msgstr "حجم"
2590
 
2591
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2592
  #, fuzzy
2593
  msgid "Width of the sharing icons"
2594
  msgstr "المشاركات الأفقي"
2595
 
2596
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2597
  #, fuzzy
2598
  msgid "Height (in pixels)"
2599
  msgstr "حجم"
2600
 
2601
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2602
  #, fuzzy
2603
  msgid "Height of the sharing icons"
2604
  msgstr "المشاركات الأفقي"
2605
 
2606
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2607
  #, fuzzy
2608
  msgid "Border radius (in pixels)"
2609
  msgstr "حجم"
2610
 
2611
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2612
  msgid ""
2613
  "Specify a value for rounded corners. More the value, more rounded will the "
2614
  "corners be. Leave empty for sharp corners."
2615
  msgstr ""
2616
 
2617
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2618
  #, fuzzy
2619
  msgid "Logo Color"
2620
  msgstr "لون الخلفية"
2621
 
2622
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2623
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2624
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2625
  #, fuzzy
2626
  msgid "Default"
2627
  msgstr ""
@@ -2630,13 +2620,13 @@ msgstr ""
2630
  "الظهور وليس الحصول على تمكين في الواجهة الأمامية من موقع الويب الخاص بك "
2631
  "وتعليقا الاجتماعية."
2632
 
2633
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2634
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2635
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2636
  msgid "On Hover"
2637
  msgstr ""
2638
 
2639
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2640
  #, fuzzy
2641
  msgid ""
2642
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
@@ -2647,7 +2637,7 @@ msgstr ""
2647
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
2648
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
2649
 
2650
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2651
  #, fuzzy
2652
  msgid ""
2653
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
@@ -2659,172 +2649,172 @@ msgstr ""
2659
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
2660
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
2661
 
2662
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2663
  msgid "Border"
2664
  msgstr ""
2665
 
2666
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2667
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2668
  #, fuzzy
2669
  msgid "Border Width"
2670
  msgstr "أضف ودجت"
2671
 
2672
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2673
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2674
  #, fuzzy
2675
  msgid "Border Color"
2676
  msgstr "لون الخلفية"
2677
 
2678
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2679
  #, fuzzy
2680
  msgid "Icon border"
2681
  msgstr "الرمز معاينة"
2682
 
2683
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2684
  msgid "Counter Position"
2685
  msgstr ""
2686
 
2687
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2688
  msgid "(applies, if counter enabled)"
2689
  msgstr ""
2690
 
2691
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2692
  msgid "Top"
2693
  msgstr ""
2694
 
2695
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2696
  msgid "Bottom"
2697
  msgstr ""
2698
 
2699
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2700
  msgid "Inner Left"
2701
  msgstr ""
2702
 
2703
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2704
  msgid "Inner Top"
2705
  msgstr ""
2706
 
2707
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2708
  #, fuzzy
2709
  msgid "Inner Right"
2710
  msgstr "يمين"
2711
 
2712
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2713
  msgid "Inner Bottom"
2714
  msgstr ""
2715
 
2716
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2717
  #, fuzzy
2718
  msgid "Position of share counter"
2719
  msgstr "أسفل"
2720
 
2721
- #: admin/social_sharing.php:375
2722
  #, fuzzy
2723
  msgid "Floating interface theme"
2724
  msgstr "المشاركات الأفقي"
2725
 
2726
- #: admin/social_sharing.php:679
2727
  #, fuzzy
2728
  msgid "Standard Sharing Interface Options"
2729
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2730
 
2731
- #: admin/social_sharing.php:684
2732
  #, fuzzy
2733
  msgid "Enable Standard sharing interface"
2734
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2735
 
2736
- #: admin/social_sharing.php:694
2737
  #, fuzzy
2738
  msgid "Master control to enable standard sharing"
2739
  msgstr "عنصر التحكم الرئيسي لتمكين مشاركة أفقية"
2740
 
2741
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2742
  #, fuzzy
2743
  msgid "Url to share"
2744
  msgstr " شارك الآخرين بهذة الفقرة"
2745
 
2746
- #: admin/social_sharing.php:735
2747
  #, fuzzy
2748
  msgid "The text to display above the sharing interface"
2749
  msgstr "النص المطلوب عرضه أعلاه واجهة المشاركة"
2750
 
2751
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2752
  #, fuzzy
2753
  msgid "Instagram username"
2754
  msgstr "إنستاجرام"
2755
 
2756
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2757
  msgid ""
2758
  "Username of the Instagram account you want to redirect users to, on clicking "
2759
  "the icon"
2760
  msgstr ""
2761
 
2762
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2763
  #, fuzzy
2764
  msgid "HTML ID of container element of comment form"
2765
  msgstr "ID HTML التعليق حاوية شكل"
2766
 
2767
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2768
  msgid ""
2769
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2770
  "icon."
2771
  msgstr ""
2772
 
2773
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2774
  #, fuzzy
2775
  msgid "Rearrange icons"
2776
  msgstr "إعادة ترتيب الرموز"
2777
 
2778
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2779
  #, fuzzy
2780
  msgid "Drag the icons to rearrange in desired order"
2781
  msgstr "اسحب رموز لإعادة ترتيب في الترتيب المطلوب"
2782
 
2783
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2784
  #, fuzzy
2785
  msgid "Select Sharing Services"
2786
  msgstr "اختر مقالة"
2787
 
2788
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2789
  msgid "Select sharing services to show in social share bar"
2790
  msgstr ""
2791
 
2792
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2793
  #, fuzzy
2794
  msgid "Search social network"
2795
  msgstr "حددت كشبكة الإجتماعية اللأساسية"
2796
 
2797
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2798
  #, fuzzy
2799
  msgid "Horizontal alignment of the sharing interface"
2800
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2801
 
2802
- #: admin/social_sharing.php:946
2803
  #, fuzzy
2804
  msgid "Specify position of the sharing interface with respect to the content"
2805
  msgstr "تحديد موقف واجهة المشاركة فيما يتعلق بالمحتوى"
2806
 
2807
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2808
  msgid "Placement"
2809
  msgstr ""
2810
 
2811
- #: admin/social_sharing.php:1021
2812
  #, fuzzy
2813
  msgid "Specify the pages where you want to enable Sharing interface"
2814
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة"
2815
 
2816
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2817
  #, fuzzy
2818
  msgid "Show share counts"
2819
  msgstr "عرض عدد المقالات"
2820
 
2821
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
2822
  msgid ""
2823
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2824
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2825
  msgstr ""
2826
 
2827
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2828
  #, php-format
2829
  msgid ""
2830
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2833,27 +2823,32 @@ msgid ""
2833
  "website."
2834
  msgstr ""
2835
 
2836
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2837
  #, fuzzy
2838
  msgid "If enabled, share counts are displayed above sharing icons."
2839
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
2840
 
2841
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2842
  #, fuzzy
2843
  msgid "Show total shares"
2844
  msgstr "عرض عدد المقالات"
2845
 
2846
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2847
  #, fuzzy
2848
  msgid "If enabled, total shares will be displayed with sharing icons"
2849
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
2850
 
2851
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2852
  #, fuzzy
2853
  msgid "Enable 'More' icon"
2854
  msgstr "الرمز معاينة"
2855
 
2856
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2857
  #, fuzzy
2858
  msgid ""
2859
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
@@ -2862,22 +2857,22 @@ msgstr ""
2862
  "إذا تم تمكين، \"مزيد\" سيتم عرض رمز بعد تحديد تقاسم الرموز التي يظهر شبكات "
2863
  "مشاركة إضافية في المنبثقة"
2864
 
2865
- #: admin/social_sharing.php:1094
2866
  #, fuzzy
2867
  msgid "Floating Sharing Interface Options"
2868
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
2869
 
2870
- #: admin/social_sharing.php:1099
2871
  #, fuzzy
2872
  msgid "Enable Floating sharing interface"
2873
  msgstr "تمكين واجهة المشاركة (عائمة) عمودي"
2874
 
2875
- #: admin/social_sharing.php:1109
2876
  #, fuzzy
2877
  msgid "Master control to enable floating sharing widget"
2878
  msgstr "عنصر التحكم الرئيسي لتمكين القطعة المشاركة (عائمة) عمودي"
2879
 
2880
- #: admin/social_sharing.php:1297
2881
  #, fuzzy
2882
  msgid ""
2883
  "Specify the color or hex code (example #cc78e0) for the background of "
@@ -2889,7 +2884,7 @@ msgstr ""
2889
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
2890
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
2891
 
2892
- #: admin/social_sharing.php:1335
2893
  #, fuzzy
2894
  msgid ""
2895
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -2898,7 +2893,7 @@ msgstr ""
2898
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليمين ونقصان سيتحول نحو "
2899
  "اليسار. يمكن أن يكون رقم سلبي جداً."
2900
 
2901
- #: admin/social_sharing.php:1354
2902
  #, fuzzy
2903
  msgid ""
2904
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -2907,7 +2902,7 @@ msgstr ""
2907
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليسار ونقصان سيتحول نحو "
2908
  "اليمين. يمكن أن يكون رقم سلبي جداً."
2909
 
2910
- #: admin/social_sharing.php:1372
2911
  #, fuzzy
2912
  msgid ""
2913
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -2916,144 +2911,111 @@ msgstr ""
2916
  "تحديد رقم. زيادة في عدد سيتحول واجهة مشاركة نحو الأسفل ونقصان سيتحول نحو "
2917
  "الأعلى."
2918
 
2919
- #: admin/social_sharing.php:1428
2920
  #, fuzzy
2921
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2922
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة العمودي"
2923
 
2924
- #: admin/social_sharing.php:1491
2925
  #, fuzzy
2926
  msgid "Hide floating slider"
2927
  msgstr ""
2928
  "رسالة لمستخدمين الذين قاموا بتسجيل الخروج من البرنامج | Message for Logged-"
2929
  "out Users"
2930
 
2931
- #: admin/social_sharing.php:1501
2932
  msgid "Hides the slider arrow present below the floating share bar"
2933
  msgstr ""
2934
 
2935
- #: admin/social_sharing.php:1508
2936
  #, fuzzy
2937
  msgid "Vertical floating bar responsiveness"
2938
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
2939
 
2940
- #: admin/social_sharing.php:1511
2941
  #, php-format
2942
  msgid "Display vertical interface only when screen is wider than %s pixels"
2943
  msgstr ""
2944
 
2945
- #: admin/social_sharing.php:1518
2946
  msgid ""
2947
  "Display vertical interface only when screen is wider than the width specified."
2948
  msgstr ""
2949
 
2950
- #: admin/social_sharing.php:1525
2951
  msgid "Horizontal floating bar responsiveness"
2952
  msgstr ""
2953
 
2954
- #: admin/social_sharing.php:1528
2955
  #, fuzzy, php-format
2956
  msgid ""
2957
  "Stick vertical floating interface horizontally at bottom only when screen is "
2958
  "narrower than %s pixels"
2959
  msgstr "إذا تمكين، لن تظهر واجهة تقاسم عمودية على الأجهزة النقالة"
2960
 
2961
- #: admin/social_sharing.php:1535
2962
  msgid ""
2963
  "Stick vertical floating interface horizontally at bottom only when screen is "
2964
  "narrower than the width specified"
2965
  msgstr ""
2966
 
2967
- #: admin/social_sharing.php:1544
2968
  #, fuzzy
2969
  msgid "Horizontal floating bar position"
2970
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2971
 
2972
- #: admin/social_sharing.php:1547
2973
  #, php-format
2974
  msgid "%s pixels from %s"
2975
  msgstr ""
2976
 
2977
- #: admin/social_sharing.php:1548
2978
  msgid "Auto-adjust according to screen width (responsive)"
2979
  msgstr ""
2980
 
2981
- #: admin/social_sharing.php:1555
2982
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2983
  msgstr ""
2984
 
2985
- #: admin/social_sharing.php:1575
2986
- #, fuzzy
2987
- msgid "Facebook Share Count"
2988
- msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
2989
-
2990
- #: admin/social_sharing.php:1579
2991
- msgid "Note"
2992
- msgstr ""
2993
-
2994
- #: admin/social_sharing.php:1579
2995
- msgid "Required only to track Facebook share count"
2996
- msgstr ""
2997
-
2998
- #: admin/social_sharing.php:1594
2999
- #, fuzzy, php-format
3000
- msgid ""
3001
- "Required for Facebook share count to work. Please follow the documentation at "
3002
- "<a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
3003
- msgstr ""
3004
- "المطلوبة \"دخول ألفيس بوك الاجتماعية\" للعمل. الرجاء تتبع الوثائق الموجودة في "
3005
- "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
3006
- "فيسبوك"
3007
-
3008
- #: admin/social_sharing.php:1611
3009
- #, fuzzy, php-format
3010
- msgid ""
3011
- "Required for Facebook share count to work. Please follow the documentation at "
3012
- "<a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
3013
- msgstr ""
3014
- "المطلوبة \"دخول ألفيس بوك الاجتماعية\" للعمل. الرجاء تتبع الوثائق الموجودة في "
3015
- "<a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف التطبيق "
3016
- "فيسبوك"
3017
-
3018
- #: admin/social_sharing.php:1625
3019
  #, fuzzy
3020
  msgid "Use shortlinks already installed"
3021
  msgstr "تمّ التنصيب مسبقاً"
3022
 
3023
- #: admin/social_sharing.php:1635
3024
  msgid "Uses default short url permalinks without using any additional plugin"
3025
  msgstr ""
3026
 
3027
- #: admin/social_sharing.php:1642
3028
  #, fuzzy
3029
  msgid "Enable bit.ly url shortener for sharing"
3030
  msgstr "تمكين bit.ly عنوان المنقص لتقاسم"
3031
 
3032
- #: admin/social_sharing.php:1696
3033
  msgid "Share Count Cache"
3034
  msgstr ""
3035
 
3036
- #: admin/social_sharing.php:1701
3037
  msgid "Refresh Share Count cache every"
3038
  msgstr ""
3039
 
3040
- #: admin/social_sharing.php:1706
3041
  msgid "Second(s)"
3042
  msgstr ""
3043
 
3044
- #: admin/social_sharing.php:1707
3045
  msgid "Minute(s)"
3046
  msgstr ""
3047
 
3048
- #: admin/social_sharing.php:1708
3049
  msgid "Hour(s)"
3050
  msgstr ""
3051
 
3052
- #: admin/social_sharing.php:1709
3053
  msgid "Day(s)"
3054
  msgstr ""
3055
 
3056
- #: admin/social_sharing.php:1717
3057
  #, php-format
3058
  msgid ""
3059
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -3061,20 +3023,20 @@ msgid ""
3061
  "\"_blank\">here</a>"
3062
  msgstr ""
3063
 
3064
- #: admin/social_sharing.php:1724
3065
  msgid "Clear Share Counts Cache"
3066
  msgstr ""
3067
 
3068
- #: admin/social_sharing.php:1728
3069
  #, fuzzy
3070
  msgid "Share Counts cache cleared successfully."
3071
  msgstr "تم ربط حسابك بنجاح"
3072
 
3073
- #: admin/social_sharing.php:1735
3074
  msgid "Use this to clear cached share counts"
3075
  msgstr ""
3076
 
3077
- #: admin/social_sharing.php:1759
3078
  #, fuzzy, php-format
3079
  msgid ""
3080
  "Enter the code of the language you want to use for like buttons. You can find "
@@ -3085,17 +3047,17 @@ msgstr ""
3085
  "رموز اللغة على <a href=\"%s\" target=\"_blank\">هذا الرابط</a>. اتركه فارغاً ل "
3086
  "language(English) الافتراضي"
3087
 
3088
- #: admin/social_sharing.php:1768
3089
  #, fuzzy
3090
  msgid "Username in sharing"
3091
  msgstr "شارك الأخرين عبر تويتر"
3092
 
3093
- #: admin/social_sharing.php:1773
3094
  #, fuzzy
3095
  msgid "Twitter username (without @)"
3096
  msgstr "قالب بدون %1$s"
3097
 
3098
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
3099
  #, fuzzy
3100
  msgid ""
3101
  "Provided username will be appended after the content being shared as \"via "
@@ -3105,29 +3067,29 @@ msgstr ""
3105
  "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى ويجري تقاسم \"عبر @USERNAME\". "
3106
  "ترك فارغاً إذا كنت لا تريد أي اسم مستخدم في محتوى يجري تقاسمها."
3107
 
3108
- #: admin/social_sharing.php:1791
3109
  #, fuzzy
3110
  msgid "Buffer username (without @)"
3111
  msgstr "قالب بدون %1$s"
3112
 
3113
- #: admin/social_sharing.php:1810
3114
  msgid "AMP"
3115
  msgstr ""
3116
 
3117
- #: admin/social_sharing.php:1815
3118
  #, fuzzy
3119
  msgid "Enable sharing on AMP pages"
3120
  msgstr "صفحة"
3121
 
3122
- #: admin/social_sharing.php:1825
3123
  msgid "Enable this option to render sharing icons on AMP pages"
3124
  msgstr ""
3125
 
3126
- #: admin/social_sharing.php:1882
3127
  msgid "Facebook Sharing Troubleshooter"
3128
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
3129
 
3130
- #: admin/social_sharing.php:1887
3131
  #, fuzzy
3132
  msgid ""
3133
  "If Facebook sharing is not working fine, click at the following link and "
@@ -3137,58 +3099,67 @@ msgstr ""
3137
  "إذا كان تقاسم بوك لا تعمل بشكل جيد، انقر على الرابط التالي وأدخل عنوان url "
3138
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
3139
 
3140
- #: admin/social_sharing.php:1905
3141
  msgid ""
3142
  "Why is sharer not showing the correct image, title and other meta tags "
3143
  "content?"
3144
  msgstr ""
3145
 
3146
- #: admin/social_sharing.php:1906
3147
  msgid "Why is Facebook share count not working?"
3148
  msgstr ""
3149
 
3150
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
3151
  msgid "Why is Instagram icon redirecting to Instagram website?"
3152
  msgstr ""
3153
 
3154
- #: admin/social_sharing.php:1910
3155
  msgid ""
3156
  "Instagram icon is there to send website visitors to the Instagram page of "
3157
  "your choice. You can save the desired Instagram handle in \"Instagram Username"
3158
  "\" option in \"Standard Interface\" and \"Floating Interface\" sections."
3159
  msgstr ""
3160
 
3161
- #: admin/social_sharing.php:1913
3162
  #, fuzzy
3163
  msgid "How to customize the url being shared?"
3164
  msgstr "عرض عدد المقالات"
3165
 
3166
- #: admin/social_sharing.php:1914
3167
  msgid ""
3168
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
3169
  msgstr ""
3170
 
3171
- #: admin/social_sharing.php:1915
3172
  msgid ""
3173
  "It takes some time for their service to track the shares made on Twitter from "
3174
  "your website. If you still feel it's taking too long you can contact their "
3175
  "support directly from their website."
3176
  msgstr ""
3177
 
3178
- #: admin/social_sharing.php:1918
3179
  msgid ""
3180
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
3181
  msgstr ""
3182
 
3183
- #: admin/social_sharing.php:1920
3184
  msgid "Why the color of share icons is not being updated?"
3185
  msgstr ""
3186
 
3187
- #: admin/social_sharing.php:1921
3188
  msgid "Why Facebook share counts are not appearing?"
3189
  msgstr ""
3190
 
3191
- #: admin/social_sharing.php:1922
3192
  #, fuzzy
3193
  msgid ""
3194
  "How can I show share counts of my website rather than of individual pages/"
@@ -3197,43 +3168,43 @@ msgstr ""
3197
  "كيف يمكن إظهار التهم حصة من موقع الويب الخاص بي بدلاً من الصفحات الفردية/"
3198
  "الوظائف؟"
3199
 
3200
- #: admin/social_sharing.php:1923
3201
  #, fuzzy
3202
  msgid "How can I disable sharing on particular page/post?"
3203
  msgstr "كيف يمكن تعطيل مشاركة في الصفحة/وظيفة معينة؟"
3204
 
3205
- #: admin/social_sharing.php:1924
3206
  #, fuzzy
3207
  msgid "How can I specify minimum sharing count for sharing networks?"
3208
  msgstr "كيف يمكن تحديد الحد الأدنى من عدد مرات مشاركة لشبكات تبادل؟"
3209
 
3210
- #: admin/social_sharing.php:1925
3211
  msgid "How to share specific page?"
3212
  msgstr ""
3213
 
3214
- #: admin/social_sharing.php:1926
3215
  msgid "How to integrate Google Analytics with sharing?"
3216
  msgstr ""
3217
 
3218
- #: admin/social_sharing.php:1927
3219
  msgid "How to customize the look of total share counts?"
3220
  msgstr ""
3221
 
3222
- #: admin/social_sharing.php:1928
3223
  #, fuzzy
3224
  msgid "How to customize the look of individual share counts?"
3225
  msgstr "عرض عدد المقالات"
3226
 
3227
- #: admin/social_sharing.php:1929
3228
  #, fuzzy
3229
  msgid "How to show Whatsapp icon only on mobile devices?"
3230
  msgstr "إخفاء تقاسم على الأجهزة النقالة"
3231
 
3232
- #: admin/social_sharing.php:1930
3233
  msgid "How to hide arrow after floating sharing bar?"
3234
  msgstr ""
3235
 
3236
- #: admin/social_sharing.php:1931
3237
  msgid "Why is share count not getting updated?"
3238
  msgstr ""
3239
 
@@ -3260,15 +3231,15 @@ msgstr ""
3260
  msgid "Settings"
3261
  msgstr "الإعدادات"
3262
 
3263
- #: helper.php:579
3264
  msgid "Account linked successfully"
3265
  msgstr "تم ربط حسابك بنجاح"
3266
 
3267
- #: helper.php:583
3268
  msgid "Account already exists or linked"
3269
  msgstr "حساب موجود بالفعل أو مرتبطة مسبقاً"
3270
 
3271
- #: helper.php:619 helper.php:621
3272
  #, fuzzy
3273
  msgid "Login with"
3274
  msgstr ""
@@ -3276,104 +3247,104 @@ msgstr ""
3276
  "من خلال الدخول الاجتماعي. لن يؤدي إلا إلى المستخدمين الحاليين تكون قادرة على "
3277
  "الدخول الاجتماعي."
3278
 
3279
- #: helper.php:656 helper.php:662
3280
  msgid "Currently"
3281
  msgstr "في الوقت الحاضر"
3282
 
3283
- #: helper.php:656 helper.php:662
3284
  msgid "Connected with"
3285
  msgstr ""
3286
 
3287
- #: helper.php:656 helper.php:662
3288
  msgid "Remove"
3289
  msgstr "إزالة"
3290
 
3291
- #: helper.php:733
3292
  #, fuzzy
3293
  msgid "Social Account Linking"
3294
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
3295
 
3296
- #: helper.php:783
3297
  #, fuzzy
3298
  msgid "Disable Standard Social Sharing on this "
3299
  msgstr "تعطيل ظهور مشاركة الاجتماعي عمودي على هذا"
3300
 
3301
- #: helper.php:788
3302
  #, fuzzy
3303
  msgid "Disable Floating Social Sharing on this "
3304
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
3305
 
3306
- #: helper.php:793
3307
  #, fuzzy
3308
  msgid "Disable Standard like buttons on this "
3309
  msgstr "تعطيل زر الإعجاب الموجود عمودياً على هذا"
3310
 
3311
- #: helper.php:798
3312
  #, fuzzy
3313
  msgid "Disable Floating like buttons on this "
3314
  msgstr "تعطيل زر الإعجاب الموجود أفقياً على هذا"
3315
 
3316
- #: helper.php:803
3317
  msgid "Disable Social Commenting on this "
3318
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
3319
 
3320
- #: helper.php:812
3321
  #, fuzzy
3322
  msgid "Standard Sharing Interface"
3323
  msgstr "المشاركات الأفقي"
3324
 
3325
- #: helper.php:818 helper.php:837
3326
  msgid "Starting share count for "
3327
  msgstr "بدء العد حصة ل"
3328
 
3329
- #: helper.php:831
3330
  #, fuzzy
3331
  msgid "Floating Sharing Interface"
3332
  msgstr "المشاركات الأفقي"
3333
 
3334
- #: helper.php:927 super_socializer.php:2363
3335
  #, fuzzy
3336
  msgid "Social Avatar"
3337
  msgstr "صغير الرمزية رابط"
3338
 
3339
- #: helper.php:930 super_socializer.php:2374
3340
  msgid ""
3341
  "Do not fetch and update social avatar from my profile, next time I Social "
3342
  "Login"
3343
  msgstr ""
3344
 
3345
- #: helper.php:931 super_socializer.php:2378
3346
  msgid "Update social avatar, next time I Social Login"
3347
  msgstr ""
3348
 
3349
- #: helper.php:934
3350
  #, fuzzy
3351
  msgid "Small Avatar"
3352
  msgstr "صغير الرمزية رابط"
3353
 
3354
- #: helper.php:938
3355
  #, fuzzy
3356
  msgid "Large Avatar"
3357
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
3358
 
3359
- #: helper.php:998 super_socializer.php:1924
3360
  msgid "Please verify your email address to login."
3361
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
3362
 
3363
- #: helper.php:1035
3364
  msgid "Click to delete social profile data"
3365
  msgstr ""
3366
 
3367
- #: helper.php:1064
3368
  #, fuzzy
3369
  msgid "Deleting"
3370
  msgstr "الإعدادات"
3371
 
3372
- #: helper.php:1074
3373
  msgid "Deleted"
3374
  msgstr ""
3375
 
3376
- #: helper.php:1076
3377
  msgid "Something bad happened"
3378
  msgstr ""
3379
 
@@ -3433,25 +3404,25 @@ msgstr "الأرشيف"
3433
  msgid "More"
3434
  msgstr ""
3435
 
3436
- #: inc/social_sharing.php:241 super_socializer.php:2034
3437
  msgid "Share"
3438
  msgstr ""
3439
 
3440
- #: inc/social_sharing.php:241 super_socializer.php:2034
3441
  msgid "Shares"
3442
  msgstr ""
3443
 
3444
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3445
  #, fuzzy
3446
  msgid "Invalid request"
3447
  msgstr "طلب غير صحيح"
3448
 
3449
- #: inc/social_sharing.php:949
3450
  #, fuzzy
3451
  msgid "Providers not selected"
3452
  msgstr "محدد | selected"
3453
 
3454
- #: inc/social_sharing_networks.php:57
3455
  msgid "Copy Link"
3456
  msgstr ""
3457
 
@@ -3740,7 +3711,11 @@ msgstr ""
3740
  msgid "RSS Feed URL:"
3741
  msgstr ""
3742
 
3743
- #: super_socializer.php:1707
 
 
 
 
3744
  #, fuzzy
3745
  msgid ""
3746
  "cURL is not enabled at your website server. Please contact your website "
@@ -3749,7 +3724,7 @@ msgstr ""
3749
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
3750
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
3751
 
3752
- #: super_socializer.php:1735
3753
  #, fuzzy, php-format
3754
  msgid ""
3755
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3758,7 +3733,7 @@ msgstr ""
3758
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
3759
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
3760
 
3761
- #: super_socializer.php:1738
3762
  #, fuzzy, php-format
3763
  msgid ""
3764
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3767,7 +3742,7 @@ msgstr ""
3767
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
3768
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
3769
 
3770
- #: super_socializer.php:1741
3771
  msgid ""
3772
  "Make sure cURL is enabled at your website server. You may need to contact the "
3773
  "server administrator of your website to verify this"
@@ -3775,119 +3750,119 @@ msgstr ""
3775
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
3776
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
3777
 
3778
- #: super_socializer.php:1902
3779
  msgid "Search"
3780
  msgstr ""
3781
 
3782
- #: super_socializer.php:1924
3783
  msgid "Your email has been verified. Now you can login to your account"
3784
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
3785
 
3786
- #: super_socializer.php:1928
3787
  msgid "Notification"
3788
  msgstr "تنبيهات"
3789
 
3790
- #: super_socializer.php:1949
3791
  msgid "Please check your email inbox to complete the registration."
3792
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
3793
 
3794
- #: super_socializer.php:2018
3795
  msgid "Leave a reply"
3796
  msgstr "اترك رد"
3797
 
3798
- #: super_socializer.php:2034
3799
  #, fuzzy
3800
  msgid "Link copied."
3801
  msgstr "شارك الأخرين عبر لنكيدان"
3802
 
3803
- #: super_socializer.php:2279
3804
  #, fuzzy
3805
  msgid "Super Socializer - General Options"
3806
  msgstr "آخر تسجيل دخول | Last Login"
3807
 
3808
- #: super_socializer.php:2350
3809
  msgid ""
3810
  "I agree to my personal data being stored and used as per Privacy Policy and "
3811
  "Terms and Conditions"
3812
  msgstr ""
3813
 
3814
- #: super_socializer.php:2354
3815
  msgid ""
3816
  "I revoke my consent to store and use my personal data. Kindly delete my "
3817
  "personal data saved in this website."
3818
  msgstr ""
3819
 
3820
- #: super_socializer.php:2366
3821
  msgid "Small Avatar Url"
3822
  msgstr "صغير الرمزية رابط"
3823
 
3824
- #: super_socializer.php:2370
3825
  #, fuzzy
3826
  msgid "Large Avatar Url"
3827
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
3828
 
3829
- #: super_socializer.php:2472
3830
  msgid "Login with your Social ID"
3831
  msgstr ""
3832
 
3833
- #: super_socializer.php:2473
3834
  msgid "Email you entered is already registered or invalid"
3835
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
3836
 
3837
- #: super_socializer.php:2480
3838
  msgid "Please enter a valid email address. You might be required to verify it"
3839
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
3840
 
3841
- #: super_socializer.php:2484 super_socializer.php:3238
3842
  msgid "Link your social account to login to your account at this website"
3843
  msgstr ""
3844
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام الى "
3845
  "حسابك في هذا الموقع"
3846
 
3847
- #: super_socializer.php:2741
3848
  msgid "Thanks for installing Super Socializer plugin"
3849
  msgstr ""
3850
 
3851
- #: super_socializer.php:2743
3852
  msgid "Configure the Plugin"
3853
  msgstr ""
3854
 
3855
- #: super_socializer.php:2754
3856
  msgid ""
3857
  "Update \"Facebook Comments Moderation\" add-on for compatibility with current "
3858
  "version of Super Socializer"
3859
  msgstr ""
3860
 
3861
- #: super_socializer.php:2763
3862
  msgid ""
3863
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3864
  "version of Super Socializer"
3865
  msgstr ""
3866
 
3867
- #: super_socializer.php:2772
3868
  msgid ""
3869
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3870
  "compatibility with the current version of Super Socializer"
3871
  msgstr ""
3872
 
3873
- #: super_socializer.php:2781
3874
  msgid ""
3875
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3876
  "with current version of Super Socializer"
3877
  msgstr ""
3878
 
3879
- #: super_socializer.php:2790
3880
  msgid ""
3881
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3882
  "with current version of Super Socializer"
3883
  msgstr ""
3884
 
3885
- #: super_socializer.php:2801
3886
  #, php-format
3887
  msgid "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3888
  msgstr ""
3889
 
3890
- #: super_socializer.php:2810
3891
  #, php-format
3892
  msgid ""
3893
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3895,7 +3870,7 @@ msgid ""
3895
  "Instagram App Secret <a href=\"%s\">here</a>"
3896
  msgstr ""
3897
 
3898
- #: super_socializer.php:2819 super_socializer.php:2828
3899
  #, php-format
3900
  msgid ""
3901
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3904,13 +3879,13 @@ msgid ""
3904
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3905
  msgstr ""
3906
 
3907
- #: super_socializer.php:2844
3908
  #, php-format
3909
  msgid ""
3910
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3911
  msgstr ""
3912
 
3913
- #: super_socializer.php:2868
3914
  #, php-format
3915
  msgid ""
3916
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3918,13 +3893,13 @@ msgid ""
3918
  "target=\"_blank\">here</a>"
3919
  msgstr ""
3920
 
3921
- #: super_socializer.php:2868 super_socializer.php:2893 super_socializer.php:2918
3922
- #: super_socializer.php:2943 super_socializer.php:2976 super_socializer.php:3004
3923
- #: super_socializer.php:3031
3924
  msgid "Okay"
3925
  msgstr ""
3926
 
3927
- #: super_socializer.php:2893
3928
  #, php-format
3929
  msgid ""
3930
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3932,7 +3907,7 @@ msgid ""
3932
  "\">here</a>"
3933
  msgstr ""
3934
 
3935
- #: super_socializer.php:2918
3936
  #, php-format
3937
  msgid ""
3938
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3940,7 +3915,7 @@ msgid ""
3940
  "target=\"_blank\">here</a>"
3941
  msgstr ""
3942
 
3943
- #: super_socializer.php:2943
3944
  #, php-format
3945
  msgid ""
3946
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3948,13 +3923,13 @@ msgid ""
3948
  "target=\"_blank\">here</a>"
3949
  msgstr ""
3950
 
3951
- #: super_socializer.php:2954
3952
  #, php-format
3953
  msgid ""
3954
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3955
  msgstr ""
3956
 
3957
- #: super_socializer.php:2976
3958
  #, php-format
3959
  msgid ""
3960
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3962,7 +3937,7 @@ msgid ""
3962
  "\"%s\" target=\"_blank\">here</a>"
3963
  msgstr ""
3964
 
3965
- #: super_socializer.php:3004
3966
  #, php-format
3967
  msgid ""
3968
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3971,7 +3946,7 @@ msgid ""
3971
  "your website %s with them. No need to copy-paste any code from their website."
3972
  msgstr ""
3973
 
3974
- #: super_socializer.php:3031
3975
  #, php-format
3976
  msgid ""
3977
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3979,7 +3954,7 @@ msgid ""
3979
  "\" target=\"_blank\">here</a>"
3980
  msgstr ""
3981
 
3982
- #: super_socializer.php:3056
3983
  #, php-format
3984
  msgid ""
3985
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3987,25 +3962,42 @@ msgid ""
3987
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3988
  msgstr ""
3989
 
3990
- #: super_socializer.php:3056 super_socializer.php:3083
3991
  msgid "Dismiss"
3992
  msgstr ""
3993
 
3994
- #: super_socializer.php:3082
3995
- #, php-format
3996
- msgid ""
3997
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3998
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > Social "
3999
- "Sharing</a> page to fix the issue with Facebook share count. After that, "
4000
- "clear share counts cache from \"Miscellaneous\" section"
4001
- msgstr ""
4002
-
4003
- #: super_socializer.php:3314
4004
  msgid ""
4005
  "Your browser is blocking some features of this website. Please follow the "
4006
  "instructions at {support_url} to unblock these."
4007
  msgstr ""
4008
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4009
  #, fuzzy
4010
  #~ msgid ""
4011
  #~ "Required for Dropbox Social Login to work. Please follow the documentation "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-17 15:42+0530\n"
6
+ "PO-Revision-Date: 2021-07-17 15:42+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
20
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
21
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
22
  #: admin/social_login.php:5 admin/social_login.php:1984
23
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
24
  #, fuzzy, php-format
25
  msgid ""
26
  "You can appreciate the effort put in this free plugin by rating it <a href="
31
  "التغريد\""
32
 
33
  #: admin/general_options.php:15 admin/social_commenting.php:47
34
+ #: super_socializer.php:2291
35
  #, fuzzy
36
  msgid "General Options"
37
  msgstr "المشاركات الأفقي"
85
 
86
  #: admin/general_options.php:89 admin/like_buttons.php:780
87
  #: admin/social_commenting.php:400 admin/social_login.php:1980
88
+ #: admin/social_sharing.php:1912 helper.php:936
89
  #, fuzzy
90
  msgid "Save Changes"
91
  msgstr "حفظ"
92
 
93
  #: admin/general_options.php:103 admin/like_buttons.php:790
94
  #: admin/social_commenting.php:410 admin/social_login.php:1990
95
+ #: admin/social_sharing.php:1922
96
  #, fuzzy
97
  msgid "Instagram Shoutout"
98
  msgstr "إنستاجرام"
99
 
100
  #: admin/general_options.php:105 admin/like_buttons.php:792
101
  #: admin/social_commenting.php:412 admin/social_login.php:1992
102
+ #: admin/social_sharing.php:1924
103
  msgid ""
104
  "If you can send (to hello@heateor.com) how this plugin is helping your "
105
  "business, we would be glad to shoutout on Instagram. You can also send any "
218
  msgstr ""
219
  "عنصر التحكم الرئيسي لمثل الأزرار. يجب أن يتم التحقق من تمكين مثل وظائف الأزرار"
220
 
221
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
222
  #, fuzzy
223
  msgid "Standard Interface"
224
  msgstr "المشاركات الأفقي"
225
 
226
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
227
  #, fuzzy
228
  msgid "Floating Interface"
229
  msgstr "المشاركات الأفقي"
230
 
231
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
232
  msgid "Miscellaneous"
233
  msgstr ""
234
 
235
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
236
  msgid "3rd Party Integration"
237
  msgstr ""
238
 
239
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
240
  #: admin/social_login.php:45 admin/social_login.php:1946
241
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
242
+ #: admin/social_sharing.php:1839
243
  #, fuzzy
244
  msgid "Shortcode & Widget"
245
  msgstr "استخدم كود مختصر | Include the shortcode"
247
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
248
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
249
  #: admin/social_login.php:46 admin/social_login.php:1960
250
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
251
  #, fuzzy
252
  msgid "FAQ"
253
  msgstr "الأسئلة الشائعة "
268
  msgstr "عنصر التحكم الرئيسي لتمكين الأفقية مثل الأزرار"
269
 
270
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
271
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
272
  #, fuzzy
273
  msgid "Target Url"
274
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
275
 
276
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
277
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
278
  #, fuzzy
279
  msgid "Url of the webpage where icons are located (default)"
280
  msgstr "عنوان Url لصفحة ويب حيث توجد رموز (افتراضي)"
281
 
282
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
283
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
284
  #, fuzzy
285
  msgid "Url of the homepage of your website"
286
  msgstr "URL لعملاء الموقع (اختياري)"
287
 
288
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
289
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
290
  #, fuzzy
291
  msgid "Custom url"
292
  msgstr "رابط (URL) مخصّص"
297
  msgstr "عنوان Url للتهم مثل/مشاركة/سقسقة مثل/مشاركة/سقسقة وعرض"
298
 
299
  #: admin/like_buttons.php:105 admin/social_login.php:1231
300
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
301
  #, fuzzy
302
  msgid "Title"
303
  msgstr "العنوان"
318
  msgstr "تحديد موفري للواجهة. اسحبها إلى إعادة ترتيب."
319
 
320
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
321
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
322
  #, fuzzy
323
  msgid "Horizontal alignment"
324
  msgstr "بلا محاذاة"
325
 
326
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
327
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
328
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310 inc/widget.php:446
329
  #: inc/widget.php:758
330
  #, fuzzy
331
  msgid "Left"
332
  msgstr "يسار"
333
 
334
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
335
  #, fuzzy
336
  msgid "Center"
337
  msgstr "وسط"
338
 
339
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
340
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
341
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311 inc/widget.php:447
342
  #: inc/widget.php:759
343
  #, fuzzy
344
  msgid "Right"
349
  msgid "Horizontal alignment of the interface"
350
  msgstr "بلا محاذاة"
351
 
352
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
353
  #, fuzzy
354
  msgid "Position with respect to content"
355
  msgstr "موضع الخلفية"
356
 
357
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
358
  #, fuzzy
359
  msgid "Top of the content"
360
  msgstr "أعلى"
361
 
362
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
363
  #, fuzzy
364
  msgid "Bottom of the content"
365
  msgstr "أسفل"
376
 
377
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
378
  #: admin/social_login.php:1548 admin/social_login.php:1577
379
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
380
  #, fuzzy
381
  msgid "Homepage"
382
  msgstr "الصفحة الرئيسية لبرنامج المساعد "
383
 
384
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
385
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
386
  #, fuzzy
387
  msgid "Posts"
388
  msgstr "مقالات"
389
 
390
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
391
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
392
  #, fuzzy
393
  msgid "Pages"
394
  msgstr "صفحات"
395
 
396
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
397
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
398
  msgid "Excerpts and Posts page"
399
  msgstr ""
400
 
401
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
402
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
403
  #, fuzzy
404
  msgid "Category Archives"
405
  msgstr "الأرشيف"
406
 
407
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
408
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
409
  #, fuzzy
410
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
411
  msgstr "أرشفة صفحات (الفئة والعلامة والمؤلف أو تاريخ بناء صفحات)"
412
 
413
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
414
  #, fuzzy
415
  msgid "BuddyPress activity"
416
  msgstr "النشاط BuddyPress والمجموعات"
417
 
418
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
419
  msgid "BuddyPress group (only at top of content)"
420
  msgstr ""
421
 
422
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
423
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
424
  #, fuzzy
425
  msgid "BBPress forum"
426
  msgstr "المنتدى المستعمل | User Forum"
427
 
428
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
429
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
430
  #, fuzzy
431
  msgid "BBPress topic"
432
  msgstr "إضافات الموضوع"
433
 
434
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
435
  #, fuzzy
436
  msgid "BBPress reply"
437
  msgstr "رد"
438
 
439
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
440
  msgid "After individual product at WooCommerce Shop page"
441
  msgstr "بعد كل منتج على حدة في WooCommerce متجر الصفحة"
442
 
443
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
444
  msgid "WooCommerce Product Page"
445
  msgstr "WooCommerce صفحة المنتج"
446
 
447
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
448
  msgid "WooCommerce Thankyou Page"
449
  msgstr "WooCommerce الشكر الصفحة"
450
 
468
  msgid "Master control to enable vertical (floating) counter widget"
469
  msgstr "عنصر التحكم الرئيسي لتمكين القطعة العداد (عائمة) عمودي"
470
 
471
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
472
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289 inc/widget.php:460
473
  #: inc/widget.php:772
474
  #, fuzzy
475
  msgid "Background Color"
487
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
488
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
489
 
490
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
491
  #, fuzzy
492
  msgid "Left offset"
493
  msgstr "يسار"
501
  "تحديد رقم. زيادة في عدد سوف تحول واجهة نحو اليمين، ونقصان سيتحول نحو اليسار. "
502
  "يمكن أن يكون رقم سلبي جداً."
503
 
504
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
505
  #, fuzzy
506
  msgid "Right offset"
507
  msgstr "يمين"
515
  "تحديد رقم. زيادة في عدد سيتحول واجهة نحو اليسار ونقصان سيتحول نحو اليمين. "
516
  "يمكن أن يكون رقم سلبي جداً."
517
 
518
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
519
  #, fuzzy
520
  msgid "Top offset"
521
  msgstr "أعلى"
528
  msgstr ""
529
  "تحديد رقم. زيادة في عدد سيتحول واجهة نحو الأسفل ونقصان سيتحول نحو الأعلى."
530
 
531
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
532
  #, fuzzy
533
  msgid "BuddyPress group"
534
  msgstr "تحرير ملفي الشخصي"
546
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
547
  msgstr "إذا تمكين، وأزرار تشبه العمودية لا تظهر على الأجهزة المحمولة"
548
 
549
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
550
  #, fuzzy
551
  msgid "Url shortener"
552
  msgstr "عنوان Url للقيام بالتعليق على"
570
  msgid "Enable bit.ly url shortener for tweet button"
571
  msgstr "تمكين bit.ly عنوان المنقص لزر سقسقة"
572
 
573
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
574
  #, fuzzy
575
  msgid "Master control to enable bit.ly url shortening for sharing"
576
  msgstr "عنصر التحكم الرئيسي لتمكين اختصار لمشاركة عنوان bit.ly"
577
 
578
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
579
  msgid "Bit.ly generic access token"
580
  msgstr ""
581
 
582
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
583
  #, php-format
584
  msgid ""
585
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
587
  "access token. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
588
  msgstr ""
589
 
590
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
591
  msgid "Clear Bitly Cache"
592
  msgstr ""
593
 
594
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
595
  #, fuzzy
596
  msgid "ShortUrl cache cleared successfully."
597
  msgstr "تم ربط حسابك بنجاح"
598
 
599
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
600
  msgid ""
601
  "Use this to delete short urls saved in database. Handy, if urls of your "
602
  "website have been changed but short urls are still being generated for old "
604
  msgstr ""
605
 
606
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
607
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
608
+ #: admin/social_sharing.php:1717
609
  #, fuzzy
610
  msgid "Language"
611
  msgstr ""
656
  "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى يجري تويتد ك \"عبر @USERNAME\". "
657
  "ترك فارغاً إذا كنت لا تريد أي اسم مستخدم."
658
 
659
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
660
  msgid "myCRED"
661
  msgstr ""
662
 
663
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
664
  msgid "Append myCRED referral ID to the urls being shared"
665
  msgstr ""
666
 
669
  msgid "Like Buttons Shortcode & Widget"
670
  msgstr "استخدم كود مختصر | Include the shortcode"
671
 
672
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
673
  msgid "Why is there so much space between like buttons?"
674
  msgstr ""
675
 
676
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
677
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
678
  msgstr ""
679
 
680
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
681
  msgid "How to Place Title and Social Share Icons in the Same Row?"
682
  msgstr ""
683
 
918
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
919
 
920
  #: admin/social_commenting.php:386 admin/social_login.php:1962
921
+ #: admin/social_sharing.php:1872
922
  msgid ""
923
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
924
  "an online website for the plugin to function properly."
936
  msgstr ""
937
 
938
  #: admin/social_commenting.php:389 admin/social_login.php:1969
939
+ #: admin/social_sharing.php:1887
940
  msgid "Why is my browser blocking some features of the plugin?"
941
  msgstr ""
942
 
974
  msgstr "إنشاء ملف الإعدادات"
975
 
976
  #: admin/social_login.php:41 admin/social_login.php:1746
977
+ #: super_socializer.php:2359
978
  msgid "GDPR"
979
  msgstr ""
980
 
1132
  msgstr "ريديت"
1133
 
1134
  #: admin/social_login.php:203
1135
+ msgid "Mail.ru"
1136
  msgstr ""
1137
 
1138
  #: admin/social_login.php:207
1148
  msgid "Select Social ID provider to enable in Social Login"
1149
  msgstr "حدد موفر \"معرف الاجتماعية\" لتمكين \"تسجيل الدخول الاجتماعي\""
1150
 
1151
+ #: admin/social_login.php:226
1152
  #, fuzzy
1153
  msgid "Facebook App ID"
1154
  msgstr "رقم التعريف الخالص بك | ID"
1171
  "لصق التالية url في الخيار <strong>محدد موقع معلومات الموقع</strong> في الوصلة "
1172
  "المذكورة"
1173
 
1174
+ #: admin/social_login.php:247
1175
  #, fuzzy
1176
  msgid "Facebook App Secret"
1177
  msgstr "رقم التعريف الخالص بك | ID"
2187
  "photo\" section in BuddyPress profile at front-end"
2188
  msgstr ""
2189
 
2190
+ #: admin/social_login.php:1490 super_socializer.php:1958
2191
  msgid "Email required"
2192
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
2193
 
2514
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2515
  msgstr ""
2516
 
2517
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2518
  msgid "Theme Selection"
2519
  msgstr ""
2520
 
2521
+ #: admin/social_sharing.php:64
2522
  #, fuzzy
2523
  msgid "Troubleshooter"
2524
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
2525
 
2526
+ #: admin/social_sharing.php:73
2527
  msgid "Standard interface theme"
2528
  msgstr ""
2529
 
2530
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2531
  msgid "Icon Preview"
2532
  msgstr "الرمز معاينة"
2533
 
2534
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2535
  #, fuzzy
2536
  msgid ""
2537
  "Do not forget to save the configuration after making changes by clicking the "
2539
  msgstr ""
2540
  "لا ننسى لحفظ التكوين بعد إجراء التغييرات بواسطة النقر فوق الحفظ الزر أدناه"
2541
 
2542
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2543
  #, fuzzy
2544
  msgid "Shape"
2545
  msgstr "شكل"
2546
 
2547
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2548
  #, fuzzy
2549
  msgid "Round"
2550
  msgstr "مستدير"
2551
 
2552
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2553
  #, fuzzy
2554
  msgid "Square"
2555
  msgstr "مربع"
2556
 
2557
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2558
  msgid "Rectangle"
2559
  msgstr ""
2560
 
2561
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2562
  #, fuzzy
2563
  msgid "Shape of the sharing icons"
2564
  msgstr "المشاركات الأفقي"
2565
 
2566
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2567
  #, fuzzy
2568
  msgid "Size (in pixels)"
2569
  msgstr "حجم"
2570
 
2571
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2572
  #, fuzzy
2573
  msgid "Size of the sharing icons"
2574
  msgstr "المشاركات الأفقي"
2575
 
2576
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2577
  #, fuzzy
2578
  msgid "Width (in pixels)"
2579
  msgstr "حجم"
2580
 
2581
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2582
  #, fuzzy
2583
  msgid "Width of the sharing icons"
2584
  msgstr "المشاركات الأفقي"
2585
 
2586
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2587
  #, fuzzy
2588
  msgid "Height (in pixels)"
2589
  msgstr "حجم"
2590
 
2591
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2592
  #, fuzzy
2593
  msgid "Height of the sharing icons"
2594
  msgstr "المشاركات الأفقي"
2595
 
2596
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2597
  #, fuzzy
2598
  msgid "Border radius (in pixels)"
2599
  msgstr "حجم"
2600
 
2601
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2602
  msgid ""
2603
  "Specify a value for rounded corners. More the value, more rounded will the "
2604
  "corners be. Leave empty for sharp corners."
2605
  msgstr ""
2606
 
2607
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2608
  #, fuzzy
2609
  msgid "Logo Color"
2610
  msgstr "لون الخلفية"
2611
 
2612
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2613
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2614
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2615
  #, fuzzy
2616
  msgid "Default"
2617
  msgstr ""
2620
  "الظهور وليس الحصول على تمكين في الواجهة الأمامية من موقع الويب الخاص بك "
2621
  "وتعليقا الاجتماعية."
2622
 
2623
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2624
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2625
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2626
  msgid "On Hover"
2627
  msgstr ""
2628
 
2629
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2630
  #, fuzzy
2631
  msgid ""
2632
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2637
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
2638
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
2639
 
2640
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2641
  #, fuzzy
2642
  msgid ""
2643
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2649
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
2650
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
2651
 
2652
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2653
  msgid "Border"
2654
  msgstr ""
2655
 
2656
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2657
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2658
  #, fuzzy
2659
  msgid "Border Width"
2660
  msgstr "أضف ودجت"
2661
 
2662
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2663
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2664
  #, fuzzy
2665
  msgid "Border Color"
2666
  msgstr "لون الخلفية"
2667
 
2668
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2669
  #, fuzzy
2670
  msgid "Icon border"
2671
  msgstr "الرمز معاينة"
2672
 
2673
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2674
  msgid "Counter Position"
2675
  msgstr ""
2676
 
2677
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2678
  msgid "(applies, if counter enabled)"
2679
  msgstr ""
2680
 
2681
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2682
  msgid "Top"
2683
  msgstr ""
2684
 
2685
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2686
  msgid "Bottom"
2687
  msgstr ""
2688
 
2689
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2690
  msgid "Inner Left"
2691
  msgstr ""
2692
 
2693
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2694
  msgid "Inner Top"
2695
  msgstr ""
2696
 
2697
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2698
  #, fuzzy
2699
  msgid "Inner Right"
2700
  msgstr "يمين"
2701
 
2702
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2703
  msgid "Inner Bottom"
2704
  msgstr ""
2705
 
2706
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2707
  #, fuzzy
2708
  msgid "Position of share counter"
2709
  msgstr "أسفل"
2710
 
2711
+ #: admin/social_sharing.php:371
2712
  #, fuzzy
2713
  msgid "Floating interface theme"
2714
  msgstr "المشاركات الأفقي"
2715
 
2716
+ #: admin/social_sharing.php:675
2717
  #, fuzzy
2718
  msgid "Standard Sharing Interface Options"
2719
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2720
 
2721
+ #: admin/social_sharing.php:680
2722
  #, fuzzy
2723
  msgid "Enable Standard sharing interface"
2724
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2725
 
2726
+ #: admin/social_sharing.php:690
2727
  #, fuzzy
2728
  msgid "Master control to enable standard sharing"
2729
  msgstr "عنصر التحكم الرئيسي لتمكين مشاركة أفقية"
2730
 
2731
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2732
  #, fuzzy
2733
  msgid "Url to share"
2734
  msgstr " شارك الآخرين بهذة الفقرة"
2735
 
2736
+ #: admin/social_sharing.php:731
2737
  #, fuzzy
2738
  msgid "The text to display above the sharing interface"
2739
  msgstr "النص المطلوب عرضه أعلاه واجهة المشاركة"
2740
 
2741
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2742
  #, fuzzy
2743
  msgid "Instagram username"
2744
  msgstr "إنستاجرام"
2745
 
2746
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2747
  msgid ""
2748
  "Username of the Instagram account you want to redirect users to, on clicking "
2749
  "the icon"
2750
  msgstr ""
2751
 
2752
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2753
  #, fuzzy
2754
  msgid "HTML ID of container element of comment form"
2755
  msgstr "ID HTML التعليق حاوية شكل"
2756
 
2757
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2758
  msgid ""
2759
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2760
  "icon."
2761
  msgstr ""
2762
 
2763
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2764
  #, fuzzy
2765
  msgid "Rearrange icons"
2766
  msgstr "إعادة ترتيب الرموز"
2767
 
2768
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2769
  #, fuzzy
2770
  msgid "Drag the icons to rearrange in desired order"
2771
  msgstr "اسحب رموز لإعادة ترتيب في الترتيب المطلوب"
2772
 
2773
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2774
  #, fuzzy
2775
  msgid "Select Sharing Services"
2776
  msgstr "اختر مقالة"
2777
 
2778
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2779
  msgid "Select sharing services to show in social share bar"
2780
  msgstr ""
2781
 
2782
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2783
  #, fuzzy
2784
  msgid "Search social network"
2785
  msgstr "حددت كشبكة الإجتماعية اللأساسية"
2786
 
2787
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2788
  #, fuzzy
2789
  msgid "Horizontal alignment of the sharing interface"
2790
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2791
 
2792
+ #: admin/social_sharing.php:942
2793
  #, fuzzy
2794
  msgid "Specify position of the sharing interface with respect to the content"
2795
  msgstr "تحديد موقف واجهة المشاركة فيما يتعلق بالمحتوى"
2796
 
2797
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2798
  msgid "Placement"
2799
  msgstr ""
2800
 
2801
+ #: admin/social_sharing.php:1017
2802
  #, fuzzy
2803
  msgid "Specify the pages where you want to enable Sharing interface"
2804
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة"
2805
 
2806
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2807
  #, fuzzy
2808
  msgid "Show share counts"
2809
  msgstr "عرض عدد المقالات"
2810
 
2811
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2812
  msgid ""
2813
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2814
+ "Odnoklassniki, Fintel and Vkontakte"
2815
  msgstr ""
2816
 
2817
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2818
  #, php-format
2819
  msgid ""
2820
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2823
  "website."
2824
  msgstr ""
2825
 
2826
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2827
  #, fuzzy
2828
  msgid "If enabled, share counts are displayed above sharing icons."
2829
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
2830
 
2831
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2832
+ #: admin/social_sharing.php:1659
2833
+ msgid "Track Social Shares for Every Social Network"
2834
+ msgstr ""
2835
+
2836
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2837
  #, fuzzy
2838
  msgid "Show total shares"
2839
  msgstr "عرض عدد المقالات"
2840
 
2841
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2842
  #, fuzzy
2843
  msgid "If enabled, total shares will be displayed with sharing icons"
2844
  msgstr "إذا تم تمكين، يتم عرض حساب حصة أعلاه تقاسم الرموز."
2845
 
2846
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2847
  #, fuzzy
2848
  msgid "Enable 'More' icon"
2849
  msgstr "الرمز معاينة"
2850
 
2851
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2852
  #, fuzzy
2853
  msgid ""
2854
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2857
  "إذا تم تمكين، \"مزيد\" سيتم عرض رمز بعد تحديد تقاسم الرموز التي يظهر شبكات "
2858
  "مشاركة إضافية في المنبثقة"
2859
 
2860
+ #: admin/social_sharing.php:1096
2861
  #, fuzzy
2862
  msgid "Floating Sharing Interface Options"
2863
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
2864
 
2865
+ #: admin/social_sharing.php:1101
2866
  #, fuzzy
2867
  msgid "Enable Floating sharing interface"
2868
  msgstr "تمكين واجهة المشاركة (عائمة) عمودي"
2869
 
2870
+ #: admin/social_sharing.php:1111
2871
  #, fuzzy
2872
  msgid "Master control to enable floating sharing widget"
2873
  msgstr "عنصر التحكم الرئيسي لتمكين القطعة المشاركة (عائمة) عمودي"
2874
 
2875
+ #: admin/social_sharing.php:1299
2876
  #, fuzzy
2877
  msgid ""
2878
  "Specify the color or hex code (example #cc78e0) for the background of "
2884
  "اتركه فارغاً للشفافية. يمكنك الحصول على رمز ست عشري من اللون المطلوب من <a "
2885
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">هذا الرابط</a>"
2886
 
2887
+ #: admin/social_sharing.php:1337
2888
  #, fuzzy
2889
  msgid ""
2890
  "Specify a number. Increase in number will shift sharing interface towards "
2893
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليمين ونقصان سيتحول نحو "
2894
  "اليسار. يمكن أن يكون رقم سلبي جداً."
2895
 
2896
+ #: admin/social_sharing.php:1356
2897
  #, fuzzy
2898
  msgid ""
2899
  "Specify a number. Increase in number will shift sharing interface towards "
2902
  "تحديد رقم. الزيادة في عدد سيتحول واجهة مشاركة نحو اليسار ونقصان سيتحول نحو "
2903
  "اليمين. يمكن أن يكون رقم سلبي جداً."
2904
 
2905
+ #: admin/social_sharing.php:1374
2906
  #, fuzzy
2907
  msgid ""
2908
  "Specify a number. Increase in number will shift sharing interface towards "
2911
  "تحديد رقم. زيادة في عدد سيتحول واجهة مشاركة نحو الأسفل ونقصان سيتحول نحو "
2912
  "الأعلى."
2913
 
2914
+ #: admin/social_sharing.php:1430
2915
  #, fuzzy
2916
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2917
  msgstr "تحديد الصفحات حيث تريد تمكين واجهة مشاركة العمودي"
2918
 
2919
+ #: admin/social_sharing.php:1499
2920
  #, fuzzy
2921
  msgid "Hide floating slider"
2922
  msgstr ""
2923
  "رسالة لمستخدمين الذين قاموا بتسجيل الخروج من البرنامج | Message for Logged-"
2924
  "out Users"
2925
 
2926
+ #: admin/social_sharing.php:1509
2927
  msgid "Hides the slider arrow present below the floating share bar"
2928
  msgstr ""
2929
 
2930
+ #: admin/social_sharing.php:1516
2931
  #, fuzzy
2932
  msgid "Vertical floating bar responsiveness"
2933
  msgstr "عمودي (عائمة) تقاسم خيارات واجهة"
2934
 
2935
+ #: admin/social_sharing.php:1519
2936
  #, php-format
2937
  msgid "Display vertical interface only when screen is wider than %s pixels"
2938
  msgstr ""
2939
 
2940
+ #: admin/social_sharing.php:1526
2941
  msgid ""
2942
  "Display vertical interface only when screen is wider than the width specified."
2943
  msgstr ""
2944
 
2945
+ #: admin/social_sharing.php:1533
2946
  msgid "Horizontal floating bar responsiveness"
2947
  msgstr ""
2948
 
2949
+ #: admin/social_sharing.php:1536
2950
  #, fuzzy, php-format
2951
  msgid ""
2952
  "Stick vertical floating interface horizontally at bottom only when screen is "
2953
  "narrower than %s pixels"
2954
  msgstr "إذا تمكين، لن تظهر واجهة تقاسم عمودية على الأجهزة النقالة"
2955
 
2956
+ #: admin/social_sharing.php:1543
2957
  msgid ""
2958
  "Stick vertical floating interface horizontally at bottom only when screen is "
2959
  "narrower than the width specified"
2960
  msgstr ""
2961
 
2962
+ #: admin/social_sharing.php:1552
2963
  #, fuzzy
2964
  msgid "Horizontal floating bar position"
2965
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
2966
 
2967
+ #: admin/social_sharing.php:1555
2968
  #, php-format
2969
  msgid "%s pixels from %s"
2970
  msgstr ""
2971
 
2972
+ #: admin/social_sharing.php:1556
2973
  msgid "Auto-adjust according to screen width (responsive)"
2974
  msgstr ""
2975
 
2976
+ #: admin/social_sharing.php:1563
2977
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2978
  msgstr ""
2979
 
2980
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2981
  #, fuzzy
2982
  msgid "Use shortlinks already installed"
2983
  msgstr "تمّ التنصيب مسبقاً"
2984
 
2985
+ #: admin/social_sharing.php:1598
2986
  msgid "Uses default short url permalinks without using any additional plugin"
2987
  msgstr ""
2988
 
2989
+ #: admin/social_sharing.php:1605
2990
  #, fuzzy
2991
  msgid "Enable bit.ly url shortener for sharing"
2992
  msgstr "تمكين bit.ly عنوان المنقص لتقاسم"
2993
 
2994
+ #: admin/social_sharing.php:1664
2995
  msgid "Share Count Cache"
2996
  msgstr ""
2997
 
2998
+ #: admin/social_sharing.php:1669
2999
  msgid "Refresh Share Count cache every"
3000
  msgstr ""
3001
 
3002
+ #: admin/social_sharing.php:1674
3003
  msgid "Second(s)"
3004
  msgstr ""
3005
 
3006
+ #: admin/social_sharing.php:1675
3007
  msgid "Minute(s)"
3008
  msgstr ""
3009
 
3010
+ #: admin/social_sharing.php:1676
3011
  msgid "Hour(s)"
3012
  msgstr ""
3013
 
3014
+ #: admin/social_sharing.php:1677
3015
  msgid "Day(s)"
3016
  msgstr ""
3017
 
3018
+ #: admin/social_sharing.php:1685
3019
  #, php-format
3020
  msgid ""
3021
  "Frequent cache refreshing results in slower loading of pages with share "
3023
  "\"_blank\">here</a>"
3024
  msgstr ""
3025
 
3026
+ #: admin/social_sharing.php:1692
3027
  msgid "Clear Share Counts Cache"
3028
  msgstr ""
3029
 
3030
+ #: admin/social_sharing.php:1696
3031
  #, fuzzy
3032
  msgid "Share Counts cache cleared successfully."
3033
  msgstr "تم ربط حسابك بنجاح"
3034
 
3035
+ #: admin/social_sharing.php:1703
3036
  msgid "Use this to clear cached share counts"
3037
  msgstr ""
3038
 
3039
+ #: admin/social_sharing.php:1727
3040
  #, fuzzy, php-format
3041
  msgid ""
3042
  "Enter the code of the language you want to use for like buttons. You can find "
3047
  "رموز اللغة على <a href=\"%s\" target=\"_blank\">هذا الرابط</a>. اتركه فارغاً ل "
3048
  "language(English) الافتراضي"
3049
 
3050
+ #: admin/social_sharing.php:1736
3051
  #, fuzzy
3052
  msgid "Username in sharing"
3053
  msgstr "شارك الأخرين عبر تويتر"
3054
 
3055
+ #: admin/social_sharing.php:1741
3056
  #, fuzzy
3057
  msgid "Twitter username (without @)"
3058
  msgstr "قالب بدون %1$s"
3059
 
3060
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
3061
  #, fuzzy
3062
  msgid ""
3063
  "Provided username will be appended after the content being shared as \"via "
3067
  "سيتم إلحاق اسم المستخدم المقدمة بعد المحتوى ويجري تقاسم \"عبر @USERNAME\". "
3068
  "ترك فارغاً إذا كنت لا تريد أي اسم مستخدم في محتوى يجري تقاسمها."
3069
 
3070
+ #: admin/social_sharing.php:1759
3071
  #, fuzzy
3072
  msgid "Buffer username (without @)"
3073
  msgstr "قالب بدون %1$s"
3074
 
3075
+ #: admin/social_sharing.php:1778
3076
  msgid "AMP"
3077
  msgstr ""
3078
 
3079
+ #: admin/social_sharing.php:1783
3080
  #, fuzzy
3081
  msgid "Enable sharing on AMP pages"
3082
  msgstr "صفحة"
3083
 
3084
+ #: admin/social_sharing.php:1793
3085
  msgid "Enable this option to render sharing icons on AMP pages"
3086
  msgstr ""
3087
 
3088
+ #: admin/social_sharing.php:1850
3089
  msgid "Facebook Sharing Troubleshooter"
3090
  msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
3091
 
3092
+ #: admin/social_sharing.php:1855
3093
  #, fuzzy
3094
  msgid ""
3095
  "If Facebook sharing is not working fine, click at the following link and "
3099
  "إذا كان تقاسم بوك لا تعمل بشكل جيد، انقر على الرابط التالي وأدخل عنوان url "
3100
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
3101
 
3102
+ #: admin/social_sharing.php:1873
3103
  msgid ""
3104
  "Why is sharer not showing the correct image, title and other meta tags "
3105
  "content?"
3106
  msgstr ""
3107
 
3108
+ #: admin/social_sharing.php:1874
3109
  msgid "Why is Facebook share count not working?"
3110
  msgstr ""
3111
 
3112
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
3113
+ #, php-format
3114
+ msgid ""
3115
+ "After the recent changes introduced in the Facebook graph API, it's not "
3116
+ "possible to track Facebook shares using it. <a href='%s' "
3117
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
3118
+ "not just for Facebook but for all the social networks"
3119
+ msgstr ""
3120
+
3121
+ #: admin/social_sharing.php:1877
3122
  msgid "Why is Instagram icon redirecting to Instagram website?"
3123
  msgstr ""
3124
 
3125
+ #: admin/social_sharing.php:1878
3126
  msgid ""
3127
  "Instagram icon is there to send website visitors to the Instagram page of "
3128
  "your choice. You can save the desired Instagram handle in \"Instagram Username"
3129
  "\" option in \"Standard Interface\" and \"Floating Interface\" sections."
3130
  msgstr ""
3131
 
3132
+ #: admin/social_sharing.php:1881
3133
  #, fuzzy
3134
  msgid "How to customize the url being shared?"
3135
  msgstr "عرض عدد المقالات"
3136
 
3137
+ #: admin/social_sharing.php:1882
3138
  msgid ""
3139
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
3140
  msgstr ""
3141
 
3142
+ #: admin/social_sharing.php:1883
3143
  msgid ""
3144
  "It takes some time for their service to track the shares made on Twitter from "
3145
  "your website. If you still feel it's taking too long you can contact their "
3146
  "support directly from their website."
3147
  msgstr ""
3148
 
3149
+ #: admin/social_sharing.php:1886
3150
  msgid ""
3151
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
3152
  msgstr ""
3153
 
3154
+ #: admin/social_sharing.php:1888
3155
  msgid "Why the color of share icons is not being updated?"
3156
  msgstr ""
3157
 
3158
+ #: admin/social_sharing.php:1889
3159
  msgid "Why Facebook share counts are not appearing?"
3160
  msgstr ""
3161
 
3162
+ #: admin/social_sharing.php:1890
3163
  #, fuzzy
3164
  msgid ""
3165
  "How can I show share counts of my website rather than of individual pages/"
3168
  "كيف يمكن إظهار التهم حصة من موقع الويب الخاص بي بدلاً من الصفحات الفردية/"
3169
  "الوظائف؟"
3170
 
3171
+ #: admin/social_sharing.php:1891
3172
  #, fuzzy
3173
  msgid "How can I disable sharing on particular page/post?"
3174
  msgstr "كيف يمكن تعطيل مشاركة في الصفحة/وظيفة معينة؟"
3175
 
3176
+ #: admin/social_sharing.php:1892
3177
  #, fuzzy
3178
  msgid "How can I specify minimum sharing count for sharing networks?"
3179
  msgstr "كيف يمكن تحديد الحد الأدنى من عدد مرات مشاركة لشبكات تبادل؟"
3180
 
3181
+ #: admin/social_sharing.php:1893
3182
  msgid "How to share specific page?"
3183
  msgstr ""
3184
 
3185
+ #: admin/social_sharing.php:1894
3186
  msgid "How to integrate Google Analytics with sharing?"
3187
  msgstr ""
3188
 
3189
+ #: admin/social_sharing.php:1895
3190
  msgid "How to customize the look of total share counts?"
3191
  msgstr ""
3192
 
3193
+ #: admin/social_sharing.php:1896
3194
  #, fuzzy
3195
  msgid "How to customize the look of individual share counts?"
3196
  msgstr "عرض عدد المقالات"
3197
 
3198
+ #: admin/social_sharing.php:1897
3199
  #, fuzzy
3200
  msgid "How to show Whatsapp icon only on mobile devices?"
3201
  msgstr "إخفاء تقاسم على الأجهزة النقالة"
3202
 
3203
+ #: admin/social_sharing.php:1898
3204
  msgid "How to hide arrow after floating sharing bar?"
3205
  msgstr ""
3206
 
3207
+ #: admin/social_sharing.php:1899
3208
  msgid "Why is share count not getting updated?"
3209
  msgstr ""
3210
 
3231
  msgid "Settings"
3232
  msgstr "الإعدادات"
3233
 
3234
+ #: helper.php:572
3235
  msgid "Account linked successfully"
3236
  msgstr "تم ربط حسابك بنجاح"
3237
 
3238
+ #: helper.php:576
3239
  msgid "Account already exists or linked"
3240
  msgstr "حساب موجود بالفعل أو مرتبطة مسبقاً"
3241
 
3242
+ #: helper.php:612 helper.php:614
3243
  #, fuzzy
3244
  msgid "Login with"
3245
  msgstr ""
3247
  "من خلال الدخول الاجتماعي. لن يؤدي إلا إلى المستخدمين الحاليين تكون قادرة على "
3248
  "الدخول الاجتماعي."
3249
 
3250
+ #: helper.php:649 helper.php:655
3251
  msgid "Currently"
3252
  msgstr "في الوقت الحاضر"
3253
 
3254
+ #: helper.php:649 helper.php:655
3255
  msgid "Connected with"
3256
  msgstr ""
3257
 
3258
+ #: helper.php:649 helper.php:655
3259
  msgid "Remove"
3260
  msgstr "إزالة"
3261
 
3262
+ #: helper.php:727
3263
  #, fuzzy
3264
  msgid "Social Account Linking"
3265
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
3266
 
3267
+ #: helper.php:777
3268
  #, fuzzy
3269
  msgid "Disable Standard Social Sharing on this "
3270
  msgstr "تعطيل ظهور مشاركة الاجتماعي عمودي على هذا"
3271
 
3272
+ #: helper.php:782
3273
  #, fuzzy
3274
  msgid "Disable Floating Social Sharing on this "
3275
  msgstr "تعطيل الظهور الأفقي للمشاركة الاجتماعي على هذا"
3276
 
3277
+ #: helper.php:787
3278
  #, fuzzy
3279
  msgid "Disable Standard like buttons on this "
3280
  msgstr "تعطيل زر الإعجاب الموجود عمودياً على هذا"
3281
 
3282
+ #: helper.php:792
3283
  #, fuzzy
3284
  msgid "Disable Floating like buttons on this "
3285
  msgstr "تعطيل زر الإعجاب الموجود أفقياً على هذا"
3286
 
3287
+ #: helper.php:797
3288
  msgid "Disable Social Commenting on this "
3289
  msgstr "تعطيل تعليقا الاجتماعي على هذا"
3290
 
3291
+ #: helper.php:806
3292
  #, fuzzy
3293
  msgid "Standard Sharing Interface"
3294
  msgstr "المشاركات الأفقي"
3295
 
3296
+ #: helper.php:812 helper.php:831
3297
  msgid "Starting share count for "
3298
  msgstr "بدء العد حصة ل"
3299
 
3300
+ #: helper.php:825
3301
  #, fuzzy
3302
  msgid "Floating Sharing Interface"
3303
  msgstr "المشاركات الأفقي"
3304
 
3305
+ #: helper.php:921 super_socializer.php:2375
3306
  #, fuzzy
3307
  msgid "Social Avatar"
3308
  msgstr "صغير الرمزية رابط"
3309
 
3310
+ #: helper.php:924 super_socializer.php:2386
3311
  msgid ""
3312
  "Do not fetch and update social avatar from my profile, next time I Social "
3313
  "Login"
3314
  msgstr ""
3315
 
3316
+ #: helper.php:925 super_socializer.php:2390
3317
  msgid "Update social avatar, next time I Social Login"
3318
  msgstr ""
3319
 
3320
+ #: helper.php:928
3321
  #, fuzzy
3322
  msgid "Small Avatar"
3323
  msgstr "صغير الرمزية رابط"
3324
 
3325
+ #: helper.php:932
3326
  #, fuzzy
3327
  msgid "Large Avatar"
3328
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
3329
 
3330
+ #: helper.php:992 super_socializer.php:1936
3331
  msgid "Please verify your email address to login."
3332
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
3333
 
3334
+ #: helper.php:1029
3335
  msgid "Click to delete social profile data"
3336
  msgstr ""
3337
 
3338
+ #: helper.php:1058
3339
  #, fuzzy
3340
  msgid "Deleting"
3341
  msgstr "الإعدادات"
3342
 
3343
+ #: helper.php:1068
3344
  msgid "Deleted"
3345
  msgstr ""
3346
 
3347
+ #: helper.php:1070
3348
  msgid "Something bad happened"
3349
  msgstr ""
3350
 
3404
  msgid "More"
3405
  msgstr ""
3406
 
3407
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3408
  msgid "Share"
3409
  msgstr ""
3410
 
3411
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3412
  msgid "Shares"
3413
  msgstr ""
3414
 
3415
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
3416
  #, fuzzy
3417
  msgid "Invalid request"
3418
  msgstr "طلب غير صحيح"
3419
 
3420
+ #: inc/social_sharing.php:938
3421
  #, fuzzy
3422
  msgid "Providers not selected"
3423
  msgstr "محدد | selected"
3424
 
3425
+ #: inc/social_sharing_networks.php:58
3426
  msgid "Copy Link"
3427
  msgstr ""
3428
 
3711
  msgid "RSS Feed URL:"
3712
  msgstr ""
3713
 
3714
+ #: super_socializer.php:429
3715
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3716
+ msgstr ""
3717
+
3718
+ #: super_socializer.php:1718
3719
  #, fuzzy
3720
  msgid ""
3721
  "cURL is not enabled at your website server. Please contact your website "
3724
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
3725
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
3726
 
3727
+ #: super_socializer.php:1746
3728
  #, fuzzy, php-format
3729
  msgid ""
3730
  "Enter exactly the following url in <strong>Website</strong> option in your "
3733
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
3734
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
3735
 
3736
+ #: super_socializer.php:1749
3737
  #, fuzzy, php-format
3738
  msgid ""
3739
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3742
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
3743
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
3744
 
3745
+ #: super_socializer.php:1752
3746
  msgid ""
3747
  "Make sure cURL is enabled at your website server. You may need to contact the "
3748
  "server administrator of your website to verify this"
3750
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
3751
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
3752
 
3753
+ #: super_socializer.php:1914
3754
  msgid "Search"
3755
  msgstr ""
3756
 
3757
+ #: super_socializer.php:1936
3758
  msgid "Your email has been verified. Now you can login to your account"
3759
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
3760
 
3761
+ #: super_socializer.php:1940
3762
  msgid "Notification"
3763
  msgstr "تنبيهات"
3764
 
3765
+ #: super_socializer.php:1961
3766
  msgid "Please check your email inbox to complete the registration."
3767
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
3768
 
3769
+ #: super_socializer.php:2030
3770
  msgid "Leave a reply"
3771
  msgstr "اترك رد"
3772
 
3773
+ #: super_socializer.php:2046
3774
  #, fuzzy
3775
  msgid "Link copied."
3776
  msgstr "شارك الأخرين عبر لنكيدان"
3777
 
3778
+ #: super_socializer.php:2291
3779
  #, fuzzy
3780
  msgid "Super Socializer - General Options"
3781
  msgstr "آخر تسجيل دخول | Last Login"
3782
 
3783
+ #: super_socializer.php:2362
3784
  msgid ""
3785
  "I agree to my personal data being stored and used as per Privacy Policy and "
3786
  "Terms and Conditions"
3787
  msgstr ""
3788
 
3789
+ #: super_socializer.php:2366
3790
  msgid ""
3791
  "I revoke my consent to store and use my personal data. Kindly delete my "
3792
  "personal data saved in this website."
3793
  msgstr ""
3794
 
3795
+ #: super_socializer.php:2378
3796
  msgid "Small Avatar Url"
3797
  msgstr "صغير الرمزية رابط"
3798
 
3799
+ #: super_socializer.php:2382
3800
  #, fuzzy
3801
  msgid "Large Avatar Url"
3802
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
3803
 
3804
+ #: super_socializer.php:2484
3805
  msgid "Login with your Social ID"
3806
  msgstr ""
3807
 
3808
+ #: super_socializer.php:2485
3809
  msgid "Email you entered is already registered or invalid"
3810
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
3811
 
3812
+ #: super_socializer.php:2492
3813
  msgid "Please enter a valid email address. You might be required to verify it"
3814
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
3815
 
3816
+ #: super_socializer.php:2496 super_socializer.php:3250
3817
  msgid "Link your social account to login to your account at this website"
3818
  msgstr ""
3819
  "الرجاء القيام بربط الحساب الإجتماعي الخاص بك للتمكن من تسجيل الدخول العام الى "
3820
  "حسابك في هذا الموقع"
3821
 
3822
+ #: super_socializer.php:2753
3823
  msgid "Thanks for installing Super Socializer plugin"
3824
  msgstr ""
3825
 
3826
+ #: super_socializer.php:2755
3827
  msgid "Configure the Plugin"
3828
  msgstr ""
3829
 
3830
+ #: super_socializer.php:2766
3831
  msgid ""
3832
  "Update \"Facebook Comments Moderation\" add-on for compatibility with current "
3833
  "version of Super Socializer"
3834
  msgstr ""
3835
 
3836
+ #: super_socializer.php:2775
3837
  msgid ""
3838
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3839
  "version of Super Socializer"
3840
  msgstr ""
3841
 
3842
+ #: super_socializer.php:2784
3843
  msgid ""
3844
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3845
  "compatibility with the current version of Super Socializer"
3846
  msgstr ""
3847
 
3848
+ #: super_socializer.php:2793
3849
  msgid ""
3850
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3851
  "with current version of Super Socializer"
3852
  msgstr ""
3853
 
3854
+ #: super_socializer.php:2802
3855
  msgid ""
3856
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3857
  "with current version of Super Socializer"
3858
  msgstr ""
3859
 
3860
+ #: super_socializer.php:2813
3861
  #, php-format
3862
  msgid "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3863
  msgstr ""
3864
 
3865
+ #: super_socializer.php:2822
3866
  #, php-format
3867
  msgid ""
3868
  "To continue using Instagram login create a new Instagram App as described <a "
3870
  "Instagram App Secret <a href=\"%s\">here</a>"
3871
  msgstr ""
3872
 
3873
+ #: super_socializer.php:2831 super_socializer.php:2840
3874
  #, php-format
3875
  msgid ""
3876
  "To continue using bitly url shortener, login to your bit.ly account and "
3879
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3880
  msgstr ""
3881
 
3882
+ #: super_socializer.php:2856
3883
  #, php-format
3884
  msgid ""
3885
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3886
  msgstr ""
3887
 
3888
+ #: super_socializer.php:2880
3889
  #, php-format
3890
  msgid ""
3891
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3893
  "target=\"_blank\">here</a>"
3894
  msgstr ""
3895
 
3896
+ #: super_socializer.php:2880 super_socializer.php:2905 super_socializer.php:2930
3897
+ #: super_socializer.php:2955 super_socializer.php:2988 super_socializer.php:3016
3898
+ #: super_socializer.php:3043
3899
  msgid "Okay"
3900
  msgstr ""
3901
 
3902
+ #: super_socializer.php:2905
3903
  #, php-format
3904
  msgid ""
3905
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3907
  "\">here</a>"
3908
  msgstr ""
3909
 
3910
+ #: super_socializer.php:2930
3911
  #, php-format
3912
  msgid ""
3913
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3915
  "target=\"_blank\">here</a>"
3916
  msgstr ""
3917
 
3918
+ #: super_socializer.php:2955
3919
  #, php-format
3920
  msgid ""
3921
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3923
  "target=\"_blank\">here</a>"
3924
  msgstr ""
3925
 
3926
+ #: super_socializer.php:2966
3927
  #, php-format
3928
  msgid ""
3929
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3930
  msgstr ""
3931
 
3932
+ #: super_socializer.php:2988
3933
  #, php-format
3934
  msgid ""
3935
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3937
  "\"%s\" target=\"_blank\">here</a>"
3938
  msgstr ""
3939
 
3940
+ #: super_socializer.php:3016
3941
  #, php-format
3942
  msgid ""
3943
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3946
  "your website %s with them. No need to copy-paste any code from their website."
3947
  msgstr ""
3948
 
3949
+ #: super_socializer.php:3043
3950
  #, php-format
3951
  msgid ""
3952
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3954
  "\" target=\"_blank\">here</a>"
3955
  msgstr ""
3956
 
3957
+ #: super_socializer.php:3068
3958
  #, php-format
3959
  msgid ""
3960
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3962
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3963
  msgstr ""
3964
 
3965
+ #: super_socializer.php:3068 super_socializer.php:3095
3966
  msgid "Dismiss"
3967
  msgstr ""
3968
 
3969
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3970
  msgid ""
3971
  "Your browser is blocking some features of this website. Please follow the "
3972
  "instructions at {support_url} to unblock these."
3973
  msgstr ""
3974
 
3975
+ #~ msgid "Dismiss this notice"
3976
+ #~ msgstr "إقالة هذا الإشعار"
3977
+
3978
+ #, fuzzy
3979
+ #~ msgid "Facebook Share Count"
3980
+ #~ msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
3981
+
3982
+ #, fuzzy
3983
+ #~ msgid ""
3984
+ #~ "Required for Facebook share count to work. Please follow the documentation "
3985
+ #~ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
3986
+ #~ msgstr ""
3987
+ #~ "المطلوبة \"دخول ألفيس بوك الاجتماعية\" للعمل. الرجاء تتبع الوثائق الموجودة "
3988
+ #~ "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف "
3989
+ #~ "التطبيق فيسبوك"
3990
+
3991
+ #, fuzzy
3992
+ #~ msgid ""
3993
+ #~ "Required for Facebook share count to work. Please follow the documentation "
3994
+ #~ "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App "
3995
+ #~ "Secret"
3996
+ #~ msgstr ""
3997
+ #~ "المطلوبة \"دخول ألفيس بوك الاجتماعية\" للعمل. الرجاء تتبع الوثائق الموجودة "
3998
+ #~ "في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على معرف "
3999
+ #~ "التطبيق فيسبوك"
4000
+
4001
  #, fuzzy
4002
  #~ msgid ""
4003
  #~ "Required for Dropbox Social Login to work. Please follow the documentation "
languages/super-socializer-es_ES.mo CHANGED
Binary file
languages/super-socializer-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-15 14:15+0530\n"
6
- "PO-Revision-Date: 2021-06-15 14:15+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
25
  #, fuzzy, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -32,7 +32,7 @@ msgstr ""
32
  "conseguir tu Twitter Key"
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
- #: super_socializer.php:2279
36
  msgid "General Options"
37
  msgstr "Opciones Generales"
38
 
@@ -82,20 +82,20 @@ msgstr ""
82
 
83
  #: admin/general_options.php:89 admin/like_buttons.php:780
84
  #: admin/social_commenting.php:400 admin/social_login.php:1980
85
- #: admin/social_sharing.php:1944 helper.php:942
86
  msgid "Save Changes"
87
  msgstr "Guardar Cambios"
88
 
89
  #: admin/general_options.php:103 admin/like_buttons.php:790
90
  #: admin/social_commenting.php:410 admin/social_login.php:1990
91
- #: admin/social_sharing.php:1954
92
  #, fuzzy
93
  msgid "Instagram Shoutout"
94
  msgstr "Instagram"
95
 
96
  #: admin/general_options.php:105 admin/like_buttons.php:792
97
  #: admin/social_commenting.php:412 admin/social_login.php:1992
98
- #: admin/social_sharing.php:1956
99
  msgid ""
100
  "If you can send (to hello@heateor.com) how this plugin is helping your "
101
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -205,33 +205,33 @@ msgstr ""
205
  "Control maestro para los botones Me gusta. Debes activarlo para permitir su "
206
  "funcionalidad"
207
 
208
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
209
  msgid "Standard Interface"
210
  msgstr "Interfaz Estándar"
211
 
212
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
213
  msgid "Floating Interface"
214
  msgstr "Interfaz Flotante"
215
 
216
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
217
  msgid "Miscellaneous"
218
  msgstr "Miscelánea"
219
 
220
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
221
  msgid "3rd Party Integration"
222
  msgstr ""
223
 
224
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
225
  #: admin/social_login.php:45 admin/social_login.php:1946
226
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
227
- #: admin/social_sharing.php:1871
228
  msgid "Shortcode & Widget"
229
  msgstr "Widgets y Shortcodes"
230
 
231
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
232
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
233
  #: admin/social_login.php:46 admin/social_login.php:1960
234
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
235
  msgid "FAQ"
236
  msgstr "FAQ"
237
 
@@ -248,22 +248,22 @@ msgid "Master control to enable horizontal like buttons"
248
  msgstr "Control maestro para permitir los botones Me gusta horizontales"
249
 
250
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
251
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
252
  msgid "Target Url"
253
  msgstr "Target Url"
254
 
255
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
256
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
257
  msgid "Url of the webpage where icons are located (default)"
258
  msgstr "Url de la página web donde los iconos están localizados (por defecto)"
259
 
260
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
261
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
262
  msgid "Url of the homepage of your website"
263
  msgstr "Url de la página de inicio de tu sitio web"
264
 
265
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
266
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
267
  msgid "Custom url"
268
  msgstr "Url personalizada"
269
 
@@ -272,7 +272,7 @@ msgid "Url to like/share/tweet and display like/share/tweet counts"
272
  msgstr "Url para los Me gusta / Compartir / Tweets y mostrar sus contadores"
273
 
274
  #: admin/like_buttons.php:105 admin/social_login.php:1231
275
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
276
  msgid "Title"
277
  msgstr "Título"
278
 
@@ -291,24 +291,24 @@ msgstr ""
291
  "reordenarlas."
292
 
293
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
294
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
295
  msgid "Horizontal alignment"
296
  msgstr "Alineación horizontal"
297
 
298
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
299
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
300
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308
301
  #: inc/widget.php:446 inc/widget.php:758
302
  msgid "Left"
303
  msgstr "Izquierda"
304
 
305
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
306
  msgid "Center"
307
  msgstr "Centrar"
308
 
309
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
310
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
311
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309
312
  #: inc/widget.php:447 inc/widget.php:759
313
  msgid "Right"
314
  msgstr "Derecha"
@@ -317,15 +317,15 @@ msgstr "Derecha"
317
  msgid "Horizontal alignment of the interface"
318
  msgstr "Alineación horizontal de la interfaz"
319
 
320
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
321
  msgid "Position with respect to content"
322
  msgstr "Posición respecto al contenido"
323
 
324
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
325
  msgid "Top of the content"
326
  msgstr "Encima del contenido"
327
 
328
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
329
  msgid "Bottom of the content"
330
  msgstr "Debajo del contenido"
331
 
@@ -339,69 +339,69 @@ msgstr "Posición de la interfaz"
339
 
340
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
341
  #: admin/social_login.php:1548 admin/social_login.php:1577
342
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
343
  msgid "Homepage"
344
  msgstr "Página de Inicio"
345
 
346
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
347
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
348
  msgid "Posts"
349
  msgstr "Entradas"
350
 
351
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
352
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
353
  msgid "Pages"
354
  msgstr "Páginas"
355
 
356
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
357
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
358
  #, fuzzy
359
  msgid "Excerpts and Posts page"
360
  msgstr "Extractos (en la Página de Inicio)"
361
 
362
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
363
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
364
  msgid "Category Archives"
365
  msgstr "Archivos por Categoría"
366
 
367
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
368
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
369
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
370
  msgstr ""
371
  "Páginas de Archivo (Categoría, Etiqueta, Autor o páginas clasificadas por "
372
  "Fecha)"
373
 
374
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
375
  msgid "BuddyPress activity"
376
  msgstr "Actividad en BuddyPress"
377
 
378
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
379
  msgid "BuddyPress group (only at top of content)"
380
  msgstr "Grupo BuddyPress (sólo encima del contenido)"
381
 
382
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
383
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
384
  msgid "BBPress forum"
385
  msgstr "Foro BBPress"
386
 
387
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
388
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
389
  msgid "BBPress topic"
390
  msgstr "Tema BBPress"
391
 
392
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
393
  msgid "BBPress reply"
394
  msgstr "Respuesta BBPress"
395
 
396
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
397
  msgid "After individual product at WooCommerce Shop page"
398
  msgstr "Después de cada producto individual en página de Tienda WooCommerce"
399
 
400
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
401
  msgid "WooCommerce Product Page"
402
  msgstr "Página de Producto WooCommerce"
403
 
404
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
405
  msgid "WooCommerce Thankyou Page"
406
  msgstr "Página de Agradecimiento WooCommerce"
407
 
@@ -421,8 +421,8 @@ msgstr "Permitir Barra Flotante de botones Me gusta"
421
  msgid "Master control to enable vertical (floating) counter widget"
422
  msgstr "Control maestro para permitir el widget vertical flotante del contador"
423
 
424
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
425
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287
426
  #: inc/widget.php:460 inc/widget.php:772
427
  msgid "Background Color"
428
  msgstr "Color del fondo"
@@ -439,7 +439,7 @@ msgstr ""
439
  "conseguir el código hexadecimal del color que desees en <a href=\"http://www."
440
  "colorpicker.com/\" target=\"_blank\">este enlace</a>"
441
 
442
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
443
  msgid "Left offset"
444
  msgstr "Desplazamiento a la izquierda"
445
 
@@ -452,7 +452,7 @@ msgstr ""
452
  "la derecha y al disminuirlo se desplazará hacia la izquierda. El número "
453
  "puede ser negativo también."
454
 
455
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
456
  msgid "Right offset"
457
  msgstr "Desplazamiento a la derecha"
458
 
@@ -465,7 +465,7 @@ msgstr ""
465
  "la izquierda y al disminuirlo se desplazará hacia la derecha. El número "
466
  "puede ser negativo también."
467
 
468
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
469
  msgid "Top offset"
470
  msgstr "Desplazamiento hacia arriba"
471
 
@@ -477,7 +477,7 @@ msgstr ""
477
  "Especifica un número. Al incrementar el número la interfaz se desplazará "
478
  "hacia abajo y al disminuirlo se desplazará hacia arriba."
479
 
480
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
481
  msgid "BuddyPress group"
482
  msgstr "grupo BuddyPress"
483
 
@@ -495,7 +495,7 @@ msgstr ""
495
  "Si se activa, la barra vertical de botones Me gusta no aparecerá en "
496
  "dispositivos móviles"
497
 
498
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
499
  msgid "Url shortener"
500
  msgstr "Acortador de Url"
501
 
@@ -515,16 +515,16 @@ msgstr ""
515
  msgid "Enable bit.ly url shortener for tweet button"
516
  msgstr "Permitir el abreviador de url bit.ly para el botón de twittear"
517
 
518
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
519
  msgid "Master control to enable bit.ly url shortening for sharing"
520
  msgstr ""
521
  "Control maestro para permitir el acortamiento de URL bit.ly para compartir"
522
 
523
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
524
  msgid "Bit.ly generic access token"
525
  msgstr ""
526
 
527
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
528
  #, php-format
529
  msgid ""
530
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -533,15 +533,15 @@ msgid ""
533
  "\">link</a>"
534
  msgstr ""
535
 
536
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
537
  msgid "Clear Bitly Cache"
538
  msgstr ""
539
 
540
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
541
  msgid "ShortUrl cache cleared successfully."
542
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
543
 
544
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
545
  msgid ""
546
  "Use this to delete short urls saved in database. Handy, if urls of your "
547
  "website have been changed but short urls are still being generated for old "
@@ -552,8 +552,8 @@ msgstr ""
552
  "url cortas todavía se están generando para viejas url."
553
 
554
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
555
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
556
- #: admin/social_sharing.php:1749
557
  msgid "Language"
558
  msgstr "Idioma"
559
 
@@ -597,11 +597,11 @@ msgstr ""
597
  "compartido en Buffer como \"via @USERNAME\". Déjalo vacío si no quieres "
598
  "ningún nombre de usuario."
599
 
600
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
601
  msgid "myCRED"
602
  msgstr ""
603
 
604
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
605
  msgid "Append myCRED referral ID to the urls being shared"
606
  msgstr ""
607
 
@@ -609,15 +609,15 @@ msgstr ""
609
  msgid "Like Buttons Shortcode & Widget"
610
  msgstr "Shortcode y Widget Botones Me gusta"
611
 
612
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
613
  msgid "Why is there so much space between like buttons?"
614
  msgstr ""
615
 
616
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
617
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
618
  msgstr ""
619
 
620
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
621
  msgid "How to Place Title and Social Share Icons in the Same Row?"
622
  msgstr ""
623
 
@@ -832,7 +832,7 @@ msgid "Social Commenting Shortcode"
832
  msgstr "Shortcode de Comentarios Sociales"
833
 
834
  #: admin/social_commenting.php:386 admin/social_login.php:1962
835
- #: admin/social_sharing.php:1904
836
  msgid ""
837
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
838
  "an online website for the plugin to function properly."
@@ -850,7 +850,7 @@ msgid ""
850
  msgstr ""
851
 
852
  #: admin/social_commenting.php:389 admin/social_login.php:1969
853
- #: admin/social_sharing.php:1919
854
  msgid "Why is my browser blocking some features of the plugin?"
855
  msgstr ""
856
 
@@ -888,7 +888,7 @@ msgid "Advanced Configuration"
888
  msgstr "Configuración básica"
889
 
890
  #: admin/social_login.php:41 admin/social_login.php:1746
891
- #: super_socializer.php:2347
892
  msgid "GDPR"
893
  msgstr ""
894
 
@@ -1032,7 +1032,7 @@ msgid "Reddit"
1032
  msgstr ""
1033
 
1034
  #: admin/social_login.php:203
1035
- msgid "Mailru"
1036
  msgstr ""
1037
 
1038
  #: admin/social_login.php:207
@@ -1049,7 +1049,7 @@ msgstr ""
1049
  "Seleccionar un proveedor de Social ID para permitir el ingreso a través de "
1050
  "redes sociales"
1051
 
1052
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1053
  msgid "Facebook App ID"
1054
  msgstr "Facebook App ID"
1055
 
@@ -1071,7 +1071,7 @@ msgstr ""
1071
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
1072
  "mencionado"
1073
 
1074
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1075
  #, fuzzy
1076
  msgid "Facebook App Secret"
1077
  msgstr "Facebook App ID"
@@ -2079,7 +2079,7 @@ msgstr ""
2079
  "Si está activa, los usuarios podrán actualizar su avatar social desde la "
2080
  "sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
2081
 
2082
- #: admin/social_login.php:1490 super_socializer.php:1946
2083
  msgid "Email required"
2084
  msgstr "Email requerido"
2085
 
@@ -2378,33 +2378,23 @@ msgstr "Control Maestro para permitir Compartir en redes sociales"
2378
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2379
  msgstr ""
2380
 
2381
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2382
- msgid ""
2383
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2384
- "Facebook share count to work"
2385
- msgstr ""
2386
-
2387
- #: admin/social_sharing.php:49
2388
- msgid "Dismiss this notice"
2389
- msgstr "No volver a mostrar este aviso"
2390
-
2391
- #: admin/social_sharing.php:56
2392
  msgid "Theme Selection"
2393
  msgstr "Selección de Temas"
2394
 
2395
- #: admin/social_sharing.php:68
2396
  msgid "Troubleshooter"
2397
  msgstr "Resolución de problmas"
2398
 
2399
- #: admin/social_sharing.php:77
2400
  msgid "Standard interface theme"
2401
  msgstr "Tema de la Interfaz Estándar"
2402
 
2403
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2404
  msgid "Icon Preview"
2405
  msgstr "Vista previa de Icono"
2406
 
2407
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2408
  msgid ""
2409
  "Do not forget to save the configuration after making changes by clicking the "
2410
  "save button below"
@@ -2412,55 +2402,55 @@ msgstr ""
2412
  "No olvides guardar la configuración después de hacer cambios clickando en el "
2413
  "botón \"Guardar\" de abajo"
2414
 
2415
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2416
  msgid "Shape"
2417
  msgstr "Forma"
2418
 
2419
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2420
  msgid "Round"
2421
  msgstr "Redondeado"
2422
 
2423
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2424
  msgid "Square"
2425
  msgstr "Cuadrado"
2426
 
2427
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2428
  msgid "Rectangle"
2429
  msgstr "Rectángulo"
2430
 
2431
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2432
  msgid "Shape of the sharing icons"
2433
  msgstr "Forma de los iconos de compartir"
2434
 
2435
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2436
  msgid "Size (in pixels)"
2437
  msgstr "Tamaño (en pixels)"
2438
 
2439
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2440
  msgid "Size of the sharing icons"
2441
  msgstr "Tamaño de los iconos de Compartir"
2442
 
2443
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2444
  msgid "Width (in pixels)"
2445
  msgstr "Anchura (en pixels)"
2446
 
2447
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2448
  msgid "Width of the sharing icons"
2449
  msgstr "Anchura de los iconos de Compartir"
2450
 
2451
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2452
  msgid "Height (in pixels)"
2453
  msgstr "Altura (en pixels)"
2454
 
2455
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2456
  msgid "Height of the sharing icons"
2457
  msgstr "Altura de los iconos de Compartir"
2458
 
2459
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2460
  msgid "Border radius (in pixels)"
2461
  msgstr "Borde del radio (en pixels)"
2462
 
2463
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2464
  msgid ""
2465
  "Specify a value for rounded corners. More the value, more rounded will the "
2466
  "corners be. Leave empty for sharp corners."
@@ -2469,23 +2459,23 @@ msgstr ""
2469
  "valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las "
2470
  "esquinas cuaadradas."
2471
 
2472
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2473
  msgid "Logo Color"
2474
  msgstr "Color del Logo"
2475
 
2476
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2477
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2478
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2479
  msgid "Default"
2480
  msgstr "Por defecto "
2481
 
2482
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2483
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2484
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2485
  msgid "On Hover"
2486
  msgstr "Con el puntero encima "
2487
 
2488
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2489
  msgid ""
2490
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2491
  "empty for default. You can get the hex code of the required color from <a "
@@ -2496,7 +2486,7 @@ msgstr ""
2496
  "conseguir el código hexadecimal del color que desees en <a href=\"http://www."
2497
  "colorpicker.com/\" target=\"_blank\">este enlace</a>"
2498
 
2499
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2500
  msgid ""
2501
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2502
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -2509,162 +2499,162 @@ msgstr ""
2509
  "código hexadecimal del color que desees en <a href=\"http://www.colorpicker."
2510
  "com/\" target=\"_blank\">este enlace</a>"
2511
 
2512
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2513
  msgid "Border"
2514
  msgstr "Borde"
2515
 
2516
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2517
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2518
  msgid "Border Width"
2519
  msgstr "Anchura del borde "
2520
 
2521
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2522
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2523
  msgid "Border Color"
2524
  msgstr "Color del borde "
2525
 
2526
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2527
  msgid "Icon border"
2528
  msgstr "Borde del icono"
2529
 
2530
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2531
  msgid "Counter Position"
2532
  msgstr "Posición del Contador"
2533
 
2534
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2535
  msgid "(applies, if counter enabled)"
2536
  msgstr "(aplicable si el contador está activo)"
2537
 
2538
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2539
  msgid "Top"
2540
  msgstr "Arriba"
2541
 
2542
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2543
  msgid "Bottom"
2544
  msgstr "Abajo"
2545
 
2546
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2547
  msgid "Inner Left"
2548
  msgstr "Izquierda Interior"
2549
 
2550
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2551
  msgid "Inner Top"
2552
  msgstr "Arriba Interior"
2553
 
2554
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2555
  msgid "Inner Right"
2556
  msgstr "Derecha Interior"
2557
 
2558
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2559
  msgid "Inner Bottom"
2560
  msgstr "Abajo Interior"
2561
 
2562
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2563
  msgid "Position of share counter"
2564
  msgstr "Posición del contador de veces compartidas"
2565
 
2566
- #: admin/social_sharing.php:375
2567
  msgid "Floating interface theme"
2568
  msgstr "Tema de la Interfaz Flotante"
2569
 
2570
- #: admin/social_sharing.php:679
2571
  msgid "Standard Sharing Interface Options"
2572
  msgstr "Opciones de la interfaz estándar de Compartir"
2573
 
2574
- #: admin/social_sharing.php:684
2575
  msgid "Enable Standard sharing interface"
2576
  msgstr "Permitir Interfaz Estándar de Compartir"
2577
 
2578
- #: admin/social_sharing.php:694
2579
  msgid "Master control to enable standard sharing"
2580
  msgstr "Control Maestro para permitir Compartir estándar"
2581
 
2582
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2583
  msgid "Url to share"
2584
  msgstr "Url para compartir"
2585
 
2586
- #: admin/social_sharing.php:735
2587
  msgid "The text to display above the sharing interface"
2588
  msgstr "El texto para mostrar sobre la interfaz de Compartir"
2589
 
2590
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2591
  #, fuzzy
2592
  msgid "Instagram username"
2593
  msgstr "Instagram"
2594
 
2595
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2596
  msgid ""
2597
  "Username of the Instagram account you want to redirect users to, on clicking "
2598
  "the icon"
2599
  msgstr ""
2600
 
2601
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2602
  #, fuzzy
2603
  msgid "HTML ID of container element of comment form"
2604
  msgstr "HTML ID del contenedor del formulario de comentario"
2605
 
2606
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2607
  msgid ""
2608
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2609
  "icon."
2610
  msgstr ""
2611
 
2612
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2613
  msgid "Rearrange icons"
2614
  msgstr "Reorganizar iconos"
2615
 
2616
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2617
  msgid "Drag the icons to rearrange in desired order"
2618
  msgstr "Arrastra los iconos para reorganizarlos en el orden deseado"
2619
 
2620
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2621
  msgid "Select Sharing Services"
2622
  msgstr "Selecciona los Servicios para Compartir"
2623
 
2624
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2625
  msgid "Select sharing services to show in social share bar"
2626
  msgstr ""
2627
  "Selecciona los servicios para compartir en la barra de Compartir en redes "
2628
  "sociales"
2629
 
2630
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2631
  #, fuzzy
2632
  msgid "Search social network"
2633
  msgstr "como red social primaria"
2634
 
2635
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2636
  msgid "Horizontal alignment of the sharing interface"
2637
  msgstr "Alineación horizontal de la interfaz de Compartir"
2638
 
2639
- #: admin/social_sharing.php:946
2640
  msgid "Specify position of the sharing interface with respect to the content"
2641
  msgstr ""
2642
  "Especifica la posición de la interfaz de Compartir respecto al contenido"
2643
 
2644
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2645
  msgid "Placement"
2646
  msgstr "Ubicación"
2647
 
2648
- #: admin/social_sharing.php:1021
2649
  msgid "Specify the pages where you want to enable Sharing interface"
2650
  msgstr ""
2651
  "Especifica las páginas donde tú quieres permitir la interfaz de Compartir"
2652
 
2653
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2654
  msgid "Show share counts"
2655
  msgstr "Mostrar contadores de las veces compartidas"
2656
 
2657
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
2658
  #, fuzzy
2659
  msgid ""
2660
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2661
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2662
  msgstr ""
2663
  "Los contadores oficiales de las veces compartidas son soportados por "
2664
  "Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, "
2665
  "Stumbleupon, Odnoklassniki y Vkontakte"
2666
 
2667
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2668
  #, php-format
2669
  msgid ""
2670
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2673,27 +2663,32 @@ msgid ""
2673
  "their website."
2674
  msgstr ""
2675
 
2676
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2677
  msgid "If enabled, share counts are displayed above sharing icons."
2678
  msgstr ""
2679
  "Si se activa, los contadores de veces compartidas aparecerán encima de los "
2680
  "iconos de compartir."
2681
 
2682
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2683
  msgid "Show total shares"
2684
  msgstr "Mostrar número total de veces compartidas"
2685
 
2686
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2687
  msgid "If enabled, total shares will be displayed with sharing icons"
2688
  msgstr ""
2689
  "Si se activa, los contadores de veces compartidas aparecerán con los iconos "
2690
  "de compartir."
2691
 
2692
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2693
  msgid "Enable 'More' icon"
2694
  msgstr "Permitir el icono 'Más'"
2695
 
2696
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2697
  msgid ""
2698
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2699
  "which shows additional sharing networks in popup"
@@ -2701,19 +2696,19 @@ msgstr ""
2701
  "Si se activa, el icono \"Más\" aparecerá después de los iconos de compartir "
2702
  "seleccionados, y mostrará en un popup las redes adicionales para compartir"
2703
 
2704
- #: admin/social_sharing.php:1094
2705
  msgid "Floating Sharing Interface Options"
2706
  msgstr "Opciones de la Interfaz Flotante de Compartir"
2707
 
2708
- #: admin/social_sharing.php:1099
2709
  msgid "Enable Floating sharing interface"
2710
  msgstr "Permitir la Interfaz Flotante de Compartir"
2711
 
2712
- #: admin/social_sharing.php:1109
2713
  msgid "Master control to enable floating sharing widget"
2714
  msgstr "Control maestro para permitir el widget flotante de compartir"
2715
 
2716
- #: admin/social_sharing.php:1297
2717
  msgid ""
2718
  "Specify the color or hex code (example #cc78e0) for the background of "
2719
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -2725,7 +2720,7 @@ msgstr ""
2725
  "Puedes conseguir el código hexadecimal del color que desees en <a href="
2726
  "\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
2727
 
2728
- #: admin/social_sharing.php:1335
2729
  msgid ""
2730
  "Specify a number. Increase in number will shift sharing interface towards "
2731
  "right and decrease will shift it towards left. Number can be negative too."
@@ -2734,7 +2729,7 @@ msgstr ""
2734
  "desplazará hacia la derecha, mientras que al disminuirlo se desplazará hacia "
2735
  "la izquierda. El número puede ser negativo también."
2736
 
2737
- #: admin/social_sharing.php:1354
2738
  msgid ""
2739
  "Specify a number. Increase in number will shift sharing interface towards "
2740
  "left and decrease will shift it towards right. Number can be negative too."
@@ -2743,7 +2738,7 @@ msgstr ""
2743
  "desplazará hacia la izquierda, mientras que al disminuirlo se desplazará "
2744
  "hacia la derecha. El número puede ser negativo también."
2745
 
2746
- #: admin/social_sharing.php:1372
2747
  msgid ""
2748
  "Specify a number. Increase in number will shift sharing interface towards "
2749
  "bottom and decrease will shift it towards top."
@@ -2752,33 +2747,33 @@ msgstr ""
2752
  "desplazará hacia abajo, mientras que al disminuirlo se desplazará hacia "
2753
  "abajo."
2754
 
2755
- #: admin/social_sharing.php:1428
2756
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2757
  msgstr ""
2758
  "Especifica las páginas donde quieres permitir la interfaz vertical de "
2759
  "Compartir"
2760
 
2761
- #: admin/social_sharing.php:1491
2762
  #, fuzzy
2763
  msgid "Hide floating slider"
2764
  msgstr "Ocultar para usuarios conectados:"
2765
 
2766
- #: admin/social_sharing.php:1501
2767
  msgid "Hides the slider arrow present below the floating share bar"
2768
  msgstr ""
2769
 
2770
- #: admin/social_sharing.php:1508
2771
  msgid "Vertical floating bar responsiveness"
2772
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
2773
 
2774
- #: admin/social_sharing.php:1511
2775
  #, php-format
2776
  msgid "Display vertical interface only when screen is wider than %s pixels"
2777
  msgstr ""
2778
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que %s "
2779
  "pixels"
2780
 
2781
- #: admin/social_sharing.php:1518
2782
  msgid ""
2783
  "Display vertical interface only when screen is wider than the width "
2784
  "specified."
@@ -2786,11 +2781,11 @@ msgstr ""
2786
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que el "
2787
  "ancho especificado."
2788
 
2789
- #: admin/social_sharing.php:1525
2790
  msgid "Horizontal floating bar responsiveness"
2791
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
2792
 
2793
- #: admin/social_sharing.php:1528
2794
  #, php-format
2795
  msgid ""
2796
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2799,7 +2794,7 @@ msgstr ""
2799
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
2800
  "fondo sólo cuando la pantalla sea más estrecha que %s pixels"
2801
 
2802
- #: admin/social_sharing.php:1535
2803
  msgid ""
2804
  "Stick vertical floating interface horizontally at bottom only when screen is "
2805
  "narrower than the width specified"
@@ -2807,95 +2802,62 @@ msgstr ""
2807
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
2808
  "fondo sólo cuando la pantalla sea más estrecha que el ancho especificado"
2809
 
2810
- #: admin/social_sharing.php:1544
2811
  msgid "Horizontal floating bar position"
2812
  msgstr "Posición de la barra flotante horizontal"
2813
 
2814
- #: admin/social_sharing.php:1547
2815
  #, php-format
2816
  msgid "%s pixels from %s"
2817
  msgstr "%s pixels de %s"
2818
 
2819
- #: admin/social_sharing.php:1548
2820
  msgid "Auto-adjust according to screen width (responsive)"
2821
  msgstr ""
2822
 
2823
- #: admin/social_sharing.php:1555
2824
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2825
  msgstr ""
2826
  "Alineación de la interfaz flotante horizontal, El número puede ser negativo "
2827
  "también."
2828
 
2829
- #: admin/social_sharing.php:1575
2830
- #, fuzzy
2831
- msgid "Facebook Share Count"
2832
- msgstr "Resolución de problemas al Compartir en Facebook"
2833
-
2834
- #: admin/social_sharing.php:1579
2835
- msgid "Note"
2836
- msgstr ""
2837
-
2838
- #: admin/social_sharing.php:1579
2839
- msgid "Required only to track Facebook share count"
2840
- msgstr ""
2841
-
2842
- #: admin/social_sharing.php:1594
2843
- #, fuzzy, php-format
2844
- msgid ""
2845
- "Required for Facebook share count to work. Please follow the documentation "
2846
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2847
- msgstr ""
2848
- "Requerido para que funcione el ingreso a través de Facebook. Por favor, "
2849
- "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2850
- "para conseguir tu Facebook App ID"
2851
-
2852
- #: admin/social_sharing.php:1611
2853
- #, fuzzy, php-format
2854
- msgid ""
2855
- "Required for Facebook share count to work. Please follow the documentation "
2856
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2857
- msgstr ""
2858
- "Requerido para que funcione el ingreso a través de Facebook. Por favor, "
2859
- "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> "
2860
- "para conseguir tu Facebook App ID"
2861
-
2862
- #: admin/social_sharing.php:1625
2863
  msgid "Use shortlinks already installed"
2864
  msgstr "Utiliza los shortlinks ya instalados"
2865
 
2866
- #: admin/social_sharing.php:1635
2867
  msgid "Uses default short url permalinks without using any additional plugin"
2868
  msgstr ""
2869
 
2870
- #: admin/social_sharing.php:1642
2871
  msgid "Enable bit.ly url shortener for sharing"
2872
  msgstr "Habilitar acortador de url bit.ly para compartir"
2873
 
2874
- #: admin/social_sharing.php:1696
2875
  msgid "Share Count Cache"
2876
  msgstr ""
2877
 
2878
- #: admin/social_sharing.php:1701
2879
  msgid "Refresh Share Count cache every"
2880
  msgstr ""
2881
 
2882
- #: admin/social_sharing.php:1706
2883
  msgid "Second(s)"
2884
  msgstr ""
2885
 
2886
- #: admin/social_sharing.php:1707
2887
  msgid "Minute(s)"
2888
  msgstr ""
2889
 
2890
- #: admin/social_sharing.php:1708
2891
  msgid "Hour(s)"
2892
  msgstr ""
2893
 
2894
- #: admin/social_sharing.php:1709
2895
  msgid "Day(s)"
2896
  msgstr ""
2897
 
2898
- #: admin/social_sharing.php:1717
2899
  #, php-format
2900
  msgid ""
2901
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2903,20 +2865,20 @@ msgid ""
2903
  "target=\"_blank\">here</a>"
2904
  msgstr ""
2905
 
2906
- #: admin/social_sharing.php:1724
2907
  msgid "Clear Share Counts Cache"
2908
  msgstr ""
2909
 
2910
- #: admin/social_sharing.php:1728
2911
  #, fuzzy
2912
  msgid "Share Counts cache cleared successfully."
2913
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
2914
 
2915
- #: admin/social_sharing.php:1735
2916
  msgid "Use this to clear cached share counts"
2917
  msgstr ""
2918
 
2919
- #: admin/social_sharing.php:1759
2920
  #, php-format
2921
  msgid ""
2922
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2927,15 +2889,15 @@ msgstr ""
2927
  "gusta\". Puedes encontrar los códigos de idioma en <a href=\"%s\" target="
2928
  "\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
2929
 
2930
- #: admin/social_sharing.php:1768
2931
  msgid "Username in sharing"
2932
  msgstr "Nombre de usuario en Compartir"
2933
 
2934
- #: admin/social_sharing.php:1773
2935
  msgid "Twitter username (without @)"
2936
  msgstr "Nombre de usuario de Twitter (sin @)"
2937
 
2938
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
2939
  msgid ""
2940
  "Provided username will be appended after the content being shared as \"via "
2941
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -2945,28 +2907,28 @@ msgstr ""
2945
  "sea comparte como \"via @USERNAME\". Déjalo vacío si no quieres ningún "
2946
  "nombre de usuario en el contenido compartido."
2947
 
2948
- #: admin/social_sharing.php:1791
2949
  msgid "Buffer username (without @)"
2950
  msgstr "Nombre de usuario de Buffer (sin @)"
2951
 
2952
- #: admin/social_sharing.php:1810
2953
  msgid "AMP"
2954
  msgstr ""
2955
 
2956
- #: admin/social_sharing.php:1815
2957
  #, fuzzy
2958
  msgid "Enable sharing on AMP pages"
2959
  msgstr "Permitir Página de Ingreso"
2960
 
2961
- #: admin/social_sharing.php:1825
2962
  msgid "Enable this option to render sharing icons on AMP pages"
2963
  msgstr ""
2964
 
2965
- #: admin/social_sharing.php:1882
2966
  msgid "Facebook Sharing Troubleshooter"
2967
  msgstr "Resolución de problemas al Compartir en Facebook"
2968
 
2969
- #: admin/social_sharing.php:1887
2970
  #, fuzzy
2971
  msgid ""
2972
  "If Facebook sharing is not working fine, click at the following link and "
@@ -2977,21 +2939,30 @@ msgstr ""
2977
  "en el siguiente enlace e introduce la url problemática de tu sitio web (la "
2978
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
2979
 
2980
- #: admin/social_sharing.php:1905
2981
  msgid ""
2982
  "Why is sharer not showing the correct image, title and other meta tags "
2983
  "content?"
2984
  msgstr ""
2985
 
2986
- #: admin/social_sharing.php:1906
2987
  msgid "Why is Facebook share count not working?"
2988
  msgstr ""
2989
 
2990
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
2991
  msgid "Why is Instagram icon redirecting to Instagram website?"
2992
  msgstr ""
2993
 
2994
- #: admin/social_sharing.php:1910
2995
  msgid ""
2996
  "Instagram icon is there to send website visitors to the Instagram page of "
2997
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2999,39 +2970,39 @@ msgid ""
2999
  "sections."
3000
  msgstr ""
3001
 
3002
- #: admin/social_sharing.php:1913
3003
  #, fuzzy
3004
  msgid "How to customize the url being shared?"
3005
  msgstr ""
3006
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
3007
  "compartidas?"
3008
 
3009
- #: admin/social_sharing.php:1914
3010
  msgid ""
3011
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
3012
  msgstr ""
3013
 
3014
- #: admin/social_sharing.php:1915
3015
  msgid ""
3016
  "It takes some time for their service to track the shares made on Twitter "
3017
  "from your website. If you still feel it's taking too long you can contact "
3018
  "their support directly from their website."
3019
  msgstr ""
3020
 
3021
- #: admin/social_sharing.php:1918
3022
  msgid ""
3023
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
3024
  msgstr ""
3025
 
3026
- #: admin/social_sharing.php:1920
3027
  msgid "Why the color of share icons is not being updated?"
3028
  msgstr ""
3029
 
3030
- #: admin/social_sharing.php:1921
3031
  msgid "Why Facebook share counts are not appearing?"
3032
  msgstr ""
3033
 
3034
- #: admin/social_sharing.php:1922
3035
  msgid ""
3036
  "How can I show share counts of my website rather than of individual pages/"
3037
  "posts?"
@@ -3039,46 +3010,46 @@ msgstr ""
3039
  "¿Cómo puedo mostrar los contadores de veces compartidas de mi sitio web en "
3040
  "lugar de páginas individuales o entradas?"
3041
 
3042
- #: admin/social_sharing.php:1923
3043
  msgid "How can I disable sharing on particular page/post?"
3044
  msgstr ""
3045
  "¿Cómo puedo desactivar los botones de Compartir en una página individual o "
3046
  "entrada?"
3047
 
3048
- #: admin/social_sharing.php:1924
3049
  msgid "How can I specify minimum sharing count for sharing networks?"
3050
  msgstr ""
3051
  "¿Cómo puedo especificar el número mínimo de veces compartidas para las redes "
3052
  "sociales?"
3053
 
3054
- #: admin/social_sharing.php:1925
3055
  msgid "How to share specific page?"
3056
  msgstr "¿Cómo compartir una página específica?"
3057
 
3058
- #: admin/social_sharing.php:1926
3059
  msgid "How to integrate Google Analytics with sharing?"
3060
  msgstr "¿Cómo integrar Google Analytics con Compartir?"
3061
 
3062
- #: admin/social_sharing.php:1927
3063
  msgid "How to customize the look of total share counts?"
3064
  msgstr ""
3065
  "¿Cómo personalizar el aspecto de los contadores totales de veces compartidas?"
3066
 
3067
- #: admin/social_sharing.php:1928
3068
  msgid "How to customize the look of individual share counts?"
3069
  msgstr ""
3070
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
3071
  "compartidas?"
3072
 
3073
- #: admin/social_sharing.php:1929
3074
  msgid "How to show Whatsapp icon only on mobile devices?"
3075
  msgstr "¿Cómo mostrar el icono de WhatsApp sólo en dispositivos móviles?"
3076
 
3077
- #: admin/social_sharing.php:1930
3078
  msgid "How to hide arrow after floating sharing bar?"
3079
  msgstr ""
3080
 
3081
- #: admin/social_sharing.php:1931
3082
  msgid "Why is share count not getting updated?"
3083
  msgstr ""
3084
 
@@ -3104,75 +3075,75 @@ msgstr ""
3104
  msgid "Settings"
3105
  msgstr "Ajustes"
3106
 
3107
- #: helper.php:579
3108
  msgid "Account linked successfully"
3109
  msgstr "Cuenta enlazada con éxito"
3110
 
3111
- #: helper.php:583
3112
  msgid "Account already exists or linked"
3113
  msgstr "Esta cuenta ya existe o ha sido enlazada"
3114
 
3115
- #: helper.php:619 helper.php:621
3116
  #, fuzzy
3117
  msgid "Login with"
3118
  msgstr "Otorgar puntos para el Social Login"
3119
 
3120
- #: helper.php:656 helper.php:662
3121
  msgid "Currently"
3122
  msgstr "Actualmente"
3123
 
3124
- #: helper.php:656 helper.php:662
3125
  msgid "Connected with"
3126
  msgstr ""
3127
 
3128
- #: helper.php:656 helper.php:662
3129
  msgid "Remove"
3130
  msgstr "Remover"
3131
 
3132
- #: helper.php:733
3133
  #, fuzzy
3134
  msgid "Social Account Linking"
3135
  msgstr ""
3136
  "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de "
3137
  "la página de perfil de BuddyPress"
3138
 
3139
- #: helper.php:783
3140
  msgid "Disable Standard Social Sharing on this "
3141
  msgstr "Desactivar la Barra Estándar Compartir en redes sociales aquí"
3142
 
3143
- #: helper.php:788
3144
  msgid "Disable Floating Social Sharing on this "
3145
  msgstr "Desactivar la Barra Flotante Compartir en redes sociales aquí"
3146
 
3147
- #: helper.php:793
3148
  msgid "Disable Standard like buttons on this "
3149
  msgstr "Desactivar los botones Me gusta Estándares aquí"
3150
 
3151
- #: helper.php:798
3152
  msgid "Disable Floating like buttons on this "
3153
  msgstr "Desactivar los botones Me gusta Flotantes aquí"
3154
 
3155
- #: helper.php:803
3156
  msgid "Disable Social Commenting on this "
3157
  msgstr "Desactivar Comentarios de redes sociales aquí"
3158
 
3159
- #: helper.php:812
3160
  msgid "Standard Sharing Interface"
3161
  msgstr "Interfaz Estándar para Compartir"
3162
 
3163
- #: helper.php:818 helper.php:837
3164
  msgid "Starting share count for "
3165
  msgstr "Comienzo del Contador de veces compartidas"
3166
 
3167
- #: helper.php:831
3168
  msgid "Floating Sharing Interface"
3169
  msgstr "Interfaz Flotante de botones Compartir"
3170
 
3171
- #: helper.php:927 super_socializer.php:2363
3172
  msgid "Social Avatar"
3173
  msgstr "Avatar Social"
3174
 
3175
- #: helper.php:930 super_socializer.php:2374
3176
  msgid ""
3177
  "Do not fetch and update social avatar from my profile, next time I Social "
3178
  "Login"
@@ -3180,36 +3151,36 @@ msgstr ""
3180
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
3181
  "próxima vez | Social Login"
3182
 
3183
- #: helper.php:931 super_socializer.php:2378
3184
  msgid "Update social avatar, next time I Social Login"
3185
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
3186
 
3187
- #: helper.php:934
3188
  msgid "Small Avatar"
3189
  msgstr "Avatar Pequeño"
3190
 
3191
- #: helper.php:938
3192
  msgid "Large Avatar"
3193
  msgstr "Avatar Grande"
3194
 
3195
- #: helper.php:998 super_socializer.php:1924
3196
  msgid "Please verify your email address to login."
3197
  msgstr "Por favor verifica tu dirección de email para ingresar."
3198
 
3199
- #: helper.php:1035
3200
  msgid "Click to delete social profile data"
3201
  msgstr ""
3202
 
3203
- #: helper.php:1064
3204
  #, fuzzy
3205
  msgid "Deleting"
3206
  msgstr "Ajustes"
3207
 
3208
- #: helper.php:1074
3209
  msgid "Deleted"
3210
  msgstr ""
3211
 
3212
- #: helper.php:1076
3213
  msgid "Something bad happened"
3214
  msgstr ""
3215
 
@@ -3266,30 +3237,34 @@ msgid "Archives"
3266
  msgstr "Archivos por Categoría"
3267
 
3268
  #: inc/social_sharing.php:225
 
3269
  msgid "More"
3270
  msgstr ""
 
 
 
3271
 
3272
- #: inc/social_sharing.php:241 super_socializer.php:2034
3273
  #, fuzzy
3274
  msgid "Share"
3275
- msgstr "Comienzo del Contador de veces compartidas"
3276
 
3277
- #: inc/social_sharing.php:241 super_socializer.php:2034
3278
  #, fuzzy
3279
  msgid "Shares"
3280
  msgstr ""
3281
  "Si se activa, los contadores de veces compartidas aparecerán con los iconos "
3282
  "de compartir."
3283
 
3284
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3285
  msgid "Invalid request"
3286
  msgstr "Petición no válida"
3287
 
3288
- #: inc/social_sharing.php:949
3289
  msgid "Providers not selected"
3290
  msgstr "Redes sociales no seleccionadas"
3291
 
3292
- #: inc/social_sharing_networks.php:57
3293
  msgid "Copy Link"
3294
  msgstr ""
3295
 
@@ -3567,7 +3542,11 @@ msgstr ""
3567
  msgid "RSS Feed URL:"
3568
  msgstr ""
3569
 
3570
- #: super_socializer.php:1707
 
 
 
 
3571
  #, fuzzy
3572
  msgid ""
3573
  "cURL is not enabled at your website server. Please contact your website "
@@ -3577,7 +3556,7 @@ msgstr ""
3577
  "posible que necesites contactar con el administrador de tu servidor para "
3578
  "verificar esto"
3579
 
3580
- #: super_socializer.php:1735
3581
  #, fuzzy, php-format
3582
  msgid ""
3583
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3586,7 +3565,7 @@ msgstr ""
3586
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
3587
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
3588
 
3589
- #: super_socializer.php:1738
3590
  #, fuzzy, php-format
3591
  msgid ""
3592
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3595,7 +3574,7 @@ msgstr ""
3595
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
3596
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
3597
 
3598
- #: super_socializer.php:1741
3599
  msgid ""
3600
  "Make sure cURL is enabled at your website server. You may need to contact "
3601
  "the server administrator of your website to verify this"
@@ -3604,122 +3583,122 @@ msgstr ""
3604
  "posible que necesites contactar con el administrador de tu servidor para "
3605
  "verificar esto"
3606
 
3607
- #: super_socializer.php:1902
3608
  msgid "Search"
3609
  msgstr ""
3610
 
3611
- #: super_socializer.php:1924
3612
  msgid "Your email has been verified. Now you can login to your account"
3613
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
3614
 
3615
- #: super_socializer.php:1928
3616
  msgid "Notification"
3617
  msgstr "Notificación"
3618
 
3619
- #: super_socializer.php:1949
3620
  msgid "Please check your email inbox to complete the registration."
3621
  msgstr ""
3622
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
3623
  "registro."
3624
 
3625
- #: super_socializer.php:2018
3626
  msgid "Leave a reply"
3627
  msgstr "Deja una respuesta"
3628
 
3629
- #: super_socializer.php:2034
3630
  #, fuzzy
3631
  msgid "Link copied."
3632
  msgstr "LinkedIn"
3633
 
3634
- #: super_socializer.php:2279
3635
  msgid "Super Socializer - General Options"
3636
  msgstr "Super Socializer - Opciones Generales"
3637
 
3638
- #: super_socializer.php:2350
3639
  msgid ""
3640
  "I agree to my personal data being stored and used as per Privacy Policy and "
3641
  "Terms and Conditions"
3642
  msgstr ""
3643
 
3644
- #: super_socializer.php:2354
3645
  msgid ""
3646
  "I revoke my consent to store and use my personal data. Kindly delete my "
3647
  "personal data saved in this website."
3648
  msgstr ""
3649
 
3650
- #: super_socializer.php:2366
3651
  msgid "Small Avatar Url"
3652
  msgstr "Url de Avatar Pequeño"
3653
 
3654
- #: super_socializer.php:2370
3655
  msgid "Large Avatar Url"
3656
  msgstr "Url de Avatar Grande"
3657
 
3658
- #: super_socializer.php:2472
3659
  msgid "Login with your Social ID"
3660
  msgstr ""
3661
 
3662
- #: super_socializer.php:2473
3663
  msgid "Email you entered is already registered or invalid"
3664
  msgstr "El email que has escrito ya está registrado o no es válido"
3665
 
3666
- #: super_socializer.php:2480
3667
  msgid "Please enter a valid email address. You might be required to verify it"
3668
  msgstr ""
3669
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
3670
  "verificarla"
3671
 
3672
- #: super_socializer.php:2484 super_socializer.php:3238
3673
  msgid "Link your social account to login to your account at this website"
3674
  msgstr ""
3675
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
3676
  "web "
3677
 
3678
- #: super_socializer.php:2741
3679
  msgid "Thanks for installing Super Socializer plugin"
3680
  msgstr ""
3681
 
3682
- #: super_socializer.php:2743
3683
  msgid "Configure the Plugin"
3684
  msgstr ""
3685
 
3686
- #: super_socializer.php:2754
3687
  msgid ""
3688
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3689
  "current version of Super Socializer"
3690
  msgstr ""
3691
 
3692
- #: super_socializer.php:2763
3693
  msgid ""
3694
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3695
  "version of Super Socializer"
3696
  msgstr ""
3697
 
3698
- #: super_socializer.php:2772
3699
  msgid ""
3700
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3701
  "compatibility with the current version of Super Socializer"
3702
  msgstr ""
3703
 
3704
- #: super_socializer.php:2781
3705
  msgid ""
3706
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3707
  "with current version of Super Socializer"
3708
  msgstr ""
3709
 
3710
- #: super_socializer.php:2790
3711
  msgid ""
3712
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3713
  "with current version of Super Socializer"
3714
  msgstr ""
3715
 
3716
- #: super_socializer.php:2801
3717
  #, php-format
3718
  msgid ""
3719
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3720
  msgstr ""
3721
 
3722
- #: super_socializer.php:2810
3723
  #, php-format
3724
  msgid ""
3725
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3727,7 +3706,7 @@ msgid ""
3727
  "Instagram App Secret <a href=\"%s\">here</a>"
3728
  msgstr ""
3729
 
3730
- #: super_socializer.php:2819 super_socializer.php:2828
3731
  #, php-format
3732
  msgid ""
3733
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3736,13 +3715,13 @@ msgid ""
3736
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3737
  msgstr ""
3738
 
3739
- #: super_socializer.php:2844
3740
  #, php-format
3741
  msgid ""
3742
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3743
  msgstr ""
3744
 
3745
- #: super_socializer.php:2868
3746
  #, php-format
3747
  msgid ""
3748
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3750,14 +3729,14 @@ msgid ""
3750
  "target=\"_blank\">here</a>"
3751
  msgstr ""
3752
 
3753
- #: super_socializer.php:2868 super_socializer.php:2893
3754
- #: super_socializer.php:2918 super_socializer.php:2943
3755
- #: super_socializer.php:2976 super_socializer.php:3004
3756
- #: super_socializer.php:3031
3757
  msgid "Okay"
3758
  msgstr ""
3759
 
3760
- #: super_socializer.php:2893
3761
  #, php-format
3762
  msgid ""
3763
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3765,7 +3744,7 @@ msgid ""
3765
  "\">here</a>"
3766
  msgstr ""
3767
 
3768
- #: super_socializer.php:2918
3769
  #, php-format
3770
  msgid ""
3771
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3773,7 +3752,7 @@ msgid ""
3773
  "target=\"_blank\">here</a>"
3774
  msgstr ""
3775
 
3776
- #: super_socializer.php:2943
3777
  #, php-format
3778
  msgid ""
3779
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3781,13 +3760,13 @@ msgid ""
3781
  "target=\"_blank\">here</a>"
3782
  msgstr ""
3783
 
3784
- #: super_socializer.php:2954
3785
  #, php-format
3786
  msgid ""
3787
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3788
  msgstr ""
3789
 
3790
- #: super_socializer.php:2976
3791
  #, php-format
3792
  msgid ""
3793
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3795,7 +3774,7 @@ msgid ""
3795
  "\"%s\" target=\"_blank\">here</a>"
3796
  msgstr ""
3797
 
3798
- #: super_socializer.php:3004
3799
  #, php-format
3800
  msgid ""
3801
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3804,7 +3783,7 @@ msgid ""
3804
  "your website %s with them. No need to copy-paste any code from their website."
3805
  msgstr ""
3806
 
3807
- #: super_socializer.php:3031
3808
  #, php-format
3809
  msgid ""
3810
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3812,7 +3791,7 @@ msgid ""
3812
  "\"%s\" target=\"_blank\">here</a>"
3813
  msgstr ""
3814
 
3815
- #: super_socializer.php:3056
3816
  #, php-format
3817
  msgid ""
3818
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3820,25 +3799,43 @@ msgid ""
3820
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3821
  msgstr ""
3822
 
3823
- #: super_socializer.php:3056 super_socializer.php:3083
3824
  msgid "Dismiss"
3825
  msgstr ""
3826
 
3827
- #: super_socializer.php:3082
3828
- #, php-format
3829
- msgid ""
3830
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3831
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3832
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3833
- "that, clear share counts cache from \"Miscellaneous\" section"
3834
- msgstr ""
3835
-
3836
- #: super_socializer.php:3314
3837
  msgid ""
3838
  "Your browser is blocking some features of this website. Please follow the "
3839
  "instructions at {support_url} to unblock these."
3840
  msgstr ""
3841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3842
  #, fuzzy
3843
  #~ msgid ""
3844
  #~ "Required for Dropbox Social Login to work. Please follow the "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-17 15:42+0530\n"
6
+ "PO-Revision-Date: 2021-07-17 15:42+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
25
  #, fuzzy, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
32
  "conseguir tu Twitter Key"
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
+ #: super_socializer.php:2291
36
  msgid "General Options"
37
  msgstr "Opciones Generales"
38
 
82
 
83
  #: admin/general_options.php:89 admin/like_buttons.php:780
84
  #: admin/social_commenting.php:400 admin/social_login.php:1980
85
+ #: admin/social_sharing.php:1912 helper.php:936
86
  msgid "Save Changes"
87
  msgstr "Guardar Cambios"
88
 
89
  #: admin/general_options.php:103 admin/like_buttons.php:790
90
  #: admin/social_commenting.php:410 admin/social_login.php:1990
91
+ #: admin/social_sharing.php:1922
92
  #, fuzzy
93
  msgid "Instagram Shoutout"
94
  msgstr "Instagram"
95
 
96
  #: admin/general_options.php:105 admin/like_buttons.php:792
97
  #: admin/social_commenting.php:412 admin/social_login.php:1992
98
+ #: admin/social_sharing.php:1924
99
  msgid ""
100
  "If you can send (to hello@heateor.com) how this plugin is helping your "
101
  "business, we would be glad to shoutout on Instagram. You can also send any "
205
  "Control maestro para los botones Me gusta. Debes activarlo para permitir su "
206
  "funcionalidad"
207
 
208
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
209
  msgid "Standard Interface"
210
  msgstr "Interfaz Estándar"
211
 
212
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
213
  msgid "Floating Interface"
214
  msgstr "Interfaz Flotante"
215
 
216
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
217
  msgid "Miscellaneous"
218
  msgstr "Miscelánea"
219
 
220
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
221
  msgid "3rd Party Integration"
222
  msgstr ""
223
 
224
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
225
  #: admin/social_login.php:45 admin/social_login.php:1946
226
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
227
+ #: admin/social_sharing.php:1839
228
  msgid "Shortcode & Widget"
229
  msgstr "Widgets y Shortcodes"
230
 
231
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
232
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
233
  #: admin/social_login.php:46 admin/social_login.php:1960
234
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
235
  msgid "FAQ"
236
  msgstr "FAQ"
237
 
248
  msgstr "Control maestro para permitir los botones Me gusta horizontales"
249
 
250
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
251
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
252
  msgid "Target Url"
253
  msgstr "Target Url"
254
 
255
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
256
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
257
  msgid "Url of the webpage where icons are located (default)"
258
  msgstr "Url de la página web donde los iconos están localizados (por defecto)"
259
 
260
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
261
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
262
  msgid "Url of the homepage of your website"
263
  msgstr "Url de la página de inicio de tu sitio web"
264
 
265
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
266
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
267
  msgid "Custom url"
268
  msgstr "Url personalizada"
269
 
272
  msgstr "Url para los Me gusta / Compartir / Tweets y mostrar sus contadores"
273
 
274
  #: admin/like_buttons.php:105 admin/social_login.php:1231
275
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
276
  msgid "Title"
277
  msgstr "Título"
278
 
291
  "reordenarlas."
292
 
293
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
294
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
295
  msgid "Horizontal alignment"
296
  msgstr "Alineación horizontal"
297
 
298
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
299
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
300
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
301
  #: inc/widget.php:446 inc/widget.php:758
302
  msgid "Left"
303
  msgstr "Izquierda"
304
 
305
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
306
  msgid "Center"
307
  msgstr "Centrar"
308
 
309
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
310
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
311
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
312
  #: inc/widget.php:447 inc/widget.php:759
313
  msgid "Right"
314
  msgstr "Derecha"
317
  msgid "Horizontal alignment of the interface"
318
  msgstr "Alineación horizontal de la interfaz"
319
 
320
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
321
  msgid "Position with respect to content"
322
  msgstr "Posición respecto al contenido"
323
 
324
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
325
  msgid "Top of the content"
326
  msgstr "Encima del contenido"
327
 
328
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
329
  msgid "Bottom of the content"
330
  msgstr "Debajo del contenido"
331
 
339
 
340
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
341
  #: admin/social_login.php:1548 admin/social_login.php:1577
342
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
343
  msgid "Homepage"
344
  msgstr "Página de Inicio"
345
 
346
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
347
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
348
  msgid "Posts"
349
  msgstr "Entradas"
350
 
351
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
352
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
353
  msgid "Pages"
354
  msgstr "Páginas"
355
 
356
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
357
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
358
  #, fuzzy
359
  msgid "Excerpts and Posts page"
360
  msgstr "Extractos (en la Página de Inicio)"
361
 
362
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
363
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
364
  msgid "Category Archives"
365
  msgstr "Archivos por Categoría"
366
 
367
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
368
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
369
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
370
  msgstr ""
371
  "Páginas de Archivo (Categoría, Etiqueta, Autor o páginas clasificadas por "
372
  "Fecha)"
373
 
374
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
375
  msgid "BuddyPress activity"
376
  msgstr "Actividad en BuddyPress"
377
 
378
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
379
  msgid "BuddyPress group (only at top of content)"
380
  msgstr "Grupo BuddyPress (sólo encima del contenido)"
381
 
382
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
383
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
384
  msgid "BBPress forum"
385
  msgstr "Foro BBPress"
386
 
387
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
388
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
389
  msgid "BBPress topic"
390
  msgstr "Tema BBPress"
391
 
392
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
393
  msgid "BBPress reply"
394
  msgstr "Respuesta BBPress"
395
 
396
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
397
  msgid "After individual product at WooCommerce Shop page"
398
  msgstr "Después de cada producto individual en página de Tienda WooCommerce"
399
 
400
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
401
  msgid "WooCommerce Product Page"
402
  msgstr "Página de Producto WooCommerce"
403
 
404
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
405
  msgid "WooCommerce Thankyou Page"
406
  msgstr "Página de Agradecimiento WooCommerce"
407
 
421
  msgid "Master control to enable vertical (floating) counter widget"
422
  msgstr "Control maestro para permitir el widget vertical flotante del contador"
423
 
424
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
425
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
426
  #: inc/widget.php:460 inc/widget.php:772
427
  msgid "Background Color"
428
  msgstr "Color del fondo"
439
  "conseguir el código hexadecimal del color que desees en <a href=\"http://www."
440
  "colorpicker.com/\" target=\"_blank\">este enlace</a>"
441
 
442
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
443
  msgid "Left offset"
444
  msgstr "Desplazamiento a la izquierda"
445
 
452
  "la derecha y al disminuirlo se desplazará hacia la izquierda. El número "
453
  "puede ser negativo también."
454
 
455
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
456
  msgid "Right offset"
457
  msgstr "Desplazamiento a la derecha"
458
 
465
  "la izquierda y al disminuirlo se desplazará hacia la derecha. El número "
466
  "puede ser negativo también."
467
 
468
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
469
  msgid "Top offset"
470
  msgstr "Desplazamiento hacia arriba"
471
 
477
  "Especifica un número. Al incrementar el número la interfaz se desplazará "
478
  "hacia abajo y al disminuirlo se desplazará hacia arriba."
479
 
480
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
481
  msgid "BuddyPress group"
482
  msgstr "grupo BuddyPress"
483
 
495
  "Si se activa, la barra vertical de botones Me gusta no aparecerá en "
496
  "dispositivos móviles"
497
 
498
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
499
  msgid "Url shortener"
500
  msgstr "Acortador de Url"
501
 
515
  msgid "Enable bit.ly url shortener for tweet button"
516
  msgstr "Permitir el abreviador de url bit.ly para el botón de twittear"
517
 
518
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
519
  msgid "Master control to enable bit.ly url shortening for sharing"
520
  msgstr ""
521
  "Control maestro para permitir el acortamiento de URL bit.ly para compartir"
522
 
523
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
524
  msgid "Bit.ly generic access token"
525
  msgstr ""
526
 
527
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
528
  #, php-format
529
  msgid ""
530
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
533
  "\">link</a>"
534
  msgstr ""
535
 
536
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
537
  msgid "Clear Bitly Cache"
538
  msgstr ""
539
 
540
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
541
  msgid "ShortUrl cache cleared successfully."
542
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
543
 
544
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
545
  msgid ""
546
  "Use this to delete short urls saved in database. Handy, if urls of your "
547
  "website have been changed but short urls are still being generated for old "
552
  "url cortas todavía se están generando para viejas url."
553
 
554
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
555
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
556
+ #: admin/social_sharing.php:1717
557
  msgid "Language"
558
  msgstr "Idioma"
559
 
597
  "compartido en Buffer como \"via @USERNAME\". Déjalo vacío si no quieres "
598
  "ningún nombre de usuario."
599
 
600
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
601
  msgid "myCRED"
602
  msgstr ""
603
 
604
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
605
  msgid "Append myCRED referral ID to the urls being shared"
606
  msgstr ""
607
 
609
  msgid "Like Buttons Shortcode & Widget"
610
  msgstr "Shortcode y Widget Botones Me gusta"
611
 
612
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
613
  msgid "Why is there so much space between like buttons?"
614
  msgstr ""
615
 
616
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
617
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
618
  msgstr ""
619
 
620
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
621
  msgid "How to Place Title and Social Share Icons in the Same Row?"
622
  msgstr ""
623
 
832
  msgstr "Shortcode de Comentarios Sociales"
833
 
834
  #: admin/social_commenting.php:386 admin/social_login.php:1962
835
+ #: admin/social_sharing.php:1872
836
  msgid ""
837
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
838
  "an online website for the plugin to function properly."
850
  msgstr ""
851
 
852
  #: admin/social_commenting.php:389 admin/social_login.php:1969
853
+ #: admin/social_sharing.php:1887
854
  msgid "Why is my browser blocking some features of the plugin?"
855
  msgstr ""
856
 
888
  msgstr "Configuración básica"
889
 
890
  #: admin/social_login.php:41 admin/social_login.php:1746
891
+ #: super_socializer.php:2359
892
  msgid "GDPR"
893
  msgstr ""
894
 
1032
  msgstr ""
1033
 
1034
  #: admin/social_login.php:203
1035
+ msgid "Mail.ru"
1036
  msgstr ""
1037
 
1038
  #: admin/social_login.php:207
1049
  "Seleccionar un proveedor de Social ID para permitir el ingreso a través de "
1050
  "redes sociales"
1051
 
1052
+ #: admin/social_login.php:226
1053
  msgid "Facebook App ID"
1054
  msgstr "Facebook App ID"
1055
 
1071
  "Pega la siguiente url en la opción <strong>Site URL</ strong> en el enlace "
1072
  "mencionado"
1073
 
1074
+ #: admin/social_login.php:247
1075
  #, fuzzy
1076
  msgid "Facebook App Secret"
1077
  msgstr "Facebook App ID"
2079
  "Si está activa, los usuarios podrán actualizar su avatar social desde la "
2080
  "sección \"Foto de perfil\" en el perfil BuddyPress, en la vista de usuario"
2081
 
2082
+ #: admin/social_login.php:1490 super_socializer.php:1958
2083
  msgid "Email required"
2084
  msgstr "Email requerido"
2085
 
2378
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2379
  msgstr ""
2380
 
2381
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2382
  msgid "Theme Selection"
2383
  msgstr "Selección de Temas"
2384
 
2385
+ #: admin/social_sharing.php:64
2386
  msgid "Troubleshooter"
2387
  msgstr "Resolución de problmas"
2388
 
2389
+ #: admin/social_sharing.php:73
2390
  msgid "Standard interface theme"
2391
  msgstr "Tema de la Interfaz Estándar"
2392
 
2393
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2394
  msgid "Icon Preview"
2395
  msgstr "Vista previa de Icono"
2396
 
2397
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2398
  msgid ""
2399
  "Do not forget to save the configuration after making changes by clicking the "
2400
  "save button below"
2402
  "No olvides guardar la configuración después de hacer cambios clickando en el "
2403
  "botón \"Guardar\" de abajo"
2404
 
2405
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2406
  msgid "Shape"
2407
  msgstr "Forma"
2408
 
2409
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2410
  msgid "Round"
2411
  msgstr "Redondeado"
2412
 
2413
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2414
  msgid "Square"
2415
  msgstr "Cuadrado"
2416
 
2417
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2418
  msgid "Rectangle"
2419
  msgstr "Rectángulo"
2420
 
2421
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2422
  msgid "Shape of the sharing icons"
2423
  msgstr "Forma de los iconos de compartir"
2424
 
2425
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2426
  msgid "Size (in pixels)"
2427
  msgstr "Tamaño (en pixels)"
2428
 
2429
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2430
  msgid "Size of the sharing icons"
2431
  msgstr "Tamaño de los iconos de Compartir"
2432
 
2433
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2434
  msgid "Width (in pixels)"
2435
  msgstr "Anchura (en pixels)"
2436
 
2437
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2438
  msgid "Width of the sharing icons"
2439
  msgstr "Anchura de los iconos de Compartir"
2440
 
2441
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2442
  msgid "Height (in pixels)"
2443
  msgstr "Altura (en pixels)"
2444
 
2445
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2446
  msgid "Height of the sharing icons"
2447
  msgstr "Altura de los iconos de Compartir"
2448
 
2449
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2450
  msgid "Border radius (in pixels)"
2451
  msgstr "Borde del radio (en pixels)"
2452
 
2453
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2454
  msgid ""
2455
  "Specify a value for rounded corners. More the value, more rounded will the "
2456
  "corners be. Leave empty for sharp corners."
2459
  "valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las "
2460
  "esquinas cuaadradas."
2461
 
2462
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2463
  msgid "Logo Color"
2464
  msgstr "Color del Logo"
2465
 
2466
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2467
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2468
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2469
  msgid "Default"
2470
  msgstr "Por defecto "
2471
 
2472
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2473
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2474
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2475
  msgid "On Hover"
2476
  msgstr "Con el puntero encima "
2477
 
2478
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2479
  msgid ""
2480
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2481
  "empty for default. You can get the hex code of the required color from <a "
2486
  "conseguir el código hexadecimal del color que desees en <a href=\"http://www."
2487
  "colorpicker.com/\" target=\"_blank\">este enlace</a>"
2488
 
2489
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2490
  msgid ""
2491
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2492
  "\"transparent\" for transparent background. Leave empty for default. You can "
2499
  "código hexadecimal del color que desees en <a href=\"http://www.colorpicker."
2500
  "com/\" target=\"_blank\">este enlace</a>"
2501
 
2502
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2503
  msgid "Border"
2504
  msgstr "Borde"
2505
 
2506
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2507
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2508
  msgid "Border Width"
2509
  msgstr "Anchura del borde "
2510
 
2511
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2512
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2513
  msgid "Border Color"
2514
  msgstr "Color del borde "
2515
 
2516
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2517
  msgid "Icon border"
2518
  msgstr "Borde del icono"
2519
 
2520
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2521
  msgid "Counter Position"
2522
  msgstr "Posición del Contador"
2523
 
2524
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2525
  msgid "(applies, if counter enabled)"
2526
  msgstr "(aplicable si el contador está activo)"
2527
 
2528
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2529
  msgid "Top"
2530
  msgstr "Arriba"
2531
 
2532
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2533
  msgid "Bottom"
2534
  msgstr "Abajo"
2535
 
2536
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2537
  msgid "Inner Left"
2538
  msgstr "Izquierda Interior"
2539
 
2540
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2541
  msgid "Inner Top"
2542
  msgstr "Arriba Interior"
2543
 
2544
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2545
  msgid "Inner Right"
2546
  msgstr "Derecha Interior"
2547
 
2548
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2549
  msgid "Inner Bottom"
2550
  msgstr "Abajo Interior"
2551
 
2552
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2553
  msgid "Position of share counter"
2554
  msgstr "Posición del contador de veces compartidas"
2555
 
2556
+ #: admin/social_sharing.php:371
2557
  msgid "Floating interface theme"
2558
  msgstr "Tema de la Interfaz Flotante"
2559
 
2560
+ #: admin/social_sharing.php:675
2561
  msgid "Standard Sharing Interface Options"
2562
  msgstr "Opciones de la interfaz estándar de Compartir"
2563
 
2564
+ #: admin/social_sharing.php:680
2565
  msgid "Enable Standard sharing interface"
2566
  msgstr "Permitir Interfaz Estándar de Compartir"
2567
 
2568
+ #: admin/social_sharing.php:690
2569
  msgid "Master control to enable standard sharing"
2570
  msgstr "Control Maestro para permitir Compartir estándar"
2571
 
2572
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2573
  msgid "Url to share"
2574
  msgstr "Url para compartir"
2575
 
2576
+ #: admin/social_sharing.php:731
2577
  msgid "The text to display above the sharing interface"
2578
  msgstr "El texto para mostrar sobre la interfaz de Compartir"
2579
 
2580
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2581
  #, fuzzy
2582
  msgid "Instagram username"
2583
  msgstr "Instagram"
2584
 
2585
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2586
  msgid ""
2587
  "Username of the Instagram account you want to redirect users to, on clicking "
2588
  "the icon"
2589
  msgstr ""
2590
 
2591
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2592
  #, fuzzy
2593
  msgid "HTML ID of container element of comment form"
2594
  msgstr "HTML ID del contenedor del formulario de comentario"
2595
 
2596
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2597
  msgid ""
2598
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2599
  "icon."
2600
  msgstr ""
2601
 
2602
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2603
  msgid "Rearrange icons"
2604
  msgstr "Reorganizar iconos"
2605
 
2606
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2607
  msgid "Drag the icons to rearrange in desired order"
2608
  msgstr "Arrastra los iconos para reorganizarlos en el orden deseado"
2609
 
2610
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2611
  msgid "Select Sharing Services"
2612
  msgstr "Selecciona los Servicios para Compartir"
2613
 
2614
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2615
  msgid "Select sharing services to show in social share bar"
2616
  msgstr ""
2617
  "Selecciona los servicios para compartir en la barra de Compartir en redes "
2618
  "sociales"
2619
 
2620
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2621
  #, fuzzy
2622
  msgid "Search social network"
2623
  msgstr "como red social primaria"
2624
 
2625
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2626
  msgid "Horizontal alignment of the sharing interface"
2627
  msgstr "Alineación horizontal de la interfaz de Compartir"
2628
 
2629
+ #: admin/social_sharing.php:942
2630
  msgid "Specify position of the sharing interface with respect to the content"
2631
  msgstr ""
2632
  "Especifica la posición de la interfaz de Compartir respecto al contenido"
2633
 
2634
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2635
  msgid "Placement"
2636
  msgstr "Ubicación"
2637
 
2638
+ #: admin/social_sharing.php:1017
2639
  msgid "Specify the pages where you want to enable Sharing interface"
2640
  msgstr ""
2641
  "Especifica las páginas donde tú quieres permitir la interfaz de Compartir"
2642
 
2643
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2644
  msgid "Show share counts"
2645
  msgstr "Mostrar contadores de las veces compartidas"
2646
 
2647
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2648
  #, fuzzy
2649
  msgid ""
2650
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2651
+ "Odnoklassniki, Fintel and Vkontakte"
2652
  msgstr ""
2653
  "Los contadores oficiales de las veces compartidas son soportados por "
2654
  "Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, "
2655
  "Stumbleupon, Odnoklassniki y Vkontakte"
2656
 
2657
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2658
  #, php-format
2659
  msgid ""
2660
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2663
  "their website."
2664
  msgstr ""
2665
 
2666
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2667
  msgid "If enabled, share counts are displayed above sharing icons."
2668
  msgstr ""
2669
  "Si se activa, los contadores de veces compartidas aparecerán encima de los "
2670
  "iconos de compartir."
2671
 
2672
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2673
+ #: admin/social_sharing.php:1659
2674
+ msgid "Track Social Shares for Every Social Network"
2675
+ msgstr ""
2676
+
2677
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2678
  msgid "Show total shares"
2679
  msgstr "Mostrar número total de veces compartidas"
2680
 
2681
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2682
  msgid "If enabled, total shares will be displayed with sharing icons"
2683
  msgstr ""
2684
  "Si se activa, los contadores de veces compartidas aparecerán con los iconos "
2685
  "de compartir."
2686
 
2687
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2688
  msgid "Enable 'More' icon"
2689
  msgstr "Permitir el icono 'Más'"
2690
 
2691
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2692
  msgid ""
2693
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2694
  "which shows additional sharing networks in popup"
2696
  "Si se activa, el icono \"Más\" aparecerá después de los iconos de compartir "
2697
  "seleccionados, y mostrará en un popup las redes adicionales para compartir"
2698
 
2699
+ #: admin/social_sharing.php:1096
2700
  msgid "Floating Sharing Interface Options"
2701
  msgstr "Opciones de la Interfaz Flotante de Compartir"
2702
 
2703
+ #: admin/social_sharing.php:1101
2704
  msgid "Enable Floating sharing interface"
2705
  msgstr "Permitir la Interfaz Flotante de Compartir"
2706
 
2707
+ #: admin/social_sharing.php:1111
2708
  msgid "Master control to enable floating sharing widget"
2709
  msgstr "Control maestro para permitir el widget flotante de compartir"
2710
 
2711
+ #: admin/social_sharing.php:1299
2712
  msgid ""
2713
  "Specify the color or hex code (example #cc78e0) for the background of "
2714
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
2720
  "Puedes conseguir el código hexadecimal del color que desees en <a href="
2721
  "\"http://www.colorpicker.com/\" target=\"_blank\">este enlace</a>"
2722
 
2723
+ #: admin/social_sharing.php:1337
2724
  msgid ""
2725
  "Specify a number. Increase in number will shift sharing interface towards "
2726
  "right and decrease will shift it towards left. Number can be negative too."
2729
  "desplazará hacia la derecha, mientras que al disminuirlo se desplazará hacia "
2730
  "la izquierda. El número puede ser negativo también."
2731
 
2732
+ #: admin/social_sharing.php:1356
2733
  msgid ""
2734
  "Specify a number. Increase in number will shift sharing interface towards "
2735
  "left and decrease will shift it towards right. Number can be negative too."
2738
  "desplazará hacia la izquierda, mientras que al disminuirlo se desplazará "
2739
  "hacia la derecha. El número puede ser negativo también."
2740
 
2741
+ #: admin/social_sharing.php:1374
2742
  msgid ""
2743
  "Specify a number. Increase in number will shift sharing interface towards "
2744
  "bottom and decrease will shift it towards top."
2747
  "desplazará hacia abajo, mientras que al disminuirlo se desplazará hacia "
2748
  "abajo."
2749
 
2750
+ #: admin/social_sharing.php:1430
2751
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2752
  msgstr ""
2753
  "Especifica las páginas donde quieres permitir la interfaz vertical de "
2754
  "Compartir"
2755
 
2756
+ #: admin/social_sharing.php:1499
2757
  #, fuzzy
2758
  msgid "Hide floating slider"
2759
  msgstr "Ocultar para usuarios conectados:"
2760
 
2761
+ #: admin/social_sharing.php:1509
2762
  msgid "Hides the slider arrow present below the floating share bar"
2763
  msgstr ""
2764
 
2765
+ #: admin/social_sharing.php:1516
2766
  msgid "Vertical floating bar responsiveness"
2767
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
2768
 
2769
+ #: admin/social_sharing.php:1519
2770
  #, php-format
2771
  msgid "Display vertical interface only when screen is wider than %s pixels"
2772
  msgstr ""
2773
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que %s "
2774
  "pixels"
2775
 
2776
+ #: admin/social_sharing.php:1526
2777
  msgid ""
2778
  "Display vertical interface only when screen is wider than the width "
2779
  "specified."
2781
  "Mostrar la interfaz vertical sólo cuando la pantalla es más ancha que el "
2782
  "ancho especificado."
2783
 
2784
+ #: admin/social_sharing.php:1533
2785
  msgid "Horizontal floating bar responsiveness"
2786
  msgstr "Barra flotante vertical adaptativa multidispositivo (responsiveness)"
2787
 
2788
+ #: admin/social_sharing.php:1536
2789
  #, php-format
2790
  msgid ""
2791
  "Stick vertical floating interface horizontally at bottom only when screen is "
2794
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
2795
  "fondo sólo cuando la pantalla sea más estrecha que %s pixels"
2796
 
2797
+ #: admin/social_sharing.php:1543
2798
  msgid ""
2799
  "Stick vertical floating interface horizontally at bottom only when screen is "
2800
  "narrower than the width specified"
2802
  "Mantener siempre visible la interfaz vertical flotante horizontalmente en el "
2803
  "fondo sólo cuando la pantalla sea más estrecha que el ancho especificado"
2804
 
2805
+ #: admin/social_sharing.php:1552
2806
  msgid "Horizontal floating bar position"
2807
  msgstr "Posición de la barra flotante horizontal"
2808
 
2809
+ #: admin/social_sharing.php:1555
2810
  #, php-format
2811
  msgid "%s pixels from %s"
2812
  msgstr "%s pixels de %s"
2813
 
2814
+ #: admin/social_sharing.php:1556
2815
  msgid "Auto-adjust according to screen width (responsive)"
2816
  msgstr ""
2817
 
2818
+ #: admin/social_sharing.php:1563
2819
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2820
  msgstr ""
2821
  "Alineación de la interfaz flotante horizontal, El número puede ser negativo "
2822
  "también."
2823
 
2824
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2825
  msgid "Use shortlinks already installed"
2826
  msgstr "Utiliza los shortlinks ya instalados"
2827
 
2828
+ #: admin/social_sharing.php:1598
2829
  msgid "Uses default short url permalinks without using any additional plugin"
2830
  msgstr ""
2831
 
2832
+ #: admin/social_sharing.php:1605
2833
  msgid "Enable bit.ly url shortener for sharing"
2834
  msgstr "Habilitar acortador de url bit.ly para compartir"
2835
 
2836
+ #: admin/social_sharing.php:1664
2837
  msgid "Share Count Cache"
2838
  msgstr ""
2839
 
2840
+ #: admin/social_sharing.php:1669
2841
  msgid "Refresh Share Count cache every"
2842
  msgstr ""
2843
 
2844
+ #: admin/social_sharing.php:1674
2845
  msgid "Second(s)"
2846
  msgstr ""
2847
 
2848
+ #: admin/social_sharing.php:1675
2849
  msgid "Minute(s)"
2850
  msgstr ""
2851
 
2852
+ #: admin/social_sharing.php:1676
2853
  msgid "Hour(s)"
2854
  msgstr ""
2855
 
2856
+ #: admin/social_sharing.php:1677
2857
  msgid "Day(s)"
2858
  msgstr ""
2859
 
2860
+ #: admin/social_sharing.php:1685
2861
  #, php-format
2862
  msgid ""
2863
  "Frequent cache refreshing results in slower loading of pages with share "
2865
  "target=\"_blank\">here</a>"
2866
  msgstr ""
2867
 
2868
+ #: admin/social_sharing.php:1692
2869
  msgid "Clear Share Counts Cache"
2870
  msgstr ""
2871
 
2872
+ #: admin/social_sharing.php:1696
2873
  #, fuzzy
2874
  msgid "Share Counts cache cleared successfully."
2875
  msgstr "La caché de ShortUrl se ha vaciado con éxito."
2876
 
2877
+ #: admin/social_sharing.php:1703
2878
  msgid "Use this to clear cached share counts"
2879
  msgstr ""
2880
 
2881
+ #: admin/social_sharing.php:1727
2882
  #, php-format
2883
  msgid ""
2884
  "Enter the code of the language you want to use for like buttons. You can "
2889
  "gusta\". Puedes encontrar los códigos de idioma en <a href=\"%s\" target="
2890
  "\"_blank\">este enlace</a>. Déjalo vacío para el idioma por defecto (Inglés)"
2891
 
2892
+ #: admin/social_sharing.php:1736
2893
  msgid "Username in sharing"
2894
  msgstr "Nombre de usuario en Compartir"
2895
 
2896
+ #: admin/social_sharing.php:1741
2897
  msgid "Twitter username (without @)"
2898
  msgstr "Nombre de usuario de Twitter (sin @)"
2899
 
2900
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2901
  msgid ""
2902
  "Provided username will be appended after the content being shared as \"via "
2903
  "@USERNAME\". Leave empty if you do not want any username in the content "
2907
  "sea comparte como \"via @USERNAME\". Déjalo vacío si no quieres ningún "
2908
  "nombre de usuario en el contenido compartido."
2909
 
2910
+ #: admin/social_sharing.php:1759
2911
  msgid "Buffer username (without @)"
2912
  msgstr "Nombre de usuario de Buffer (sin @)"
2913
 
2914
+ #: admin/social_sharing.php:1778
2915
  msgid "AMP"
2916
  msgstr ""
2917
 
2918
+ #: admin/social_sharing.php:1783
2919
  #, fuzzy
2920
  msgid "Enable sharing on AMP pages"
2921
  msgstr "Permitir Página de Ingreso"
2922
 
2923
+ #: admin/social_sharing.php:1793
2924
  msgid "Enable this option to render sharing icons on AMP pages"
2925
  msgstr ""
2926
 
2927
+ #: admin/social_sharing.php:1850
2928
  msgid "Facebook Sharing Troubleshooter"
2929
  msgstr "Resolución de problemas al Compartir en Facebook"
2930
 
2931
+ #: admin/social_sharing.php:1855
2932
  #, fuzzy
2933
  msgid ""
2934
  "If Facebook sharing is not working fine, click at the following link and "
2939
  "en el siguiente enlace e introduce la url problemática de tu sitio web (la "
2940
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
2941
 
2942
+ #: admin/social_sharing.php:1873
2943
  msgid ""
2944
  "Why is sharer not showing the correct image, title and other meta tags "
2945
  "content?"
2946
  msgstr ""
2947
 
2948
+ #: admin/social_sharing.php:1874
2949
  msgid "Why is Facebook share count not working?"
2950
  msgstr ""
2951
 
2952
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2953
+ #, php-format
2954
+ msgid ""
2955
+ "After the recent changes introduced in the Facebook graph API, it's not "
2956
+ "possible to track Facebook shares using it. <a href='%s' "
2957
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2958
+ "not just for Facebook but for all the social networks"
2959
+ msgstr ""
2960
+
2961
+ #: admin/social_sharing.php:1877
2962
  msgid "Why is Instagram icon redirecting to Instagram website?"
2963
  msgstr ""
2964
 
2965
+ #: admin/social_sharing.php:1878
2966
  msgid ""
2967
  "Instagram icon is there to send website visitors to the Instagram page of "
2968
  "your choice. You can save the desired Instagram handle in \"Instagram "
2970
  "sections."
2971
  msgstr ""
2972
 
2973
+ #: admin/social_sharing.php:1881
2974
  #, fuzzy
2975
  msgid "How to customize the url being shared?"
2976
  msgstr ""
2977
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
2978
  "compartidas?"
2979
 
2980
+ #: admin/social_sharing.php:1882
2981
  msgid ""
2982
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2983
  msgstr ""
2984
 
2985
+ #: admin/social_sharing.php:1883
2986
  msgid ""
2987
  "It takes some time for their service to track the shares made on Twitter "
2988
  "from your website. If you still feel it's taking too long you can contact "
2989
  "their support directly from their website."
2990
  msgstr ""
2991
 
2992
+ #: admin/social_sharing.php:1886
2993
  msgid ""
2994
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2995
  msgstr ""
2996
 
2997
+ #: admin/social_sharing.php:1888
2998
  msgid "Why the color of share icons is not being updated?"
2999
  msgstr ""
3000
 
3001
+ #: admin/social_sharing.php:1889
3002
  msgid "Why Facebook share counts are not appearing?"
3003
  msgstr ""
3004
 
3005
+ #: admin/social_sharing.php:1890
3006
  msgid ""
3007
  "How can I show share counts of my website rather than of individual pages/"
3008
  "posts?"
3010
  "¿Cómo puedo mostrar los contadores de veces compartidas de mi sitio web en "
3011
  "lugar de páginas individuales o entradas?"
3012
 
3013
+ #: admin/social_sharing.php:1891
3014
  msgid "How can I disable sharing on particular page/post?"
3015
  msgstr ""
3016
  "¿Cómo puedo desactivar los botones de Compartir en una página individual o "
3017
  "entrada?"
3018
 
3019
+ #: admin/social_sharing.php:1892
3020
  msgid "How can I specify minimum sharing count for sharing networks?"
3021
  msgstr ""
3022
  "¿Cómo puedo especificar el número mínimo de veces compartidas para las redes "
3023
  "sociales?"
3024
 
3025
+ #: admin/social_sharing.php:1893
3026
  msgid "How to share specific page?"
3027
  msgstr "¿Cómo compartir una página específica?"
3028
 
3029
+ #: admin/social_sharing.php:1894
3030
  msgid "How to integrate Google Analytics with sharing?"
3031
  msgstr "¿Cómo integrar Google Analytics con Compartir?"
3032
 
3033
+ #: admin/social_sharing.php:1895
3034
  msgid "How to customize the look of total share counts?"
3035
  msgstr ""
3036
  "¿Cómo personalizar el aspecto de los contadores totales de veces compartidas?"
3037
 
3038
+ #: admin/social_sharing.php:1896
3039
  msgid "How to customize the look of individual share counts?"
3040
  msgstr ""
3041
  "¿Cómo personalizar el aspecto de los contadores individuales de veces "
3042
  "compartidas?"
3043
 
3044
+ #: admin/social_sharing.php:1897
3045
  msgid "How to show Whatsapp icon only on mobile devices?"
3046
  msgstr "¿Cómo mostrar el icono de WhatsApp sólo en dispositivos móviles?"
3047
 
3048
+ #: admin/social_sharing.php:1898
3049
  msgid "How to hide arrow after floating sharing bar?"
3050
  msgstr ""
3051
 
3052
+ #: admin/social_sharing.php:1899
3053
  msgid "Why is share count not getting updated?"
3054
  msgstr ""
3055
 
3075
  msgid "Settings"
3076
  msgstr "Ajustes"
3077
 
3078
+ #: helper.php:572
3079
  msgid "Account linked successfully"
3080
  msgstr "Cuenta enlazada con éxito"
3081
 
3082
+ #: helper.php:576
3083
  msgid "Account already exists or linked"
3084
  msgstr "Esta cuenta ya existe o ha sido enlazada"
3085
 
3086
+ #: helper.php:612 helper.php:614
3087
  #, fuzzy
3088
  msgid "Login with"
3089
  msgstr "Otorgar puntos para el Social Login"
3090
 
3091
+ #: helper.php:649 helper.php:655
3092
  msgid "Currently"
3093
  msgstr "Actualmente"
3094
 
3095
+ #: helper.php:649 helper.php:655
3096
  msgid "Connected with"
3097
  msgstr ""
3098
 
3099
+ #: helper.php:649 helper.php:655
3100
  msgid "Remove"
3101
  msgstr "Remover"
3102
 
3103
+ #: helper.php:727
3104
  #, fuzzy
3105
  msgid "Social Account Linking"
3106
  msgstr ""
3107
  "Activa esta opción para mostrar la cuenta social enlazando a la interfaz de "
3108
  "la página de perfil de BuddyPress"
3109
 
3110
+ #: helper.php:777
3111
  msgid "Disable Standard Social Sharing on this "
3112
  msgstr "Desactivar la Barra Estándar Compartir en redes sociales aquí"
3113
 
3114
+ #: helper.php:782
3115
  msgid "Disable Floating Social Sharing on this "
3116
  msgstr "Desactivar la Barra Flotante Compartir en redes sociales aquí"
3117
 
3118
+ #: helper.php:787
3119
  msgid "Disable Standard like buttons on this "
3120
  msgstr "Desactivar los botones Me gusta Estándares aquí"
3121
 
3122
+ #: helper.php:792
3123
  msgid "Disable Floating like buttons on this "
3124
  msgstr "Desactivar los botones Me gusta Flotantes aquí"
3125
 
3126
+ #: helper.php:797
3127
  msgid "Disable Social Commenting on this "
3128
  msgstr "Desactivar Comentarios de redes sociales aquí"
3129
 
3130
+ #: helper.php:806
3131
  msgid "Standard Sharing Interface"
3132
  msgstr "Interfaz Estándar para Compartir"
3133
 
3134
+ #: helper.php:812 helper.php:831
3135
  msgid "Starting share count for "
3136
  msgstr "Comienzo del Contador de veces compartidas"
3137
 
3138
+ #: helper.php:825
3139
  msgid "Floating Sharing Interface"
3140
  msgstr "Interfaz Flotante de botones Compartir"
3141
 
3142
+ #: helper.php:921 super_socializer.php:2375
3143
  msgid "Social Avatar"
3144
  msgstr "Avatar Social"
3145
 
3146
+ #: helper.php:924 super_socializer.php:2386
3147
  msgid ""
3148
  "Do not fetch and update social avatar from my profile, next time I Social "
3149
  "Login"
3151
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
3152
  "próxima vez | Social Login"
3153
 
3154
+ #: helper.php:925 super_socializer.php:2390
3155
  msgid "Update social avatar, next time I Social Login"
3156
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
3157
 
3158
+ #: helper.php:928
3159
  msgid "Small Avatar"
3160
  msgstr "Avatar Pequeño"
3161
 
3162
+ #: helper.php:932
3163
  msgid "Large Avatar"
3164
  msgstr "Avatar Grande"
3165
 
3166
+ #: helper.php:992 super_socializer.php:1936
3167
  msgid "Please verify your email address to login."
3168
  msgstr "Por favor verifica tu dirección de email para ingresar."
3169
 
3170
+ #: helper.php:1029
3171
  msgid "Click to delete social profile data"
3172
  msgstr ""
3173
 
3174
+ #: helper.php:1058
3175
  #, fuzzy
3176
  msgid "Deleting"
3177
  msgstr "Ajustes"
3178
 
3179
+ #: helper.php:1068
3180
  msgid "Deleted"
3181
  msgstr ""
3182
 
3183
+ #: helper.php:1070
3184
  msgid "Something bad happened"
3185
  msgstr ""
3186
 
3237
  msgstr "Archivos por Categoría"
3238
 
3239
  #: inc/social_sharing.php:225
3240
+ #, fuzzy
3241
  msgid "More"
3242
  msgstr ""
3243
+ "Especifica un valor para las esquinas redondeadas. Cuanto más alto sea el "
3244
+ "valor, más redondeadas serán las esquinas. Déjalo vacío si prefieres las "
3245
+ "esquinas cuaadradas."
3246
 
3247
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3248
  #, fuzzy
3249
  msgid "Share"
3250
+ msgstr "Posición del contador de veces compartidas"
3251
 
3252
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3253
  #, fuzzy
3254
  msgid "Shares"
3255
  msgstr ""
3256
  "Si se activa, los contadores de veces compartidas aparecerán con los iconos "
3257
  "de compartir."
3258
 
3259
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
3260
  msgid "Invalid request"
3261
  msgstr "Petición no válida"
3262
 
3263
+ #: inc/social_sharing.php:938
3264
  msgid "Providers not selected"
3265
  msgstr "Redes sociales no seleccionadas"
3266
 
3267
+ #: inc/social_sharing_networks.php:58
3268
  msgid "Copy Link"
3269
  msgstr ""
3270
 
3542
  msgid "RSS Feed URL:"
3543
  msgstr ""
3544
 
3545
+ #: super_socializer.php:429
3546
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3547
+ msgstr ""
3548
+
3549
+ #: super_socializer.php:1718
3550
  #, fuzzy
3551
  msgid ""
3552
  "cURL is not enabled at your website server. Please contact your website "
3556
  "posible que necesites contactar con el administrador de tu servidor para "
3557
  "verificar esto"
3558
 
3559
+ #: super_socializer.php:1746
3560
  #, fuzzy, php-format
3561
  msgid ""
3562
  "Enter exactly the following url in <strong>Website</strong> option in your "
3565
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
3566
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
3567
 
3568
+ #: super_socializer.php:1749
3569
  #, fuzzy, php-format
3570
  msgid ""
3571
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3574
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
3575
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
3576
 
3577
+ #: super_socializer.php:1752
3578
  msgid ""
3579
  "Make sure cURL is enabled at your website server. You may need to contact "
3580
  "the server administrator of your website to verify this"
3583
  "posible que necesites contactar con el administrador de tu servidor para "
3584
  "verificar esto"
3585
 
3586
+ #: super_socializer.php:1914
3587
  msgid "Search"
3588
  msgstr ""
3589
 
3590
+ #: super_socializer.php:1936
3591
  msgid "Your email has been verified. Now you can login to your account"
3592
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
3593
 
3594
+ #: super_socializer.php:1940
3595
  msgid "Notification"
3596
  msgstr "Notificación"
3597
 
3598
+ #: super_socializer.php:1961
3599
  msgid "Please check your email inbox to complete the registration."
3600
  msgstr ""
3601
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
3602
  "registro."
3603
 
3604
+ #: super_socializer.php:2030
3605
  msgid "Leave a reply"
3606
  msgstr "Deja una respuesta"
3607
 
3608
+ #: super_socializer.php:2046
3609
  #, fuzzy
3610
  msgid "Link copied."
3611
  msgstr "LinkedIn"
3612
 
3613
+ #: super_socializer.php:2291
3614
  msgid "Super Socializer - General Options"
3615
  msgstr "Super Socializer - Opciones Generales"
3616
 
3617
+ #: super_socializer.php:2362
3618
  msgid ""
3619
  "I agree to my personal data being stored and used as per Privacy Policy and "
3620
  "Terms and Conditions"
3621
  msgstr ""
3622
 
3623
+ #: super_socializer.php:2366
3624
  msgid ""
3625
  "I revoke my consent to store and use my personal data. Kindly delete my "
3626
  "personal data saved in this website."
3627
  msgstr ""
3628
 
3629
+ #: super_socializer.php:2378
3630
  msgid "Small Avatar Url"
3631
  msgstr "Url de Avatar Pequeño"
3632
 
3633
+ #: super_socializer.php:2382
3634
  msgid "Large Avatar Url"
3635
  msgstr "Url de Avatar Grande"
3636
 
3637
+ #: super_socializer.php:2484
3638
  msgid "Login with your Social ID"
3639
  msgstr ""
3640
 
3641
+ #: super_socializer.php:2485
3642
  msgid "Email you entered is already registered or invalid"
3643
  msgstr "El email que has escrito ya está registrado o no es válido"
3644
 
3645
+ #: super_socializer.php:2492
3646
  msgid "Please enter a valid email address. You might be required to verify it"
3647
  msgstr ""
3648
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
3649
  "verificarla"
3650
 
3651
+ #: super_socializer.php:2496 super_socializer.php:3250
3652
  msgid "Link your social account to login to your account at this website"
3653
  msgstr ""
3654
  "Enlaza la cuenta de tu red social para ingresar en tu cuenta de este sitio "
3655
  "web "
3656
 
3657
+ #: super_socializer.php:2753
3658
  msgid "Thanks for installing Super Socializer plugin"
3659
  msgstr ""
3660
 
3661
+ #: super_socializer.php:2755
3662
  msgid "Configure the Plugin"
3663
  msgstr ""
3664
 
3665
+ #: super_socializer.php:2766
3666
  msgid ""
3667
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3668
  "current version of Super Socializer"
3669
  msgstr ""
3670
 
3671
+ #: super_socializer.php:2775
3672
  msgid ""
3673
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3674
  "version of Super Socializer"
3675
  msgstr ""
3676
 
3677
+ #: super_socializer.php:2784
3678
  msgid ""
3679
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3680
  "compatibility with the current version of Super Socializer"
3681
  msgstr ""
3682
 
3683
+ #: super_socializer.php:2793
3684
  msgid ""
3685
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3686
  "with current version of Super Socializer"
3687
  msgstr ""
3688
 
3689
+ #: super_socializer.php:2802
3690
  msgid ""
3691
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3692
  "with current version of Super Socializer"
3693
  msgstr ""
3694
 
3695
+ #: super_socializer.php:2813
3696
  #, php-format
3697
  msgid ""
3698
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3699
  msgstr ""
3700
 
3701
+ #: super_socializer.php:2822
3702
  #, php-format
3703
  msgid ""
3704
  "To continue using Instagram login create a new Instagram App as described <a "
3706
  "Instagram App Secret <a href=\"%s\">here</a>"
3707
  msgstr ""
3708
 
3709
+ #: super_socializer.php:2831 super_socializer.php:2840
3710
  #, php-format
3711
  msgid ""
3712
  "To continue using bitly url shortener, login to your bit.ly account and "
3715
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3716
  msgstr ""
3717
 
3718
+ #: super_socializer.php:2856
3719
  #, php-format
3720
  msgid ""
3721
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3722
  msgstr ""
3723
 
3724
+ #: super_socializer.php:2880
3725
  #, php-format
3726
  msgid ""
3727
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3729
  "target=\"_blank\">here</a>"
3730
  msgstr ""
3731
 
3732
+ #: super_socializer.php:2880 super_socializer.php:2905
3733
+ #: super_socializer.php:2930 super_socializer.php:2955
3734
+ #: super_socializer.php:2988 super_socializer.php:3016
3735
+ #: super_socializer.php:3043
3736
  msgid "Okay"
3737
  msgstr ""
3738
 
3739
+ #: super_socializer.php:2905
3740
  #, php-format
3741
  msgid ""
3742
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3744
  "\">here</a>"
3745
  msgstr ""
3746
 
3747
+ #: super_socializer.php:2930
3748
  #, php-format
3749
  msgid ""
3750
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3752
  "target=\"_blank\">here</a>"
3753
  msgstr ""
3754
 
3755
+ #: super_socializer.php:2955
3756
  #, php-format
3757
  msgid ""
3758
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3760
  "target=\"_blank\">here</a>"
3761
  msgstr ""
3762
 
3763
+ #: super_socializer.php:2966
3764
  #, php-format
3765
  msgid ""
3766
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3767
  msgstr ""
3768
 
3769
+ #: super_socializer.php:2988
3770
  #, php-format
3771
  msgid ""
3772
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3774
  "\"%s\" target=\"_blank\">here</a>"
3775
  msgstr ""
3776
 
3777
+ #: super_socializer.php:3016
3778
  #, php-format
3779
  msgid ""
3780
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3783
  "your website %s with them. No need to copy-paste any code from their website."
3784
  msgstr ""
3785
 
3786
+ #: super_socializer.php:3043
3787
  #, php-format
3788
  msgid ""
3789
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3791
  "\"%s\" target=\"_blank\">here</a>"
3792
  msgstr ""
3793
 
3794
+ #: super_socializer.php:3068
3795
  #, php-format
3796
  msgid ""
3797
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3799
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3800
  msgstr ""
3801
 
3802
+ #: super_socializer.php:3068 super_socializer.php:3095
3803
  msgid "Dismiss"
3804
  msgstr ""
3805
 
3806
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3807
  msgid ""
3808
  "Your browser is blocking some features of this website. Please follow the "
3809
  "instructions at {support_url} to unblock these."
3810
  msgstr ""
3811
 
3812
+ #~ msgid "Dismiss this notice"
3813
+ #~ msgstr "No volver a mostrar este aviso"
3814
+
3815
+ #, fuzzy
3816
+ #~ msgid "Facebook Share Count"
3817
+ #~ msgstr "Resolución de problemas al Compartir en Facebook"
3818
+
3819
+ #, fuzzy
3820
+ #~ msgid ""
3821
+ #~ "Required for Facebook share count to work. Please follow the "
3822
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3823
+ #~ "Facebook App ID"
3824
+ #~ msgstr ""
3825
+ #~ "Requerido para que funcione el ingreso a través de Facebook. Por favor, "
3826
+ #~ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</"
3827
+ #~ "a> para conseguir tu Facebook App ID"
3828
+
3829
+ #, fuzzy
3830
+ #~ msgid ""
3831
+ #~ "Required for Facebook share count to work. Please follow the "
3832
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3833
+ #~ "Facebook App Secret"
3834
+ #~ msgstr ""
3835
+ #~ "Requerido para que funcione el ingreso a través de Facebook. Por favor, "
3836
+ #~ "sigue la documentación en <a href=\"%s\" target=\"_blank\">este enlace</"
3837
+ #~ "a> para conseguir tu Facebook App ID"
3838
+
3839
  #, fuzzy
3840
  #~ msgid ""
3841
  #~ "Required for Dropbox Social Login to work. Please follow the "
languages/super-socializer-hu_HU.mo CHANGED
Binary file
languages/super-socializer-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-15 14:14+0530\n"
6
- "PO-Revision-Date: 2021-06-15 14:14+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
25
  #, fuzzy, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -32,7 +32,7 @@ msgstr ""
32
  "API Key beszerzéshez"
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
- #: super_socializer.php:2279
36
  #, fuzzy
37
  msgid "General Options"
38
  msgstr "Megosztási beállítások"
@@ -82,20 +82,20 @@ msgstr ""
82
 
83
  #: admin/general_options.php:89 admin/like_buttons.php:780
84
  #: admin/social_commenting.php:400 admin/social_login.php:1980
85
- #: admin/social_sharing.php:1944 helper.php:942
86
  msgid "Save Changes"
87
  msgstr "Változások Mentése"
88
 
89
  #: admin/general_options.php:103 admin/like_buttons.php:790
90
  #: admin/social_commenting.php:410 admin/social_login.php:1990
91
- #: admin/social_sharing.php:1954
92
  #, fuzzy
93
  msgid "Instagram Shoutout"
94
  msgstr "Instagram"
95
 
96
  #: admin/general_options.php:105 admin/like_buttons.php:792
97
  #: admin/social_commenting.php:412 admin/social_login.php:1992
98
- #: admin/social_sharing.php:1956
99
  msgid ""
100
  "If you can send (to hello@heateor.com) how this plugin is helping your "
101
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -195,7 +195,7 @@ msgstr "Osztályozz 5-ösre"
195
  #, fuzzy
196
  msgid "Master Control"
197
  msgstr ""
198
- "Központi Közösségi Belépés beállítás. Be kell kapcsolnod a Közösségi Belépés "
199
  "használatához "
200
 
201
  #: admin/like_buttons.php:19
@@ -210,35 +210,35 @@ msgstr ""
210
  "Központi Közösségi Gomb beállítás. Be kell kapcsolnod a Közösségi Gombok "
211
  "használatához "
212
 
213
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
214
  #, fuzzy
215
  msgid "Standard Interface"
216
  msgstr "Megosztási Felület"
217
 
218
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
219
  #, fuzzy
220
  msgid "Floating Interface"
221
  msgstr "Megosztási Felület"
222
 
223
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
224
  msgid "Miscellaneous"
225
  msgstr ""
226
 
227
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
228
  msgid "3rd Party Integration"
229
  msgstr ""
230
 
231
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
232
  #: admin/social_login.php:45 admin/social_login.php:1946
233
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
234
- #: admin/social_sharing.php:1871
235
  msgid "Shortcode & Widget"
236
  msgstr "Shortcode és Widget"
237
 
238
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
239
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
240
  #: admin/social_login.php:46 admin/social_login.php:1960
241
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
242
  msgid "FAQ"
243
  msgstr "GYIK"
244
 
@@ -257,22 +257,22 @@ msgid "Master control to enable horizontal like buttons"
257
  msgstr "Központi beállítás a vízszintes közösségi gombok bekapcsolásához"
258
 
259
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
260
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
261
  msgid "Target Url"
262
  msgstr "Cél Url"
263
 
264
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
265
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
266
  msgid "Url of the webpage where icons are located (default)"
267
  msgstr "Url, ahol a megosztás ikonok betöltődtek (alapértelmezett)"
268
 
269
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
270
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
271
  msgid "Url of the homepage of your website"
272
  msgstr "A főoldalad Url-je"
273
 
274
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
275
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
276
  msgid "Custom url"
277
  msgstr "Egyedi URL"
278
 
@@ -282,7 +282,7 @@ msgstr ""
282
  "Url a like/share/tweet-eléshez és a like/share/tweet számok megjelenítéséhez"
283
 
284
  #: admin/like_buttons.php:105 admin/social_login.php:1231
285
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
286
  msgid "Title"
287
  msgstr "Cím"
288
 
@@ -301,24 +301,24 @@ msgstr ""
301
  "változtatáshoz."
302
 
303
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
304
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
305
  msgid "Horizontal alignment"
306
  msgstr "Függőleges igazítás"
307
 
308
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
309
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
310
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308
311
  #: inc/widget.php:446 inc/widget.php:758
312
  msgid "Left"
313
  msgstr "Bal"
314
 
315
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
316
  msgid "Center"
317
  msgstr "Középen"
318
 
319
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
320
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
321
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309
322
  #: inc/widget.php:447 inc/widget.php:759
323
  msgid "Right"
324
  msgstr "Jobb"
@@ -327,15 +327,15 @@ msgstr "Jobb"
327
  msgid "Horizontal alignment of the interface"
328
  msgstr "A megosztási felület vízszintes igazítása"
329
 
330
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
331
  msgid "Position with respect to content"
332
  msgstr "Elhelyezés a tartalomhoz képest"
333
 
334
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
335
  msgid "Top of the content"
336
  msgstr "Tartalom felett"
337
 
338
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
339
  msgid "Bottom of the content"
340
  msgstr "Tartalom alatt"
341
 
@@ -350,67 +350,67 @@ msgstr "Megosztási helyek"
350
 
351
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
352
  #: admin/social_login.php:1548 admin/social_login.php:1577
353
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
354
  msgid "Homepage"
355
  msgstr "Kezdő oldal"
356
 
357
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
358
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
359
  msgid "Posts"
360
  msgstr "Bejegyzések"
361
 
362
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
363
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
364
  msgid "Pages"
365
  msgstr "Oldalak"
366
 
367
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
368
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
369
  msgid "Excerpts and Posts page"
370
  msgstr ""
371
 
372
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
373
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
374
  msgid "Category Archives"
375
  msgstr "Kategória Archívum"
376
 
377
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
378
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
379
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
380
  msgstr "Archívum Pages (Kategória, Tag, Szerző vagy dátum alapján oldalak)"
381
 
382
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
383
  #, fuzzy
384
  msgid "BuddyPress activity"
385
  msgstr "BuddyPress tevékenység és csoportok"
386
 
387
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
388
  msgid "BuddyPress group (only at top of content)"
389
  msgstr ""
390
 
391
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
392
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
393
  msgid "BBPress forum"
394
  msgstr "BBPress fórum"
395
 
396
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
397
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
398
  msgid "BBPress topic"
399
  msgstr "BBPress téma"
400
 
401
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
402
  msgid "BBPress reply"
403
  msgstr "BBPress válasz"
404
 
405
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
406
  msgid "After individual product at WooCommerce Shop page"
407
  msgstr "Miután az egyedi termék WooCommerce Shop oldal"
408
 
409
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
410
  msgid "WooCommerce Product Page"
411
  msgstr "WooCommerce Termékek"
412
 
413
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
414
  msgid "WooCommerce Thankyou Page"
415
  msgstr "WooCommerce Thankyou oldal"
416
 
@@ -432,8 +432,8 @@ msgid "Master control to enable vertical (floating) counter widget"
432
  msgstr ""
433
  "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
434
 
435
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
436
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287
437
  #: inc/widget.php:460 inc/widget.php:772
438
  msgid "Background Color"
439
  msgstr "Háttér Szín"
@@ -449,7 +449,7 @@ msgstr ""
449
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
450
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni"
451
 
452
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
453
  msgid "Left offset"
454
  msgstr "Bal margó"
455
 
@@ -460,7 +460,7 @@ msgid ""
460
  msgstr ""
461
  "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet."
462
 
463
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
464
  msgid "Right offset"
465
  msgstr "Jobb margó"
466
 
@@ -472,7 +472,7 @@ msgstr ""
472
  "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet. "
473
  "Negatív értéket is megadhatsz."
474
 
475
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
476
  msgid "Top offset"
477
  msgstr "Felső margó"
478
 
@@ -483,7 +483,7 @@ msgid ""
483
  msgstr ""
484
  "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
485
 
486
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
487
  #, fuzzy
488
  msgid "BuddyPress group"
489
  msgstr "BuddyPress profil oldal"
@@ -502,7 +502,7 @@ msgstr ""
502
  "Ha engedélyezett, függőleges, mint a gombok nem jelennek meg a "
503
  "mobileszközökön"
504
 
505
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
506
  msgid "Url shortener"
507
  msgstr "Url rövidítő"
508
 
@@ -522,16 +522,16 @@ msgstr ""
522
  msgid "Enable bit.ly url shortener for tweet button"
523
  msgstr "A bit.ly url rövidítő bekapcsolása a tweet gombhoz"
524
 
525
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
526
  msgid "Master control to enable bit.ly url shortening for sharing"
527
  msgstr ""
528
  "Központi beállítás a bit.ly url rövidítő megosztásokhoz való bekapcsolásához"
529
 
530
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
531
  msgid "Bit.ly generic access token"
532
  msgstr ""
533
 
534
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
535
  #, php-format
536
  msgid ""
537
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -540,16 +540,16 @@ msgid ""
540
  "\">link</a>"
541
  msgstr ""
542
 
543
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
544
  msgid "Clear Bitly Cache"
545
  msgstr ""
546
 
547
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
548
  #, fuzzy
549
  msgid "ShortUrl cache cleared successfully."
550
  msgstr "Fiók kapcsolása sikeres"
551
 
552
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
553
  msgid ""
554
  "Use this to delete short urls saved in database. Handy, if urls of your "
555
  "website have been changed but short urls are still being generated for old "
@@ -557,8 +557,8 @@ msgid ""
557
  msgstr ""
558
 
559
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
560
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
561
- #: admin/social_sharing.php:1749
562
  msgid "Language"
563
  msgstr "Nyelv"
564
 
@@ -605,11 +605,11 @@ msgstr ""
605
  "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME"
606
  "\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
607
 
608
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
609
  msgid "myCRED"
610
  msgstr ""
611
 
612
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
613
  msgid "Append myCRED referral ID to the urls being shared"
614
  msgstr ""
615
 
@@ -618,15 +618,15 @@ msgstr ""
618
  msgid "Like Buttons Shortcode & Widget"
619
  msgstr "Shortcode és Widget"
620
 
621
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
622
  msgid "Why is there so much space between like buttons?"
623
  msgstr ""
624
 
625
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
626
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
627
  msgstr ""
628
 
629
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
630
  msgid "How to Place Title and Social Share Icons in the Same Row?"
631
  msgstr ""
632
 
@@ -841,7 +841,7 @@ msgid "Social Commenting Shortcode"
841
  msgstr "Közösségi Hozzászólás"
842
 
843
  #: admin/social_commenting.php:386 admin/social_login.php:1962
844
- #: admin/social_sharing.php:1904
845
  msgid ""
846
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
847
  "an online website for the plugin to function properly."
@@ -859,7 +859,7 @@ msgid ""
859
  msgstr ""
860
 
861
  #: admin/social_commenting.php:389 admin/social_login.php:1969
862
- #: admin/social_sharing.php:1919
863
  msgid "Why is my browser blocking some features of the plugin?"
864
  msgstr ""
865
 
@@ -897,7 +897,7 @@ msgid "Advanced Configuration"
897
  msgstr "Alap Beállítások"
898
 
899
  #: admin/social_login.php:41 admin/social_login.php:1746
900
- #: super_socializer.php:2347
901
  msgid "GDPR"
902
  msgstr ""
903
 
@@ -1044,7 +1044,7 @@ msgid "Reddit"
1044
  msgstr "Reddit"
1045
 
1046
  #: admin/social_login.php:203
1047
- msgid "Mailru"
1048
  msgstr ""
1049
 
1050
  #: admin/social_login.php:207
@@ -1059,7 +1059,7 @@ msgstr ""
1059
  msgid "Select Social ID provider to enable in Social Login"
1060
  msgstr "Válassz Közösségi ID szolgáltatót a Közösségi Belépéshez"
1061
 
1062
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1063
  msgid "Facebook App ID"
1064
  msgstr "Facebook App ID"
1065
 
@@ -1081,7 +1081,7 @@ msgstr ""
1081
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
1082
  "linken"
1083
 
1084
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1085
  #, fuzzy
1086
  msgid "Facebook App Secret"
1087
  msgstr "Facebook App ID"
@@ -2072,7 +2072,7 @@ msgid ""
2072
  "photo\" section in BuddyPress profile at front-end"
2073
  msgstr ""
2074
 
2075
- #: admin/social_login.php:1490 super_socializer.php:1946
2076
  msgid "Email required"
2077
  msgstr "E-mail cím szükséges"
2078
 
@@ -2370,33 +2370,23 @@ msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásá
2370
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2371
  msgstr ""
2372
 
2373
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2374
- msgid ""
2375
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2376
- "Facebook share count to work"
2377
- msgstr ""
2378
-
2379
- #: admin/social_sharing.php:49
2380
- msgid "Dismiss this notice"
2381
- msgstr "Utasítsa el ezt az értesítést"
2382
-
2383
- #: admin/social_sharing.php:56
2384
  msgid "Theme Selection"
2385
  msgstr ""
2386
 
2387
- #: admin/social_sharing.php:68
2388
  msgid "Troubleshooter"
2389
  msgstr "Hibamegoldó"
2390
 
2391
- #: admin/social_sharing.php:77
2392
  msgid "Standard interface theme"
2393
  msgstr ""
2394
 
2395
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2396
  msgid "Icon Preview"
2397
  msgstr "icon Preview"
2398
 
2399
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2400
  msgid ""
2401
  "Do not forget to save the configuration after making changes by clicking the "
2402
  "save button below"
@@ -2404,85 +2394,85 @@ msgstr ""
2404
  "Ne felejtsd el menteni a konfigurációs változtatások után, kattintson a "
2405
  "Mentés gombra"
2406
 
2407
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2408
  msgid "Shape"
2409
  msgstr "alak"
2410
 
2411
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2412
  msgid "Round"
2413
  msgstr "kerek"
2414
 
2415
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2416
  msgid "Square"
2417
  msgstr "szögletes"
2418
 
2419
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2420
  msgid "Rectangle"
2421
  msgstr ""
2422
 
2423
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2424
  msgid "Shape of the sharing icons"
2425
  msgstr "Megosztás ikonok formája"
2426
 
2427
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2428
  msgid "Size (in pixels)"
2429
  msgstr "Méret (pixel)"
2430
 
2431
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2432
  msgid "Size of the sharing icons"
2433
  msgstr "Megosztási ikonok mérete"
2434
 
2435
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2436
  #, fuzzy
2437
  msgid "Width (in pixels)"
2438
  msgstr "Méret (pixel)"
2439
 
2440
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2441
  #, fuzzy
2442
  msgid "Width of the sharing icons"
2443
  msgstr "Megosztási ikonok mérete"
2444
 
2445
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2446
  #, fuzzy
2447
  msgid "Height (in pixels)"
2448
  msgstr "Méret (pixel)"
2449
 
2450
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2451
  #, fuzzy
2452
  msgid "Height of the sharing icons"
2453
  msgstr "Megosztási ikonok mérete"
2454
 
2455
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2456
  #, fuzzy
2457
  msgid "Border radius (in pixels)"
2458
  msgstr "Méret (pixel)"
2459
 
2460
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2461
  msgid ""
2462
  "Specify a value for rounded corners. More the value, more rounded will the "
2463
  "corners be. Leave empty for sharp corners."
2464
  msgstr ""
2465
 
2466
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2467
  #, fuzzy
2468
  msgid "Logo Color"
2469
  msgstr "Háttér Szín"
2470
 
2471
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2472
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2473
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2474
  #, fuzzy
2475
  msgid "Default"
2476
  msgstr ""
2477
  "Az elsőre látható hozzászólások száma. A minimum 1, az alapértelmezés 10."
2478
 
2479
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2480
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2481
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2482
  msgid "On Hover"
2483
  msgstr ""
2484
 
2485
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2486
  #, fuzzy
2487
  msgid ""
2488
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
@@ -2493,7 +2483,7 @@ msgstr ""
2493
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
2494
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni"
2495
 
2496
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2497
  #, fuzzy
2498
  msgid ""
2499
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
@@ -2505,165 +2495,165 @@ msgstr ""
2505
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
2506
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
2507
 
2508
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2509
  msgid "Border"
2510
  msgstr ""
2511
 
2512
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2513
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2514
  #, fuzzy
2515
  msgid "Border Width"
2516
  msgstr "Shortcode és Widget"
2517
 
2518
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2519
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2520
  #, fuzzy
2521
  msgid "Border Color"
2522
  msgstr "Háttér Szín"
2523
 
2524
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2525
  #, fuzzy
2526
  msgid "Icon border"
2527
  msgstr "icon Preview"
2528
 
2529
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2530
  msgid "Counter Position"
2531
  msgstr ""
2532
 
2533
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2534
  msgid "(applies, if counter enabled)"
2535
  msgstr ""
2536
 
2537
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2538
  msgid "Top"
2539
  msgstr ""
2540
 
2541
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2542
  msgid "Bottom"
2543
  msgstr ""
2544
 
2545
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2546
  msgid "Inner Left"
2547
  msgstr ""
2548
 
2549
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2550
  msgid "Inner Top"
2551
  msgstr ""
2552
 
2553
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2554
  #, fuzzy
2555
  msgid "Inner Right"
2556
  msgstr "Jobb"
2557
 
2558
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2559
  msgid "Inner Bottom"
2560
  msgstr ""
2561
 
2562
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2563
  #, fuzzy
2564
  msgid "Position of share counter"
2565
  msgstr "Tartalom alatt"
2566
 
2567
- #: admin/social_sharing.php:375
2568
  #, fuzzy
2569
  msgid "Floating interface theme"
2570
  msgstr "Megosztási Felület"
2571
 
2572
- #: admin/social_sharing.php:679
2573
  #, fuzzy
2574
  msgid "Standard Sharing Interface Options"
2575
  msgstr "Vízszintes Megosztási Felület Beállítások"
2576
 
2577
- #: admin/social_sharing.php:684
2578
  #, fuzzy
2579
  msgid "Enable Standard sharing interface"
2580
  msgstr "Vízszintes megosztási felület bekapcsolása"
2581
 
2582
- #: admin/social_sharing.php:694
2583
  #, fuzzy
2584
  msgid "Master control to enable standard sharing"
2585
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
2586
 
2587
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2588
  msgid "Url to share"
2589
  msgstr "Megosztás Url-je"
2590
 
2591
- #: admin/social_sharing.php:735
2592
  msgid "The text to display above the sharing interface"
2593
  msgstr "Szöveg a megosztási felület fölött"
2594
 
2595
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2596
  #, fuzzy
2597
  msgid "Instagram username"
2598
  msgstr "Instagram"
2599
 
2600
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2601
  msgid ""
2602
  "Username of the Instagram account you want to redirect users to, on clicking "
2603
  "the icon"
2604
  msgstr ""
2605
 
2606
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2607
  #, fuzzy
2608
  msgid "HTML ID of container element of comment form"
2609
  msgstr "HTML ID komment formájában konténer"
2610
 
2611
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2612
  msgid ""
2613
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2614
  "icon."
2615
  msgstr ""
2616
 
2617
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2618
  msgid "Rearrange icons"
2619
  msgstr "Ikonsorrend beállítás"
2620
 
2621
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2622
  msgid "Drag the icons to rearrange in desired order"
2623
  msgstr "Fogd meg az ikont a megfelelő sorrend beállításához"
2624
 
2625
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2626
  #, fuzzy
2627
  msgid "Select Sharing Services"
2628
  msgstr "Válassz és rendezz sorba szolgáltatókat"
2629
 
2630
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2631
  msgid "Select sharing services to show in social share bar"
2632
  msgstr ""
2633
 
2634
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2635
  #, fuzzy
2636
  msgid "Search social network"
2637
  msgstr "elsődleges szociális háló"
2638
 
2639
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2640
  msgid "Horizontal alignment of the sharing interface"
2641
  msgstr "A megosztási felület függőleges igazítása"
2642
 
2643
- #: admin/social_sharing.php:946
2644
  msgid "Specify position of the sharing interface with respect to the content"
2645
  msgstr ""
2646
  "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
2647
 
2648
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2649
  msgid "Placement"
2650
  msgstr ""
2651
 
2652
- #: admin/social_sharing.php:1021
2653
  msgid "Specify the pages where you want to enable Sharing interface"
2654
  msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
2655
 
2656
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2657
  msgid "Show share counts"
2658
  msgstr "Megosztás számok mutatása"
2659
 
2660
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
2661
  msgid ""
2662
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2663
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2664
  msgstr ""
2665
 
2666
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2667
  #, php-format
2668
  msgid ""
2669
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2672,25 +2662,30 @@ msgid ""
2672
  "their website."
2673
  msgstr ""
2674
 
2675
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2676
  msgid "If enabled, share counts are displayed above sharing icons."
2677
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
2678
 
2679
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2680
  #, fuzzy
2681
  msgid "Show total shares"
2682
  msgstr "Megosztás számok mutatása"
2683
 
2684
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2685
  #, fuzzy
2686
  msgid "If enabled, total shares will be displayed with sharing icons"
2687
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
2688
 
2689
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2690
  msgid "Enable 'More' icon"
2691
  msgstr "'Még több' ikon bekapcsolása"
2692
 
2693
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2694
  msgid ""
2695
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2696
  "which shows additional sharing networks in popup"
@@ -2698,23 +2693,23 @@ msgstr ""
2698
  "Ha engedélyezve van, \"More \" ikon jelenik meg, miután a kiválasztott "
2699
  "megosztás ikonok ami azt mutatja, további fájlcserélő hálózatok popup"
2700
 
2701
- #: admin/social_sharing.php:1094
2702
  #, fuzzy
2703
  msgid "Floating Sharing Interface Options"
2704
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
2705
 
2706
- #: admin/social_sharing.php:1099
2707
  #, fuzzy
2708
  msgid "Enable Floating sharing interface"
2709
  msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
2710
 
2711
- #: admin/social_sharing.php:1109
2712
  #, fuzzy
2713
  msgid "Master control to enable floating sharing widget"
2714
  msgstr ""
2715
  "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
2716
 
2717
- #: admin/social_sharing.php:1297
2718
  msgid ""
2719
  "Specify the color or hex code (example #cc78e0) for the background of "
2720
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -2725,7 +2720,7 @@ msgstr ""
2725
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
2726
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
2727
 
2728
- #: admin/social_sharing.php:1335
2729
  msgid ""
2730
  "Specify a number. Increase in number will shift sharing interface towards "
2731
  "right and decrease will shift it towards left. Number can be negative too."
@@ -2733,7 +2728,7 @@ msgstr ""
2733
  "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet. "
2734
  "Megadhatsz negatív értéket is."
2735
 
2736
- #: admin/social_sharing.php:1354
2737
  msgid ""
2738
  "Specify a number. Increase in number will shift sharing interface towards "
2739
  "left and decrease will shift it towards right. Number can be negative too."
@@ -2741,47 +2736,47 @@ msgstr ""
2741
  "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet. "
2742
  "Megadhatsz negatív értéket is."
2743
 
2744
- #: admin/social_sharing.php:1372
2745
  msgid ""
2746
  "Specify a number. Increase in number will shift sharing interface towards "
2747
  "bottom and decrease will shift it towards top."
2748
  msgstr ""
2749
  "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
2750
 
2751
- #: admin/social_sharing.php:1428
2752
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2753
  msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
2754
 
2755
- #: admin/social_sharing.php:1491
2756
  #, fuzzy
2757
  msgid "Hide floating slider"
2758
  msgstr "Bejelentkezettek számára elrejtve:"
2759
 
2760
- #: admin/social_sharing.php:1501
2761
  msgid "Hides the slider arrow present below the floating share bar"
2762
  msgstr ""
2763
 
2764
- #: admin/social_sharing.php:1508
2765
  #, fuzzy
2766
  msgid "Vertical floating bar responsiveness"
2767
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
2768
 
2769
- #: admin/social_sharing.php:1511
2770
  #, php-format
2771
  msgid "Display vertical interface only when screen is wider than %s pixels"
2772
  msgstr ""
2773
 
2774
- #: admin/social_sharing.php:1518
2775
  msgid ""
2776
  "Display vertical interface only when screen is wider than the width "
2777
  "specified."
2778
  msgstr ""
2779
 
2780
- #: admin/social_sharing.php:1525
2781
  msgid "Horizontal floating bar responsiveness"
2782
  msgstr ""
2783
 
2784
- #: admin/social_sharing.php:1528
2785
  #, fuzzy, php-format
2786
  msgid ""
2787
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2790,100 +2785,67 @@ msgstr ""
2790
  "Ha engedélyezett, függőleges megosztó felület nem fog megjelenni a mobil "
2791
  "eszközök"
2792
 
2793
- #: admin/social_sharing.php:1535
2794
  msgid ""
2795
  "Stick vertical floating interface horizontally at bottom only when screen is "
2796
  "narrower than the width specified"
2797
  msgstr ""
2798
 
2799
- #: admin/social_sharing.php:1544
2800
  #, fuzzy
2801
  msgid "Horizontal floating bar position"
2802
  msgstr "Vízszintes Megosztási Felület Beállítások"
2803
 
2804
- #: admin/social_sharing.php:1547
2805
  #, php-format
2806
  msgid "%s pixels from %s"
2807
  msgstr ""
2808
 
2809
- #: admin/social_sharing.php:1548
2810
  msgid "Auto-adjust according to screen width (responsive)"
2811
  msgstr ""
2812
 
2813
- #: admin/social_sharing.php:1555
2814
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2815
  msgstr ""
2816
 
2817
- #: admin/social_sharing.php:1575
2818
- #, fuzzy
2819
- msgid "Facebook Share Count"
2820
- msgstr "Comentarios Facebook"
2821
-
2822
- #: admin/social_sharing.php:1579
2823
- msgid "Note"
2824
- msgstr ""
2825
-
2826
- #: admin/social_sharing.php:1579
2827
- msgid "Required only to track Facebook share count"
2828
- msgstr ""
2829
-
2830
- #: admin/social_sharing.php:1594
2831
- #, fuzzy, php-format
2832
- msgid ""
2833
- "Required for Facebook share count to work. Please follow the documentation "
2834
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2835
- msgstr ""
2836
- "Szükséges a Facebook Közösségi Belépés működéséhez. Kérlek, kövesd a "
2837
- "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
2838
- "App ID beszerzéshez"
2839
-
2840
- #: admin/social_sharing.php:1611
2841
- #, fuzzy, php-format
2842
- msgid ""
2843
- "Required for Facebook share count to work. Please follow the documentation "
2844
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2845
- msgstr ""
2846
- "Szükséges a Facebook Közösségi Belépés működéséhez. Kérlek, kövesd a "
2847
- "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Facebook "
2848
- "App ID beszerzéshez"
2849
-
2850
- #: admin/social_sharing.php:1625
2851
  msgid "Use shortlinks already installed"
2852
  msgstr "Használja shortlinks már telepítve"
2853
 
2854
- #: admin/social_sharing.php:1635
2855
  msgid "Uses default short url permalinks without using any additional plugin"
2856
  msgstr ""
2857
 
2858
- #: admin/social_sharing.php:1642
2859
  msgid "Enable bit.ly url shortener for sharing"
2860
  msgstr "A bit.ly url rövidítő bekapcsolása a megosztáshoz"
2861
 
2862
- #: admin/social_sharing.php:1696
2863
  msgid "Share Count Cache"
2864
  msgstr ""
2865
 
2866
- #: admin/social_sharing.php:1701
2867
  msgid "Refresh Share Count cache every"
2868
  msgstr ""
2869
 
2870
- #: admin/social_sharing.php:1706
2871
  msgid "Second(s)"
2872
  msgstr ""
2873
 
2874
- #: admin/social_sharing.php:1707
2875
  msgid "Minute(s)"
2876
  msgstr ""
2877
 
2878
- #: admin/social_sharing.php:1708
2879
  msgid "Hour(s)"
2880
  msgstr ""
2881
 
2882
- #: admin/social_sharing.php:1709
2883
  msgid "Day(s)"
2884
  msgstr ""
2885
 
2886
- #: admin/social_sharing.php:1717
2887
  #, php-format
2888
  msgid ""
2889
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2891,20 +2853,20 @@ msgid ""
2891
  "target=\"_blank\">here</a>"
2892
  msgstr ""
2893
 
2894
- #: admin/social_sharing.php:1724
2895
  msgid "Clear Share Counts Cache"
2896
  msgstr ""
2897
 
2898
- #: admin/social_sharing.php:1728
2899
  #, fuzzy
2900
  msgid "Share Counts cache cleared successfully."
2901
  msgstr "Fiók kapcsolása sikeres"
2902
 
2903
- #: admin/social_sharing.php:1735
2904
  msgid "Use this to clear cached share counts"
2905
  msgstr ""
2906
 
2907
- #: admin/social_sharing.php:1759
2908
  #, fuzzy, php-format
2909
  msgid ""
2910
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2915,16 +2877,16 @@ msgstr ""
2915
  "nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen "
2916
  "az alapértelmezett (angol) nyelv használatához"
2917
 
2918
- #: admin/social_sharing.php:1768
2919
  #, fuzzy
2920
  msgid "Username in sharing"
2921
  msgstr "Twitter felhasználónév a megosztásban"
2922
 
2923
- #: admin/social_sharing.php:1773
2924
  msgid "Twitter username (without @)"
2925
  msgstr "Twitter felhasználónév (@ nélkül)"
2926
 
2927
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
2928
  msgid ""
2929
  "Provided username will be appended after the content being shared as \"via "
2930
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -2933,29 +2895,29 @@ msgstr ""
2933
  "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME"
2934
  "\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
2935
 
2936
- #: admin/social_sharing.php:1791
2937
  #, fuzzy
2938
  msgid "Buffer username (without @)"
2939
  msgstr "Twitter felhasználónév (@ nélkül)"
2940
 
2941
- #: admin/social_sharing.php:1810
2942
  msgid "AMP"
2943
  msgstr ""
2944
 
2945
- #: admin/social_sharing.php:1815
2946
  #, fuzzy
2947
  msgid "Enable sharing on AMP pages"
2948
  msgstr "Bekapcsolás a belépés oldalon"
2949
 
2950
- #: admin/social_sharing.php:1825
2951
  msgid "Enable this option to render sharing icons on AMP pages"
2952
  msgstr ""
2953
 
2954
- #: admin/social_sharing.php:1882
2955
  msgid "Facebook Sharing Troubleshooter"
2956
  msgstr "Facebook Megosztás Hibaelhárító"
2957
 
2958
- #: admin/social_sharing.php:1887
2959
  #, fuzzy
2960
  msgid ""
2961
  "If Facebook sharing is not working fine, click at the following link and "
@@ -2966,21 +2928,30 @@ msgstr ""
2966
  "és add meg a problémás url-t (ahol a Facebook megosztás nem működik "
2967
  "tökéletesen) a szöveges mezőben:"
2968
 
2969
- #: admin/social_sharing.php:1905
2970
  msgid ""
2971
  "Why is sharer not showing the correct image, title and other meta tags "
2972
  "content?"
2973
  msgstr ""
2974
 
2975
- #: admin/social_sharing.php:1906
2976
  msgid "Why is Facebook share count not working?"
2977
  msgstr ""
2978
 
2979
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
2980
  msgid "Why is Instagram icon redirecting to Instagram website?"
2981
  msgstr ""
2982
 
2983
- #: admin/social_sharing.php:1910
2984
  msgid ""
2985
  "Instagram icon is there to send website visitors to the Instagram page of "
2986
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2988,37 +2959,37 @@ msgid ""
2988
  "sections."
2989
  msgstr ""
2990
 
2991
- #: admin/social_sharing.php:1913
2992
  #, fuzzy
2993
  msgid "How to customize the url being shared?"
2994
  msgstr "Megosztás számok mutatása:"
2995
 
2996
- #: admin/social_sharing.php:1914
2997
  msgid ""
2998
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2999
  msgstr ""
3000
 
3001
- #: admin/social_sharing.php:1915
3002
  msgid ""
3003
  "It takes some time for their service to track the shares made on Twitter "
3004
  "from your website. If you still feel it's taking too long you can contact "
3005
  "their support directly from their website."
3006
  msgstr ""
3007
 
3008
- #: admin/social_sharing.php:1918
3009
  msgid ""
3010
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
3011
  msgstr ""
3012
 
3013
- #: admin/social_sharing.php:1920
3014
  msgid "Why the color of share icons is not being updated?"
3015
  msgstr ""
3016
 
3017
- #: admin/social_sharing.php:1921
3018
  msgid "Why Facebook share counts are not appearing?"
3019
  msgstr ""
3020
 
3021
- #: admin/social_sharing.php:1922
3022
  msgid ""
3023
  "How can I show share counts of my website rather than of individual pages/"
3024
  "posts?"
@@ -3026,42 +2997,42 @@ msgstr ""
3026
  "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon "
3027
  "kívül is?"
3028
 
3029
- #: admin/social_sharing.php:1923
3030
  msgid "How can I disable sharing on particular page/post?"
3031
  msgstr ""
3032
  "Hogyan kapcsolhatom ki a megosztást egy adott oldal/bejegyzés esetében?"
3033
 
3034
- #: admin/social_sharing.php:1924
3035
  msgid "How can I specify minimum sharing count for sharing networks?"
3036
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
3037
 
3038
- #: admin/social_sharing.php:1925
3039
  msgid "How to share specific page?"
3040
  msgstr ""
3041
 
3042
- #: admin/social_sharing.php:1926
3043
  msgid "How to integrate Google Analytics with sharing?"
3044
  msgstr ""
3045
 
3046
- #: admin/social_sharing.php:1927
3047
  msgid "How to customize the look of total share counts?"
3048
  msgstr ""
3049
 
3050
- #: admin/social_sharing.php:1928
3051
  #, fuzzy
3052
  msgid "How to customize the look of individual share counts?"
3053
  msgstr "Megosztás számok mutatása:"
3054
 
3055
- #: admin/social_sharing.php:1929
3056
  #, fuzzy
3057
  msgid "How to show Whatsapp icon only on mobile devices?"
3058
  msgstr "Hide megosztása mobil eszközökön"
3059
 
3060
- #: admin/social_sharing.php:1930
3061
  msgid "How to hide arrow after floating sharing bar?"
3062
  msgstr ""
3063
 
3064
- #: admin/social_sharing.php:1931
3065
  msgid "Why is share count not getting updated?"
3066
  msgstr ""
3067
 
@@ -3088,119 +3059,119 @@ msgstr ""
3088
  msgid "Settings"
3089
  msgstr "Beállítások"
3090
 
3091
- #: helper.php:579
3092
  msgid "Account linked successfully"
3093
  msgstr "Fiók kapcsolása sikeres"
3094
 
3095
- #: helper.php:583
3096
  msgid "Account already exists or linked"
3097
  msgstr "Fiók már létezik, vagy össze van kötve"
3098
 
3099
- #: helper.php:619 helper.php:621
3100
  #, fuzzy
3101
  msgid "Login with"
3102
  msgstr "Díjat pontokat Szociális Belépés"
3103
 
3104
- #: helper.php:656 helper.php:662
3105
  msgid "Currently"
3106
  msgstr "Jelenleg"
3107
 
3108
- #: helper.php:656 helper.php:662
3109
  msgid "Connected with"
3110
  msgstr ""
3111
 
3112
- #: helper.php:656 helper.php:662
3113
  msgid "Remove"
3114
  msgstr "Eltávolítás"
3115
 
3116
- #: helper.php:733
3117
  #, fuzzy
3118
  msgid "Social Account Linking"
3119
  msgstr ""
3120
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
3121
  "BuddyPress profil oldal"
3122
 
3123
- #: helper.php:783
3124
  #, fuzzy
3125
  msgid "Disable Standard Social Sharing on this "
3126
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
3127
 
3128
- #: helper.php:788
3129
  #, fuzzy
3130
  msgid "Disable Floating Social Sharing on this "
3131
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
3132
 
3133
- #: helper.php:793
3134
  #, fuzzy
3135
  msgid "Disable Standard like buttons on this "
3136
  msgstr "Függőleges Közösségi Gombok kikapcsolása"
3137
 
3138
- #: helper.php:798
3139
  #, fuzzy
3140
  msgid "Disable Floating like buttons on this "
3141
  msgstr "Vízszintes Közösségi Gombok kikapcsolása"
3142
 
3143
- #: helper.php:803
3144
  msgid "Disable Social Commenting on this "
3145
  msgstr "Közösségi Hozzászólás kikapcsolása ennél"
3146
 
3147
- #: helper.php:812
3148
  #, fuzzy
3149
  msgid "Standard Sharing Interface"
3150
  msgstr "Megosztási Felület"
3151
 
3152
- #: helper.php:818 helper.php:837
3153
  msgid "Starting share count for "
3154
  msgstr "Megosztás számok kezdése ehhez"
3155
 
3156
- #: helper.php:831
3157
  #, fuzzy
3158
  msgid "Floating Sharing Interface"
3159
  msgstr "Megosztási Felület"
3160
 
3161
- #: helper.php:927 super_socializer.php:2363
3162
  #, fuzzy
3163
  msgid "Social Avatar"
3164
  msgstr "Közösségi avatar bekapcsolás"
3165
 
3166
- #: helper.php:930 super_socializer.php:2374
3167
  msgid ""
3168
  "Do not fetch and update social avatar from my profile, next time I Social "
3169
  "Login"
3170
  msgstr ""
3171
 
3172
- #: helper.php:931 super_socializer.php:2378
3173
  msgid "Update social avatar, next time I Social Login"
3174
  msgstr ""
3175
 
3176
- #: helper.php:934
3177
  #, fuzzy
3178
  msgid "Small Avatar"
3179
  msgstr "Kis Avatar URL"
3180
 
3181
- #: helper.php:938
3182
  #, fuzzy
3183
  msgid "Large Avatar"
3184
  msgstr "Cél Url"
3185
 
3186
- #: helper.php:998 super_socializer.php:1924
3187
  msgid "Please verify your email address to login."
3188
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
3189
 
3190
- #: helper.php:1035
3191
  msgid "Click to delete social profile data"
3192
  msgstr ""
3193
 
3194
- #: helper.php:1064
3195
  #, fuzzy
3196
  msgid "Deleting"
3197
  msgstr "Beállítások"
3198
 
3199
- #: helper.php:1074
3200
  msgid "Deleted"
3201
  msgstr ""
3202
 
3203
- #: helper.php:1076
3204
  msgid "Something bad happened"
3205
  msgstr ""
3206
 
@@ -3259,24 +3230,24 @@ msgstr "Kategória Archívum"
3259
  msgid "More"
3260
  msgstr ""
3261
 
3262
- #: inc/social_sharing.php:241 super_socializer.php:2034
3263
  #, fuzzy
3264
  msgid "Share"
3265
- msgstr "Megosztás számok kezdése ehhez"
3266
 
3267
- #: inc/social_sharing.php:241 super_socializer.php:2034
3268
  msgid "Shares"
3269
  msgstr ""
3270
 
3271
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3272
  msgid "Invalid request"
3273
  msgstr "Hibás kérés"
3274
 
3275
- #: inc/social_sharing.php:949
3276
  msgid "Providers not selected"
3277
  msgstr "Nincs kiválasztott szolgáltató"
3278
 
3279
- #: inc/social_sharing_networks.php:57
3280
  msgid "Copy Link"
3281
  msgstr ""
3282
 
@@ -3558,7 +3529,11 @@ msgstr ""
3558
  msgid "RSS Feed URL:"
3559
  msgstr ""
3560
 
3561
- #: super_socializer.php:1707
 
 
 
 
3562
  #, fuzzy
3563
  msgid ""
3564
  "cURL is not enabled at your website server. Please contact your website "
@@ -3567,7 +3542,7 @@ msgstr ""
3567
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
3568
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
3569
 
3570
- #: super_socializer.php:1735
3571
  #, fuzzy, php-format
3572
  msgid ""
3573
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3577,7 +3552,7 @@ msgstr ""
3577
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
3578
  "lépés %s)"
3579
 
3580
- #: super_socializer.php:1738
3581
  #, fuzzy, php-format
3582
  msgid ""
3583
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3587,7 +3562,7 @@ msgstr ""
3587
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
3588
  "lépés %s)"
3589
 
3590
- #: super_socializer.php:1741
3591
  msgid ""
3592
  "Make sure cURL is enabled at your website server. You may need to contact "
3593
  "the server administrator of your website to verify this"
@@ -3595,118 +3570,118 @@ msgstr ""
3595
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
3596
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
3597
 
3598
- #: super_socializer.php:1902
3599
  msgid "Search"
3600
  msgstr ""
3601
 
3602
- #: super_socializer.php:1924
3603
  msgid "Your email has been verified. Now you can login to your account"
3604
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
3605
 
3606
- #: super_socializer.php:1928
3607
  msgid "Notification"
3608
  msgstr "Értesítés"
3609
 
3610
- #: super_socializer.php:1949
3611
  msgid "Please check your email inbox to complete the registration."
3612
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
3613
 
3614
- #: super_socializer.php:2018
3615
  msgid "Leave a reply"
3616
  msgstr "Válaszolj"
3617
 
3618
- #: super_socializer.php:2034
3619
  #, fuzzy
3620
  msgid "Link copied."
3621
  msgstr "LinkedIn"
3622
 
3623
- #: super_socializer.php:2279
3624
  #, fuzzy
3625
  msgid "Super Socializer - General Options"
3626
  msgstr "Super Socializer - Belépés"
3627
 
3628
- #: super_socializer.php:2350
3629
  msgid ""
3630
  "I agree to my personal data being stored and used as per Privacy Policy and "
3631
  "Terms and Conditions"
3632
  msgstr ""
3633
 
3634
- #: super_socializer.php:2354
3635
  msgid ""
3636
  "I revoke my consent to store and use my personal data. Kindly delete my "
3637
  "personal data saved in this website."
3638
  msgstr ""
3639
 
3640
- #: super_socializer.php:2366
3641
  msgid "Small Avatar Url"
3642
  msgstr "Kis Avatar URL"
3643
 
3644
- #: super_socializer.php:2370
3645
  #, fuzzy
3646
  msgid "Large Avatar Url"
3647
  msgstr "Cél Url"
3648
 
3649
- #: super_socializer.php:2472
3650
  msgid "Login with your Social ID"
3651
  msgstr ""
3652
 
3653
- #: super_socializer.php:2473
3654
  msgid "Email you entered is already registered or invalid"
3655
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
3656
 
3657
- #: super_socializer.php:2480
3658
  msgid "Please enter a valid email address. You might be required to verify it"
3659
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
3660
 
3661
- #: super_socializer.php:2484 super_socializer.php:3238
3662
  msgid "Link your social account to login to your account at this website"
3663
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
3664
 
3665
- #: super_socializer.php:2741
3666
  msgid "Thanks for installing Super Socializer plugin"
3667
  msgstr ""
3668
 
3669
- #: super_socializer.php:2743
3670
  msgid "Configure the Plugin"
3671
  msgstr ""
3672
 
3673
- #: super_socializer.php:2754
3674
  msgid ""
3675
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3676
  "current version of Super Socializer"
3677
  msgstr ""
3678
 
3679
- #: super_socializer.php:2763
3680
  msgid ""
3681
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3682
  "version of Super Socializer"
3683
  msgstr ""
3684
 
3685
- #: super_socializer.php:2772
3686
  msgid ""
3687
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3688
  "compatibility with the current version of Super Socializer"
3689
  msgstr ""
3690
 
3691
- #: super_socializer.php:2781
3692
  msgid ""
3693
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3694
  "with current version of Super Socializer"
3695
  msgstr ""
3696
 
3697
- #: super_socializer.php:2790
3698
  msgid ""
3699
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3700
  "with current version of Super Socializer"
3701
  msgstr ""
3702
 
3703
- #: super_socializer.php:2801
3704
  #, php-format
3705
  msgid ""
3706
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3707
  msgstr ""
3708
 
3709
- #: super_socializer.php:2810
3710
  #, php-format
3711
  msgid ""
3712
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3714,7 +3689,7 @@ msgid ""
3714
  "Instagram App Secret <a href=\"%s\">here</a>"
3715
  msgstr ""
3716
 
3717
- #: super_socializer.php:2819 super_socializer.php:2828
3718
  #, php-format
3719
  msgid ""
3720
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3723,13 +3698,13 @@ msgid ""
3723
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3724
  msgstr ""
3725
 
3726
- #: super_socializer.php:2844
3727
  #, php-format
3728
  msgid ""
3729
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3730
  msgstr ""
3731
 
3732
- #: super_socializer.php:2868
3733
  #, php-format
3734
  msgid ""
3735
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3737,14 +3712,14 @@ msgid ""
3737
  "target=\"_blank\">here</a>"
3738
  msgstr ""
3739
 
3740
- #: super_socializer.php:2868 super_socializer.php:2893
3741
- #: super_socializer.php:2918 super_socializer.php:2943
3742
- #: super_socializer.php:2976 super_socializer.php:3004
3743
- #: super_socializer.php:3031
3744
  msgid "Okay"
3745
  msgstr ""
3746
 
3747
- #: super_socializer.php:2893
3748
  #, php-format
3749
  msgid ""
3750
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3752,7 +3727,7 @@ msgid ""
3752
  "\">here</a>"
3753
  msgstr ""
3754
 
3755
- #: super_socializer.php:2918
3756
  #, php-format
3757
  msgid ""
3758
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3760,7 +3735,7 @@ msgid ""
3760
  "target=\"_blank\">here</a>"
3761
  msgstr ""
3762
 
3763
- #: super_socializer.php:2943
3764
  #, php-format
3765
  msgid ""
3766
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3768,13 +3743,13 @@ msgid ""
3768
  "target=\"_blank\">here</a>"
3769
  msgstr ""
3770
 
3771
- #: super_socializer.php:2954
3772
  #, php-format
3773
  msgid ""
3774
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3775
  msgstr ""
3776
 
3777
- #: super_socializer.php:2976
3778
  #, php-format
3779
  msgid ""
3780
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3782,7 +3757,7 @@ msgid ""
3782
  "\"%s\" target=\"_blank\">here</a>"
3783
  msgstr ""
3784
 
3785
- #: super_socializer.php:3004
3786
  #, php-format
3787
  msgid ""
3788
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3791,7 +3766,7 @@ msgid ""
3791
  "your website %s with them. No need to copy-paste any code from their website."
3792
  msgstr ""
3793
 
3794
- #: super_socializer.php:3031
3795
  #, php-format
3796
  msgid ""
3797
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3799,7 +3774,7 @@ msgid ""
3799
  "\"%s\" target=\"_blank\">here</a>"
3800
  msgstr ""
3801
 
3802
- #: super_socializer.php:3056
3803
  #, php-format
3804
  msgid ""
3805
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3807,25 +3782,43 @@ msgid ""
3807
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3808
  msgstr ""
3809
 
3810
- #: super_socializer.php:3056 super_socializer.php:3083
3811
  msgid "Dismiss"
3812
  msgstr ""
3813
 
3814
- #: super_socializer.php:3082
3815
- #, php-format
3816
- msgid ""
3817
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3818
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3819
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3820
- "that, clear share counts cache from \"Miscellaneous\" section"
3821
- msgstr ""
3822
-
3823
- #: super_socializer.php:3314
3824
  msgid ""
3825
  "Your browser is blocking some features of this website. Please follow the "
3826
  "instructions at {support_url} to unblock these."
3827
  msgstr ""
3828
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3829
  #, fuzzy
3830
  #~ msgid ""
3831
  #~ "Required for Dropbox Social Login to work. Please follow the "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-17 15:42+0530\n"
6
+ "PO-Revision-Date: 2021-07-17 15:42+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
25
  #, fuzzy, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
32
  "API Key beszerzéshez"
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
+ #: super_socializer.php:2291
36
  #, fuzzy
37
  msgid "General Options"
38
  msgstr "Megosztási beállítások"
82
 
83
  #: admin/general_options.php:89 admin/like_buttons.php:780
84
  #: admin/social_commenting.php:400 admin/social_login.php:1980
85
+ #: admin/social_sharing.php:1912 helper.php:936
86
  msgid "Save Changes"
87
  msgstr "Változások Mentése"
88
 
89
  #: admin/general_options.php:103 admin/like_buttons.php:790
90
  #: admin/social_commenting.php:410 admin/social_login.php:1990
91
+ #: admin/social_sharing.php:1922
92
  #, fuzzy
93
  msgid "Instagram Shoutout"
94
  msgstr "Instagram"
95
 
96
  #: admin/general_options.php:105 admin/like_buttons.php:792
97
  #: admin/social_commenting.php:412 admin/social_login.php:1992
98
+ #: admin/social_sharing.php:1924
99
  msgid ""
100
  "If you can send (to hello@heateor.com) how this plugin is helping your "
101
  "business, we would be glad to shoutout on Instagram. You can also send any "
195
  #, fuzzy
196
  msgid "Master Control"
197
  msgstr ""
198
+ "Központi Közösségi Gomb beállítás. Be kell kapcsolnod a Közösségi Gombok "
199
  "használatához "
200
 
201
  #: admin/like_buttons.php:19
210
  "Központi Közösségi Gomb beállítás. Be kell kapcsolnod a Közösségi Gombok "
211
  "használatához "
212
 
213
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
214
  #, fuzzy
215
  msgid "Standard Interface"
216
  msgstr "Megosztási Felület"
217
 
218
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
219
  #, fuzzy
220
  msgid "Floating Interface"
221
  msgstr "Megosztási Felület"
222
 
223
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
224
  msgid "Miscellaneous"
225
  msgstr ""
226
 
227
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
228
  msgid "3rd Party Integration"
229
  msgstr ""
230
 
231
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
232
  #: admin/social_login.php:45 admin/social_login.php:1946
233
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
234
+ #: admin/social_sharing.php:1839
235
  msgid "Shortcode & Widget"
236
  msgstr "Shortcode és Widget"
237
 
238
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
239
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
240
  #: admin/social_login.php:46 admin/social_login.php:1960
241
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
242
  msgid "FAQ"
243
  msgstr "GYIK"
244
 
257
  msgstr "Központi beállítás a vízszintes közösségi gombok bekapcsolásához"
258
 
259
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
260
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
261
  msgid "Target Url"
262
  msgstr "Cél Url"
263
 
264
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
265
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
266
  msgid "Url of the webpage where icons are located (default)"
267
  msgstr "Url, ahol a megosztás ikonok betöltődtek (alapértelmezett)"
268
 
269
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
270
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
271
  msgid "Url of the homepage of your website"
272
  msgstr "A főoldalad Url-je"
273
 
274
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
275
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
276
  msgid "Custom url"
277
  msgstr "Egyedi URL"
278
 
282
  "Url a like/share/tweet-eléshez és a like/share/tweet számok megjelenítéséhez"
283
 
284
  #: admin/like_buttons.php:105 admin/social_login.php:1231
285
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
286
  msgid "Title"
287
  msgstr "Cím"
288
 
301
  "változtatáshoz."
302
 
303
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
304
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
305
  msgid "Horizontal alignment"
306
  msgstr "Függőleges igazítás"
307
 
308
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
309
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
310
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
311
  #: inc/widget.php:446 inc/widget.php:758
312
  msgid "Left"
313
  msgstr "Bal"
314
 
315
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
316
  msgid "Center"
317
  msgstr "Középen"
318
 
319
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
320
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
321
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
322
  #: inc/widget.php:447 inc/widget.php:759
323
  msgid "Right"
324
  msgstr "Jobb"
327
  msgid "Horizontal alignment of the interface"
328
  msgstr "A megosztási felület vízszintes igazítása"
329
 
330
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
331
  msgid "Position with respect to content"
332
  msgstr "Elhelyezés a tartalomhoz képest"
333
 
334
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
335
  msgid "Top of the content"
336
  msgstr "Tartalom felett"
337
 
338
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
339
  msgid "Bottom of the content"
340
  msgstr "Tartalom alatt"
341
 
350
 
351
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
352
  #: admin/social_login.php:1548 admin/social_login.php:1577
353
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
354
  msgid "Homepage"
355
  msgstr "Kezdő oldal"
356
 
357
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
358
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
359
  msgid "Posts"
360
  msgstr "Bejegyzések"
361
 
362
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
363
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
364
  msgid "Pages"
365
  msgstr "Oldalak"
366
 
367
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
368
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
369
  msgid "Excerpts and Posts page"
370
  msgstr ""
371
 
372
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
373
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
374
  msgid "Category Archives"
375
  msgstr "Kategória Archívum"
376
 
377
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
378
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
379
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
380
  msgstr "Archívum Pages (Kategória, Tag, Szerző vagy dátum alapján oldalak)"
381
 
382
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
383
  #, fuzzy
384
  msgid "BuddyPress activity"
385
  msgstr "BuddyPress tevékenység és csoportok"
386
 
387
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
388
  msgid "BuddyPress group (only at top of content)"
389
  msgstr ""
390
 
391
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
392
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
393
  msgid "BBPress forum"
394
  msgstr "BBPress fórum"
395
 
396
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
397
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
398
  msgid "BBPress topic"
399
  msgstr "BBPress téma"
400
 
401
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
402
  msgid "BBPress reply"
403
  msgstr "BBPress válasz"
404
 
405
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
406
  msgid "After individual product at WooCommerce Shop page"
407
  msgstr "Miután az egyedi termék WooCommerce Shop oldal"
408
 
409
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
410
  msgid "WooCommerce Product Page"
411
  msgstr "WooCommerce Termékek"
412
 
413
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
414
  msgid "WooCommerce Thankyou Page"
415
  msgstr "WooCommerce Thankyou oldal"
416
 
432
  msgstr ""
433
  "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
434
 
435
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
436
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
437
  #: inc/widget.php:460 inc/widget.php:772
438
  msgid "Background Color"
439
  msgstr "Háttér Szín"
449
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
450
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni"
451
 
452
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
453
  msgid "Left offset"
454
  msgstr "Bal margó"
455
 
460
  msgstr ""
461
  "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet."
462
 
463
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
464
  msgid "Right offset"
465
  msgstr "Jobb margó"
466
 
472
  "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet. "
473
  "Negatív értéket is megadhatsz."
474
 
475
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
476
  msgid "Top offset"
477
  msgstr "Felső margó"
478
 
483
  msgstr ""
484
  "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
485
 
486
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
487
  #, fuzzy
488
  msgid "BuddyPress group"
489
  msgstr "BuddyPress profil oldal"
502
  "Ha engedélyezett, függőleges, mint a gombok nem jelennek meg a "
503
  "mobileszközökön"
504
 
505
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
506
  msgid "Url shortener"
507
  msgstr "Url rövidítő"
508
 
522
  msgid "Enable bit.ly url shortener for tweet button"
523
  msgstr "A bit.ly url rövidítő bekapcsolása a tweet gombhoz"
524
 
525
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
526
  msgid "Master control to enable bit.ly url shortening for sharing"
527
  msgstr ""
528
  "Központi beállítás a bit.ly url rövidítő megosztásokhoz való bekapcsolásához"
529
 
530
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
531
  msgid "Bit.ly generic access token"
532
  msgstr ""
533
 
534
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
535
  #, php-format
536
  msgid ""
537
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
540
  "\">link</a>"
541
  msgstr ""
542
 
543
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
544
  msgid "Clear Bitly Cache"
545
  msgstr ""
546
 
547
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
548
  #, fuzzy
549
  msgid "ShortUrl cache cleared successfully."
550
  msgstr "Fiók kapcsolása sikeres"
551
 
552
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
553
  msgid ""
554
  "Use this to delete short urls saved in database. Handy, if urls of your "
555
  "website have been changed but short urls are still being generated for old "
557
  msgstr ""
558
 
559
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
560
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
561
+ #: admin/social_sharing.php:1717
562
  msgid "Language"
563
  msgstr "Nyelv"
564
 
605
  "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME"
606
  "\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
607
 
608
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
609
  msgid "myCRED"
610
  msgstr ""
611
 
612
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
613
  msgid "Append myCRED referral ID to the urls being shared"
614
  msgstr ""
615
 
618
  msgid "Like Buttons Shortcode & Widget"
619
  msgstr "Shortcode és Widget"
620
 
621
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
622
  msgid "Why is there so much space between like buttons?"
623
  msgstr ""
624
 
625
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
626
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
627
  msgstr ""
628
 
629
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
630
  msgid "How to Place Title and Social Share Icons in the Same Row?"
631
  msgstr ""
632
 
841
  msgstr "Közösségi Hozzászólás"
842
 
843
  #: admin/social_commenting.php:386 admin/social_login.php:1962
844
+ #: admin/social_sharing.php:1872
845
  msgid ""
846
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
847
  "an online website for the plugin to function properly."
859
  msgstr ""
860
 
861
  #: admin/social_commenting.php:389 admin/social_login.php:1969
862
+ #: admin/social_sharing.php:1887
863
  msgid "Why is my browser blocking some features of the plugin?"
864
  msgstr ""
865
 
897
  msgstr "Alap Beállítások"
898
 
899
  #: admin/social_login.php:41 admin/social_login.php:1746
900
+ #: super_socializer.php:2359
901
  msgid "GDPR"
902
  msgstr ""
903
 
1044
  msgstr "Reddit"
1045
 
1046
  #: admin/social_login.php:203
1047
+ msgid "Mail.ru"
1048
  msgstr ""
1049
 
1050
  #: admin/social_login.php:207
1059
  msgid "Select Social ID provider to enable in Social Login"
1060
  msgstr "Válassz Közösségi ID szolgáltatót a Közösségi Belépéshez"
1061
 
1062
+ #: admin/social_login.php:226
1063
  msgid "Facebook App ID"
1064
  msgstr "Facebook App ID"
1065
 
1081
  "Illeszd be a következő url-t a <strong>Site URL</strong> mezőbe a fenti "
1082
  "linken"
1083
 
1084
+ #: admin/social_login.php:247
1085
  #, fuzzy
1086
  msgid "Facebook App Secret"
1087
  msgstr "Facebook App ID"
2072
  "photo\" section in BuddyPress profile at front-end"
2073
  msgstr ""
2074
 
2075
+ #: admin/social_login.php:1490 super_socializer.php:1958
2076
  msgid "Email required"
2077
  msgstr "E-mail cím szükséges"
2078
 
2370
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2371
  msgstr ""
2372
 
2373
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2374
  msgid "Theme Selection"
2375
  msgstr ""
2376
 
2377
+ #: admin/social_sharing.php:64
2378
  msgid "Troubleshooter"
2379
  msgstr "Hibamegoldó"
2380
 
2381
+ #: admin/social_sharing.php:73
2382
  msgid "Standard interface theme"
2383
  msgstr ""
2384
 
2385
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2386
  msgid "Icon Preview"
2387
  msgstr "icon Preview"
2388
 
2389
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2390
  msgid ""
2391
  "Do not forget to save the configuration after making changes by clicking the "
2392
  "save button below"
2394
  "Ne felejtsd el menteni a konfigurációs változtatások után, kattintson a "
2395
  "Mentés gombra"
2396
 
2397
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2398
  msgid "Shape"
2399
  msgstr "alak"
2400
 
2401
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2402
  msgid "Round"
2403
  msgstr "kerek"
2404
 
2405
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2406
  msgid "Square"
2407
  msgstr "szögletes"
2408
 
2409
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2410
  msgid "Rectangle"
2411
  msgstr ""
2412
 
2413
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2414
  msgid "Shape of the sharing icons"
2415
  msgstr "Megosztás ikonok formája"
2416
 
2417
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2418
  msgid "Size (in pixels)"
2419
  msgstr "Méret (pixel)"
2420
 
2421
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2422
  msgid "Size of the sharing icons"
2423
  msgstr "Megosztási ikonok mérete"
2424
 
2425
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2426
  #, fuzzy
2427
  msgid "Width (in pixels)"
2428
  msgstr "Méret (pixel)"
2429
 
2430
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2431
  #, fuzzy
2432
  msgid "Width of the sharing icons"
2433
  msgstr "Megosztási ikonok mérete"
2434
 
2435
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2436
  #, fuzzy
2437
  msgid "Height (in pixels)"
2438
  msgstr "Méret (pixel)"
2439
 
2440
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2441
  #, fuzzy
2442
  msgid "Height of the sharing icons"
2443
  msgstr "Megosztási ikonok mérete"
2444
 
2445
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2446
  #, fuzzy
2447
  msgid "Border radius (in pixels)"
2448
  msgstr "Méret (pixel)"
2449
 
2450
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2451
  msgid ""
2452
  "Specify a value for rounded corners. More the value, more rounded will the "
2453
  "corners be. Leave empty for sharp corners."
2454
  msgstr ""
2455
 
2456
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2457
  #, fuzzy
2458
  msgid "Logo Color"
2459
  msgstr "Háttér Szín"
2460
 
2461
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2462
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2463
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2464
  #, fuzzy
2465
  msgid "Default"
2466
  msgstr ""
2467
  "Az elsőre látható hozzászólások száma. A minimum 1, az alapértelmezés 10."
2468
 
2469
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2470
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2471
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2472
  msgid "On Hover"
2473
  msgstr ""
2474
 
2475
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2476
  #, fuzzy
2477
  msgid ""
2478
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2483
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
2484
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni"
2485
 
2486
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2487
  #, fuzzy
2488
  msgid ""
2489
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2495
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
2496
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
2497
 
2498
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2499
  msgid "Border"
2500
  msgstr ""
2501
 
2502
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2503
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2504
  #, fuzzy
2505
  msgid "Border Width"
2506
  msgstr "Shortcode és Widget"
2507
 
2508
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2509
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2510
  #, fuzzy
2511
  msgid "Border Color"
2512
  msgstr "Háttér Szín"
2513
 
2514
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2515
  #, fuzzy
2516
  msgid "Icon border"
2517
  msgstr "icon Preview"
2518
 
2519
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2520
  msgid "Counter Position"
2521
  msgstr ""
2522
 
2523
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2524
  msgid "(applies, if counter enabled)"
2525
  msgstr ""
2526
 
2527
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2528
  msgid "Top"
2529
  msgstr ""
2530
 
2531
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2532
  msgid "Bottom"
2533
  msgstr ""
2534
 
2535
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2536
  msgid "Inner Left"
2537
  msgstr ""
2538
 
2539
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2540
  msgid "Inner Top"
2541
  msgstr ""
2542
 
2543
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2544
  #, fuzzy
2545
  msgid "Inner Right"
2546
  msgstr "Jobb"
2547
 
2548
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2549
  msgid "Inner Bottom"
2550
  msgstr ""
2551
 
2552
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2553
  #, fuzzy
2554
  msgid "Position of share counter"
2555
  msgstr "Tartalom alatt"
2556
 
2557
+ #: admin/social_sharing.php:371
2558
  #, fuzzy
2559
  msgid "Floating interface theme"
2560
  msgstr "Megosztási Felület"
2561
 
2562
+ #: admin/social_sharing.php:675
2563
  #, fuzzy
2564
  msgid "Standard Sharing Interface Options"
2565
  msgstr "Vízszintes Megosztási Felület Beállítások"
2566
 
2567
+ #: admin/social_sharing.php:680
2568
  #, fuzzy
2569
  msgid "Enable Standard sharing interface"
2570
  msgstr "Vízszintes megosztási felület bekapcsolása"
2571
 
2572
+ #: admin/social_sharing.php:690
2573
  #, fuzzy
2574
  msgid "Master control to enable standard sharing"
2575
  msgstr "Központi beállítás a vízszintes megosztási felület bekapcsolásához"
2576
 
2577
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2578
  msgid "Url to share"
2579
  msgstr "Megosztás Url-je"
2580
 
2581
+ #: admin/social_sharing.php:731
2582
  msgid "The text to display above the sharing interface"
2583
  msgstr "Szöveg a megosztási felület fölött"
2584
 
2585
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2586
  #, fuzzy
2587
  msgid "Instagram username"
2588
  msgstr "Instagram"
2589
 
2590
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2591
  msgid ""
2592
  "Username of the Instagram account you want to redirect users to, on clicking "
2593
  "the icon"
2594
  msgstr ""
2595
 
2596
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2597
  #, fuzzy
2598
  msgid "HTML ID of container element of comment form"
2599
  msgstr "HTML ID komment formájában konténer"
2600
 
2601
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2602
  msgid ""
2603
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2604
  "icon."
2605
  msgstr ""
2606
 
2607
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2608
  msgid "Rearrange icons"
2609
  msgstr "Ikonsorrend beállítás"
2610
 
2611
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2612
  msgid "Drag the icons to rearrange in desired order"
2613
  msgstr "Fogd meg az ikont a megfelelő sorrend beállításához"
2614
 
2615
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2616
  #, fuzzy
2617
  msgid "Select Sharing Services"
2618
  msgstr "Válassz és rendezz sorba szolgáltatókat"
2619
 
2620
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2621
  msgid "Select sharing services to show in social share bar"
2622
  msgstr ""
2623
 
2624
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2625
  #, fuzzy
2626
  msgid "Search social network"
2627
  msgstr "elsődleges szociális háló"
2628
 
2629
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2630
  msgid "Horizontal alignment of the sharing interface"
2631
  msgstr "A megosztási felület függőleges igazítása"
2632
 
2633
+ #: admin/social_sharing.php:942
2634
  msgid "Specify position of the sharing interface with respect to the content"
2635
  msgstr ""
2636
  "Határozd meg a megosztási felület elhelyezésének helyét a tartalomhoz képest"
2637
 
2638
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2639
  msgid "Placement"
2640
  msgstr ""
2641
 
2642
+ #: admin/social_sharing.php:1017
2643
  msgid "Specify the pages where you want to enable Sharing interface"
2644
  msgstr "Add meg az oldalakat, ahol megjelenjen a Közösségi Megosztási felület"
2645
 
2646
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2647
  msgid "Show share counts"
2648
  msgstr "Megosztás számok mutatása"
2649
 
2650
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2651
  msgid ""
2652
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2653
+ "Odnoklassniki, Fintel and Vkontakte"
2654
  msgstr ""
2655
 
2656
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2657
  #, php-format
2658
  msgid ""
2659
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2662
  "their website."
2663
  msgstr ""
2664
 
2665
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2666
  msgid "If enabled, share counts are displayed above sharing icons."
2667
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
2668
 
2669
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2670
+ #: admin/social_sharing.php:1659
2671
+ msgid "Track Social Shares for Every Social Network"
2672
+ msgstr ""
2673
+
2674
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2675
  #, fuzzy
2676
  msgid "Show total shares"
2677
  msgstr "Megosztás számok mutatása"
2678
 
2679
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2680
  #, fuzzy
2681
  msgid "If enabled, total shares will be displayed with sharing icons"
2682
  msgstr "Bekapcsolva a megosztások száma megjelenik a megosztás ikonok felett."
2683
 
2684
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2685
  msgid "Enable 'More' icon"
2686
  msgstr "'Még több' ikon bekapcsolása"
2687
 
2688
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2689
  msgid ""
2690
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2691
  "which shows additional sharing networks in popup"
2693
  "Ha engedélyezve van, \"More \" ikon jelenik meg, miután a kiválasztott "
2694
  "megosztás ikonok ami azt mutatja, további fájlcserélő hálózatok popup"
2695
 
2696
+ #: admin/social_sharing.php:1096
2697
  #, fuzzy
2698
  msgid "Floating Sharing Interface Options"
2699
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
2700
 
2701
+ #: admin/social_sharing.php:1101
2702
  #, fuzzy
2703
  msgid "Enable Floating sharing interface"
2704
  msgstr "Függőleges (lebegő) megosztási felület bekapcsolása"
2705
 
2706
+ #: admin/social_sharing.php:1111
2707
  #, fuzzy
2708
  msgid "Master control to enable floating sharing widget"
2709
  msgstr ""
2710
  "Központi beállítás a függőleges (lebegő) megosztási widget bekapcsolásához"
2711
 
2712
+ #: admin/social_sharing.php:1299
2713
  msgid ""
2714
  "Specify the color or hex code (example #cc78e0) for the background of "
2715
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
2720
  "hátteréhez. Hagyd üresen, hogy átlátszó maradjon. A hexa színkódot <a href="
2721
  "\"http://www.colorpicker.com/\" target=\"_blank\"> innen</a> tudod kilesni "
2722
 
2723
+ #: admin/social_sharing.php:1337
2724
  msgid ""
2725
  "Specify a number. Increase in number will shift sharing interface towards "
2726
  "right and decrease will shift it towards left. Number can be negative too."
2728
  "Adj meg egy számot. A nagyobb szám jobbra tolja el a megosztási felületet. "
2729
  "Megadhatsz negatív értéket is."
2730
 
2731
+ #: admin/social_sharing.php:1356
2732
  msgid ""
2733
  "Specify a number. Increase in number will shift sharing interface towards "
2734
  "left and decrease will shift it towards right. Number can be negative too."
2736
  "Adj meg egy számot. A nagyobb szám balra tolja el a megosztási felületet. "
2737
  "Megadhatsz negatív értéket is."
2738
 
2739
+ #: admin/social_sharing.php:1374
2740
  msgid ""
2741
  "Specify a number. Increase in number will shift sharing interface towards "
2742
  "bottom and decrease will shift it towards top."
2743
  msgstr ""
2744
  "Adj meg egy számot. A nagyobb szám lefelé tolja el a megosztási felületet."
2745
 
2746
+ #: admin/social_sharing.php:1430
2747
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2748
  msgstr "Add meg, melyik oldalakon jelenjen meg a Megosztási felület"
2749
 
2750
+ #: admin/social_sharing.php:1499
2751
  #, fuzzy
2752
  msgid "Hide floating slider"
2753
  msgstr "Bejelentkezettek számára elrejtve:"
2754
 
2755
+ #: admin/social_sharing.php:1509
2756
  msgid "Hides the slider arrow present below the floating share bar"
2757
  msgstr ""
2758
 
2759
+ #: admin/social_sharing.php:1516
2760
  #, fuzzy
2761
  msgid "Vertical floating bar responsiveness"
2762
  msgstr "Függőleges (lebegő) Megosztási Felület Beállítások"
2763
 
2764
+ #: admin/social_sharing.php:1519
2765
  #, php-format
2766
  msgid "Display vertical interface only when screen is wider than %s pixels"
2767
  msgstr ""
2768
 
2769
+ #: admin/social_sharing.php:1526
2770
  msgid ""
2771
  "Display vertical interface only when screen is wider than the width "
2772
  "specified."
2773
  msgstr ""
2774
 
2775
+ #: admin/social_sharing.php:1533
2776
  msgid "Horizontal floating bar responsiveness"
2777
  msgstr ""
2778
 
2779
+ #: admin/social_sharing.php:1536
2780
  #, fuzzy, php-format
2781
  msgid ""
2782
  "Stick vertical floating interface horizontally at bottom only when screen is "
2785
  "Ha engedélyezett, függőleges megosztó felület nem fog megjelenni a mobil "
2786
  "eszközök"
2787
 
2788
+ #: admin/social_sharing.php:1543
2789
  msgid ""
2790
  "Stick vertical floating interface horizontally at bottom only when screen is "
2791
  "narrower than the width specified"
2792
  msgstr ""
2793
 
2794
+ #: admin/social_sharing.php:1552
2795
  #, fuzzy
2796
  msgid "Horizontal floating bar position"
2797
  msgstr "Vízszintes Megosztási Felület Beállítások"
2798
 
2799
+ #: admin/social_sharing.php:1555
2800
  #, php-format
2801
  msgid "%s pixels from %s"
2802
  msgstr ""
2803
 
2804
+ #: admin/social_sharing.php:1556
2805
  msgid "Auto-adjust according to screen width (responsive)"
2806
  msgstr ""
2807
 
2808
+ #: admin/social_sharing.php:1563
2809
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2810
  msgstr ""
2811
 
2812
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2813
  msgid "Use shortlinks already installed"
2814
  msgstr "Használja shortlinks már telepítve"
2815
 
2816
+ #: admin/social_sharing.php:1598
2817
  msgid "Uses default short url permalinks without using any additional plugin"
2818
  msgstr ""
2819
 
2820
+ #: admin/social_sharing.php:1605
2821
  msgid "Enable bit.ly url shortener for sharing"
2822
  msgstr "A bit.ly url rövidítő bekapcsolása a megosztáshoz"
2823
 
2824
+ #: admin/social_sharing.php:1664
2825
  msgid "Share Count Cache"
2826
  msgstr ""
2827
 
2828
+ #: admin/social_sharing.php:1669
2829
  msgid "Refresh Share Count cache every"
2830
  msgstr ""
2831
 
2832
+ #: admin/social_sharing.php:1674
2833
  msgid "Second(s)"
2834
  msgstr ""
2835
 
2836
+ #: admin/social_sharing.php:1675
2837
  msgid "Minute(s)"
2838
  msgstr ""
2839
 
2840
+ #: admin/social_sharing.php:1676
2841
  msgid "Hour(s)"
2842
  msgstr ""
2843
 
2844
+ #: admin/social_sharing.php:1677
2845
  msgid "Day(s)"
2846
  msgstr ""
2847
 
2848
+ #: admin/social_sharing.php:1685
2849
  #, php-format
2850
  msgid ""
2851
  "Frequent cache refreshing results in slower loading of pages with share "
2853
  "target=\"_blank\">here</a>"
2854
  msgstr ""
2855
 
2856
+ #: admin/social_sharing.php:1692
2857
  msgid "Clear Share Counts Cache"
2858
  msgstr ""
2859
 
2860
+ #: admin/social_sharing.php:1696
2861
  #, fuzzy
2862
  msgid "Share Counts cache cleared successfully."
2863
  msgstr "Fiók kapcsolása sikeres"
2864
 
2865
+ #: admin/social_sharing.php:1703
2866
  msgid "Use this to clear cached share counts"
2867
  msgstr ""
2868
 
2869
+ #: admin/social_sharing.php:1727
2870
  #, fuzzy, php-format
2871
  msgid ""
2872
  "Enter the code of the language you want to use for like buttons. You can "
2877
  "nyelvi kódot <a href=\"%s\" target=\"_blank\">itt</a> találod. Hagyd üresen "
2878
  "az alapértelmezett (angol) nyelv használatához"
2879
 
2880
+ #: admin/social_sharing.php:1736
2881
  #, fuzzy
2882
  msgid "Username in sharing"
2883
  msgstr "Twitter felhasználónév a megosztásban"
2884
 
2885
+ #: admin/social_sharing.php:1741
2886
  msgid "Twitter username (without @)"
2887
  msgstr "Twitter felhasználónév (@ nélkül)"
2888
 
2889
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2890
  msgid ""
2891
  "Provided username will be appended after the content being shared as \"via "
2892
  "@USERNAME\". Leave empty if you do not want any username in the content "
2895
  "A megadott felhasználónév kerül a megosztás szövege után így \"via @USERNAME"
2896
  "\". Hagyd üresen, ha nem akarsz felhasználó név utánfűzést."
2897
 
2898
+ #: admin/social_sharing.php:1759
2899
  #, fuzzy
2900
  msgid "Buffer username (without @)"
2901
  msgstr "Twitter felhasználónév (@ nélkül)"
2902
 
2903
+ #: admin/social_sharing.php:1778
2904
  msgid "AMP"
2905
  msgstr ""
2906
 
2907
+ #: admin/social_sharing.php:1783
2908
  #, fuzzy
2909
  msgid "Enable sharing on AMP pages"
2910
  msgstr "Bekapcsolás a belépés oldalon"
2911
 
2912
+ #: admin/social_sharing.php:1793
2913
  msgid "Enable this option to render sharing icons on AMP pages"
2914
  msgstr ""
2915
 
2916
+ #: admin/social_sharing.php:1850
2917
  msgid "Facebook Sharing Troubleshooter"
2918
  msgstr "Facebook Megosztás Hibaelhárító"
2919
 
2920
+ #: admin/social_sharing.php:1855
2921
  #, fuzzy
2922
  msgid ""
2923
  "If Facebook sharing is not working fine, click at the following link and "
2928
  "és add meg a problémás url-t (ahol a Facebook megosztás nem működik "
2929
  "tökéletesen) a szöveges mezőben:"
2930
 
2931
+ #: admin/social_sharing.php:1873
2932
  msgid ""
2933
  "Why is sharer not showing the correct image, title and other meta tags "
2934
  "content?"
2935
  msgstr ""
2936
 
2937
+ #: admin/social_sharing.php:1874
2938
  msgid "Why is Facebook share count not working?"
2939
  msgstr ""
2940
 
2941
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2942
+ #, php-format
2943
+ msgid ""
2944
+ "After the recent changes introduced in the Facebook graph API, it's not "
2945
+ "possible to track Facebook shares using it. <a href='%s' "
2946
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2947
+ "not just for Facebook but for all the social networks"
2948
+ msgstr ""
2949
+
2950
+ #: admin/social_sharing.php:1877
2951
  msgid "Why is Instagram icon redirecting to Instagram website?"
2952
  msgstr ""
2953
 
2954
+ #: admin/social_sharing.php:1878
2955
  msgid ""
2956
  "Instagram icon is there to send website visitors to the Instagram page of "
2957
  "your choice. You can save the desired Instagram handle in \"Instagram "
2959
  "sections."
2960
  msgstr ""
2961
 
2962
+ #: admin/social_sharing.php:1881
2963
  #, fuzzy
2964
  msgid "How to customize the url being shared?"
2965
  msgstr "Megosztás számok mutatása:"
2966
 
2967
+ #: admin/social_sharing.php:1882
2968
  msgid ""
2969
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2970
  msgstr ""
2971
 
2972
+ #: admin/social_sharing.php:1883
2973
  msgid ""
2974
  "It takes some time for their service to track the shares made on Twitter "
2975
  "from your website. If you still feel it's taking too long you can contact "
2976
  "their support directly from their website."
2977
  msgstr ""
2978
 
2979
+ #: admin/social_sharing.php:1886
2980
  msgid ""
2981
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2982
  msgstr ""
2983
 
2984
+ #: admin/social_sharing.php:1888
2985
  msgid "Why the color of share icons is not being updated?"
2986
  msgstr ""
2987
 
2988
+ #: admin/social_sharing.php:1889
2989
  msgid "Why Facebook share counts are not appearing?"
2990
  msgstr ""
2991
 
2992
+ #: admin/social_sharing.php:1890
2993
  msgid ""
2994
  "How can I show share counts of my website rather than of individual pages/"
2995
  "posts?"
2997
  "Hogyan jeleníthetem meg a megosztások számát az oldal/bejegyzés oldalakon "
2998
  "kívül is?"
2999
 
3000
+ #: admin/social_sharing.php:1891
3001
  msgid "How can I disable sharing on particular page/post?"
3002
  msgstr ""
3003
  "Hogyan kapcsolhatom ki a megosztást egy adott oldal/bejegyzés esetében?"
3004
 
3005
+ #: admin/social_sharing.php:1892
3006
  msgid "How can I specify minimum sharing count for sharing networks?"
3007
  msgstr "Hogyan adhatok meg minimum megosztása száma a fájlcserélő hálózatokat?"
3008
 
3009
+ #: admin/social_sharing.php:1893
3010
  msgid "How to share specific page?"
3011
  msgstr ""
3012
 
3013
+ #: admin/social_sharing.php:1894
3014
  msgid "How to integrate Google Analytics with sharing?"
3015
  msgstr ""
3016
 
3017
+ #: admin/social_sharing.php:1895
3018
  msgid "How to customize the look of total share counts?"
3019
  msgstr ""
3020
 
3021
+ #: admin/social_sharing.php:1896
3022
  #, fuzzy
3023
  msgid "How to customize the look of individual share counts?"
3024
  msgstr "Megosztás számok mutatása:"
3025
 
3026
+ #: admin/social_sharing.php:1897
3027
  #, fuzzy
3028
  msgid "How to show Whatsapp icon only on mobile devices?"
3029
  msgstr "Hide megosztása mobil eszközökön"
3030
 
3031
+ #: admin/social_sharing.php:1898
3032
  msgid "How to hide arrow after floating sharing bar?"
3033
  msgstr ""
3034
 
3035
+ #: admin/social_sharing.php:1899
3036
  msgid "Why is share count not getting updated?"
3037
  msgstr ""
3038
 
3059
  msgid "Settings"
3060
  msgstr "Beállítások"
3061
 
3062
+ #: helper.php:572
3063
  msgid "Account linked successfully"
3064
  msgstr "Fiók kapcsolása sikeres"
3065
 
3066
+ #: helper.php:576
3067
  msgid "Account already exists or linked"
3068
  msgstr "Fiók már létezik, vagy össze van kötve"
3069
 
3070
+ #: helper.php:612 helper.php:614
3071
  #, fuzzy
3072
  msgid "Login with"
3073
  msgstr "Díjat pontokat Szociális Belépés"
3074
 
3075
+ #: helper.php:649 helper.php:655
3076
  msgid "Currently"
3077
  msgstr "Jelenleg"
3078
 
3079
+ #: helper.php:649 helper.php:655
3080
  msgid "Connected with"
3081
  msgstr ""
3082
 
3083
+ #: helper.php:649 helper.php:655
3084
  msgid "Remove"
3085
  msgstr "Eltávolítás"
3086
 
3087
+ #: helper.php:727
3088
  #, fuzzy
3089
  msgid "Social Account Linking"
3090
  msgstr ""
3091
  "Engedélyezze ezt a lehetőséget, hogy a szociális számla összekötő interfész "
3092
  "BuddyPress profil oldal"
3093
 
3094
+ #: helper.php:777
3095
  #, fuzzy
3096
  msgid "Disable Standard Social Sharing on this "
3097
  msgstr "Függőleges Közösségi Megosztás kikapcsolása"
3098
 
3099
+ #: helper.php:782
3100
  #, fuzzy
3101
  msgid "Disable Floating Social Sharing on this "
3102
  msgstr "Vízszintes Közösségi Megosztás kikapcsolása"
3103
 
3104
+ #: helper.php:787
3105
  #, fuzzy
3106
  msgid "Disable Standard like buttons on this "
3107
  msgstr "Függőleges Közösségi Gombok kikapcsolása"
3108
 
3109
+ #: helper.php:792
3110
  #, fuzzy
3111
  msgid "Disable Floating like buttons on this "
3112
  msgstr "Vízszintes Közösségi Gombok kikapcsolása"
3113
 
3114
+ #: helper.php:797
3115
  msgid "Disable Social Commenting on this "
3116
  msgstr "Közösségi Hozzászólás kikapcsolása ennél"
3117
 
3118
+ #: helper.php:806
3119
  #, fuzzy
3120
  msgid "Standard Sharing Interface"
3121
  msgstr "Megosztási Felület"
3122
 
3123
+ #: helper.php:812 helper.php:831
3124
  msgid "Starting share count for "
3125
  msgstr "Megosztás számok kezdése ehhez"
3126
 
3127
+ #: helper.php:825
3128
  #, fuzzy
3129
  msgid "Floating Sharing Interface"
3130
  msgstr "Megosztási Felület"
3131
 
3132
+ #: helper.php:921 super_socializer.php:2375
3133
  #, fuzzy
3134
  msgid "Social Avatar"
3135
  msgstr "Közösségi avatar bekapcsolás"
3136
 
3137
+ #: helper.php:924 super_socializer.php:2386
3138
  msgid ""
3139
  "Do not fetch and update social avatar from my profile, next time I Social "
3140
  "Login"
3141
  msgstr ""
3142
 
3143
+ #: helper.php:925 super_socializer.php:2390
3144
  msgid "Update social avatar, next time I Social Login"
3145
  msgstr ""
3146
 
3147
+ #: helper.php:928
3148
  #, fuzzy
3149
  msgid "Small Avatar"
3150
  msgstr "Kis Avatar URL"
3151
 
3152
+ #: helper.php:932
3153
  #, fuzzy
3154
  msgid "Large Avatar"
3155
  msgstr "Cél Url"
3156
 
3157
+ #: helper.php:992 super_socializer.php:1936
3158
  msgid "Please verify your email address to login."
3159
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
3160
 
3161
+ #: helper.php:1029
3162
  msgid "Click to delete social profile data"
3163
  msgstr ""
3164
 
3165
+ #: helper.php:1058
3166
  #, fuzzy
3167
  msgid "Deleting"
3168
  msgstr "Beállítások"
3169
 
3170
+ #: helper.php:1068
3171
  msgid "Deleted"
3172
  msgstr ""
3173
 
3174
+ #: helper.php:1070
3175
  msgid "Something bad happened"
3176
  msgstr ""
3177
 
3230
  msgid "More"
3231
  msgstr ""
3232
 
3233
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3234
  #, fuzzy
3235
  msgid "Share"
3236
+ msgstr "Megosztás számok mutatása"
3237
 
3238
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3239
  msgid "Shares"
3240
  msgstr ""
3241
 
3242
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
3243
  msgid "Invalid request"
3244
  msgstr "Hibás kérés"
3245
 
3246
+ #: inc/social_sharing.php:938
3247
  msgid "Providers not selected"
3248
  msgstr "Nincs kiválasztott szolgáltató"
3249
 
3250
+ #: inc/social_sharing_networks.php:58
3251
  msgid "Copy Link"
3252
  msgstr ""
3253
 
3529
  msgid "RSS Feed URL:"
3530
  msgstr ""
3531
 
3532
+ #: super_socializer.php:429
3533
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3534
+ msgstr ""
3535
+
3536
+ #: super_socializer.php:1718
3537
  #, fuzzy
3538
  msgid ""
3539
  "cURL is not enabled at your website server. Please contact your website "
3542
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
3543
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
3544
 
3545
+ #: super_socializer.php:1746
3546
  #, fuzzy, php-format
3547
  msgid ""
3548
  "Enter exactly the following url in <strong>Website</strong> option in your "
3552
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
3553
  "lépés %s)"
3554
 
3555
+ #: super_socializer.php:1749
3556
  #, fuzzy, php-format
3557
  msgid ""
3558
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3562
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
3563
  "lépés %s)"
3564
 
3565
+ #: super_socializer.php:1752
3566
  msgid ""
3567
  "Make sure cURL is enabled at your website server. You may need to contact "
3568
  "the server administrator of your website to verify this"
3570
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
3571
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
3572
 
3573
+ #: super_socializer.php:1914
3574
  msgid "Search"
3575
  msgstr ""
3576
 
3577
+ #: super_socializer.php:1936
3578
  msgid "Your email has been verified. Now you can login to your account"
3579
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
3580
 
3581
+ #: super_socializer.php:1940
3582
  msgid "Notification"
3583
  msgstr "Értesítés"
3584
 
3585
+ #: super_socializer.php:1961
3586
  msgid "Please check your email inbox to complete the registration."
3587
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
3588
 
3589
+ #: super_socializer.php:2030
3590
  msgid "Leave a reply"
3591
  msgstr "Válaszolj"
3592
 
3593
+ #: super_socializer.php:2046
3594
  #, fuzzy
3595
  msgid "Link copied."
3596
  msgstr "LinkedIn"
3597
 
3598
+ #: super_socializer.php:2291
3599
  #, fuzzy
3600
  msgid "Super Socializer - General Options"
3601
  msgstr "Super Socializer - Belépés"
3602
 
3603
+ #: super_socializer.php:2362
3604
  msgid ""
3605
  "I agree to my personal data being stored and used as per Privacy Policy and "
3606
  "Terms and Conditions"
3607
  msgstr ""
3608
 
3609
+ #: super_socializer.php:2366
3610
  msgid ""
3611
  "I revoke my consent to store and use my personal data. Kindly delete my "
3612
  "personal data saved in this website."
3613
  msgstr ""
3614
 
3615
+ #: super_socializer.php:2378
3616
  msgid "Small Avatar Url"
3617
  msgstr "Kis Avatar URL"
3618
 
3619
+ #: super_socializer.php:2382
3620
  #, fuzzy
3621
  msgid "Large Avatar Url"
3622
  msgstr "Cél Url"
3623
 
3624
+ #: super_socializer.php:2484
3625
  msgid "Login with your Social ID"
3626
  msgstr ""
3627
 
3628
+ #: super_socializer.php:2485
3629
  msgid "Email you entered is already registered or invalid"
3630
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
3631
 
3632
+ #: super_socializer.php:2492
3633
  msgid "Please enter a valid email address. You might be required to verify it"
3634
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
3635
 
3636
+ #: super_socializer.php:2496 super_socializer.php:3250
3637
  msgid "Link your social account to login to your account at this website"
3638
  msgstr "Kapcsold össze közösségi fiókod, hogy belépj erre az oldalra"
3639
 
3640
+ #: super_socializer.php:2753
3641
  msgid "Thanks for installing Super Socializer plugin"
3642
  msgstr ""
3643
 
3644
+ #: super_socializer.php:2755
3645
  msgid "Configure the Plugin"
3646
  msgstr ""
3647
 
3648
+ #: super_socializer.php:2766
3649
  msgid ""
3650
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3651
  "current version of Super Socializer"
3652
  msgstr ""
3653
 
3654
+ #: super_socializer.php:2775
3655
  msgid ""
3656
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3657
  "version of Super Socializer"
3658
  msgstr ""
3659
 
3660
+ #: super_socializer.php:2784
3661
  msgid ""
3662
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3663
  "compatibility with the current version of Super Socializer"
3664
  msgstr ""
3665
 
3666
+ #: super_socializer.php:2793
3667
  msgid ""
3668
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3669
  "with current version of Super Socializer"
3670
  msgstr ""
3671
 
3672
+ #: super_socializer.php:2802
3673
  msgid ""
3674
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3675
  "with current version of Super Socializer"
3676
  msgstr ""
3677
 
3678
+ #: super_socializer.php:2813
3679
  #, php-format
3680
  msgid ""
3681
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3682
  msgstr ""
3683
 
3684
+ #: super_socializer.php:2822
3685
  #, php-format
3686
  msgid ""
3687
  "To continue using Instagram login create a new Instagram App as described <a "
3689
  "Instagram App Secret <a href=\"%s\">here</a>"
3690
  msgstr ""
3691
 
3692
+ #: super_socializer.php:2831 super_socializer.php:2840
3693
  #, php-format
3694
  msgid ""
3695
  "To continue using bitly url shortener, login to your bit.ly account and "
3698
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3699
  msgstr ""
3700
 
3701
+ #: super_socializer.php:2856
3702
  #, php-format
3703
  msgid ""
3704
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3705
  msgstr ""
3706
 
3707
+ #: super_socializer.php:2880
3708
  #, php-format
3709
  msgid ""
3710
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3712
  "target=\"_blank\">here</a>"
3713
  msgstr ""
3714
 
3715
+ #: super_socializer.php:2880 super_socializer.php:2905
3716
+ #: super_socializer.php:2930 super_socializer.php:2955
3717
+ #: super_socializer.php:2988 super_socializer.php:3016
3718
+ #: super_socializer.php:3043
3719
  msgid "Okay"
3720
  msgstr ""
3721
 
3722
+ #: super_socializer.php:2905
3723
  #, php-format
3724
  msgid ""
3725
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3727
  "\">here</a>"
3728
  msgstr ""
3729
 
3730
+ #: super_socializer.php:2930
3731
  #, php-format
3732
  msgid ""
3733
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3735
  "target=\"_blank\">here</a>"
3736
  msgstr ""
3737
 
3738
+ #: super_socializer.php:2955
3739
  #, php-format
3740
  msgid ""
3741
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3743
  "target=\"_blank\">here</a>"
3744
  msgstr ""
3745
 
3746
+ #: super_socializer.php:2966
3747
  #, php-format
3748
  msgid ""
3749
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3750
  msgstr ""
3751
 
3752
+ #: super_socializer.php:2988
3753
  #, php-format
3754
  msgid ""
3755
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3757
  "\"%s\" target=\"_blank\">here</a>"
3758
  msgstr ""
3759
 
3760
+ #: super_socializer.php:3016
3761
  #, php-format
3762
  msgid ""
3763
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3766
  "your website %s with them. No need to copy-paste any code from their website."
3767
  msgstr ""
3768
 
3769
+ #: super_socializer.php:3043
3770
  #, php-format
3771
  msgid ""
3772
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3774
  "\"%s\" target=\"_blank\">here</a>"
3775
  msgstr ""
3776
 
3777
+ #: super_socializer.php:3068
3778
  #, php-format
3779
  msgid ""
3780
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3782
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3783
  msgstr ""
3784
 
3785
+ #: super_socializer.php:3068 super_socializer.php:3095
3786
  msgid "Dismiss"
3787
  msgstr ""
3788
 
3789
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3790
  msgid ""
3791
  "Your browser is blocking some features of this website. Please follow the "
3792
  "instructions at {support_url} to unblock these."
3793
  msgstr ""
3794
 
3795
+ #~ msgid "Dismiss this notice"
3796
+ #~ msgstr "Utasítsa el ezt az értesítést"
3797
+
3798
+ #, fuzzy
3799
+ #~ msgid "Facebook Share Count"
3800
+ #~ msgstr "Comentarios Facebook"
3801
+
3802
+ #, fuzzy
3803
+ #~ msgid ""
3804
+ #~ "Required for Facebook share count to work. Please follow the "
3805
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3806
+ #~ "Facebook App ID"
3807
+ #~ msgstr ""
3808
+ #~ "Szükséges a Facebook Közösségi Belépés működéséhez. Kérlek, kövesd a "
3809
+ #~ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
3810
+ #~ "Facebook App ID beszerzéshez"
3811
+
3812
+ #, fuzzy
3813
+ #~ msgid ""
3814
+ #~ "Required for Facebook share count to work. Please follow the "
3815
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3816
+ #~ "Facebook App Secret"
3817
+ #~ msgstr ""
3818
+ #~ "Szükséges a Facebook Közösségi Belépés működéséhez. Kérlek, kövesd a "
3819
+ #~ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a "
3820
+ #~ "Facebook App ID beszerzéshez"
3821
+
3822
  #, fuzzy
3823
  #~ msgid ""
3824
  #~ "Required for Dropbox Social Login to work. Please follow the "
languages/super-socializer-it_IT.mo CHANGED
Binary file
languages/super-socializer-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-15 14:12+0530\n"
6
- "PO-Revision-Date: 2021-06-15 14:13+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
25
  #, fuzzy, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -32,7 +32,7 @@ msgstr ""
32
  "\"_blank\">questa pagina</a>"
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
- #: super_socializer.php:2279
36
  msgid "General Options"
37
  msgstr "Opzioni Generali"
38
 
@@ -81,20 +81,20 @@ msgstr ""
81
 
82
  #: admin/general_options.php:89 admin/like_buttons.php:780
83
  #: admin/social_commenting.php:400 admin/social_login.php:1980
84
- #: admin/social_sharing.php:1944 helper.php:942
85
  msgid "Save Changes"
86
  msgstr "Salva le modifiche"
87
 
88
  #: admin/general_options.php:103 admin/like_buttons.php:790
89
  #: admin/social_commenting.php:410 admin/social_login.php:1990
90
- #: admin/social_sharing.php:1954
91
  #, fuzzy
92
  msgid "Instagram Shoutout"
93
  msgstr "Instagram"
94
 
95
  #: admin/general_options.php:105 admin/like_buttons.php:792
96
  #: admin/social_commenting.php:412 admin/social_login.php:1992
97
- #: admin/social_sharing.php:1956
98
  msgid ""
99
  "If you can send (to hello@heateor.com) how this plugin is helping your "
100
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -202,34 +202,34 @@ msgstr ""
202
  "Controllo Principale per i pulsanti Mi-Piace. Dev'essere abilitato per "
203
  "attivare le funzionalitá dei pulsanti Mi-Piace"
204
 
205
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
206
  msgid "Standard Interface"
207
  msgstr "Interfaccia Standard"
208
 
209
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
210
  msgid "Floating Interface"
211
  msgstr "Interfaccia Floating"
212
 
213
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
214
  msgid "Miscellaneous"
215
  msgstr "Miscellanea"
216
 
217
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
218
  #, fuzzy
219
  msgid "3rd Party Integration"
220
  msgstr "XProfile Integration"
221
 
222
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
223
  #: admin/social_login.php:45 admin/social_login.php:1946
224
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
225
- #: admin/social_sharing.php:1871
226
  msgid "Shortcode & Widget"
227
  msgstr "Shortcode & Widget"
228
 
229
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
230
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
231
  #: admin/social_login.php:46 admin/social_login.php:1960
232
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
233
  msgid "FAQ"
234
  msgstr "FAQ"
235
 
@@ -246,22 +246,22 @@ msgid "Master control to enable horizontal like buttons"
246
  msgstr "Controllo Principale per abilitare i pulsanti orizzontali Mi-Piace"
247
 
248
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
249
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
250
  msgid "Target Url"
251
  msgstr "URL di destinazione"
252
 
253
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
254
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
255
  msgid "Url of the webpage where icons are located (default)"
256
  msgstr "URL della pagina web in cui si trovano le icone (predefinito)"
257
 
258
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
259
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
260
  msgid "Url of the homepage of your website"
261
  msgstr "Url della homepage del tuo sito web"
262
 
263
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
264
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
265
  msgid "Custom url"
266
  msgstr "Url personalizzata"
267
 
@@ -271,7 +271,7 @@ msgstr ""
271
  "Url per mi-piace/share/tweet e visualizzazione mi-piace/share/conteggi tweet"
272
 
273
  #: admin/like_buttons.php:105 admin/social_login.php:1231
274
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
275
  msgid "Title"
276
  msgstr "Titolo"
277
 
@@ -289,24 +289,24 @@ msgstr ""
289
  "Seleziona i providers per l'interfaccia. Trascina per riorganizzarli. "
290
 
291
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
292
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
293
  msgid "Horizontal alignment"
294
  msgstr "Allineamento orizzontale"
295
 
296
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
297
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
298
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308
299
  #: inc/widget.php:446 inc/widget.php:758
300
  msgid "Left"
301
  msgstr "Sinistra"
302
 
303
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
304
  msgid "Center"
305
  msgstr "centro"
306
 
307
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
308
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
309
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309
310
  #: inc/widget.php:447 inc/widget.php:759
311
  msgid "Right"
312
  msgstr "Destra"
@@ -315,15 +315,15 @@ msgstr "Destra"
315
  msgid "Horizontal alignment of the interface"
316
  msgstr "Allineamento orizzontale dell'interfaccia"
317
 
318
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
319
  msgid "Position with respect to content"
320
  msgstr "Posizione"
321
 
322
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
323
  msgid "Top of the content"
324
  msgstr "Parte superiore del contenuto"
325
 
326
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
327
  msgid "Bottom of the content"
328
  msgstr "Parte inferiore del contenuto"
329
 
@@ -337,66 +337,66 @@ msgstr "Collocazione"
337
 
338
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
339
  #: admin/social_login.php:1548 admin/social_login.php:1577
340
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
341
  msgid "Homepage"
342
  msgstr "Homepage"
343
 
344
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
345
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
346
  msgid "Posts"
347
  msgstr "Post"
348
 
349
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
350
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
351
  msgid "Pages"
352
  msgstr "Pagine"
353
 
354
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
355
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
356
  msgid "Excerpts and Posts page"
357
  msgstr "Pagine di Estratti ed Articoli"
358
 
359
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
360
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
361
  msgid "Category Archives"
362
  msgstr "Archivi di categorie"
363
 
364
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
365
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
366
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
367
  msgstr "Arch. Pagine (Categoria., Tag, Autore o Pagine basate su data)"
368
 
369
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
370
  msgid "BuddyPress activity"
371
  msgstr "Attività BuddyPress"
372
 
373
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
374
  msgid "BuddyPress group (only at top of content)"
375
  msgstr "BuddyPress group (solo nella parte superiore del contenuto)"
376
 
377
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
378
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
379
  msgid "BBPress forum"
380
  msgstr "BBPress forum"
381
 
382
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
383
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
384
  msgid "BBPress topic"
385
  msgstr "Argomento BBPress"
386
 
387
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
388
  msgid "BBPress reply"
389
  msgstr "Risposta BBPress"
390
 
391
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
392
  msgid "After individual product at WooCommerce Shop page"
393
  msgstr "Dopo il singolo prodotto nella pagina Shop WooCommerce"
394
 
395
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
396
  msgid "WooCommerce Product Page"
397
  msgstr "WooCommerce Pagina Prodotto"
398
 
399
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
400
  msgid "WooCommerce Thankyou Page"
401
  msgstr "WooCommerce Pagina Thankyou"
402
 
@@ -417,8 +417,8 @@ msgid "Master control to enable vertical (floating) counter widget"
417
  msgstr ""
418
  "Controllo Principale per abilitare il counter widget verticale (floating)"
419
 
420
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
421
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287
422
  #: inc/widget.php:460 inc/widget.php:772
423
  msgid "Background Color"
424
  msgstr "Colore Background"
@@ -434,7 +434,7 @@ msgstr ""
434
  "Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href="
435
  "\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
436
 
437
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
438
  msgid "Left offset"
439
  msgstr "Left offset"
440
 
@@ -447,7 +447,7 @@ msgstr ""
447
  "verso destra, un numero piú piccolo lo muove verso sinistra. Il Numero può "
448
  "anche essere negativo."
449
 
450
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
451
  msgid "Right offset"
452
  msgstr "Right offset"
453
 
@@ -460,7 +460,7 @@ msgstr ""
460
  "verso sinistra, un numero piú piccolo lo muove verso destra.Il Numero può "
461
  "anche essere negativo."
462
 
463
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
464
  msgid "Top offset"
465
  msgstr "Top offset"
466
 
@@ -472,7 +472,7 @@ msgstr ""
472
  "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore "
473
  "verso il basso, un numero piú piccolo lo muove all'alto."
474
 
475
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
476
  msgid "BuddyPress group"
477
  msgstr "BuddyPress group"
478
 
@@ -490,7 +490,7 @@ msgstr ""
490
  "Se questa opzione è abilitata, i pulsanti verticali Mi-Piace non appariranno "
491
  "sui dispositivi mobili"
492
 
493
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
494
  msgid "Url shortener"
495
  msgstr "Url shortener"
496
 
@@ -510,16 +510,16 @@ msgstr ""
510
  msgid "Enable bit.ly url shortener for tweet button"
511
  msgstr "Abilita bit.ly url shortener per pulsante Tweet"
512
 
513
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
514
  msgid "Master control to enable bit.ly url shortening for sharing"
515
  msgstr ""
516
  "Controllo Principale per abilitare bit.ly url shortening per la condivisione"
517
 
518
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
519
  msgid "Bit.ly generic access token"
520
  msgstr ""
521
 
522
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
523
  #, php-format
524
  msgid ""
525
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -528,15 +528,15 @@ msgid ""
528
  "\">link</a>"
529
  msgstr ""
530
 
531
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
532
  msgid "Clear Bitly Cache"
533
  msgstr "Cancella Bitly Cache"
534
 
535
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
536
  msgid "ShortUrl cache cleared successfully."
537
  msgstr "ShortUrl cache cancellata correttamente"
538
 
539
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
540
  msgid ""
541
  "Use this to delete short urls saved in database. Handy, if urls of your "
542
  "website have been changed but short urls are still being generated for old "
@@ -547,8 +547,8 @@ msgstr ""
547
  "sono ancora in uso per i vecchi URL."
548
 
549
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
550
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
551
- #: admin/social_sharing.php:1749
552
  msgid "Language"
553
  msgstr "Lingua"
554
 
@@ -592,11 +592,11 @@ msgstr ""
592
  "La username fornita viene aggiunta dopo il contenuto del Buffer sharing come "
593
  "\"via @USERNAME\". Lasciare vuoto se non si desidera alcuna username."
594
 
595
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
596
  msgid "myCRED"
597
  msgstr ""
598
 
599
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
600
  msgid "Append myCRED referral ID to the urls being shared"
601
  msgstr ""
602
 
@@ -604,17 +604,17 @@ msgstr ""
604
  msgid "Like Buttons Shortcode & Widget"
605
  msgstr "Pulsanti Shortcode & Widget"
606
 
607
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
608
  msgid "Why is there so much space between like buttons?"
609
  msgstr "Perché c'è così tanto spazio tra i tasti like?"
610
 
611
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
612
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
613
  msgstr ""
614
  "Perché i pulsanti floating di sharing/like non compaiono nella pagina "
615
  "iniziale?"
616
 
617
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
618
  msgid "How to Place Title and Social Share Icons in the Same Row?"
619
  msgstr ""
620
 
@@ -829,7 +829,7 @@ msgid "Social Commenting Shortcode"
829
  msgstr "Social Commenting Shortcode"
830
 
831
  #: admin/social_commenting.php:386 admin/social_login.php:1962
832
- #: admin/social_sharing.php:1904
833
  msgid ""
834
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
835
  "an online website for the plugin to function properly."
@@ -847,7 +847,7 @@ msgid ""
847
  msgstr ""
848
 
849
  #: admin/social_commenting.php:389 admin/social_login.php:1969
850
- #: admin/social_sharing.php:1919
851
  msgid "Why is my browser blocking some features of the plugin?"
852
  msgstr ""
853
 
@@ -881,7 +881,7 @@ msgid "Advanced Configuration"
881
  msgstr "Configurazione Avanzata"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
- #: super_socializer.php:2347
885
  msgid "GDPR"
886
  msgstr ""
887
 
@@ -1026,7 +1026,7 @@ msgid "Reddit"
1026
  msgstr "Reddit"
1027
 
1028
  #: admin/social_login.php:203
1029
- msgid "Mailru"
1030
  msgstr ""
1031
 
1032
  #: admin/social_login.php:207
@@ -1041,7 +1041,7 @@ msgstr ""
1041
  msgid "Select Social ID provider to enable in Social Login"
1042
  msgstr "Per abilitare Social Login devi selezionare almeno un Social Provider "
1043
 
1044
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1045
  msgid "Facebook App ID"
1046
  msgstr "Facebook App ID"
1047
 
@@ -1063,7 +1063,7 @@ msgstr ""
1063
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
1064
  "indicato"
1065
 
1066
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1067
  #, fuzzy
1068
  msgid "Facebook App Secret"
1069
  msgstr "Facebook App ID"
@@ -2064,7 +2064,7 @@ msgstr ""
2064
  "Se abilitato, gli utenti saranno in grado di aggiornare il proprio social "
2065
  "avatar nella sezione \"Profile photo\" al front-end di BuddyPress."
2066
 
2067
- #: admin/social_login.php:1490 super_socializer.php:1946
2068
  msgid "Email required"
2069
  msgstr "Email Obbligatoria"
2070
 
@@ -2360,33 +2360,23 @@ msgstr "Controllo Principale per abilitare Social Sharing"
2360
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2361
  msgstr ""
2362
 
2363
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2364
- msgid ""
2365
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2366
- "Facebook share count to work"
2367
- msgstr ""
2368
-
2369
- #: admin/social_sharing.php:49
2370
- msgid "Dismiss this notice"
2371
- msgstr "Rimuovi questo annuncio"
2372
-
2373
- #: admin/social_sharing.php:56
2374
  msgid "Theme Selection"
2375
  msgstr "Tema"
2376
 
2377
- #: admin/social_sharing.php:68
2378
  msgid "Troubleshooter"
2379
  msgstr "Risoluzione dei problemi"
2380
 
2381
- #: admin/social_sharing.php:77
2382
  msgid "Standard interface theme"
2383
  msgstr "Tema Interfaccia Standard"
2384
 
2385
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2386
  msgid "Icon Preview"
2387
  msgstr "Anteprima Icona"
2388
 
2389
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2390
  msgid ""
2391
  "Do not forget to save the configuration after making changes by clicking the "
2392
  "save button below"
@@ -2394,57 +2384,57 @@ msgstr ""
2394
  "Dopo aver apportato le modifiche, non dimenticate di salvare la "
2395
  "configurazione, fare clic sul pulsante Salva in basso"
2396
 
2397
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2398
  msgid "Shape"
2399
  msgstr "Forma"
2400
 
2401
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2402
  msgid "Round"
2403
  msgstr "Arrotondata"
2404
 
2405
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2406
  msgid "Square"
2407
  msgstr "Quadrata"
2408
 
2409
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2410
  msgid "Rectangle"
2411
  msgstr "Rettangolare"
2412
 
2413
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2414
  msgid "Shape of the sharing icons"
2415
  msgstr "Forma delle icone"
2416
 
2417
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2418
  msgid "Size (in pixels)"
2419
  msgstr "Dimensioni (in pixel)"
2420
 
2421
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2422
  msgid "Size of the sharing icons"
2423
  msgstr "Dimensione delle icone"
2424
 
2425
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2426
  msgid "Width (in pixels)"
2427
  msgstr "Larghezza (in pixel)"
2428
 
2429
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2430
  msgid "Width of the sharing icons"
2431
  msgstr ""
2432
  "Larghezza \n"
2433
  "icone"
2434
 
2435
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2436
  msgid "Height (in pixels)"
2437
  msgstr "Altezza (in pixel)"
2438
 
2439
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2440
  msgid "Height of the sharing icons"
2441
  msgstr "Altezza delle icone"
2442
 
2443
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2444
  msgid "Border radius (in pixels)"
2445
  msgstr "Raggio Bordo (in pixel)"
2446
 
2447
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2448
  msgid ""
2449
  "Specify a value for rounded corners. More the value, more rounded will the "
2450
  "corners be. Leave empty for sharp corners."
@@ -2452,23 +2442,23 @@ msgstr ""
2452
  "Specifica un valore per gli angoli arrotondati. Più alto sarà il valore, più "
2453
  "arrotondati saranno gli angoli. Lascia vuoto per avere spigoli netti."
2454
 
2455
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2456
  msgid "Logo Color"
2457
  msgstr "Colore Logo"
2458
 
2459
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2460
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2461
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2462
  msgid "Default"
2463
  msgstr "Predefinito"
2464
 
2465
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2466
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2467
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2468
  msgid "On Hover"
2469
  msgstr "Al Passaggio del Mouse"
2470
 
2471
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2472
  msgid ""
2473
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2474
  "empty for default. You can get the hex code of the required color from <a "
@@ -2479,7 +2469,7 @@ msgstr ""
2479
  "ottenere il codice hex da <a href=\"http://www.colorpicker.com/\" target="
2480
  "\"_blank\">questo collegamento</a>"
2481
 
2482
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2483
  msgid ""
2484
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2485
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -2492,89 +2482,89 @@ msgstr ""
2492
  "<a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo "
2493
  "collegamento</a>"
2494
 
2495
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2496
  msgid "Border"
2497
  msgstr "Bordo"
2498
 
2499
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2500
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2501
  msgid "Border Width"
2502
  msgstr "Larghezza"
2503
 
2504
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2505
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2506
  msgid "Border Color"
2507
  msgstr "Colore"
2508
 
2509
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2510
  msgid "Icon border"
2511
  msgstr "Bordo Icona"
2512
 
2513
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2514
  msgid "Counter Position"
2515
  msgstr "Posizione Counter"
2516
 
2517
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2518
  msgid "(applies, if counter enabled)"
2519
  msgstr "(Si applica, se il Counter è abilitato)"
2520
 
2521
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2522
  msgid "Top"
2523
  msgstr "Top"
2524
 
2525
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2526
  msgid "Bottom"
2527
  msgstr "Parte inferiore"
2528
 
2529
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2530
  msgid "Inner Left"
2531
  msgstr "Interno Sinistra"
2532
 
2533
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2534
  msgid "Inner Top"
2535
  msgstr "Interno Superiore"
2536
 
2537
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2538
  msgid "Inner Right"
2539
  msgstr "Interno Destra"
2540
 
2541
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2542
  msgid "Inner Bottom"
2543
  msgstr "Interno Fonfo"
2544
 
2545
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2546
  msgid "Position of share counter"
2547
  msgstr "Posizione dello share counter"
2548
 
2549
- #: admin/social_sharing.php:375
2550
  msgid "Floating interface theme"
2551
  msgstr "Tema Interfaccia Floating"
2552
 
2553
- #: admin/social_sharing.php:679
2554
  msgid "Standard Sharing Interface Options"
2555
  msgstr "Opzioni Interfaccia Sharing Standard"
2556
 
2557
- #: admin/social_sharing.php:684
2558
  msgid "Enable Standard sharing interface"
2559
  msgstr "Abilita interfaccia standard"
2560
 
2561
- #: admin/social_sharing.php:694
2562
  msgid "Master control to enable standard sharing"
2563
  msgstr "Controllo Principale per abilitare l'interfaccia standard"
2564
 
2565
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2566
  msgid "Url to share"
2567
  msgstr "Url da condividere"
2568
 
2569
- #: admin/social_sharing.php:735
2570
  msgid "The text to display above the sharing interface"
2571
  msgstr "Il testo da mostrare sopra l'interfaccia di sharing"
2572
 
2573
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2574
  msgid "Instagram username"
2575
  msgstr "Username Instagram"
2576
 
2577
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2578
  msgid ""
2579
  "Username of the Instagram account you want to redirect users to, on clicking "
2580
  "the icon"
@@ -2582,68 +2572,68 @@ msgstr ""
2582
  "Nome utente dell' account Instagram che si desidera reindirizzare agli "
2583
  "utenti facendo clic sull'icona"
2584
 
2585
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2586
  #, fuzzy
2587
  msgid "HTML ID of container element of comment form"
2588
  msgstr "ID HTML del modulo dei commenti container"
2589
 
2590
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2591
  msgid ""
2592
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2593
  "icon."
2594
  msgstr ""
2595
 
2596
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2597
  msgid "Rearrange icons"
2598
  msgstr "Riorganizza le icone"
2599
 
2600
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2601
  msgid "Drag the icons to rearrange in desired order"
2602
  msgstr "Trascina le icone per riordinare"
2603
 
2604
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2605
  msgid "Select Sharing Services"
2606
  msgstr "Seleziona i Service"
2607
 
2608
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2609
  msgid "Select sharing services to show in social share bar"
2610
  msgstr "Seleziona i servizi di sharing da mostrare"
2611
 
2612
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2613
  #, fuzzy
2614
  msgid "Search social network"
2615
  msgstr "come rete sociale primaria"
2616
 
2617
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2618
  msgid "Horizontal alignment of the sharing interface"
2619
  msgstr "Allineamento orizzontale della interfaccia sharing"
2620
 
2621
- #: admin/social_sharing.php:946
2622
  msgid "Specify position of the sharing interface with respect to the content"
2623
  msgstr "Specifica la posizione dell'interfaccia rispetto al contenuto"
2624
 
2625
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2626
  msgid "Placement"
2627
  msgstr "Collocazione"
2628
 
2629
- #: admin/social_sharing.php:1021
2630
  msgid "Specify the pages where you want to enable Sharing interface"
2631
  msgstr "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing"
2632
 
2633
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2634
  msgid "Show share counts"
2635
  msgstr "Mostra quantità"
2636
 
2637
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
2638
  #, fuzzy
2639
  msgid ""
2640
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2641
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2642
  msgstr ""
2643
  "Share counts sono supportati per Facebook, Twitter, Linkedin, GooglePlus, "
2644
  "Delicious, Buffer, Reddit, Pinterest, Stumbleupon, Odnoklassniki e Vkontakte"
2645
 
2646
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2647
  #, php-format
2648
  msgid ""
2649
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2652,27 +2642,32 @@ msgid ""
2652
  "their website."
2653
  msgstr ""
2654
 
2655
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2656
  msgid "If enabled, share counts are displayed above sharing icons."
2657
  msgstr ""
2658
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato "
2659
  "sopra le icone condivise"
2660
 
2661
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2662
  msgid "Show total shares"
2663
  msgstr "Mostra totale"
2664
 
2665
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2666
  msgid "If enabled, total shares will be displayed with sharing icons"
2667
  msgstr ""
2668
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato con "
2669
  "le icone condivise"
2670
 
2671
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2672
  msgid "Enable 'More' icon"
2673
  msgstr "Abilita icona 'More'"
2674
 
2675
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2676
  msgid ""
2677
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2678
  "which shows additional sharing networks in popup"
@@ -2681,19 +2676,19 @@ msgstr ""
2681
  "icone sharing selezionate e mostrerà in un popup altri sharing networks "
2682
  "disponibili"
2683
 
2684
- #: admin/social_sharing.php:1094
2685
  msgid "Floating Sharing Interface Options"
2686
  msgstr "Opzioni"
2687
 
2688
- #: admin/social_sharing.php:1099
2689
  msgid "Enable Floating sharing interface"
2690
  msgstr "Abilita Interfaccia Floating"
2691
 
2692
- #: admin/social_sharing.php:1109
2693
  msgid "Master control to enable floating sharing widget"
2694
  msgstr "Controllo Principale per abilitare il floating sharing widget"
2695
 
2696
- #: admin/social_sharing.php:1297
2697
  msgid ""
2698
  "Specify the color or hex code (example #cc78e0) for the background of "
2699
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -2704,7 +2699,7 @@ msgstr ""
2704
  "Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href="
2705
  "\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
2706
 
2707
- #: admin/social_sharing.php:1335
2708
  msgid ""
2709
  "Specify a number. Increase in number will shift sharing interface towards "
2710
  "right and decrease will shift it towards left. Number can be negative too."
@@ -2713,7 +2708,7 @@ msgstr ""
2713
  "verso destra e un numero minore lo muove verso sinistra. Il Numero può anche "
2714
  "essere negativo."
2715
 
2716
- #: admin/social_sharing.php:1354
2717
  msgid ""
2718
  "Specify a number. Increase in number will shift sharing interface towards "
2719
  "left and decrease will shift it towards right. Number can be negative too."
@@ -2722,7 +2717,7 @@ msgstr ""
2722
  "verso sinistra e un numero minore lo muove verso destra.Il Numero può anche "
2723
  "essere negativo."
2724
 
2725
- #: admin/social_sharing.php:1372
2726
  msgid ""
2727
  "Specify a number. Increase in number will shift sharing interface towards "
2728
  "bottom and decrease will shift it towards top."
@@ -2730,32 +2725,32 @@ msgstr ""
2730
  "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione "
2731
  "verso il basso e un numero minore lo muove verso l'alto."
2732
 
2733
- #: admin/social_sharing.php:1428
2734
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2735
  msgstr ""
2736
  "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing Verticale"
2737
 
2738
- #: admin/social_sharing.php:1491
2739
  #, fuzzy
2740
  msgid "Hide floating slider"
2741
  msgstr "Nascondi per gli utenti loggati:"
2742
 
2743
- #: admin/social_sharing.php:1501
2744
  #, fuzzy
2745
  msgid "Hides the slider arrow present below the floating share bar"
2746
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
2747
 
2748
- #: admin/social_sharing.php:1508
2749
  msgid "Vertical floating bar responsiveness"
2750
  msgstr "Responsiveness Vertical"
2751
 
2752
- #: admin/social_sharing.php:1511
2753
  #, php-format
2754
  msgid "Display vertical interface only when screen is wider than %s pixels"
2755
  msgstr ""
2756
  "Mostra interfaccia verticale solo quando lo schermo è più ampio di %s pixels"
2757
 
2758
- #: admin/social_sharing.php:1518
2759
  msgid ""
2760
  "Display vertical interface only when screen is wider than the width "
2761
  "specified."
@@ -2763,11 +2758,11 @@ msgstr ""
2763
  "Mostra interfaccia verticale solo quando lo schermo è più ampio rispetto "
2764
  "alla larghezza specificata."
2765
 
2766
- #: admin/social_sharing.php:1525
2767
  msgid "Horizontal floating bar responsiveness"
2768
  msgstr "Responsiveness Horizontal"
2769
 
2770
- #: admin/social_sharing.php:1528
2771
  #, php-format
2772
  msgid ""
2773
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2776,7 +2771,7 @@ msgstr ""
2776
  "Posiziona l'Interfaccia Verticale floating in orizzontale e in fondo ma solo "
2777
  "quando lo schermo è più stretto di %s pixel"
2778
 
2779
- #: admin/social_sharing.php:1535
2780
  msgid ""
2781
  "Stick vertical floating interface horizontally at bottom only when screen is "
2782
  "narrower than the width specified"
@@ -2784,97 +2779,64 @@ msgstr ""
2784
  "Posiziona l' interfaccia floating orizzontale in fondo solo quando lo "
2785
  "schermo è più stretto della larghezza specificata"
2786
 
2787
- #: admin/social_sharing.php:1544
2788
  msgid "Horizontal floating bar position"
2789
  msgstr "Posizione Horizontal floating bar"
2790
 
2791
- #: admin/social_sharing.php:1547
2792
  #, php-format
2793
  msgid "%s pixels from %s"
2794
  msgstr "%s pixels da %s"
2795
 
2796
- #: admin/social_sharing.php:1548
2797
  msgid "Auto-adjust according to screen width (responsive)"
2798
  msgstr ""
2799
 
2800
- #: admin/social_sharing.php:1555
2801
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2802
  msgstr ""
2803
  "Sallineamento dell'interfaccia floating orizzontale. Questo numero può "
2804
  "essere anche negativo."
2805
 
2806
- #: admin/social_sharing.php:1575
2807
- #, fuzzy
2808
- msgid "Facebook Share Count"
2809
- msgstr "Comentarios Facebook"
2810
-
2811
- #: admin/social_sharing.php:1579
2812
- msgid "Note"
2813
- msgstr ""
2814
-
2815
- #: admin/social_sharing.php:1579
2816
- msgid "Required only to track Facebook share count"
2817
- msgstr ""
2818
-
2819
- #: admin/social_sharing.php:1594
2820
- #, fuzzy, php-format
2821
- msgid ""
2822
- "Required for Facebook share count to work. Please follow the documentation "
2823
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2824
- msgstr ""
2825
- "Necessario per far funzionare Facebook Social Login. Per ottenere la "
2826
- "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
2827
- "target=\"_blank\">questo collegamento</a>"
2828
-
2829
- #: admin/social_sharing.php:1611
2830
- #, fuzzy, php-format
2831
- msgid ""
2832
- "Required for Facebook share count to work. Please follow the documentation "
2833
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2834
- msgstr ""
2835
- "Necessario per far funzionare Facebook Social Login. Per ottenere la "
2836
- "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
2837
- "target=\"_blank\">questo collegamento</a>"
2838
-
2839
- #: admin/social_sharing.php:1625
2840
  msgid "Use shortlinks already installed"
2841
  msgstr "Utilizza shortlinks installati"
2842
 
2843
- #: admin/social_sharing.php:1635
2844
  msgid "Uses default short url permalinks without using any additional plugin"
2845
  msgstr ""
2846
  "Utilizza gli short url permalink predefiniti senza l'utilizzo di alcun "
2847
  "plugin aggiuntivo"
2848
 
2849
- #: admin/social_sharing.php:1642
2850
  msgid "Enable bit.ly url shortener for sharing"
2851
  msgstr "Abilita bit.ly url shortener"
2852
 
2853
- #: admin/social_sharing.php:1696
2854
  msgid "Share Count Cache"
2855
  msgstr "Share Count Cache"
2856
 
2857
- #: admin/social_sharing.php:1701
2858
  msgid "Refresh Share Count cache every"
2859
  msgstr "Aggiorna cache ogni"
2860
 
2861
- #: admin/social_sharing.php:1706
2862
  msgid "Second(s)"
2863
  msgstr "Secondo(i)"
2864
 
2865
- #: admin/social_sharing.php:1707
2866
  msgid "Minute(s)"
2867
  msgstr "Minuto(i)"
2868
 
2869
- #: admin/social_sharing.php:1708
2870
  msgid "Hour(s)"
2871
  msgstr "Ora(e)"
2872
 
2873
- #: admin/social_sharing.php:1709
2874
  msgid "Day(s)"
2875
  msgstr "Giorno(i)"
2876
 
2877
- #: admin/social_sharing.php:1717
2878
  #, fuzzy, php-format
2879
  msgid ""
2880
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2884,19 +2846,19 @@ msgstr ""
2884
  "Quando Share Count è attivato, frequenti aggiornamenti della cache possono "
2885
  "rallentare il caricamento delle pagine."
2886
 
2887
- #: admin/social_sharing.php:1724
2888
  msgid "Clear Share Counts Cache"
2889
  msgstr "Cancella Share Counts Cache"
2890
 
2891
- #: admin/social_sharing.php:1728
2892
  msgid "Share Counts cache cleared successfully."
2893
  msgstr "Share Counts cache cancellata correttamente"
2894
 
2895
- #: admin/social_sharing.php:1735
2896
  msgid "Use this to clear cached share counts"
2897
  msgstr "Da utilizzare per cancellare la cache degli share counts"
2898
 
2899
- #: admin/social_sharing.php:1759
2900
  #, php-format
2901
  msgid ""
2902
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2908,15 +2870,15 @@ msgstr ""
2908
  "\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua "
2909
  "predefinita"
2910
 
2911
- #: admin/social_sharing.php:1768
2912
  msgid "Username in sharing"
2913
  msgstr "Username in sharing"
2914
 
2915
- #: admin/social_sharing.php:1773
2916
  msgid "Twitter username (without @)"
2917
  msgstr "Username Twitter (senza @)"
2918
 
2919
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
2920
  msgid ""
2921
  "Provided username will be appended after the content being shared as \"via "
2922
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -2925,28 +2887,28 @@ msgstr ""
2925
  "La username fornita viene aggiunta dopo il contenuto condiviso come \"via "
2926
  "@USERNAME\". Lasciare vuoto se non si desidera alcuna username."
2927
 
2928
- #: admin/social_sharing.php:1791
2929
  msgid "Buffer username (without @)"
2930
  msgstr "Username Buffer (senza @)"
2931
 
2932
- #: admin/social_sharing.php:1810
2933
  msgid "AMP"
2934
  msgstr "AMP"
2935
 
2936
- #: admin/social_sharing.php:1815
2937
  msgid "Enable sharing on AMP pages"
2938
  msgstr "Abilita sharing nelle pagine di AMP"
2939
 
2940
- #: admin/social_sharing.php:1825
2941
  msgid "Enable this option to render sharing icons on AMP pages"
2942
  msgstr ""
2943
  "Attiva questa opzione per rendere la condivisione di icone sulle pagine AMP"
2944
 
2945
- #: admin/social_sharing.php:1882
2946
  msgid "Facebook Sharing Troubleshooter"
2947
  msgstr "Risoluzione dei problemi Facebook Sharing"
2948
 
2949
- #: admin/social_sharing.php:1887
2950
  #, fuzzy
2951
  msgid ""
2952
  "If Facebook sharing is not working fine, click at the following link and "
@@ -2958,7 +2920,7 @@ msgstr ""
2958
  "che ti ha dato problemi (dove quindi la condivisione di Facebook non ha "
2959
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
2960
 
2961
- #: admin/social_sharing.php:1905
2962
  msgid ""
2963
  "Why is sharer not showing the correct image, title and other meta tags "
2964
  "content?"
@@ -2966,16 +2928,25 @@ msgstr ""
2966
  "Perché il contenuto condiviso non mostra l'immagine corretta, il titolo e "
2967
  "altri contenuti meta tag?"
2968
 
2969
- #: admin/social_sharing.php:1906
2970
  #, fuzzy
2971
  msgid "Why is Facebook share count not working?"
2972
  msgstr "Perché gli Share Counts non vengono aggiornati?"
2973
 
2974
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
2975
  msgid "Why is Instagram icon redirecting to Instagram website?"
2976
  msgstr ""
2977
 
2978
- #: admin/social_sharing.php:1910
2979
  msgid ""
2980
  "Instagram icon is there to send website visitors to the Instagram page of "
2981
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2983,39 +2954,39 @@ msgid ""
2983
  "sections."
2984
  msgstr ""
2985
 
2986
- #: admin/social_sharing.php:1913
2987
  #, fuzzy
2988
  msgid "How to customize the url being shared?"
2989
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
2990
 
2991
- #: admin/social_sharing.php:1914
2992
  msgid ""
2993
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2994
  msgstr ""
2995
 
2996
- #: admin/social_sharing.php:1915
2997
  msgid ""
2998
  "It takes some time for their service to track the shares made on Twitter "
2999
  "from your website. If you still feel it's taking too long you can contact "
3000
  "their support directly from their website."
3001
  msgstr ""
3002
 
3003
- #: admin/social_sharing.php:1918
3004
  msgid ""
3005
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
3006
  msgstr ""
3007
 
3008
- #: admin/social_sharing.php:1920
3009
  #, fuzzy
3010
  msgid "Why the color of share icons is not being updated?"
3011
  msgstr "Perché gli Share Counts non vengono aggiornati?"
3012
 
3013
- #: admin/social_sharing.php:1921
3014
  #, fuzzy
3015
  msgid "Why Facebook share counts are not appearing?"
3016
  msgstr "Perché gli Share Counts non vengono aggiornati?"
3017
 
3018
- #: admin/social_sharing.php:1922
3019
  msgid ""
3020
  "How can I show share counts of my website rather than of individual pages/"
3021
  "posts?"
@@ -3023,43 +2994,43 @@ msgstr ""
3023
  "Come posso mostrare conteggi del mio sito web, piuttosto che di singole "
3024
  "pagine/post?"
3025
 
3026
- #: admin/social_sharing.php:1923
3027
  msgid "How can I disable sharing on particular page/post?"
3028
  msgstr ""
3029
  "Come è possibile disattivare la condivisione di una pagina/post in "
3030
  "particolare?"
3031
 
3032
- #: admin/social_sharing.php:1924
3033
  msgid "How can I specify minimum sharing count for sharing networks?"
3034
  msgstr ""
3035
  "Come faccio a specificare il conteggio minimo di sharing per la condivisione "
3036
  "di reti?"
3037
 
3038
- #: admin/social_sharing.php:1925
3039
  msgid "How to share specific page?"
3040
  msgstr "Come posso condividere la pagina specifica?"
3041
 
3042
- #: admin/social_sharing.php:1926
3043
  msgid "How to integrate Google Analytics with sharing?"
3044
  msgstr "Come posso integrare Google Analytics con lo sharing?"
3045
 
3046
- #: admin/social_sharing.php:1927
3047
  msgid "How to customize the look of total share counts?"
3048
  msgstr "Come posso personalizzare l'aspetto del totale degli share counts?"
3049
 
3050
- #: admin/social_sharing.php:1928
3051
  msgid "How to customize the look of individual share counts?"
3052
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
3053
 
3054
- #: admin/social_sharing.php:1929
3055
  msgid "How to show Whatsapp icon only on mobile devices?"
3056
  msgstr "Come posso mostrare l'icona Whatsapp solo sui dispositivi mobili?"
3057
 
3058
- #: admin/social_sharing.php:1930
3059
  msgid "How to hide arrow after floating sharing bar?"
3060
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
3061
 
3062
- #: admin/social_sharing.php:1931
3063
  #, fuzzy
3064
  msgid "Why is share count not getting updated?"
3065
  msgstr "Perché gli Share Counts non vengono aggiornati?"
@@ -3086,72 +3057,72 @@ msgstr ""
3086
  msgid "Settings"
3087
  msgstr "Configurazioni"
3088
 
3089
- #: helper.php:579
3090
  msgid "Account linked successfully"
3091
  msgstr "Account collegato correttamente"
3092
 
3093
- #: helper.php:583
3094
  msgid "Account already exists or linked"
3095
  msgstr "Account esistente o già collegato"
3096
 
3097
- #: helper.php:619 helper.php:621
3098
  #, fuzzy
3099
  msgid "Login with"
3100
- msgstr "Login con il tuo ID Social"
3101
 
3102
- #: helper.php:656 helper.php:662
3103
  msgid "Currently"
3104
  msgstr "Attualmente"
3105
 
3106
- #: helper.php:656 helper.php:662
3107
  msgid "Connected with"
3108
  msgstr "Connesso con"
3109
 
3110
- #: helper.php:656 helper.php:662
3111
  msgid "Remove"
3112
  msgstr "rimuovere"
3113
 
3114
- #: helper.php:733
3115
  msgid "Social Account Linking"
3116
  msgstr "Collegamento Social Account"
3117
 
3118
- #: helper.php:783
3119
  msgid "Disable Standard Social Sharing on this "
3120
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
3121
 
3122
- #: helper.php:788
3123
  msgid "Disable Floating Social Sharing on this "
3124
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
3125
 
3126
- #: helper.php:793
3127
  msgid "Disable Standard like buttons on this "
3128
  msgstr "Disabilita i pulsanti Standard Mi-piace su questo"
3129
 
3130
- #: helper.php:798
3131
  msgid "Disable Floating like buttons on this "
3132
  msgstr "Disabilita i pulsanti Floating Mi-piace su questo"
3133
 
3134
- #: helper.php:803
3135
  msgid "Disable Social Commenting on this "
3136
  msgstr "Disabilita Social Commenting"
3137
 
3138
- #: helper.php:812
3139
  msgid "Standard Sharing Interface"
3140
  msgstr "Interfaccia Sharing Standard"
3141
 
3142
- #: helper.php:818 helper.php:837
3143
  msgid "Starting share count for "
3144
  msgstr "Avvio share count per"
3145
 
3146
- #: helper.php:831
3147
  msgid "Floating Sharing Interface"
3148
  msgstr "Interfaccia Sharing Floating"
3149
 
3150
- #: helper.php:927 super_socializer.php:2363
3151
  msgid "Social Avatar"
3152
  msgstr "Social Avatar"
3153
 
3154
- #: helper.php:930 super_socializer.php:2374
3155
  msgid ""
3156
  "Do not fetch and update social avatar from my profile, next time I Social "
3157
  "Login"
@@ -3159,36 +3130,36 @@ msgstr ""
3159
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
3160
  "social avatar dal mio profilo."
3161
 
3162
- #: helper.php:931 super_socializer.php:2378
3163
  msgid "Update social avatar, next time I Social Login"
3164
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
3165
 
3166
- #: helper.php:934
3167
  msgid "Small Avatar"
3168
  msgstr "Avatar Piccolo"
3169
 
3170
- #: helper.php:938
3171
  msgid "Large Avatar"
3172
  msgstr "Avatar Grande"
3173
 
3174
- #: helper.php:998 super_socializer.php:1924
3175
  msgid "Please verify your email address to login."
3176
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
3177
 
3178
- #: helper.php:1035
3179
  msgid "Click to delete social profile data"
3180
  msgstr ""
3181
 
3182
- #: helper.php:1064
3183
  #, fuzzy
3184
  msgid "Deleting"
3185
  msgstr "Configurazioni"
3186
 
3187
- #: helper.php:1074
3188
  msgid "Deleted"
3189
  msgstr ""
3190
 
3191
- #: helper.php:1076
3192
  msgid "Something bad happened"
3193
  msgstr ""
3194
 
@@ -3245,26 +3216,29 @@ msgid "Archives"
3245
  msgstr "Archivi di categorie"
3246
 
3247
  #: inc/social_sharing.php:225
 
3248
  msgid "More"
3249
  msgstr ""
 
 
3250
 
3251
- #: inc/social_sharing.php:241 super_socializer.php:2034
3252
  msgid "Share"
3253
  msgstr "Share"
3254
 
3255
- #: inc/social_sharing.php:241 super_socializer.php:2034
3256
  msgid "Shares"
3257
  msgstr "Shares"
3258
 
3259
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3260
  msgid "Invalid request"
3261
  msgstr "Domanda non valida"
3262
 
3263
- #: inc/social_sharing.php:949
3264
  msgid "Providers not selected"
3265
  msgstr "Providers non selezionati"
3266
 
3267
- #: inc/social_sharing_networks.php:57
3268
  msgid "Copy Link"
3269
  msgstr ""
3270
 
@@ -3543,7 +3517,11 @@ msgstr ""
3543
  msgid "RSS Feed URL:"
3544
  msgstr ""
3545
 
3546
- #: super_socializer.php:1707
 
 
 
 
3547
  #, fuzzy
3548
  msgid ""
3549
  "cURL is not enabled at your website server. Please contact your website "
@@ -3552,7 +3530,7 @@ msgstr ""
3552
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
3553
  "questo, potrebbe essere necessario contattare l'amministratore del server."
3554
 
3555
- #: super_socializer.php:1735
3556
  #, fuzzy, php-format
3557
  msgid ""
3558
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3562,7 +3540,7 @@ msgstr ""
3562
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
3563
  "3 %s)"
3564
 
3565
- #: super_socializer.php:1738
3566
  #, fuzzy, php-format
3567
  msgid ""
3568
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3572,7 +3550,7 @@ msgstr ""
3572
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
3573
  "3 %s)"
3574
 
3575
- #: super_socializer.php:1741
3576
  msgid ""
3577
  "Make sure cURL is enabled at your website server. You may need to contact "
3578
  "the server administrator of your website to verify this"
@@ -3580,123 +3558,123 @@ msgstr ""
3580
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
3581
  "questo, potrebbe essere necessario contattare l'amministratore del server."
3582
 
3583
- #: super_socializer.php:1902
3584
  msgid "Search"
3585
  msgstr ""
3586
 
3587
- #: super_socializer.php:1924
3588
  msgid "Your email has been verified. Now you can login to your account"
3589
  msgstr ""
3590
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
3591
  "account"
3592
 
3593
- #: super_socializer.php:1928
3594
  msgid "Notification"
3595
  msgstr "Notifiche"
3596
 
3597
- #: super_socializer.php:1949
3598
  msgid "Please check your email inbox to complete the registration."
3599
  msgstr ""
3600
  "Per favore, per completare la registrazione, controlla la tua casella di "
3601
  "posta elettronica."
3602
 
3603
- #: super_socializer.php:2018
3604
  msgid "Leave a reply"
3605
  msgstr "Lascia un commento"
3606
 
3607
- #: super_socializer.php:2034
3608
  #, fuzzy
3609
  msgid "Link copied."
3610
  msgstr "LinkedIn"
3611
 
3612
- #: super_socializer.php:2279
3613
  msgid "Super Socializer - General Options"
3614
  msgstr "Super Socializer - Opzioni"
3615
 
3616
- #: super_socializer.php:2350
3617
  msgid ""
3618
  "I agree to my personal data being stored and used as per Privacy Policy and "
3619
  "Terms and Conditions"
3620
  msgstr ""
3621
 
3622
- #: super_socializer.php:2354
3623
  msgid ""
3624
  "I revoke my consent to store and use my personal data. Kindly delete my "
3625
  "personal data saved in this website."
3626
  msgstr ""
3627
 
3628
- #: super_socializer.php:2366
3629
  msgid "Small Avatar Url"
3630
  msgstr "Url Avatar Piccolo"
3631
 
3632
- #: super_socializer.php:2370
3633
  msgid "Large Avatar Url"
3634
  msgstr "URL Avatar Grande"
3635
 
3636
- #: super_socializer.php:2472
3637
  msgid "Login with your Social ID"
3638
  msgstr "Login con il tuo ID Social"
3639
 
3640
- #: super_socializer.php:2473
3641
  msgid "Email you entered is already registered or invalid"
3642
  msgstr "La email inserita è già registrata o non è valida"
3643
 
3644
- #: super_socializer.php:2480
3645
  msgid "Please enter a valid email address. You might be required to verify it"
3646
  msgstr ""
3647
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
3648
  "una verifica"
3649
 
3650
- #: super_socializer.php:2484 super_socializer.php:3238
3651
  msgid "Link your social account to login to your account at this website"
3652
  msgstr ""
3653
  "Collega il tuo social account per accedere al tuo account su questo sito"
3654
 
3655
- #: super_socializer.php:2741
3656
  msgid "Thanks for installing Super Socializer plugin"
3657
  msgstr ""
3658
 
3659
- #: super_socializer.php:2743
3660
  msgid "Configure the Plugin"
3661
  msgstr ""
3662
 
3663
- #: super_socializer.php:2754
3664
  msgid ""
3665
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3666
  "current version of Super Socializer"
3667
  msgstr ""
3668
 
3669
- #: super_socializer.php:2763
3670
  msgid ""
3671
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3672
  "version of Super Socializer"
3673
  msgstr ""
3674
 
3675
- #: super_socializer.php:2772
3676
  msgid ""
3677
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3678
  "compatibility with the current version of Super Socializer"
3679
  msgstr ""
3680
 
3681
- #: super_socializer.php:2781
3682
  msgid ""
3683
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3684
  "with current version of Super Socializer"
3685
  msgstr ""
3686
 
3687
- #: super_socializer.php:2790
3688
  msgid ""
3689
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3690
  "with current version of Super Socializer"
3691
  msgstr ""
3692
 
3693
- #: super_socializer.php:2801
3694
  #, php-format
3695
  msgid ""
3696
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3697
  msgstr ""
3698
 
3699
- #: super_socializer.php:2810
3700
  #, php-format
3701
  msgid ""
3702
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3704,7 +3682,7 @@ msgid ""
3704
  "Instagram App Secret <a href=\"%s\">here</a>"
3705
  msgstr ""
3706
 
3707
- #: super_socializer.php:2819 super_socializer.php:2828
3708
  #, php-format
3709
  msgid ""
3710
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3713,13 +3691,13 @@ msgid ""
3713
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3714
  msgstr ""
3715
 
3716
- #: super_socializer.php:2844
3717
  #, php-format
3718
  msgid ""
3719
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3720
  msgstr ""
3721
 
3722
- #: super_socializer.php:2868
3723
  #, php-format
3724
  msgid ""
3725
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3727,14 +3705,14 @@ msgid ""
3727
  "target=\"_blank\">here</a>"
3728
  msgstr ""
3729
 
3730
- #: super_socializer.php:2868 super_socializer.php:2893
3731
- #: super_socializer.php:2918 super_socializer.php:2943
3732
- #: super_socializer.php:2976 super_socializer.php:3004
3733
- #: super_socializer.php:3031
3734
  msgid "Okay"
3735
  msgstr ""
3736
 
3737
- #: super_socializer.php:2893
3738
  #, php-format
3739
  msgid ""
3740
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3742,7 +3720,7 @@ msgid ""
3742
  "\">here</a>"
3743
  msgstr ""
3744
 
3745
- #: super_socializer.php:2918
3746
  #, php-format
3747
  msgid ""
3748
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3750,7 +3728,7 @@ msgid ""
3750
  "target=\"_blank\">here</a>"
3751
  msgstr ""
3752
 
3753
- #: super_socializer.php:2943
3754
  #, php-format
3755
  msgid ""
3756
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3758,13 +3736,13 @@ msgid ""
3758
  "target=\"_blank\">here</a>"
3759
  msgstr ""
3760
 
3761
- #: super_socializer.php:2954
3762
  #, php-format
3763
  msgid ""
3764
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3765
  msgstr ""
3766
 
3767
- #: super_socializer.php:2976
3768
  #, php-format
3769
  msgid ""
3770
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3772,7 +3750,7 @@ msgid ""
3772
  "\"%s\" target=\"_blank\">here</a>"
3773
  msgstr ""
3774
 
3775
- #: super_socializer.php:3004
3776
  #, php-format
3777
  msgid ""
3778
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3781,7 +3759,7 @@ msgid ""
3781
  "your website %s with them. No need to copy-paste any code from their website."
3782
  msgstr ""
3783
 
3784
- #: super_socializer.php:3031
3785
  #, php-format
3786
  msgid ""
3787
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3789,7 +3767,7 @@ msgid ""
3789
  "\"%s\" target=\"_blank\">here</a>"
3790
  msgstr ""
3791
 
3792
- #: super_socializer.php:3056
3793
  #, php-format
3794
  msgid ""
3795
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3797,25 +3775,43 @@ msgid ""
3797
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3798
  msgstr ""
3799
 
3800
- #: super_socializer.php:3056 super_socializer.php:3083
3801
  msgid "Dismiss"
3802
  msgstr ""
3803
 
3804
- #: super_socializer.php:3082
3805
- #, php-format
3806
- msgid ""
3807
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3808
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3809
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3810
- "that, clear share counts cache from \"Miscellaneous\" section"
3811
- msgstr ""
3812
-
3813
- #: super_socializer.php:3314
3814
  msgid ""
3815
  "Your browser is blocking some features of this website. Please follow the "
3816
  "instructions at {support_url} to unblock these."
3817
  msgstr ""
3818
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3819
  #, fuzzy
3820
  #~ msgid ""
3821
  #~ "Required for Dropbox Social Login to work. Please follow the "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-17 15:42+0530\n"
6
+ "PO-Revision-Date: 2021-07-17 15:42+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
25
  #, fuzzy, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
32
  "\"_blank\">questa pagina</a>"
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
+ #: super_socializer.php:2291
36
  msgid "General Options"
37
  msgstr "Opzioni Generali"
38
 
81
 
82
  #: admin/general_options.php:89 admin/like_buttons.php:780
83
  #: admin/social_commenting.php:400 admin/social_login.php:1980
84
+ #: admin/social_sharing.php:1912 helper.php:936
85
  msgid "Save Changes"
86
  msgstr "Salva le modifiche"
87
 
88
  #: admin/general_options.php:103 admin/like_buttons.php:790
89
  #: admin/social_commenting.php:410 admin/social_login.php:1990
90
+ #: admin/social_sharing.php:1922
91
  #, fuzzy
92
  msgid "Instagram Shoutout"
93
  msgstr "Instagram"
94
 
95
  #: admin/general_options.php:105 admin/like_buttons.php:792
96
  #: admin/social_commenting.php:412 admin/social_login.php:1992
97
+ #: admin/social_sharing.php:1924
98
  msgid ""
99
  "If you can send (to hello@heateor.com) how this plugin is helping your "
100
  "business, we would be glad to shoutout on Instagram. You can also send any "
202
  "Controllo Principale per i pulsanti Mi-Piace. Dev'essere abilitato per "
203
  "attivare le funzionalitá dei pulsanti Mi-Piace"
204
 
205
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
206
  msgid "Standard Interface"
207
  msgstr "Interfaccia Standard"
208
 
209
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
210
  msgid "Floating Interface"
211
  msgstr "Interfaccia Floating"
212
 
213
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
214
  msgid "Miscellaneous"
215
  msgstr "Miscellanea"
216
 
217
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
218
  #, fuzzy
219
  msgid "3rd Party Integration"
220
  msgstr "XProfile Integration"
221
 
222
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
223
  #: admin/social_login.php:45 admin/social_login.php:1946
224
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
225
+ #: admin/social_sharing.php:1839
226
  msgid "Shortcode & Widget"
227
  msgstr "Shortcode & Widget"
228
 
229
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
230
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
231
  #: admin/social_login.php:46 admin/social_login.php:1960
232
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
233
  msgid "FAQ"
234
  msgstr "FAQ"
235
 
246
  msgstr "Controllo Principale per abilitare i pulsanti orizzontali Mi-Piace"
247
 
248
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
249
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
250
  msgid "Target Url"
251
  msgstr "URL di destinazione"
252
 
253
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
254
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
255
  msgid "Url of the webpage where icons are located (default)"
256
  msgstr "URL della pagina web in cui si trovano le icone (predefinito)"
257
 
258
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
259
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
260
  msgid "Url of the homepage of your website"
261
  msgstr "Url della homepage del tuo sito web"
262
 
263
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
264
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
265
  msgid "Custom url"
266
  msgstr "Url personalizzata"
267
 
271
  "Url per mi-piace/share/tweet e visualizzazione mi-piace/share/conteggi tweet"
272
 
273
  #: admin/like_buttons.php:105 admin/social_login.php:1231
274
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
275
  msgid "Title"
276
  msgstr "Titolo"
277
 
289
  "Seleziona i providers per l'interfaccia. Trascina per riorganizzarli. "
290
 
291
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
292
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
293
  msgid "Horizontal alignment"
294
  msgstr "Allineamento orizzontale"
295
 
296
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
297
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
298
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
299
  #: inc/widget.php:446 inc/widget.php:758
300
  msgid "Left"
301
  msgstr "Sinistra"
302
 
303
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
304
  msgid "Center"
305
  msgstr "centro"
306
 
307
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
308
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
309
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
310
  #: inc/widget.php:447 inc/widget.php:759
311
  msgid "Right"
312
  msgstr "Destra"
315
  msgid "Horizontal alignment of the interface"
316
  msgstr "Allineamento orizzontale dell'interfaccia"
317
 
318
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
319
  msgid "Position with respect to content"
320
  msgstr "Posizione"
321
 
322
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
323
  msgid "Top of the content"
324
  msgstr "Parte superiore del contenuto"
325
 
326
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
327
  msgid "Bottom of the content"
328
  msgstr "Parte inferiore del contenuto"
329
 
337
 
338
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
339
  #: admin/social_login.php:1548 admin/social_login.php:1577
340
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
341
  msgid "Homepage"
342
  msgstr "Homepage"
343
 
344
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
345
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
346
  msgid "Posts"
347
  msgstr "Post"
348
 
349
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
350
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
351
  msgid "Pages"
352
  msgstr "Pagine"
353
 
354
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
355
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
356
  msgid "Excerpts and Posts page"
357
  msgstr "Pagine di Estratti ed Articoli"
358
 
359
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
360
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
361
  msgid "Category Archives"
362
  msgstr "Archivi di categorie"
363
 
364
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
365
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
366
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
367
  msgstr "Arch. Pagine (Categoria., Tag, Autore o Pagine basate su data)"
368
 
369
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
370
  msgid "BuddyPress activity"
371
  msgstr "Attività BuddyPress"
372
 
373
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
374
  msgid "BuddyPress group (only at top of content)"
375
  msgstr "BuddyPress group (solo nella parte superiore del contenuto)"
376
 
377
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
378
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
379
  msgid "BBPress forum"
380
  msgstr "BBPress forum"
381
 
382
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
383
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
384
  msgid "BBPress topic"
385
  msgstr "Argomento BBPress"
386
 
387
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
388
  msgid "BBPress reply"
389
  msgstr "Risposta BBPress"
390
 
391
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
392
  msgid "After individual product at WooCommerce Shop page"
393
  msgstr "Dopo il singolo prodotto nella pagina Shop WooCommerce"
394
 
395
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
396
  msgid "WooCommerce Product Page"
397
  msgstr "WooCommerce Pagina Prodotto"
398
 
399
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
400
  msgid "WooCommerce Thankyou Page"
401
  msgstr "WooCommerce Pagina Thankyou"
402
 
417
  msgstr ""
418
  "Controllo Principale per abilitare il counter widget verticale (floating)"
419
 
420
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
421
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
422
  #: inc/widget.php:460 inc/widget.php:772
423
  msgid "Background Color"
424
  msgstr "Colore Background"
434
  "Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href="
435
  "\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
436
 
437
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
438
  msgid "Left offset"
439
  msgstr "Left offset"
440
 
447
  "verso destra, un numero piú piccolo lo muove verso sinistra. Il Numero può "
448
  "anche essere negativo."
449
 
450
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
451
  msgid "Right offset"
452
  msgstr "Right offset"
453
 
460
  "verso sinistra, un numero piú piccolo lo muove verso destra.Il Numero può "
461
  "anche essere negativo."
462
 
463
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
464
  msgid "Top offset"
465
  msgstr "Top offset"
466
 
472
  "Specifica un numero. Un numero piú grande muove l'interfaccia del Contatore "
473
  "verso il basso, un numero piú piccolo lo muove all'alto."
474
 
475
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
476
  msgid "BuddyPress group"
477
  msgstr "BuddyPress group"
478
 
490
  "Se questa opzione è abilitata, i pulsanti verticali Mi-Piace non appariranno "
491
  "sui dispositivi mobili"
492
 
493
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
494
  msgid "Url shortener"
495
  msgstr "Url shortener"
496
 
510
  msgid "Enable bit.ly url shortener for tweet button"
511
  msgstr "Abilita bit.ly url shortener per pulsante Tweet"
512
 
513
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
514
  msgid "Master control to enable bit.ly url shortening for sharing"
515
  msgstr ""
516
  "Controllo Principale per abilitare bit.ly url shortening per la condivisione"
517
 
518
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
519
  msgid "Bit.ly generic access token"
520
  msgstr ""
521
 
522
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
523
  #, php-format
524
  msgid ""
525
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
528
  "\">link</a>"
529
  msgstr ""
530
 
531
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
532
  msgid "Clear Bitly Cache"
533
  msgstr "Cancella Bitly Cache"
534
 
535
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
536
  msgid "ShortUrl cache cleared successfully."
537
  msgstr "ShortUrl cache cancellata correttamente"
538
 
539
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
540
  msgid ""
541
  "Use this to delete short urls saved in database. Handy, if urls of your "
542
  "website have been changed but short urls are still being generated for old "
547
  "sono ancora in uso per i vecchi URL."
548
 
549
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
550
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
551
+ #: admin/social_sharing.php:1717
552
  msgid "Language"
553
  msgstr "Lingua"
554
 
592
  "La username fornita viene aggiunta dopo il contenuto del Buffer sharing come "
593
  "\"via @USERNAME\". Lasciare vuoto se non si desidera alcuna username."
594
 
595
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
596
  msgid "myCRED"
597
  msgstr ""
598
 
599
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
600
  msgid "Append myCRED referral ID to the urls being shared"
601
  msgstr ""
602
 
604
  msgid "Like Buttons Shortcode & Widget"
605
  msgstr "Pulsanti Shortcode & Widget"
606
 
607
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
608
  msgid "Why is there so much space between like buttons?"
609
  msgstr "Perché c'è così tanto spazio tra i tasti like?"
610
 
611
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
612
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
613
  msgstr ""
614
  "Perché i pulsanti floating di sharing/like non compaiono nella pagina "
615
  "iniziale?"
616
 
617
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
618
  msgid "How to Place Title and Social Share Icons in the Same Row?"
619
  msgstr ""
620
 
829
  msgstr "Social Commenting Shortcode"
830
 
831
  #: admin/social_commenting.php:386 admin/social_login.php:1962
832
+ #: admin/social_sharing.php:1872
833
  msgid ""
834
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
835
  "an online website for the plugin to function properly."
847
  msgstr ""
848
 
849
  #: admin/social_commenting.php:389 admin/social_login.php:1969
850
+ #: admin/social_sharing.php:1887
851
  msgid "Why is my browser blocking some features of the plugin?"
852
  msgstr ""
853
 
881
  msgstr "Configurazione Avanzata"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
+ #: super_socializer.php:2359
885
  msgid "GDPR"
886
  msgstr ""
887
 
1026
  msgstr "Reddit"
1027
 
1028
  #: admin/social_login.php:203
1029
+ msgid "Mail.ru"
1030
  msgstr ""
1031
 
1032
  #: admin/social_login.php:207
1041
  msgid "Select Social ID provider to enable in Social Login"
1042
  msgstr "Per abilitare Social Login devi selezionare almeno un Social Provider "
1043
 
1044
+ #: admin/social_login.php:226
1045
  msgid "Facebook App ID"
1046
  msgstr "Facebook App ID"
1047
 
1063
  "Incolla la seguente URL nelle opzioni <strong>Site URL</ strong> al link "
1064
  "indicato"
1065
 
1066
+ #: admin/social_login.php:247
1067
  #, fuzzy
1068
  msgid "Facebook App Secret"
1069
  msgstr "Facebook App ID"
2064
  "Se abilitato, gli utenti saranno in grado di aggiornare il proprio social "
2065
  "avatar nella sezione \"Profile photo\" al front-end di BuddyPress."
2066
 
2067
+ #: admin/social_login.php:1490 super_socializer.php:1958
2068
  msgid "Email required"
2069
  msgstr "Email Obbligatoria"
2070
 
2360
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2361
  msgstr ""
2362
 
2363
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2364
  msgid "Theme Selection"
2365
  msgstr "Tema"
2366
 
2367
+ #: admin/social_sharing.php:64
2368
  msgid "Troubleshooter"
2369
  msgstr "Risoluzione dei problemi"
2370
 
2371
+ #: admin/social_sharing.php:73
2372
  msgid "Standard interface theme"
2373
  msgstr "Tema Interfaccia Standard"
2374
 
2375
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2376
  msgid "Icon Preview"
2377
  msgstr "Anteprima Icona"
2378
 
2379
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2380
  msgid ""
2381
  "Do not forget to save the configuration after making changes by clicking the "
2382
  "save button below"
2384
  "Dopo aver apportato le modifiche, non dimenticate di salvare la "
2385
  "configurazione, fare clic sul pulsante Salva in basso"
2386
 
2387
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2388
  msgid "Shape"
2389
  msgstr "Forma"
2390
 
2391
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2392
  msgid "Round"
2393
  msgstr "Arrotondata"
2394
 
2395
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2396
  msgid "Square"
2397
  msgstr "Quadrata"
2398
 
2399
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2400
  msgid "Rectangle"
2401
  msgstr "Rettangolare"
2402
 
2403
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2404
  msgid "Shape of the sharing icons"
2405
  msgstr "Forma delle icone"
2406
 
2407
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2408
  msgid "Size (in pixels)"
2409
  msgstr "Dimensioni (in pixel)"
2410
 
2411
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2412
  msgid "Size of the sharing icons"
2413
  msgstr "Dimensione delle icone"
2414
 
2415
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2416
  msgid "Width (in pixels)"
2417
  msgstr "Larghezza (in pixel)"
2418
 
2419
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2420
  msgid "Width of the sharing icons"
2421
  msgstr ""
2422
  "Larghezza \n"
2423
  "icone"
2424
 
2425
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2426
  msgid "Height (in pixels)"
2427
  msgstr "Altezza (in pixel)"
2428
 
2429
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2430
  msgid "Height of the sharing icons"
2431
  msgstr "Altezza delle icone"
2432
 
2433
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2434
  msgid "Border radius (in pixels)"
2435
  msgstr "Raggio Bordo (in pixel)"
2436
 
2437
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2438
  msgid ""
2439
  "Specify a value for rounded corners. More the value, more rounded will the "
2440
  "corners be. Leave empty for sharp corners."
2442
  "Specifica un valore per gli angoli arrotondati. Più alto sarà il valore, più "
2443
  "arrotondati saranno gli angoli. Lascia vuoto per avere spigoli netti."
2444
 
2445
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2446
  msgid "Logo Color"
2447
  msgstr "Colore Logo"
2448
 
2449
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2450
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2451
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2452
  msgid "Default"
2453
  msgstr "Predefinito"
2454
 
2455
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2456
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2457
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2458
  msgid "On Hover"
2459
  msgstr "Al Passaggio del Mouse"
2460
 
2461
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2462
  msgid ""
2463
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2464
  "empty for default. You can get the hex code of the required color from <a "
2469
  "ottenere il codice hex da <a href=\"http://www.colorpicker.com/\" target="
2470
  "\"_blank\">questo collegamento</a>"
2471
 
2472
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2473
  msgid ""
2474
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2475
  "\"transparent\" for transparent background. Leave empty for default. You can "
2482
  "<a href=\"http://www.colorpicker.com/\" target=\"_blank\">questo "
2483
  "collegamento</a>"
2484
 
2485
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2486
  msgid "Border"
2487
  msgstr "Bordo"
2488
 
2489
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2490
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2491
  msgid "Border Width"
2492
  msgstr "Larghezza"
2493
 
2494
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2495
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2496
  msgid "Border Color"
2497
  msgstr "Colore"
2498
 
2499
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2500
  msgid "Icon border"
2501
  msgstr "Bordo Icona"
2502
 
2503
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2504
  msgid "Counter Position"
2505
  msgstr "Posizione Counter"
2506
 
2507
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2508
  msgid "(applies, if counter enabled)"
2509
  msgstr "(Si applica, se il Counter è abilitato)"
2510
 
2511
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2512
  msgid "Top"
2513
  msgstr "Top"
2514
 
2515
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2516
  msgid "Bottom"
2517
  msgstr "Parte inferiore"
2518
 
2519
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2520
  msgid "Inner Left"
2521
  msgstr "Interno Sinistra"
2522
 
2523
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2524
  msgid "Inner Top"
2525
  msgstr "Interno Superiore"
2526
 
2527
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2528
  msgid "Inner Right"
2529
  msgstr "Interno Destra"
2530
 
2531
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2532
  msgid "Inner Bottom"
2533
  msgstr "Interno Fonfo"
2534
 
2535
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2536
  msgid "Position of share counter"
2537
  msgstr "Posizione dello share counter"
2538
 
2539
+ #: admin/social_sharing.php:371
2540
  msgid "Floating interface theme"
2541
  msgstr "Tema Interfaccia Floating"
2542
 
2543
+ #: admin/social_sharing.php:675
2544
  msgid "Standard Sharing Interface Options"
2545
  msgstr "Opzioni Interfaccia Sharing Standard"
2546
 
2547
+ #: admin/social_sharing.php:680
2548
  msgid "Enable Standard sharing interface"
2549
  msgstr "Abilita interfaccia standard"
2550
 
2551
+ #: admin/social_sharing.php:690
2552
  msgid "Master control to enable standard sharing"
2553
  msgstr "Controllo Principale per abilitare l'interfaccia standard"
2554
 
2555
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2556
  msgid "Url to share"
2557
  msgstr "Url da condividere"
2558
 
2559
+ #: admin/social_sharing.php:731
2560
  msgid "The text to display above the sharing interface"
2561
  msgstr "Il testo da mostrare sopra l'interfaccia di sharing"
2562
 
2563
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2564
  msgid "Instagram username"
2565
  msgstr "Username Instagram"
2566
 
2567
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2568
  msgid ""
2569
  "Username of the Instagram account you want to redirect users to, on clicking "
2570
  "the icon"
2572
  "Nome utente dell' account Instagram che si desidera reindirizzare agli "
2573
  "utenti facendo clic sull'icona"
2574
 
2575
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2576
  #, fuzzy
2577
  msgid "HTML ID of container element of comment form"
2578
  msgstr "ID HTML del modulo dei commenti container"
2579
 
2580
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2581
  msgid ""
2582
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2583
  "icon."
2584
  msgstr ""
2585
 
2586
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2587
  msgid "Rearrange icons"
2588
  msgstr "Riorganizza le icone"
2589
 
2590
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2591
  msgid "Drag the icons to rearrange in desired order"
2592
  msgstr "Trascina le icone per riordinare"
2593
 
2594
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2595
  msgid "Select Sharing Services"
2596
  msgstr "Seleziona i Service"
2597
 
2598
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2599
  msgid "Select sharing services to show in social share bar"
2600
  msgstr "Seleziona i servizi di sharing da mostrare"
2601
 
2602
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2603
  #, fuzzy
2604
  msgid "Search social network"
2605
  msgstr "come rete sociale primaria"
2606
 
2607
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2608
  msgid "Horizontal alignment of the sharing interface"
2609
  msgstr "Allineamento orizzontale della interfaccia sharing"
2610
 
2611
+ #: admin/social_sharing.php:942
2612
  msgid "Specify position of the sharing interface with respect to the content"
2613
  msgstr "Specifica la posizione dell'interfaccia rispetto al contenuto"
2614
 
2615
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2616
  msgid "Placement"
2617
  msgstr "Collocazione"
2618
 
2619
+ #: admin/social_sharing.php:1017
2620
  msgid "Specify the pages where you want to enable Sharing interface"
2621
  msgstr "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing"
2622
 
2623
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2624
  msgid "Show share counts"
2625
  msgstr "Mostra quantità"
2626
 
2627
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2628
  #, fuzzy
2629
  msgid ""
2630
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2631
+ "Odnoklassniki, Fintel and Vkontakte"
2632
  msgstr ""
2633
  "Share counts sono supportati per Facebook, Twitter, Linkedin, GooglePlus, "
2634
  "Delicious, Buffer, Reddit, Pinterest, Stumbleupon, Odnoklassniki e Vkontakte"
2635
 
2636
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2637
  #, php-format
2638
  msgid ""
2639
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2642
  "their website."
2643
  msgstr ""
2644
 
2645
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2646
  msgid "If enabled, share counts are displayed above sharing icons."
2647
  msgstr ""
2648
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato "
2649
  "sopra le icone condivise"
2650
 
2651
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2652
+ #: admin/social_sharing.php:1659
2653
+ msgid "Track Social Shares for Every Social Network"
2654
+ msgstr ""
2655
+
2656
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2657
  msgid "Show total shares"
2658
  msgstr "Mostra totale"
2659
 
2660
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2661
  msgid "If enabled, total shares will be displayed with sharing icons"
2662
  msgstr ""
2663
  "Se questa opzione è abilitata, la quantitá di condivisioni sará mostrato con "
2664
  "le icone condivise"
2665
 
2666
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2667
  msgid "Enable 'More' icon"
2668
  msgstr "Abilita icona 'More'"
2669
 
2670
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2671
  msgid ""
2672
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2673
  "which shows additional sharing networks in popup"
2676
  "icone sharing selezionate e mostrerà in un popup altri sharing networks "
2677
  "disponibili"
2678
 
2679
+ #: admin/social_sharing.php:1096
2680
  msgid "Floating Sharing Interface Options"
2681
  msgstr "Opzioni"
2682
 
2683
+ #: admin/social_sharing.php:1101
2684
  msgid "Enable Floating sharing interface"
2685
  msgstr "Abilita Interfaccia Floating"
2686
 
2687
+ #: admin/social_sharing.php:1111
2688
  msgid "Master control to enable floating sharing widget"
2689
  msgstr "Controllo Principale per abilitare il floating sharing widget"
2690
 
2691
+ #: admin/social_sharing.php:1299
2692
  msgid ""
2693
  "Specify the color or hex code (example #cc78e0) for the background of "
2694
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
2699
  "Lascia in bianco per transparente. Puoi ottenere il codice hex da <a href="
2700
  "\"http://www.colorpicker.com/\" target=\"_blank\">questo collegamento</a>"
2701
 
2702
+ #: admin/social_sharing.php:1337
2703
  msgid ""
2704
  "Specify a number. Increase in number will shift sharing interface towards "
2705
  "right and decrease will shift it towards left. Number can be negative too."
2708
  "verso destra e un numero minore lo muove verso sinistra. Il Numero può anche "
2709
  "essere negativo."
2710
 
2711
+ #: admin/social_sharing.php:1356
2712
  msgid ""
2713
  "Specify a number. Increase in number will shift sharing interface towards "
2714
  "left and decrease will shift it towards right. Number can be negative too."
2717
  "verso sinistra e un numero minore lo muove verso destra.Il Numero può anche "
2718
  "essere negativo."
2719
 
2720
+ #: admin/social_sharing.php:1374
2721
  msgid ""
2722
  "Specify a number. Increase in number will shift sharing interface towards "
2723
  "bottom and decrease will shift it towards top."
2725
  "Specifica un numero. Un numero piú alto muove l'interfaccia di condivisione "
2726
  "verso il basso e un numero minore lo muove verso l'alto."
2727
 
2728
+ #: admin/social_sharing.php:1430
2729
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2730
  msgstr ""
2731
  "Specifica le pagine dove vuoi abilitare l'Interfaccia Sharing Verticale"
2732
 
2733
+ #: admin/social_sharing.php:1499
2734
  #, fuzzy
2735
  msgid "Hide floating slider"
2736
  msgstr "Nascondi per gli utenti loggati:"
2737
 
2738
+ #: admin/social_sharing.php:1509
2739
  #, fuzzy
2740
  msgid "Hides the slider arrow present below the floating share bar"
2741
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
2742
 
2743
+ #: admin/social_sharing.php:1516
2744
  msgid "Vertical floating bar responsiveness"
2745
  msgstr "Responsiveness Vertical"
2746
 
2747
+ #: admin/social_sharing.php:1519
2748
  #, php-format
2749
  msgid "Display vertical interface only when screen is wider than %s pixels"
2750
  msgstr ""
2751
  "Mostra interfaccia verticale solo quando lo schermo è più ampio di %s pixels"
2752
 
2753
+ #: admin/social_sharing.php:1526
2754
  msgid ""
2755
  "Display vertical interface only when screen is wider than the width "
2756
  "specified."
2758
  "Mostra interfaccia verticale solo quando lo schermo è più ampio rispetto "
2759
  "alla larghezza specificata."
2760
 
2761
+ #: admin/social_sharing.php:1533
2762
  msgid "Horizontal floating bar responsiveness"
2763
  msgstr "Responsiveness Horizontal"
2764
 
2765
+ #: admin/social_sharing.php:1536
2766
  #, php-format
2767
  msgid ""
2768
  "Stick vertical floating interface horizontally at bottom only when screen is "
2771
  "Posiziona l'Interfaccia Verticale floating in orizzontale e in fondo ma solo "
2772
  "quando lo schermo è più stretto di %s pixel"
2773
 
2774
+ #: admin/social_sharing.php:1543
2775
  msgid ""
2776
  "Stick vertical floating interface horizontally at bottom only when screen is "
2777
  "narrower than the width specified"
2779
  "Posiziona l' interfaccia floating orizzontale in fondo solo quando lo "
2780
  "schermo è più stretto della larghezza specificata"
2781
 
2782
+ #: admin/social_sharing.php:1552
2783
  msgid "Horizontal floating bar position"
2784
  msgstr "Posizione Horizontal floating bar"
2785
 
2786
+ #: admin/social_sharing.php:1555
2787
  #, php-format
2788
  msgid "%s pixels from %s"
2789
  msgstr "%s pixels da %s"
2790
 
2791
+ #: admin/social_sharing.php:1556
2792
  msgid "Auto-adjust according to screen width (responsive)"
2793
  msgstr ""
2794
 
2795
+ #: admin/social_sharing.php:1563
2796
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2797
  msgstr ""
2798
  "Sallineamento dell'interfaccia floating orizzontale. Questo numero può "
2799
  "essere anche negativo."
2800
 
2801
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2802
  msgid "Use shortlinks already installed"
2803
  msgstr "Utilizza shortlinks installati"
2804
 
2805
+ #: admin/social_sharing.php:1598
2806
  msgid "Uses default short url permalinks without using any additional plugin"
2807
  msgstr ""
2808
  "Utilizza gli short url permalink predefiniti senza l'utilizzo di alcun "
2809
  "plugin aggiuntivo"
2810
 
2811
+ #: admin/social_sharing.php:1605
2812
  msgid "Enable bit.ly url shortener for sharing"
2813
  msgstr "Abilita bit.ly url shortener"
2814
 
2815
+ #: admin/social_sharing.php:1664
2816
  msgid "Share Count Cache"
2817
  msgstr "Share Count Cache"
2818
 
2819
+ #: admin/social_sharing.php:1669
2820
  msgid "Refresh Share Count cache every"
2821
  msgstr "Aggiorna cache ogni"
2822
 
2823
+ #: admin/social_sharing.php:1674
2824
  msgid "Second(s)"
2825
  msgstr "Secondo(i)"
2826
 
2827
+ #: admin/social_sharing.php:1675
2828
  msgid "Minute(s)"
2829
  msgstr "Minuto(i)"
2830
 
2831
+ #: admin/social_sharing.php:1676
2832
  msgid "Hour(s)"
2833
  msgstr "Ora(e)"
2834
 
2835
+ #: admin/social_sharing.php:1677
2836
  msgid "Day(s)"
2837
  msgstr "Giorno(i)"
2838
 
2839
+ #: admin/social_sharing.php:1685
2840
  #, fuzzy, php-format
2841
  msgid ""
2842
  "Frequent cache refreshing results in slower loading of pages with share "
2846
  "Quando Share Count è attivato, frequenti aggiornamenti della cache possono "
2847
  "rallentare il caricamento delle pagine."
2848
 
2849
+ #: admin/social_sharing.php:1692
2850
  msgid "Clear Share Counts Cache"
2851
  msgstr "Cancella Share Counts Cache"
2852
 
2853
+ #: admin/social_sharing.php:1696
2854
  msgid "Share Counts cache cleared successfully."
2855
  msgstr "Share Counts cache cancellata correttamente"
2856
 
2857
+ #: admin/social_sharing.php:1703
2858
  msgid "Use this to clear cached share counts"
2859
  msgstr "Da utilizzare per cancellare la cache degli share counts"
2860
 
2861
+ #: admin/social_sharing.php:1727
2862
  #, php-format
2863
  msgid ""
2864
  "Enter the code of the language you want to use for like buttons. You can "
2870
  "\"_blank\">questo collegamento</a>. Lasciare in bianco per usare la lingua "
2871
  "predefinita"
2872
 
2873
+ #: admin/social_sharing.php:1736
2874
  msgid "Username in sharing"
2875
  msgstr "Username in sharing"
2876
 
2877
+ #: admin/social_sharing.php:1741
2878
  msgid "Twitter username (without @)"
2879
  msgstr "Username Twitter (senza @)"
2880
 
2881
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2882
  msgid ""
2883
  "Provided username will be appended after the content being shared as \"via "
2884
  "@USERNAME\". Leave empty if you do not want any username in the content "
2887
  "La username fornita viene aggiunta dopo il contenuto condiviso come \"via "
2888
  "@USERNAME\". Lasciare vuoto se non si desidera alcuna username."
2889
 
2890
+ #: admin/social_sharing.php:1759
2891
  msgid "Buffer username (without @)"
2892
  msgstr "Username Buffer (senza @)"
2893
 
2894
+ #: admin/social_sharing.php:1778
2895
  msgid "AMP"
2896
  msgstr "AMP"
2897
 
2898
+ #: admin/social_sharing.php:1783
2899
  msgid "Enable sharing on AMP pages"
2900
  msgstr "Abilita sharing nelle pagine di AMP"
2901
 
2902
+ #: admin/social_sharing.php:1793
2903
  msgid "Enable this option to render sharing icons on AMP pages"
2904
  msgstr ""
2905
  "Attiva questa opzione per rendere la condivisione di icone sulle pagine AMP"
2906
 
2907
+ #: admin/social_sharing.php:1850
2908
  msgid "Facebook Sharing Troubleshooter"
2909
  msgstr "Risoluzione dei problemi Facebook Sharing"
2910
 
2911
+ #: admin/social_sharing.php:1855
2912
  #, fuzzy
2913
  msgid ""
2914
  "If Facebook sharing is not working fine, click at the following link and "
2920
  "che ti ha dato problemi (dove quindi la condivisione di Facebook non ha "
2921
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
2922
 
2923
+ #: admin/social_sharing.php:1873
2924
  msgid ""
2925
  "Why is sharer not showing the correct image, title and other meta tags "
2926
  "content?"
2928
  "Perché il contenuto condiviso non mostra l'immagine corretta, il titolo e "
2929
  "altri contenuti meta tag?"
2930
 
2931
+ #: admin/social_sharing.php:1874
2932
  #, fuzzy
2933
  msgid "Why is Facebook share count not working?"
2934
  msgstr "Perché gli Share Counts non vengono aggiornati?"
2935
 
2936
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2937
+ #, php-format
2938
+ msgid ""
2939
+ "After the recent changes introduced in the Facebook graph API, it's not "
2940
+ "possible to track Facebook shares using it. <a href='%s' "
2941
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2942
+ "not just for Facebook but for all the social networks"
2943
+ msgstr ""
2944
+
2945
+ #: admin/social_sharing.php:1877
2946
  msgid "Why is Instagram icon redirecting to Instagram website?"
2947
  msgstr ""
2948
 
2949
+ #: admin/social_sharing.php:1878
2950
  msgid ""
2951
  "Instagram icon is there to send website visitors to the Instagram page of "
2952
  "your choice. You can save the desired Instagram handle in \"Instagram "
2954
  "sections."
2955
  msgstr ""
2956
 
2957
+ #: admin/social_sharing.php:1881
2958
  #, fuzzy
2959
  msgid "How to customize the url being shared?"
2960
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
2961
 
2962
+ #: admin/social_sharing.php:1882
2963
  msgid ""
2964
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2965
  msgstr ""
2966
 
2967
+ #: admin/social_sharing.php:1883
2968
  msgid ""
2969
  "It takes some time for their service to track the shares made on Twitter "
2970
  "from your website. If you still feel it's taking too long you can contact "
2971
  "their support directly from their website."
2972
  msgstr ""
2973
 
2974
+ #: admin/social_sharing.php:1886
2975
  msgid ""
2976
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2977
  msgstr ""
2978
 
2979
+ #: admin/social_sharing.php:1888
2980
  #, fuzzy
2981
  msgid "Why the color of share icons is not being updated?"
2982
  msgstr "Perché gli Share Counts non vengono aggiornati?"
2983
 
2984
+ #: admin/social_sharing.php:1889
2985
  #, fuzzy
2986
  msgid "Why Facebook share counts are not appearing?"
2987
  msgstr "Perché gli Share Counts non vengono aggiornati?"
2988
 
2989
+ #: admin/social_sharing.php:1890
2990
  msgid ""
2991
  "How can I show share counts of my website rather than of individual pages/"
2992
  "posts?"
2994
  "Come posso mostrare conteggi del mio sito web, piuttosto che di singole "
2995
  "pagine/post?"
2996
 
2997
+ #: admin/social_sharing.php:1891
2998
  msgid "How can I disable sharing on particular page/post?"
2999
  msgstr ""
3000
  "Come è possibile disattivare la condivisione di una pagina/post in "
3001
  "particolare?"
3002
 
3003
+ #: admin/social_sharing.php:1892
3004
  msgid "How can I specify minimum sharing count for sharing networks?"
3005
  msgstr ""
3006
  "Come faccio a specificare il conteggio minimo di sharing per la condivisione "
3007
  "di reti?"
3008
 
3009
+ #: admin/social_sharing.php:1893
3010
  msgid "How to share specific page?"
3011
  msgstr "Come posso condividere la pagina specifica?"
3012
 
3013
+ #: admin/social_sharing.php:1894
3014
  msgid "How to integrate Google Analytics with sharing?"
3015
  msgstr "Come posso integrare Google Analytics con lo sharing?"
3016
 
3017
+ #: admin/social_sharing.php:1895
3018
  msgid "How to customize the look of total share counts?"
3019
  msgstr "Come posso personalizzare l'aspetto del totale degli share counts?"
3020
 
3021
+ #: admin/social_sharing.php:1896
3022
  msgid "How to customize the look of individual share counts?"
3023
  msgstr "Come posso personalizzare l'aspetto dei singoli share counts?"
3024
 
3025
+ #: admin/social_sharing.php:1897
3026
  msgid "How to show Whatsapp icon only on mobile devices?"
3027
  msgstr "Come posso mostrare l'icona Whatsapp solo sui dispositivi mobili?"
3028
 
3029
+ #: admin/social_sharing.php:1898
3030
  msgid "How to hide arrow after floating sharing bar?"
3031
  msgstr "Come posso nascondere la freccia dopo la floating sharing bar?"
3032
 
3033
+ #: admin/social_sharing.php:1899
3034
  #, fuzzy
3035
  msgid "Why is share count not getting updated?"
3036
  msgstr "Perché gli Share Counts non vengono aggiornati?"
3057
  msgid "Settings"
3058
  msgstr "Configurazioni"
3059
 
3060
+ #: helper.php:572
3061
  msgid "Account linked successfully"
3062
  msgstr "Account collegato correttamente"
3063
 
3064
+ #: helper.php:576
3065
  msgid "Account already exists or linked"
3066
  msgstr "Account esistente o già collegato"
3067
 
3068
+ #: helper.php:612 helper.php:614
3069
  #, fuzzy
3070
  msgid "Login with"
3071
+ msgstr "Super Socializer - Login"
3072
 
3073
+ #: helper.php:649 helper.php:655
3074
  msgid "Currently"
3075
  msgstr "Attualmente"
3076
 
3077
+ #: helper.php:649 helper.php:655
3078
  msgid "Connected with"
3079
  msgstr "Connesso con"
3080
 
3081
+ #: helper.php:649 helper.php:655
3082
  msgid "Remove"
3083
  msgstr "rimuovere"
3084
 
3085
+ #: helper.php:727
3086
  msgid "Social Account Linking"
3087
  msgstr "Collegamento Social Account"
3088
 
3089
+ #: helper.php:777
3090
  msgid "Disable Standard Social Sharing on this "
3091
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
3092
 
3093
+ #: helper.php:782
3094
  msgid "Disable Floating Social Sharing on this "
3095
  msgstr "Disabilita i pulsanti Floating Social Sharing su questo"
3096
 
3097
+ #: helper.php:787
3098
  msgid "Disable Standard like buttons on this "
3099
  msgstr "Disabilita i pulsanti Standard Mi-piace su questo"
3100
 
3101
+ #: helper.php:792
3102
  msgid "Disable Floating like buttons on this "
3103
  msgstr "Disabilita i pulsanti Floating Mi-piace su questo"
3104
 
3105
+ #: helper.php:797
3106
  msgid "Disable Social Commenting on this "
3107
  msgstr "Disabilita Social Commenting"
3108
 
3109
+ #: helper.php:806
3110
  msgid "Standard Sharing Interface"
3111
  msgstr "Interfaccia Sharing Standard"
3112
 
3113
+ #: helper.php:812 helper.php:831
3114
  msgid "Starting share count for "
3115
  msgstr "Avvio share count per"
3116
 
3117
+ #: helper.php:825
3118
  msgid "Floating Sharing Interface"
3119
  msgstr "Interfaccia Sharing Floating"
3120
 
3121
+ #: helper.php:921 super_socializer.php:2375
3122
  msgid "Social Avatar"
3123
  msgstr "Social Avatar"
3124
 
3125
+ #: helper.php:924 super_socializer.php:2386
3126
  msgid ""
3127
  "Do not fetch and update social avatar from my profile, next time I Social "
3128
  "Login"
3130
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
3131
  "social avatar dal mio profilo."
3132
 
3133
+ #: helper.php:925 super_socializer.php:2390
3134
  msgid "Update social avatar, next time I Social Login"
3135
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
3136
 
3137
+ #: helper.php:928
3138
  msgid "Small Avatar"
3139
  msgstr "Avatar Piccolo"
3140
 
3141
+ #: helper.php:932
3142
  msgid "Large Avatar"
3143
  msgstr "Avatar Grande"
3144
 
3145
+ #: helper.php:992 super_socializer.php:1936
3146
  msgid "Please verify your email address to login."
3147
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
3148
 
3149
+ #: helper.php:1029
3150
  msgid "Click to delete social profile data"
3151
  msgstr ""
3152
 
3153
+ #: helper.php:1058
3154
  #, fuzzy
3155
  msgid "Deleting"
3156
  msgstr "Configurazioni"
3157
 
3158
+ #: helper.php:1068
3159
  msgid "Deleted"
3160
  msgstr ""
3161
 
3162
+ #: helper.php:1070
3163
  msgid "Something bad happened"
3164
  msgstr ""
3165
 
3216
  msgstr "Archivi di categorie"
3217
 
3218
  #: inc/social_sharing.php:225
3219
+ #, fuzzy
3220
  msgid "More"
3221
  msgstr ""
3222
+ "Specifica un valore per gli angoli arrotondati. Più alto sarà il valore, più "
3223
+ "arrotondati saranno gli angoli. Lascia vuoto per avere spigoli netti."
3224
 
3225
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3226
  msgid "Share"
3227
  msgstr "Share"
3228
 
3229
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3230
  msgid "Shares"
3231
  msgstr "Shares"
3232
 
3233
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
3234
  msgid "Invalid request"
3235
  msgstr "Domanda non valida"
3236
 
3237
+ #: inc/social_sharing.php:938
3238
  msgid "Providers not selected"
3239
  msgstr "Providers non selezionati"
3240
 
3241
+ #: inc/social_sharing_networks.php:58
3242
  msgid "Copy Link"
3243
  msgstr ""
3244
 
3517
  msgid "RSS Feed URL:"
3518
  msgstr ""
3519
 
3520
+ #: super_socializer.php:429
3521
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3522
+ msgstr ""
3523
+
3524
+ #: super_socializer.php:1718
3525
  #, fuzzy
3526
  msgid ""
3527
  "cURL is not enabled at your website server. Please contact your website "
3530
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
3531
  "questo, potrebbe essere necessario contattare l'amministratore del server."
3532
 
3533
+ #: super_socializer.php:1746
3534
  #, fuzzy, php-format
3535
  msgid ""
3536
  "Enter exactly the following url in <strong>Website</strong> option in your "
3540
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
3541
  "3 %s)"
3542
 
3543
+ #: super_socializer.php:1749
3544
  #, fuzzy, php-format
3545
  msgid ""
3546
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3550
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
3551
  "3 %s)"
3552
 
3553
+ #: super_socializer.php:1752
3554
  msgid ""
3555
  "Make sure cURL is enabled at your website server. You may need to contact "
3556
  "the server administrator of your website to verify this"
3558
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
3559
  "questo, potrebbe essere necessario contattare l'amministratore del server."
3560
 
3561
+ #: super_socializer.php:1914
3562
  msgid "Search"
3563
  msgstr ""
3564
 
3565
+ #: super_socializer.php:1936
3566
  msgid "Your email has been verified. Now you can login to your account"
3567
  msgstr ""
3568
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
3569
  "account"
3570
 
3571
+ #: super_socializer.php:1940
3572
  msgid "Notification"
3573
  msgstr "Notifiche"
3574
 
3575
+ #: super_socializer.php:1961
3576
  msgid "Please check your email inbox to complete the registration."
3577
  msgstr ""
3578
  "Per favore, per completare la registrazione, controlla la tua casella di "
3579
  "posta elettronica."
3580
 
3581
+ #: super_socializer.php:2030
3582
  msgid "Leave a reply"
3583
  msgstr "Lascia un commento"
3584
 
3585
+ #: super_socializer.php:2046
3586
  #, fuzzy
3587
  msgid "Link copied."
3588
  msgstr "LinkedIn"
3589
 
3590
+ #: super_socializer.php:2291
3591
  msgid "Super Socializer - General Options"
3592
  msgstr "Super Socializer - Opzioni"
3593
 
3594
+ #: super_socializer.php:2362
3595
  msgid ""
3596
  "I agree to my personal data being stored and used as per Privacy Policy and "
3597
  "Terms and Conditions"
3598
  msgstr ""
3599
 
3600
+ #: super_socializer.php:2366
3601
  msgid ""
3602
  "I revoke my consent to store and use my personal data. Kindly delete my "
3603
  "personal data saved in this website."
3604
  msgstr ""
3605
 
3606
+ #: super_socializer.php:2378
3607
  msgid "Small Avatar Url"
3608
  msgstr "Url Avatar Piccolo"
3609
 
3610
+ #: super_socializer.php:2382
3611
  msgid "Large Avatar Url"
3612
  msgstr "URL Avatar Grande"
3613
 
3614
+ #: super_socializer.php:2484
3615
  msgid "Login with your Social ID"
3616
  msgstr "Login con il tuo ID Social"
3617
 
3618
+ #: super_socializer.php:2485
3619
  msgid "Email you entered is already registered or invalid"
3620
  msgstr "La email inserita è già registrata o non è valida"
3621
 
3622
+ #: super_socializer.php:2492
3623
  msgid "Please enter a valid email address. You might be required to verify it"
3624
  msgstr ""
3625
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
3626
  "una verifica"
3627
 
3628
+ #: super_socializer.php:2496 super_socializer.php:3250
3629
  msgid "Link your social account to login to your account at this website"
3630
  msgstr ""
3631
  "Collega il tuo social account per accedere al tuo account su questo sito"
3632
 
3633
+ #: super_socializer.php:2753
3634
  msgid "Thanks for installing Super Socializer plugin"
3635
  msgstr ""
3636
 
3637
+ #: super_socializer.php:2755
3638
  msgid "Configure the Plugin"
3639
  msgstr ""
3640
 
3641
+ #: super_socializer.php:2766
3642
  msgid ""
3643
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3644
  "current version of Super Socializer"
3645
  msgstr ""
3646
 
3647
+ #: super_socializer.php:2775
3648
  msgid ""
3649
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3650
  "version of Super Socializer"
3651
  msgstr ""
3652
 
3653
+ #: super_socializer.php:2784
3654
  msgid ""
3655
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3656
  "compatibility with the current version of Super Socializer"
3657
  msgstr ""
3658
 
3659
+ #: super_socializer.php:2793
3660
  msgid ""
3661
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3662
  "with current version of Super Socializer"
3663
  msgstr ""
3664
 
3665
+ #: super_socializer.php:2802
3666
  msgid ""
3667
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3668
  "with current version of Super Socializer"
3669
  msgstr ""
3670
 
3671
+ #: super_socializer.php:2813
3672
  #, php-format
3673
  msgid ""
3674
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3675
  msgstr ""
3676
 
3677
+ #: super_socializer.php:2822
3678
  #, php-format
3679
  msgid ""
3680
  "To continue using Instagram login create a new Instagram App as described <a "
3682
  "Instagram App Secret <a href=\"%s\">here</a>"
3683
  msgstr ""
3684
 
3685
+ #: super_socializer.php:2831 super_socializer.php:2840
3686
  #, php-format
3687
  msgid ""
3688
  "To continue using bitly url shortener, login to your bit.ly account and "
3691
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3692
  msgstr ""
3693
 
3694
+ #: super_socializer.php:2856
3695
  #, php-format
3696
  msgid ""
3697
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3698
  msgstr ""
3699
 
3700
+ #: super_socializer.php:2880
3701
  #, php-format
3702
  msgid ""
3703
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3705
  "target=\"_blank\">here</a>"
3706
  msgstr ""
3707
 
3708
+ #: super_socializer.php:2880 super_socializer.php:2905
3709
+ #: super_socializer.php:2930 super_socializer.php:2955
3710
+ #: super_socializer.php:2988 super_socializer.php:3016
3711
+ #: super_socializer.php:3043
3712
  msgid "Okay"
3713
  msgstr ""
3714
 
3715
+ #: super_socializer.php:2905
3716
  #, php-format
3717
  msgid ""
3718
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3720
  "\">here</a>"
3721
  msgstr ""
3722
 
3723
+ #: super_socializer.php:2930
3724
  #, php-format
3725
  msgid ""
3726
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3728
  "target=\"_blank\">here</a>"
3729
  msgstr ""
3730
 
3731
+ #: super_socializer.php:2955
3732
  #, php-format
3733
  msgid ""
3734
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3736
  "target=\"_blank\">here</a>"
3737
  msgstr ""
3738
 
3739
+ #: super_socializer.php:2966
3740
  #, php-format
3741
  msgid ""
3742
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3743
  msgstr ""
3744
 
3745
+ #: super_socializer.php:2988
3746
  #, php-format
3747
  msgid ""
3748
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3750
  "\"%s\" target=\"_blank\">here</a>"
3751
  msgstr ""
3752
 
3753
+ #: super_socializer.php:3016
3754
  #, php-format
3755
  msgid ""
3756
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3759
  "your website %s with them. No need to copy-paste any code from their website."
3760
  msgstr ""
3761
 
3762
+ #: super_socializer.php:3043
3763
  #, php-format
3764
  msgid ""
3765
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3767
  "\"%s\" target=\"_blank\">here</a>"
3768
  msgstr ""
3769
 
3770
+ #: super_socializer.php:3068
3771
  #, php-format
3772
  msgid ""
3773
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3775
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3776
  msgstr ""
3777
 
3778
+ #: super_socializer.php:3068 super_socializer.php:3095
3779
  msgid "Dismiss"
3780
  msgstr ""
3781
 
3782
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3783
  msgid ""
3784
  "Your browser is blocking some features of this website. Please follow the "
3785
  "instructions at {support_url} to unblock these."
3786
  msgstr ""
3787
 
3788
+ #~ msgid "Dismiss this notice"
3789
+ #~ msgstr "Rimuovi questo annuncio"
3790
+
3791
+ #, fuzzy
3792
+ #~ msgid "Facebook Share Count"
3793
+ #~ msgstr "Comentarios Facebook"
3794
+
3795
+ #, fuzzy
3796
+ #~ msgid ""
3797
+ #~ "Required for Facebook share count to work. Please follow the "
3798
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3799
+ #~ "Facebook App ID"
3800
+ #~ msgstr ""
3801
+ #~ "Necessario per far funzionare Facebook Social Login. Per ottenere la "
3802
+ #~ "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
3803
+ #~ "target=\"_blank\">questo collegamento</a>"
3804
+
3805
+ #, fuzzy
3806
+ #~ msgid ""
3807
+ #~ "Required for Facebook share count to work. Please follow the "
3808
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3809
+ #~ "Facebook App Secret"
3810
+ #~ msgstr ""
3811
+ #~ "Necessario per far funzionare Facebook Social Login. Per ottenere la "
3812
+ #~ "Facebook App ID, consulta la documentazione che trovi su <a href=\"%s\" "
3813
+ #~ "target=\"_blank\">questo collegamento</a>"
3814
+
3815
  #, fuzzy
3816
  #~ msgid ""
3817
  #~ "Required for Dropbox Social Login to work. Please follow the "
languages/super-socializer-pt_BR.mo CHANGED
Binary file
languages/super-socializer-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-15 14:11+0530\n"
6
- "PO-Revision-Date: 2021-06-15 14:11+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
21
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
22
  #: admin/social_login.php:5 admin/social_login.php:1984
23
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
24
  #, fuzzy, php-format
25
  msgid ""
26
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -31,7 +31,7 @@ msgstr ""
31
  "para obter Twitter API Key"
32
 
33
  #: admin/general_options.php:15 admin/social_commenting.php:47
34
- #: super_socializer.php:2279
35
  msgid "General Options"
36
  msgstr "Opções Gerais"
37
 
@@ -81,20 +81,20 @@ msgstr ""
81
 
82
  #: admin/general_options.php:89 admin/like_buttons.php:780
83
  #: admin/social_commenting.php:400 admin/social_login.php:1980
84
- #: admin/social_sharing.php:1944 helper.php:942
85
  msgid "Save Changes"
86
  msgstr "Salvar Alterações"
87
 
88
  #: admin/general_options.php:103 admin/like_buttons.php:790
89
  #: admin/social_commenting.php:410 admin/social_login.php:1990
90
- #: admin/social_sharing.php:1954
91
  #, fuzzy
92
  msgid "Instagram Shoutout"
93
  msgstr "Instagram"
94
 
95
  #: admin/general_options.php:105 admin/like_buttons.php:792
96
  #: admin/social_commenting.php:412 admin/social_login.php:1992
97
- #: admin/social_sharing.php:1956
98
  msgid ""
99
  "If you can send (to hello@heateor.com) how this plugin is helping your "
100
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -204,33 +204,33 @@ msgstr ""
204
  "Controle mestre dos botões like. Ele deve ser selecionado para habilitar a "
205
  "funcionalidade dos botões like"
206
 
207
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
208
  msgid "Standard Interface"
209
  msgstr "Interface Padrão"
210
 
211
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
212
  msgid "Floating Interface"
213
  msgstr "Interface Flutuante"
214
 
215
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
216
  msgid "Miscellaneous"
217
  msgstr "Miscelânia"
218
 
219
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
220
  msgid "3rd Party Integration"
221
  msgstr ""
222
 
223
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
224
  #: admin/social_login.php:45 admin/social_login.php:1946
225
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
226
- #: admin/social_sharing.php:1871
227
  msgid "Shortcode & Widget"
228
  msgstr "Shortcode & Widget"
229
 
230
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
231
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
232
  #: admin/social_login.php:46 admin/social_login.php:1960
233
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
234
  msgid "FAQ"
235
  msgstr "P&R"
236
 
@@ -247,22 +247,22 @@ msgid "Master control to enable horizontal like buttons"
247
  msgstr "Controle mestre para habiliat botões de like horizontal"
248
 
249
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
250
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
251
  msgid "Target Url"
252
  msgstr "Url Destino"
253
 
254
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
255
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
256
  msgid "Url of the webpage where icons are located (default)"
257
  msgstr "Url das webpages onde os ícones estão localizados (padrão)"
258
 
259
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
260
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
261
  msgid "Url of the homepage of your website"
262
  msgstr "Url da homepage do seu website"
263
 
264
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
265
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
266
  msgid "Custom url"
267
  msgstr "Url personalizada"
268
 
@@ -272,7 +272,7 @@ msgstr ""
272
  "Url para like/compartilhar/tweet e exibir contadores like/compartilhar/tweet"
273
 
274
  #: admin/like_buttons.php:105 admin/social_login.php:1231
275
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
276
  msgid "Title"
277
  msgstr "Título"
278
 
@@ -289,24 +289,24 @@ msgid "Select the providers for interface. Drag them to rearrange."
289
  msgstr "Selecione o provedor da interface. Arraste-os para rearranjar."
290
 
291
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
292
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
293
  msgid "Horizontal alignment"
294
  msgstr "Alinhamento horizonal"
295
 
296
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
297
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
298
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308
299
  #: inc/widget.php:446 inc/widget.php:758
300
  msgid "Left"
301
  msgstr "Esquerda"
302
 
303
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
304
  msgid "Center"
305
  msgstr "Centro"
306
 
307
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
308
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
309
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309
310
  #: inc/widget.php:447 inc/widget.php:759
311
  msgid "Right"
312
  msgstr "Direita"
@@ -315,15 +315,15 @@ msgstr "Direita"
315
  msgid "Horizontal alignment of the interface"
316
  msgstr "Alinhamento horizontal da interface"
317
 
318
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
319
  msgid "Position with respect to content"
320
  msgstr "Posição em relação ao conteúdo"
321
 
322
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
323
  msgid "Top of the content"
324
  msgstr "Acima do conteúdo"
325
 
326
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
327
  msgid "Bottom of the content"
328
  msgstr "Abaixo do conteúdo"
329
 
@@ -337,67 +337,67 @@ msgstr "Localização da interface"
337
 
338
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
339
  #: admin/social_login.php:1548 admin/social_login.php:1577
340
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
341
  msgid "Homepage"
342
  msgstr "Homepage"
343
 
344
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
345
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
346
  msgid "Posts"
347
  msgstr "Posts"
348
 
349
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
350
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
351
  msgid "Pages"
352
  msgstr "Páginas"
353
 
354
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
355
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
356
  #, fuzzy
357
  msgid "Excerpts and Posts page"
358
  msgstr "Pedaços (na Homepage)"
359
 
360
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
361
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
362
  msgid "Category Archives"
363
  msgstr "Arquivos de Categorias"
364
 
365
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
366
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
367
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
368
  msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
369
 
370
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
371
  msgid "BuddyPress activity"
372
  msgstr "Atividade BuddyPress"
373
 
374
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
375
  msgid "BuddyPress group (only at top of content)"
376
  msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
377
 
378
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
379
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
380
  msgid "BBPress forum"
381
  msgstr "Forum BBPress"
382
 
383
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
384
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
385
  msgid "BBPress topic"
386
  msgstr "Tópico BBPress"
387
 
388
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
389
  msgid "BBPress reply"
390
  msgstr "Responder BBPress"
391
 
392
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
393
  msgid "After individual product at WooCommerce Shop page"
394
  msgstr "Depois de produtos individuais na página WooCommerce Shop"
395
 
396
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
397
  msgid "WooCommerce Product Page"
398
  msgstr "Página de Produtos WooCommerce"
399
 
400
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
401
  msgid "WooCommerce Thankyou Page"
402
  msgstr "Página de Agradecimento WooCommerce"
403
 
@@ -417,8 +417,8 @@ msgstr "Habilitar botões like flutuantes"
417
  msgid "Master control to enable vertical (floating) counter widget"
418
  msgstr "Controle mestre para habilitar widget contador vertical (flutuante)"
419
 
420
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
421
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287
422
  #: inc/widget.php:460 inc/widget.php:772
423
  msgid "Background Color"
424
  msgstr "Cor de Fundo"
@@ -435,7 +435,7 @@ msgstr ""
435
  "hexadecimal de uma cor desejada <a href=\\\"http://www.colorpicker.com/\\\" "
436
  "target=\\\"_blank\\\">neste link</a>"
437
 
438
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
439
  msgid "Left offset"
440
  msgstr "Ajuste à esquerda"
441
 
@@ -448,7 +448,7 @@ msgstr ""
448
  "direita e decrementos deslocam para a esquerda. Os números podem ser "
449
  "negativos também."
450
 
451
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
452
  msgid "Right offset"
453
  msgstr "Ajuste à direita"
454
 
@@ -461,7 +461,7 @@ msgstr ""
461
  "esquerda e decrementos deslocam para a direita. Os números podem ser "
462
  "negativos também."
463
 
464
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
465
  msgid "Top offset"
466
  msgstr "Ajuste acima"
467
 
@@ -473,7 +473,7 @@ msgstr ""
473
  "Especifique um número. Incrementos no número deslocam a interface para baixo "
474
  "e decrementos deslocam para cima."
475
 
476
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
477
  msgid "BuddyPress group"
478
  msgstr "Grupo BuddyPress"
479
 
@@ -490,7 +490,7 @@ msgid "If enabled, vertical like buttons will not appear on mobile devices"
490
  msgstr ""
491
  "Se habilitado, botões de like vertical não aparecerão em dispositivos móveis"
492
 
493
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
494
  msgid "Url shortener"
495
  msgstr "Encurtador de Url"
496
 
@@ -510,16 +510,16 @@ msgstr ""
510
  msgid "Enable bit.ly url shortener for tweet button"
511
  msgstr "Habilitar bit.ly url shortener para botões tweet"
512
 
513
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
514
  msgid "Master control to enable bit.ly url shortening for sharing"
515
  msgstr ""
516
  "Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
517
 
518
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
519
  msgid "Bit.ly generic access token"
520
  msgstr ""
521
 
522
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
523
  #, php-format
524
  msgid ""
525
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -528,15 +528,15 @@ msgid ""
528
  "\">link</a>"
529
  msgstr ""
530
 
531
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
532
  msgid "Clear Bitly Cache"
533
  msgstr "Limpar o Cache Bitly"
534
 
535
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
536
  msgid "ShortUrl cache cleared successfully."
537
  msgstr "Cache ShortUrl limpo com sucesso."
538
 
539
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
540
  msgid ""
541
  "Use this to delete short urls saved in database. Handy, if urls of your "
542
  "website have been changed but short urls are still being generated for old "
@@ -547,8 +547,8 @@ msgstr ""
547
  "geradas para suas urls antigas."
548
 
549
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
550
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
551
- #: admin/social_sharing.php:1749
552
  msgid "Language"
553
  msgstr "Languagem"
554
 
@@ -592,11 +592,11 @@ msgstr ""
592
  "compartilhamento como \\\"via @USERNAME\\\". Deixe vazio se você não deseja "
593
  "nenhum username."
594
 
595
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
596
  msgid "myCRED"
597
  msgstr ""
598
 
599
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
600
  msgid "Append myCRED referral ID to the urls being shared"
601
  msgstr ""
602
 
@@ -604,15 +604,15 @@ msgstr ""
604
  msgid "Like Buttons Shortcode & Widget"
605
  msgstr "Botões Like Shortcode & Widget"
606
 
607
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
608
  msgid "Why is there so much space between like buttons?"
609
  msgstr ""
610
 
611
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
612
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
613
  msgstr ""
614
 
615
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
616
  msgid "How to Place Title and Social Share Icons in the Same Row?"
617
  msgstr ""
618
 
@@ -827,7 +827,7 @@ msgid "Social Commenting Shortcode"
827
  msgstr "Shortcode em Comentário Social"
828
 
829
  #: admin/social_commenting.php:386 admin/social_login.php:1962
830
- #: admin/social_sharing.php:1904
831
  msgid ""
832
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
833
  "an online website for the plugin to function properly."
@@ -845,7 +845,7 @@ msgid ""
845
  msgstr ""
846
 
847
  #: admin/social_commenting.php:389 admin/social_login.php:1969
848
- #: admin/social_sharing.php:1919
849
  msgid "Why is my browser blocking some features of the plugin?"
850
  msgstr ""
851
 
@@ -881,7 +881,7 @@ msgid "Advanced Configuration"
881
  msgstr "Configuração Básica"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
- #: super_socializer.php:2347
885
  msgid "GDPR"
886
  msgstr ""
887
 
@@ -1026,7 +1026,7 @@ msgid "Reddit"
1026
  msgstr ""
1027
 
1028
  #: admin/social_login.php:203
1029
- msgid "Mailru"
1030
  msgstr ""
1031
 
1032
  #: admin/social_login.php:207
@@ -1042,7 +1042,7 @@ msgid "Select Social ID provider to enable in Social Login"
1042
  msgstr ""
1043
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1044
 
1045
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1046
  msgid "Facebook App ID"
1047
  msgstr "Facebook App ID"
1048
 
@@ -1063,7 +1063,7 @@ msgid ""
1063
  msgstr ""
1064
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
1065
 
1066
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1067
  #, fuzzy
1068
  msgid "Facebook App Secret"
1069
  msgstr "Facebook App ID"
@@ -2058,7 +2058,7 @@ msgstr ""
2058
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2059
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2060
 
2061
- #: admin/social_login.php:1490 super_socializer.php:1946
2062
  msgid "Email required"
2063
  msgstr "Necessário email"
2064
 
@@ -2352,33 +2352,23 @@ msgstr "Controle mestre para habilitar o Compartilhamento Social"
2352
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2353
  msgstr ""
2354
 
2355
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2356
- msgid ""
2357
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2358
- "Facebook share count to work"
2359
- msgstr ""
2360
-
2361
- #: admin/social_sharing.php:49
2362
- msgid "Dismiss this notice"
2363
- msgstr "Dispense este aviso"
2364
-
2365
- #: admin/social_sharing.php:56
2366
  msgid "Theme Selection"
2367
  msgstr "Escolha de Temas"
2368
 
2369
- #: admin/social_sharing.php:68
2370
  msgid "Troubleshooter"
2371
  msgstr "Resolução de Problemas"
2372
 
2373
- #: admin/social_sharing.php:77
2374
  msgid "Standard interface theme"
2375
  msgstr "Tema padrão da interface"
2376
 
2377
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2378
  msgid "Icon Preview"
2379
  msgstr "Visualização do Ícone"
2380
 
2381
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2382
  msgid ""
2383
  "Do not forget to save the configuration after making changes by clicking the "
2384
  "save button below"
@@ -2386,55 +2376,55 @@ msgstr ""
2386
  "Não esqueça de salvar as configurações após realizar as mudanças clicando no "
2387
  "botão de salvar abaixo"
2388
 
2389
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2390
  msgid "Shape"
2391
  msgstr "Forma"
2392
 
2393
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2394
  msgid "Round"
2395
  msgstr "Arredondada"
2396
 
2397
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2398
  msgid "Square"
2399
  msgstr "Quadrada"
2400
 
2401
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2402
  msgid "Rectangle"
2403
  msgstr "Retangular"
2404
 
2405
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2406
  msgid "Shape of the sharing icons"
2407
  msgstr "Forma dos ícones de compartilhameto"
2408
 
2409
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2410
  msgid "Size (in pixels)"
2411
  msgstr "Tamanho (em pixels)"
2412
 
2413
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2414
  msgid "Size of the sharing icons"
2415
  msgstr "Tamanho dos ícones de compartilhameto"
2416
 
2417
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2418
  msgid "Width (in pixels)"
2419
  msgstr "Largura (em pixels)"
2420
 
2421
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2422
  msgid "Width of the sharing icons"
2423
  msgstr "Largura dos ícones de compartilhameto"
2424
 
2425
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2426
  msgid "Height (in pixels)"
2427
  msgstr "Altura (em pixels)"
2428
 
2429
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2430
  msgid "Height of the sharing icons"
2431
  msgstr "Altura dos ícones de compartilhameto"
2432
 
2433
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2434
  msgid "Border radius (in pixels)"
2435
  msgstr "Raio da borda (em pixels)"
2436
 
2437
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2438
  msgid ""
2439
  "Specify a value for rounded corners. More the value, more rounded will the "
2440
  "corners be. Leave empty for sharp corners."
@@ -2442,23 +2432,23 @@ msgstr ""
2442
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
2443
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
2444
 
2445
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2446
  msgid "Logo Color"
2447
  msgstr "Cor do logo"
2448
 
2449
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2450
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2451
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2452
  msgid "Default"
2453
  msgstr "Padrão"
2454
 
2455
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2456
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2457
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2458
  msgid "On Hover"
2459
  msgstr "Em foco"
2460
 
2461
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2462
  msgid ""
2463
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2464
  "empty for default. You can get the hex code of the required color from <a "
@@ -2469,7 +2459,7 @@ msgstr ""
2469
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2470
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2471
 
2472
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2473
  msgid ""
2474
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2475
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -2482,163 +2472,163 @@ msgstr ""
2482
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2483
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2484
 
2485
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2486
  msgid "Border"
2487
  msgstr "Borda"
2488
 
2489
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2490
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2491
  msgid "Border Width"
2492
  msgstr "Largura da Borda"
2493
 
2494
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2495
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2496
  msgid "Border Color"
2497
  msgstr "Cor da Borda"
2498
 
2499
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2500
  msgid "Icon border"
2501
  msgstr "Ícone da borda"
2502
 
2503
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2504
  msgid "Counter Position"
2505
  msgstr "Posição do Contador"
2506
 
2507
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2508
  msgid "(applies, if counter enabled)"
2509
  msgstr "(aplica-se, caso o contador esteja habilitado)"
2510
 
2511
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2512
  msgid "Top"
2513
  msgstr "Acima"
2514
 
2515
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2516
  msgid "Bottom"
2517
  msgstr "Abaixo"
2518
 
2519
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2520
  msgid "Inner Left"
2521
  msgstr "Inner a Esquerda"
2522
 
2523
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2524
  msgid "Inner Top"
2525
  msgstr "Inner Acima"
2526
 
2527
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2528
  msgid "Inner Right"
2529
  msgstr "Inner a Direita"
2530
 
2531
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2532
  msgid "Inner Bottom"
2533
  msgstr "Inner a Baixo"
2534
 
2535
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2536
  msgid "Position of share counter"
2537
  msgstr "Posição do contador de compartilhamento"
2538
 
2539
- #: admin/social_sharing.php:375
2540
  msgid "Floating interface theme"
2541
  msgstr "Tema da inteface flutuante"
2542
 
2543
- #: admin/social_sharing.php:679
2544
  msgid "Standard Sharing Interface Options"
2545
  msgstr "Opções de Interface de Compartilhamento Padrão"
2546
 
2547
- #: admin/social_sharing.php:684
2548
  msgid "Enable Standard sharing interface"
2549
  msgstr "Habilita interface de Compartilhamento padrão"
2550
 
2551
- #: admin/social_sharing.php:694
2552
  msgid "Master control to enable standard sharing"
2553
  msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
2554
 
2555
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2556
  msgid "Url to share"
2557
  msgstr "Url para compartilhar"
2558
 
2559
- #: admin/social_sharing.php:735
2560
  msgid "The text to display above the sharing interface"
2561
  msgstr "Texto a ser exibido acima da interface de compartilhamento"
2562
 
2563
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2564
  #, fuzzy
2565
  msgid "Instagram username"
2566
  msgstr "Instagram"
2567
 
2568
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2569
  msgid ""
2570
  "Username of the Instagram account you want to redirect users to, on clicking "
2571
  "the icon"
2572
  msgstr ""
2573
 
2574
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2575
  #, fuzzy
2576
  msgid "HTML ID of container element of comment form"
2577
  msgstr "HTML ID do comentário do container"
2578
 
2579
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2580
  msgid ""
2581
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2582
  "icon."
2583
  msgstr ""
2584
 
2585
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2586
  msgid "Rearrange icons"
2587
  msgstr "Rearranjar ícones"
2588
 
2589
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2590
  msgid "Drag the icons to rearrange in desired order"
2591
  msgstr "Arraste os ícones para rearanjar na ordem desejada"
2592
 
2593
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2594
  msgid "Select Sharing Services"
2595
  msgstr "Selecione os Serviços Compartilhados"
2596
 
2597
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2598
  msgid "Select sharing services to show in social share bar"
2599
  msgstr ""
2600
  "Selecione os serviços compartilhados para exibir na barra de "
2601
  "compartilhamento social"
2602
 
2603
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2604
  #, fuzzy
2605
  msgid "Search social network"
2606
  msgstr "como rede social primária"
2607
 
2608
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2609
  msgid "Horizontal alignment of the sharing interface"
2610
  msgstr "Alinhamento horizontal da interface de compartilhamento"
2611
 
2612
- #: admin/social_sharing.php:946
2613
  msgid "Specify position of the sharing interface with respect to the content"
2614
  msgstr ""
2615
  "Especifique a posição da interface de compartilhamento em relação ao conteúdo"
2616
 
2617
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2618
  msgid "Placement"
2619
  msgstr "Localização"
2620
 
2621
- #: admin/social_sharing.php:1021
2622
  msgid "Specify the pages where you want to enable Sharing interface"
2623
  msgstr ""
2624
  "Especifique as páginas onde você deseja habilitar a interface de "
2625
  "compartilhamento"
2626
 
2627
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2628
  msgid "Show share counts"
2629
  msgstr "Exibir contadores de compartilhamento"
2630
 
2631
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
2632
  #, fuzzy
2633
  msgid ""
2634
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2635
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2636
  msgstr ""
2637
  "Contadores oficiais de compartilhamento são suportados pelo Facebook, "
2638
  "Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon, "
2639
  "Odnoklassniki e Vkontakte"
2640
 
2641
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2642
  #, php-format
2643
  msgid ""
2644
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2647,27 +2637,32 @@ msgid ""
2647
  "their website."
2648
  msgstr ""
2649
 
2650
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2651
  msgid "If enabled, share counts are displayed above sharing icons."
2652
  msgstr ""
2653
  "Se habilitado, os contadores de compartilhamento são exibidos acima dos "
2654
  "ícones de compartilhamento."
2655
 
2656
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2657
  msgid "Show total shares"
2658
  msgstr "Exibe total de compartilhamentos"
2659
 
2660
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2661
  msgid "If enabled, total shares will be displayed with sharing icons"
2662
  msgstr ""
2663
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
2664
  "de compartilhamento"
2665
 
2666
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2667
  msgid "Enable 'More' icon"
2668
  msgstr "Habilitar 'Mais' ícones"
2669
 
2670
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2671
  msgid ""
2672
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2673
  "which shows additional sharing networks in popup"
@@ -2676,19 +2671,19 @@ msgstr ""
2676
  "de compartilhamento com a exibição adicional das redes sociais "
2677
  "compartilhadas em um popup"
2678
 
2679
- #: admin/social_sharing.php:1094
2680
  msgid "Floating Sharing Interface Options"
2681
  msgstr "Opções da Interface de Compartilhamento Flutuante"
2682
 
2683
- #: admin/social_sharing.php:1099
2684
  msgid "Enable Floating sharing interface"
2685
  msgstr "Habilita interface de compartilhamento flutuante"
2686
 
2687
- #: admin/social_sharing.php:1109
2688
  msgid "Master control to enable floating sharing widget"
2689
  msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
2690
 
2691
- #: admin/social_sharing.php:1297
2692
  msgid ""
2693
  "Specify the color or hex code (example #cc78e0) for the background of "
2694
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -2700,7 +2695,7 @@ msgstr ""
2700
  "Você pode obter o código hexadecimal que você requer por meio deste link <a "
2701
  "href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2702
 
2703
- #: admin/social_sharing.php:1335
2704
  msgid ""
2705
  "Specify a number. Increase in number will shift sharing interface towards "
2706
  "right and decrease will shift it towards left. Number can be negative too."
@@ -2710,7 +2705,7 @@ msgstr ""
2710
  "interface de compartilhamento para a esquerda. Os números podem também ser "
2711
  "negativos."
2712
 
2713
- #: admin/social_sharing.php:1354
2714
  msgid ""
2715
  "Specify a number. Increase in number will shift sharing interface towards "
2716
  "left and decrease will shift it towards right. Number can be negative too."
@@ -2720,7 +2715,7 @@ msgstr ""
2720
  "interface de compartilhamento para a direita. Os números podem também ser "
2721
  "negativos."
2722
 
2723
- #: admin/social_sharing.php:1372
2724
  msgid ""
2725
  "Specify a number. Increase in number will shift sharing interface towards "
2726
  "bottom and decrease will shift it towards top."
@@ -2729,33 +2724,33 @@ msgstr ""
2729
  "compartilhamento para baixo e decrementos no número irão deslocar a "
2730
  "interface de compartilhamento para cima."
2731
 
2732
- #: admin/social_sharing.php:1428
2733
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2734
  msgstr ""
2735
  "Especifique as páginas onde você deseja habilitar a interface de "
2736
  "compartilhamento vertical"
2737
 
2738
- #: admin/social_sharing.php:1491
2739
  #, fuzzy
2740
  msgid "Hide floating slider"
2741
  msgstr "Escondido para usuários autenticados:"
2742
 
2743
- #: admin/social_sharing.php:1501
2744
  #, fuzzy
2745
  msgid "Hides the slider arrow present below the floating share bar"
2746
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
2747
 
2748
- #: admin/social_sharing.php:1508
2749
  msgid "Vertical floating bar responsiveness"
2750
  msgstr "Sensibilidade da barra flutuante vertical"
2751
 
2752
- #: admin/social_sharing.php:1511
2753
  #, php-format
2754
  msgid "Display vertical interface only when screen is wider than %s pixels"
2755
  msgstr ""
2756
  "Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
2757
 
2758
- #: admin/social_sharing.php:1518
2759
  msgid ""
2760
  "Display vertical interface only when screen is wider than the width "
2761
  "specified."
@@ -2763,11 +2758,11 @@ msgstr ""
2763
  "Exibe interface vertical apenas quando a tela é mais larga que a largura "
2764
  "especificada."
2765
 
2766
- #: admin/social_sharing.php:1525
2767
  msgid "Horizontal floating bar responsiveness"
2768
  msgstr "Sensibilidade da barra flutuante horizontal"
2769
 
2770
- #: admin/social_sharing.php:1528
2771
  #, php-format
2772
  msgid ""
2773
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2776,7 +2771,7 @@ msgstr ""
2776
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2777
  "quando a tela é mais estreita do que %s pixels"
2778
 
2779
- #: admin/social_sharing.php:1535
2780
  msgid ""
2781
  "Stick vertical floating interface horizontally at bottom only when screen is "
2782
  "narrower than the width specified"
@@ -2784,96 +2779,63 @@ msgstr ""
2784
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2785
  "quando a tela é mais estreita do que a largura especificada"
2786
 
2787
- #: admin/social_sharing.php:1544
2788
  msgid "Horizontal floating bar position"
2789
  msgstr "Posição da barra de flutuação horizontal"
2790
 
2791
- #: admin/social_sharing.php:1547
2792
  #, php-format
2793
  msgid "%s pixels from %s"
2794
  msgstr "%s pixels de %s"
2795
 
2796
- #: admin/social_sharing.php:1548
2797
  msgid "Auto-adjust according to screen width (responsive)"
2798
  msgstr ""
2799
 
2800
- #: admin/social_sharing.php:1555
2801
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2802
  msgstr ""
2803
  "Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
2804
  "também."
2805
 
2806
- #: admin/social_sharing.php:1575
2807
- #, fuzzy
2808
- msgid "Facebook Share Count"
2809
- msgstr "Solução de problema no compartilhamento com o Facebook"
2810
-
2811
- #: admin/social_sharing.php:1579
2812
- msgid "Note"
2813
- msgstr ""
2814
-
2815
- #: admin/social_sharing.php:1579
2816
- msgid "Required only to track Facebook share count"
2817
- msgstr ""
2818
-
2819
- #: admin/social_sharing.php:1594
2820
- #, fuzzy, php-format
2821
- msgid ""
2822
- "Required for Facebook share count to work. Please follow the documentation "
2823
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2824
- msgstr ""
2825
- "Requerido para a Autenticação Social do Facebook funcionar. Por favor, siga "
2826
- "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
2827
- "para obter o Facebook App ID"
2828
-
2829
- #: admin/social_sharing.php:1611
2830
- #, fuzzy, php-format
2831
- msgid ""
2832
- "Required for Facebook share count to work. Please follow the documentation "
2833
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2834
- msgstr ""
2835
- "Requerido para a Autenticação Social do Facebook funcionar. Por favor, siga "
2836
- "a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link</a> "
2837
- "para obter o Facebook App ID"
2838
-
2839
- #: admin/social_sharing.php:1625
2840
  msgid "Use shortlinks already installed"
2841
  msgstr "Use shortlinks já instalados"
2842
 
2843
- #: admin/social_sharing.php:1635
2844
  msgid "Uses default short url permalinks without using any additional plugin"
2845
  msgstr ""
2846
  "Use a short url padrão de permalinks sem utilizar nenhum plugin adicional"
2847
 
2848
- #: admin/social_sharing.php:1642
2849
  msgid "Enable bit.ly url shortener for sharing"
2850
  msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
2851
 
2852
- #: admin/social_sharing.php:1696
2853
  msgid "Share Count Cache"
2854
  msgstr "Cache de Contador de Compartilhamento"
2855
 
2856
- #: admin/social_sharing.php:1701
2857
  msgid "Refresh Share Count cache every"
2858
  msgstr "Atualizar o contador de compartilhamento a cada"
2859
 
2860
- #: admin/social_sharing.php:1706
2861
  msgid "Second(s)"
2862
  msgstr ""
2863
 
2864
- #: admin/social_sharing.php:1707
2865
  msgid "Minute(s)"
2866
  msgstr ""
2867
 
2868
- #: admin/social_sharing.php:1708
2869
  msgid "Hour(s)"
2870
  msgstr ""
2871
 
2872
- #: admin/social_sharing.php:1709
2873
  msgid "Day(s)"
2874
  msgstr ""
2875
 
2876
- #: admin/social_sharing.php:1717
2877
  #, fuzzy, php-format
2878
  msgid ""
2879
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2883,19 +2845,19 @@ msgstr ""
2883
  "Atualizações frequentes do cache resultam em carregamento mais lento das "
2884
  "páginas com os contadores de compartilhamento habilitados"
2885
 
2886
- #: admin/social_sharing.php:1724
2887
  msgid "Clear Share Counts Cache"
2888
  msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
2889
 
2890
- #: admin/social_sharing.php:1728
2891
  msgid "Share Counts cache cleared successfully."
2892
  msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
2893
 
2894
- #: admin/social_sharing.php:1735
2895
  msgid "Use this to clear cached share counts"
2896
  msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
2897
 
2898
- #: admin/social_sharing.php:1759
2899
  #, php-format
2900
  msgid ""
2901
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2906,15 +2868,15 @@ msgstr ""
2906
  "achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
2907
  "link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
2908
 
2909
- #: admin/social_sharing.php:1768
2910
  msgid "Username in sharing"
2911
  msgstr "Username no compartilhamento"
2912
 
2913
- #: admin/social_sharing.php:1773
2914
  msgid "Twitter username (without @)"
2915
  msgstr "Username do Twitter (sem @)"
2916
 
2917
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
2918
  msgid ""
2919
  "Provided username will be appended after the content being shared as \"via "
2920
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -2924,28 +2886,28 @@ msgstr ""
2924
  "\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
2925
  "no conteúdo sendo compartilhado."
2926
 
2927
- #: admin/social_sharing.php:1791
2928
  msgid "Buffer username (without @)"
2929
  msgstr "Username do Buffer (sem @)"
2930
 
2931
- #: admin/social_sharing.php:1810
2932
  msgid "AMP"
2933
  msgstr ""
2934
 
2935
- #: admin/social_sharing.php:1815
2936
  #, fuzzy
2937
  msgid "Enable sharing on AMP pages"
2938
  msgstr "Habilia a página de autenticação"
2939
 
2940
- #: admin/social_sharing.php:1825
2941
  msgid "Enable this option to render sharing icons on AMP pages"
2942
  msgstr ""
2943
 
2944
- #: admin/social_sharing.php:1882
2945
  msgid "Facebook Sharing Troubleshooter"
2946
  msgstr "Solução de problema no compartilhamento com o Facebook"
2947
 
2948
- #: admin/social_sharing.php:1887
2949
  #, fuzzy
2950
  msgid ""
2951
  "If Facebook sharing is not working fine, click at the following link and "
@@ -2957,22 +2919,31 @@ msgstr ""
2957
  "compartilhamento do Facebook não está funcionando adequadamente) no seu "
2958
  "website:"
2959
 
2960
- #: admin/social_sharing.php:1905
2961
  msgid ""
2962
  "Why is sharer not showing the correct image, title and other meta tags "
2963
  "content?"
2964
  msgstr ""
2965
 
2966
- #: admin/social_sharing.php:1906
2967
  #, fuzzy
2968
  msgid "Why is Facebook share count not working?"
2969
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
2970
 
2971
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
2972
  msgid "Why is Instagram icon redirecting to Instagram website?"
2973
  msgstr ""
2974
 
2975
- #: admin/social_sharing.php:1910
2976
  msgid ""
2977
  "Instagram icon is there to send website visitors to the Instagram page of "
2978
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2980,40 +2951,40 @@ msgid ""
2980
  "sections."
2981
  msgstr ""
2982
 
2983
- #: admin/social_sharing.php:1913
2984
  #, fuzzy
2985
  msgid "How to customize the url being shared?"
2986
  msgstr ""
2987
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
2988
 
2989
- #: admin/social_sharing.php:1914
2990
  msgid ""
2991
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2992
  msgstr ""
2993
 
2994
- #: admin/social_sharing.php:1915
2995
  msgid ""
2996
  "It takes some time for their service to track the shares made on Twitter "
2997
  "from your website. If you still feel it's taking too long you can contact "
2998
  "their support directly from their website."
2999
  msgstr ""
3000
 
3001
- #: admin/social_sharing.php:1918
3002
  msgid ""
3003
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
3004
  msgstr ""
3005
 
3006
- #: admin/social_sharing.php:1920
3007
  #, fuzzy
3008
  msgid "Why the color of share icons is not being updated?"
3009
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
3010
 
3011
- #: admin/social_sharing.php:1921
3012
  #, fuzzy
3013
  msgid "Why Facebook share counts are not appearing?"
3014
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
3015
 
3016
- #: admin/social_sharing.php:1922
3017
  msgid ""
3018
  "How can I show share counts of my website rather than of individual pages/"
3019
  "posts?"
@@ -3021,44 +2992,44 @@ msgstr ""
3021
  "Como posso exibir os contadores de compartilhamento do meu website ao invés "
3022
  "das páginas/posts individuais?"
3023
 
3024
- #: admin/social_sharing.php:1923
3025
  msgid "How can I disable sharing on particular page/post?"
3026
  msgstr ""
3027
  "Como posso desabilitar o compartilhamento em uma página/post em particular?"
3028
 
3029
- #: admin/social_sharing.php:1924
3030
  msgid "How can I specify minimum sharing count for sharing networks?"
3031
  msgstr ""
3032
  "Como posso especificar um contador mínimo de compartilhamento das redes "
3033
  "sociais?"
3034
 
3035
- #: admin/social_sharing.php:1925
3036
  msgid "How to share specific page?"
3037
  msgstr "Como compartilhar página específica?"
3038
 
3039
- #: admin/social_sharing.php:1926
3040
  msgid "How to integrate Google Analytics with sharing?"
3041
  msgstr "Como integrar o Google Analytics com compartilhamento?"
3042
 
3043
- #: admin/social_sharing.php:1927
3044
  msgid "How to customize the look of total share counts?"
3045
  msgstr ""
3046
  "Como personalizar a aparência dos contatores de compartilhamentos totais?"
3047
 
3048
- #: admin/social_sharing.php:1928
3049
  msgid "How to customize the look of individual share counts?"
3050
  msgstr ""
3051
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
3052
 
3053
- #: admin/social_sharing.php:1929
3054
  msgid "How to show Whatsapp icon only on mobile devices?"
3055
  msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
3056
 
3057
- #: admin/social_sharing.php:1930
3058
  msgid "How to hide arrow after floating sharing bar?"
3059
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
3060
 
3061
- #: admin/social_sharing.php:1931
3062
  #, fuzzy
3063
  msgid "Why is share count not getting updated?"
3064
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
@@ -3085,75 +3056,75 @@ msgstr ""
3085
  msgid "Settings"
3086
  msgstr "Configurações"
3087
 
3088
- #: helper.php:579
3089
  msgid "Account linked successfully"
3090
  msgstr "Conta associada com sucesso"
3091
 
3092
- #: helper.php:583
3093
  msgid "Account already exists or linked"
3094
  msgstr "Conta já existente ou já está associada"
3095
 
3096
- #: helper.php:619 helper.php:621
3097
  #, fuzzy
3098
  msgid "Login with"
3099
  msgstr "Ganhe pontos na Autenticação Social"
3100
 
3101
- #: helper.php:656 helper.php:662
3102
  msgid "Currently"
3103
  msgstr "Atualmente"
3104
 
3105
- #: helper.php:656 helper.php:662
3106
  msgid "Connected with"
3107
  msgstr ""
3108
 
3109
- #: helper.php:656 helper.php:662
3110
  msgid "Remove"
3111
  msgstr "Remover"
3112
 
3113
- #: helper.php:733
3114
  #, fuzzy
3115
  msgid "Social Account Linking"
3116
  msgstr ""
3117
  "Habilitar estar opção para exibir a conta social associada a página de "
3118
  "interface de perfil do BuddyPress"
3119
 
3120
- #: helper.php:783
3121
  msgid "Disable Standard Social Sharing on this "
3122
  msgstr "Desabilitar o compatilhamento social padrão neste(a) "
3123
 
3124
- #: helper.php:788
3125
  msgid "Disable Floating Social Sharing on this "
3126
  msgstr "Desabilitar o compartilhamento social flutuante neste(a) "
3127
 
3128
- #: helper.php:793
3129
  msgid "Disable Standard like buttons on this "
3130
  msgstr "Desabilitar o botão de like padrão neste(a) "
3131
 
3132
- #: helper.php:798
3133
  msgid "Disable Floating like buttons on this "
3134
  msgstr "Desabilitar o botão flutuante de like neste(a) "
3135
 
3136
- #: helper.php:803
3137
  msgid "Disable Social Commenting on this "
3138
  msgstr "Desabilitar o Comentário Social neste(a) "
3139
 
3140
- #: helper.php:812
3141
  msgid "Standard Sharing Interface"
3142
  msgstr "Interface Padrão de Compartilhamento"
3143
 
3144
- #: helper.php:818 helper.php:837
3145
  msgid "Starting share count for "
3146
  msgstr "Iniciando contagem compartilhada para "
3147
 
3148
- #: helper.php:831
3149
  msgid "Floating Sharing Interface"
3150
  msgstr "Interface de Compartilhamento Flutuante"
3151
 
3152
- #: helper.php:927 super_socializer.php:2363
3153
  msgid "Social Avatar"
3154
  msgstr "Avatar Social"
3155
 
3156
- #: helper.php:930 super_socializer.php:2374
3157
  msgid ""
3158
  "Do not fetch and update social avatar from my profile, next time I Social "
3159
  "Login"
@@ -3161,36 +3132,36 @@ msgstr ""
3161
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
3162
  "Autenticação Social"
3163
 
3164
- #: helper.php:931 super_socializer.php:2378
3165
  msgid "Update social avatar, next time I Social Login"
3166
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
3167
 
3168
- #: helper.php:934
3169
  msgid "Small Avatar"
3170
  msgstr "Avatar Pequeno"
3171
 
3172
- #: helper.php:938
3173
  msgid "Large Avatar"
3174
  msgstr "Avatar Grande"
3175
 
3176
- #: helper.php:998 super_socializer.php:1924
3177
  msgid "Please verify your email address to login."
3178
  msgstr "Por favor verifique seu endereço de email no login."
3179
 
3180
- #: helper.php:1035
3181
  msgid "Click to delete social profile data"
3182
  msgstr ""
3183
 
3184
- #: helper.php:1064
3185
  #, fuzzy
3186
  msgid "Deleting"
3187
  msgstr "Configurações"
3188
 
3189
- #: helper.php:1074
3190
  msgid "Deleted"
3191
  msgstr ""
3192
 
3193
- #: helper.php:1076
3194
  msgid "Something bad happened"
3195
  msgstr ""
3196
 
@@ -3252,27 +3223,27 @@ msgstr ""
3252
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
3253
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
3254
 
3255
- #: inc/social_sharing.php:241 super_socializer.php:2034
3256
  #, fuzzy
3257
  msgid "Share"
3258
- msgstr "Iniciando contagem compartilhada para "
3259
 
3260
- #: inc/social_sharing.php:241 super_socializer.php:2034
3261
  #, fuzzy
3262
  msgid "Shares"
3263
  msgstr ""
3264
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
3265
  "de compartilhamento"
3266
 
3267
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3268
  msgid "Invalid request"
3269
  msgstr "Requisição inválida"
3270
 
3271
- #: inc/social_sharing.php:949
3272
  msgid "Providers not selected"
3273
  msgstr "Provedor não selecionado"
3274
 
3275
- #: inc/social_sharing_networks.php:57
3276
  msgid "Copy Link"
3277
  msgstr ""
3278
 
@@ -3551,7 +3522,11 @@ msgstr ""
3551
  msgid "RSS Feed URL:"
3552
  msgstr ""
3553
 
3554
- #: super_socializer.php:1707
 
 
 
 
3555
  #, fuzzy
3556
  msgid ""
3557
  "cURL is not enabled at your website server. Please contact your website "
@@ -3560,7 +3535,7 @@ msgstr ""
3560
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
3561
  "que contatar o administrador do servidor do seu website para verificar isso."
3562
 
3563
- #: super_socializer.php:1735
3564
  #, fuzzy, php-format
3565
  msgid ""
3566
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3570,7 +3545,7 @@ msgstr ""
3570
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
3571
  "%s)"
3572
 
3573
- #: super_socializer.php:1738
3574
  #, fuzzy, php-format
3575
  msgid ""
3576
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3580,7 +3555,7 @@ msgstr ""
3580
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
3581
  "%s)"
3582
 
3583
- #: super_socializer.php:1741
3584
  msgid ""
3585
  "Make sure cURL is enabled at your website server. You may need to contact "
3586
  "the server administrator of your website to verify this"
@@ -3588,118 +3563,118 @@ msgstr ""
3588
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
3589
  "que contatar o administrador do servidor do seu website para verificar isso."
3590
 
3591
- #: super_socializer.php:1902
3592
  msgid "Search"
3593
  msgstr ""
3594
 
3595
- #: super_socializer.php:1924
3596
  msgid "Your email has been verified. Now you can login to your account"
3597
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
3598
 
3599
- #: super_socializer.php:1928
3600
  msgid "Notification"
3601
  msgstr "Notificaçao"
3602
 
3603
- #: super_socializer.php:1949
3604
  msgid "Please check your email inbox to complete the registration."
3605
  msgstr "Por favor verifique sua caixa de email para completar o registro."
3606
 
3607
- #: super_socializer.php:2018
3608
  msgid "Leave a reply"
3609
  msgstr "Deixe uma resposta"
3610
 
3611
- #: super_socializer.php:2034
3612
  #, fuzzy
3613
  msgid "Link copied."
3614
  msgstr "LinkedIn"
3615
 
3616
- #: super_socializer.php:2279
3617
  msgid "Super Socializer - General Options"
3618
  msgstr "Super Socializer - Opções Gerais"
3619
 
3620
- #: super_socializer.php:2350
3621
  msgid ""
3622
  "I agree to my personal data being stored and used as per Privacy Policy and "
3623
  "Terms and Conditions"
3624
  msgstr ""
3625
 
3626
- #: super_socializer.php:2354
3627
  msgid ""
3628
  "I revoke my consent to store and use my personal data. Kindly delete my "
3629
  "personal data saved in this website."
3630
  msgstr ""
3631
 
3632
- #: super_socializer.php:2366
3633
  msgid "Small Avatar Url"
3634
  msgstr "Url para Avatar pequeno"
3635
 
3636
- #: super_socializer.php:2370
3637
  msgid "Large Avatar Url"
3638
  msgstr "Url para Avatar Grande"
3639
 
3640
- #: super_socializer.php:2472
3641
  msgid "Login with your Social ID"
3642
  msgstr ""
3643
 
3644
- #: super_socializer.php:2473
3645
  msgid "Email you entered is already registered or invalid"
3646
  msgstr "Email fornecido já está registrado ou é inválido"
3647
 
3648
- #: super_socializer.php:2480
3649
  msgid "Please enter a valid email address. You might be required to verify it"
3650
  msgstr ""
3651
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
3652
  "confirmá-lo"
3653
 
3654
- #: super_socializer.php:2484 super_socializer.php:3238
3655
  msgid "Link your social account to login to your account at this website"
3656
  msgstr "Associe sua conta social ao login de sua conta neste website"
3657
 
3658
- #: super_socializer.php:2741
3659
  msgid "Thanks for installing Super Socializer plugin"
3660
  msgstr ""
3661
 
3662
- #: super_socializer.php:2743
3663
  msgid "Configure the Plugin"
3664
  msgstr ""
3665
 
3666
- #: super_socializer.php:2754
3667
  msgid ""
3668
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3669
  "current version of Super Socializer"
3670
  msgstr ""
3671
 
3672
- #: super_socializer.php:2763
3673
  msgid ""
3674
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3675
  "version of Super Socializer"
3676
  msgstr ""
3677
 
3678
- #: super_socializer.php:2772
3679
  msgid ""
3680
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3681
  "compatibility with the current version of Super Socializer"
3682
  msgstr ""
3683
 
3684
- #: super_socializer.php:2781
3685
  msgid ""
3686
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3687
  "with current version of Super Socializer"
3688
  msgstr ""
3689
 
3690
- #: super_socializer.php:2790
3691
  msgid ""
3692
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3693
  "with current version of Super Socializer"
3694
  msgstr ""
3695
 
3696
- #: super_socializer.php:2801
3697
  #, php-format
3698
  msgid ""
3699
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3700
  msgstr ""
3701
 
3702
- #: super_socializer.php:2810
3703
  #, php-format
3704
  msgid ""
3705
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3707,7 +3682,7 @@ msgid ""
3707
  "Instagram App Secret <a href=\"%s\">here</a>"
3708
  msgstr ""
3709
 
3710
- #: super_socializer.php:2819 super_socializer.php:2828
3711
  #, php-format
3712
  msgid ""
3713
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3716,13 +3691,13 @@ msgid ""
3716
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3717
  msgstr ""
3718
 
3719
- #: super_socializer.php:2844
3720
  #, php-format
3721
  msgid ""
3722
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3723
  msgstr ""
3724
 
3725
- #: super_socializer.php:2868
3726
  #, php-format
3727
  msgid ""
3728
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3730,14 +3705,14 @@ msgid ""
3730
  "target=\"_blank\">here</a>"
3731
  msgstr ""
3732
 
3733
- #: super_socializer.php:2868 super_socializer.php:2893
3734
- #: super_socializer.php:2918 super_socializer.php:2943
3735
- #: super_socializer.php:2976 super_socializer.php:3004
3736
- #: super_socializer.php:3031
3737
  msgid "Okay"
3738
  msgstr ""
3739
 
3740
- #: super_socializer.php:2893
3741
  #, php-format
3742
  msgid ""
3743
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3745,7 +3720,7 @@ msgid ""
3745
  "\">here</a>"
3746
  msgstr ""
3747
 
3748
- #: super_socializer.php:2918
3749
  #, php-format
3750
  msgid ""
3751
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3753,7 +3728,7 @@ msgid ""
3753
  "target=\"_blank\">here</a>"
3754
  msgstr ""
3755
 
3756
- #: super_socializer.php:2943
3757
  #, php-format
3758
  msgid ""
3759
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3761,13 +3736,13 @@ msgid ""
3761
  "target=\"_blank\">here</a>"
3762
  msgstr ""
3763
 
3764
- #: super_socializer.php:2954
3765
  #, php-format
3766
  msgid ""
3767
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3768
  msgstr ""
3769
 
3770
- #: super_socializer.php:2976
3771
  #, php-format
3772
  msgid ""
3773
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3775,7 +3750,7 @@ msgid ""
3775
  "\"%s\" target=\"_blank\">here</a>"
3776
  msgstr ""
3777
 
3778
- #: super_socializer.php:3004
3779
  #, php-format
3780
  msgid ""
3781
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3784,7 +3759,7 @@ msgid ""
3784
  "your website %s with them. No need to copy-paste any code from their website."
3785
  msgstr ""
3786
 
3787
- #: super_socializer.php:3031
3788
  #, php-format
3789
  msgid ""
3790
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3792,7 +3767,7 @@ msgid ""
3792
  "\"%s\" target=\"_blank\">here</a>"
3793
  msgstr ""
3794
 
3795
- #: super_socializer.php:3056
3796
  #, php-format
3797
  msgid ""
3798
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3800,25 +3775,43 @@ msgid ""
3800
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3801
  msgstr ""
3802
 
3803
- #: super_socializer.php:3056 super_socializer.php:3083
3804
  msgid "Dismiss"
3805
  msgstr ""
3806
 
3807
- #: super_socializer.php:3082
3808
- #, php-format
3809
- msgid ""
3810
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3811
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3812
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3813
- "that, clear share counts cache from \"Miscellaneous\" section"
3814
- msgstr ""
3815
-
3816
- #: super_socializer.php:3314
3817
  msgid ""
3818
  "Your browser is blocking some features of this website. Please follow the "
3819
  "instructions at {support_url} to unblock these."
3820
  msgstr ""
3821
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3822
  #, fuzzy
3823
  #~ msgid ""
3824
  #~ "Required for Dropbox Social Login to work. Please follow the "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-17 15:41+0530\n"
6
+ "PO-Revision-Date: 2021-07-17 15:41+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
20
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
21
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
22
  #: admin/social_login.php:5 admin/social_login.php:1984
23
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
24
  #, fuzzy, php-format
25
  msgid ""
26
  "You can appreciate the effort put in this free plugin by rating it <a href="
31
  "para obter Twitter API Key"
32
 
33
  #: admin/general_options.php:15 admin/social_commenting.php:47
34
+ #: super_socializer.php:2291
35
  msgid "General Options"
36
  msgstr "Opções Gerais"
37
 
81
 
82
  #: admin/general_options.php:89 admin/like_buttons.php:780
83
  #: admin/social_commenting.php:400 admin/social_login.php:1980
84
+ #: admin/social_sharing.php:1912 helper.php:936
85
  msgid "Save Changes"
86
  msgstr "Salvar Alterações"
87
 
88
  #: admin/general_options.php:103 admin/like_buttons.php:790
89
  #: admin/social_commenting.php:410 admin/social_login.php:1990
90
+ #: admin/social_sharing.php:1922
91
  #, fuzzy
92
  msgid "Instagram Shoutout"
93
  msgstr "Instagram"
94
 
95
  #: admin/general_options.php:105 admin/like_buttons.php:792
96
  #: admin/social_commenting.php:412 admin/social_login.php:1992
97
+ #: admin/social_sharing.php:1924
98
  msgid ""
99
  "If you can send (to hello@heateor.com) how this plugin is helping your "
100
  "business, we would be glad to shoutout on Instagram. You can also send any "
204
  "Controle mestre dos botões like. Ele deve ser selecionado para habilitar a "
205
  "funcionalidade dos botões like"
206
 
207
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
208
  msgid "Standard Interface"
209
  msgstr "Interface Padrão"
210
 
211
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
212
  msgid "Floating Interface"
213
  msgstr "Interface Flutuante"
214
 
215
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
216
  msgid "Miscellaneous"
217
  msgstr "Miscelânia"
218
 
219
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
220
  msgid "3rd Party Integration"
221
  msgstr ""
222
 
223
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
224
  #: admin/social_login.php:45 admin/social_login.php:1946
225
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
226
+ #: admin/social_sharing.php:1839
227
  msgid "Shortcode & Widget"
228
  msgstr "Shortcode & Widget"
229
 
230
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
231
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
232
  #: admin/social_login.php:46 admin/social_login.php:1960
233
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
234
  msgid "FAQ"
235
  msgstr "P&R"
236
 
247
  msgstr "Controle mestre para habiliat botões de like horizontal"
248
 
249
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
250
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
251
  msgid "Target Url"
252
  msgstr "Url Destino"
253
 
254
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
255
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
256
  msgid "Url of the webpage where icons are located (default)"
257
  msgstr "Url das webpages onde os ícones estão localizados (padrão)"
258
 
259
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
260
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
261
  msgid "Url of the homepage of your website"
262
  msgstr "Url da homepage do seu website"
263
 
264
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
265
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
266
  msgid "Custom url"
267
  msgstr "Url personalizada"
268
 
272
  "Url para like/compartilhar/tweet e exibir contadores like/compartilhar/tweet"
273
 
274
  #: admin/like_buttons.php:105 admin/social_login.php:1231
275
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
276
  msgid "Title"
277
  msgstr "Título"
278
 
289
  msgstr "Selecione o provedor da interface. Arraste-os para rearranjar."
290
 
291
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
292
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
293
  msgid "Horizontal alignment"
294
  msgstr "Alinhamento horizonal"
295
 
296
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
297
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
298
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
299
  #: inc/widget.php:446 inc/widget.php:758
300
  msgid "Left"
301
  msgstr "Esquerda"
302
 
303
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
304
  msgid "Center"
305
  msgstr "Centro"
306
 
307
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
308
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
309
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
310
  #: inc/widget.php:447 inc/widget.php:759
311
  msgid "Right"
312
  msgstr "Direita"
315
  msgid "Horizontal alignment of the interface"
316
  msgstr "Alinhamento horizontal da interface"
317
 
318
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
319
  msgid "Position with respect to content"
320
  msgstr "Posição em relação ao conteúdo"
321
 
322
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
323
  msgid "Top of the content"
324
  msgstr "Acima do conteúdo"
325
 
326
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
327
  msgid "Bottom of the content"
328
  msgstr "Abaixo do conteúdo"
329
 
337
 
338
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
339
  #: admin/social_login.php:1548 admin/social_login.php:1577
340
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
341
  msgid "Homepage"
342
  msgstr "Homepage"
343
 
344
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
345
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
346
  msgid "Posts"
347
  msgstr "Posts"
348
 
349
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
350
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
351
  msgid "Pages"
352
  msgstr "Páginas"
353
 
354
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
355
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
356
  #, fuzzy
357
  msgid "Excerpts and Posts page"
358
  msgstr "Pedaços (na Homepage)"
359
 
360
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
361
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
362
  msgid "Category Archives"
363
  msgstr "Arquivos de Categorias"
364
 
365
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
366
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
367
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
368
  msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
369
 
370
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
371
  msgid "BuddyPress activity"
372
  msgstr "Atividade BuddyPress"
373
 
374
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
375
  msgid "BuddyPress group (only at top of content)"
376
  msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
377
 
378
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
379
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
380
  msgid "BBPress forum"
381
  msgstr "Forum BBPress"
382
 
383
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
384
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
385
  msgid "BBPress topic"
386
  msgstr "Tópico BBPress"
387
 
388
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
389
  msgid "BBPress reply"
390
  msgstr "Responder BBPress"
391
 
392
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
393
  msgid "After individual product at WooCommerce Shop page"
394
  msgstr "Depois de produtos individuais na página WooCommerce Shop"
395
 
396
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
397
  msgid "WooCommerce Product Page"
398
  msgstr "Página de Produtos WooCommerce"
399
 
400
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
401
  msgid "WooCommerce Thankyou Page"
402
  msgstr "Página de Agradecimento WooCommerce"
403
 
417
  msgid "Master control to enable vertical (floating) counter widget"
418
  msgstr "Controle mestre para habilitar widget contador vertical (flutuante)"
419
 
420
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
421
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
422
  #: inc/widget.php:460 inc/widget.php:772
423
  msgid "Background Color"
424
  msgstr "Cor de Fundo"
435
  "hexadecimal de uma cor desejada <a href=\\\"http://www.colorpicker.com/\\\" "
436
  "target=\\\"_blank\\\">neste link</a>"
437
 
438
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
439
  msgid "Left offset"
440
  msgstr "Ajuste à esquerda"
441
 
448
  "direita e decrementos deslocam para a esquerda. Os números podem ser "
449
  "negativos também."
450
 
451
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
452
  msgid "Right offset"
453
  msgstr "Ajuste à direita"
454
 
461
  "esquerda e decrementos deslocam para a direita. Os números podem ser "
462
  "negativos também."
463
 
464
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
465
  msgid "Top offset"
466
  msgstr "Ajuste acima"
467
 
473
  "Especifique um número. Incrementos no número deslocam a interface para baixo "
474
  "e decrementos deslocam para cima."
475
 
476
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
477
  msgid "BuddyPress group"
478
  msgstr "Grupo BuddyPress"
479
 
490
  msgstr ""
491
  "Se habilitado, botões de like vertical não aparecerão em dispositivos móveis"
492
 
493
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
494
  msgid "Url shortener"
495
  msgstr "Encurtador de Url"
496
 
510
  msgid "Enable bit.ly url shortener for tweet button"
511
  msgstr "Habilitar bit.ly url shortener para botões tweet"
512
 
513
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
514
  msgid "Master control to enable bit.ly url shortening for sharing"
515
  msgstr ""
516
  "Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
517
 
518
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
519
  msgid "Bit.ly generic access token"
520
  msgstr ""
521
 
522
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
523
  #, php-format
524
  msgid ""
525
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
528
  "\">link</a>"
529
  msgstr ""
530
 
531
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
532
  msgid "Clear Bitly Cache"
533
  msgstr "Limpar o Cache Bitly"
534
 
535
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
536
  msgid "ShortUrl cache cleared successfully."
537
  msgstr "Cache ShortUrl limpo com sucesso."
538
 
539
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
540
  msgid ""
541
  "Use this to delete short urls saved in database. Handy, if urls of your "
542
  "website have been changed but short urls are still being generated for old "
547
  "geradas para suas urls antigas."
548
 
549
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
550
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
551
+ #: admin/social_sharing.php:1717
552
  msgid "Language"
553
  msgstr "Languagem"
554
 
592
  "compartilhamento como \\\"via @USERNAME\\\". Deixe vazio se você não deseja "
593
  "nenhum username."
594
 
595
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
596
  msgid "myCRED"
597
  msgstr ""
598
 
599
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
600
  msgid "Append myCRED referral ID to the urls being shared"
601
  msgstr ""
602
 
604
  msgid "Like Buttons Shortcode & Widget"
605
  msgstr "Botões Like Shortcode & Widget"
606
 
607
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
608
  msgid "Why is there so much space between like buttons?"
609
  msgstr ""
610
 
611
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
612
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
613
  msgstr ""
614
 
615
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
616
  msgid "How to Place Title and Social Share Icons in the Same Row?"
617
  msgstr ""
618
 
827
  msgstr "Shortcode em Comentário Social"
828
 
829
  #: admin/social_commenting.php:386 admin/social_login.php:1962
830
+ #: admin/social_sharing.php:1872
831
  msgid ""
832
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
833
  "an online website for the plugin to function properly."
845
  msgstr ""
846
 
847
  #: admin/social_commenting.php:389 admin/social_login.php:1969
848
+ #: admin/social_sharing.php:1887
849
  msgid "Why is my browser blocking some features of the plugin?"
850
  msgstr ""
851
 
881
  msgstr "Configuração Básica"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
+ #: super_socializer.php:2359
885
  msgid "GDPR"
886
  msgstr ""
887
 
1026
  msgstr ""
1027
 
1028
  #: admin/social_login.php:203
1029
+ msgid "Mail.ru"
1030
  msgstr ""
1031
 
1032
  #: admin/social_login.php:207
1042
  msgstr ""
1043
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1044
 
1045
+ #: admin/social_login.php:226
1046
  msgid "Facebook App ID"
1047
  msgstr "Facebook App ID"
1048
 
1063
  msgstr ""
1064
  "Cole a seguinte opção de url <strong>Site URL</strong> no link mencionado"
1065
 
1066
+ #: admin/social_login.php:247
1067
  #, fuzzy
1068
  msgid "Facebook App Secret"
1069
  msgstr "Facebook App ID"
2058
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2059
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2060
 
2061
+ #: admin/social_login.php:1490 super_socializer.php:1958
2062
  msgid "Email required"
2063
  msgstr "Necessário email"
2064
 
2352
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2353
  msgstr ""
2354
 
2355
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2356
  msgid "Theme Selection"
2357
  msgstr "Escolha de Temas"
2358
 
2359
+ #: admin/social_sharing.php:64
2360
  msgid "Troubleshooter"
2361
  msgstr "Resolução de Problemas"
2362
 
2363
+ #: admin/social_sharing.php:73
2364
  msgid "Standard interface theme"
2365
  msgstr "Tema padrão da interface"
2366
 
2367
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2368
  msgid "Icon Preview"
2369
  msgstr "Visualização do Ícone"
2370
 
2371
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2372
  msgid ""
2373
  "Do not forget to save the configuration after making changes by clicking the "
2374
  "save button below"
2376
  "Não esqueça de salvar as configurações após realizar as mudanças clicando no "
2377
  "botão de salvar abaixo"
2378
 
2379
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2380
  msgid "Shape"
2381
  msgstr "Forma"
2382
 
2383
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2384
  msgid "Round"
2385
  msgstr "Arredondada"
2386
 
2387
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2388
  msgid "Square"
2389
  msgstr "Quadrada"
2390
 
2391
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2392
  msgid "Rectangle"
2393
  msgstr "Retangular"
2394
 
2395
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2396
  msgid "Shape of the sharing icons"
2397
  msgstr "Forma dos ícones de compartilhameto"
2398
 
2399
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2400
  msgid "Size (in pixels)"
2401
  msgstr "Tamanho (em pixels)"
2402
 
2403
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2404
  msgid "Size of the sharing icons"
2405
  msgstr "Tamanho dos ícones de compartilhameto"
2406
 
2407
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2408
  msgid "Width (in pixels)"
2409
  msgstr "Largura (em pixels)"
2410
 
2411
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2412
  msgid "Width of the sharing icons"
2413
  msgstr "Largura dos ícones de compartilhameto"
2414
 
2415
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2416
  msgid "Height (in pixels)"
2417
  msgstr "Altura (em pixels)"
2418
 
2419
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2420
  msgid "Height of the sharing icons"
2421
  msgstr "Altura dos ícones de compartilhameto"
2422
 
2423
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2424
  msgid "Border radius (in pixels)"
2425
  msgstr "Raio da borda (em pixels)"
2426
 
2427
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2428
  msgid ""
2429
  "Specify a value for rounded corners. More the value, more rounded will the "
2430
  "corners be. Leave empty for sharp corners."
2432
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
2433
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
2434
 
2435
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2436
  msgid "Logo Color"
2437
  msgstr "Cor do logo"
2438
 
2439
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2440
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2441
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2442
  msgid "Default"
2443
  msgstr "Padrão"
2444
 
2445
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2446
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2447
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2448
  msgid "On Hover"
2449
  msgstr "Em foco"
2450
 
2451
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2452
  msgid ""
2453
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2454
  "empty for default. You can get the hex code of the required color from <a "
2459
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2460
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2461
 
2462
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2463
  msgid ""
2464
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2465
  "\"transparent\" for transparent background. Leave empty for default. You can "
2472
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2473
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2474
 
2475
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2476
  msgid "Border"
2477
  msgstr "Borda"
2478
 
2479
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2480
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2481
  msgid "Border Width"
2482
  msgstr "Largura da Borda"
2483
 
2484
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2485
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2486
  msgid "Border Color"
2487
  msgstr "Cor da Borda"
2488
 
2489
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2490
  msgid "Icon border"
2491
  msgstr "Ícone da borda"
2492
 
2493
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2494
  msgid "Counter Position"
2495
  msgstr "Posição do Contador"
2496
 
2497
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2498
  msgid "(applies, if counter enabled)"
2499
  msgstr "(aplica-se, caso o contador esteja habilitado)"
2500
 
2501
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2502
  msgid "Top"
2503
  msgstr "Acima"
2504
 
2505
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2506
  msgid "Bottom"
2507
  msgstr "Abaixo"
2508
 
2509
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2510
  msgid "Inner Left"
2511
  msgstr "Inner a Esquerda"
2512
 
2513
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2514
  msgid "Inner Top"
2515
  msgstr "Inner Acima"
2516
 
2517
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2518
  msgid "Inner Right"
2519
  msgstr "Inner a Direita"
2520
 
2521
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2522
  msgid "Inner Bottom"
2523
  msgstr "Inner a Baixo"
2524
 
2525
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2526
  msgid "Position of share counter"
2527
  msgstr "Posição do contador de compartilhamento"
2528
 
2529
+ #: admin/social_sharing.php:371
2530
  msgid "Floating interface theme"
2531
  msgstr "Tema da inteface flutuante"
2532
 
2533
+ #: admin/social_sharing.php:675
2534
  msgid "Standard Sharing Interface Options"
2535
  msgstr "Opções de Interface de Compartilhamento Padrão"
2536
 
2537
+ #: admin/social_sharing.php:680
2538
  msgid "Enable Standard sharing interface"
2539
  msgstr "Habilita interface de Compartilhamento padrão"
2540
 
2541
+ #: admin/social_sharing.php:690
2542
  msgid "Master control to enable standard sharing"
2543
  msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
2544
 
2545
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2546
  msgid "Url to share"
2547
  msgstr "Url para compartilhar"
2548
 
2549
+ #: admin/social_sharing.php:731
2550
  msgid "The text to display above the sharing interface"
2551
  msgstr "Texto a ser exibido acima da interface de compartilhamento"
2552
 
2553
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2554
  #, fuzzy
2555
  msgid "Instagram username"
2556
  msgstr "Instagram"
2557
 
2558
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2559
  msgid ""
2560
  "Username of the Instagram account you want to redirect users to, on clicking "
2561
  "the icon"
2562
  msgstr ""
2563
 
2564
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2565
  #, fuzzy
2566
  msgid "HTML ID of container element of comment form"
2567
  msgstr "HTML ID do comentário do container"
2568
 
2569
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2570
  msgid ""
2571
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2572
  "icon."
2573
  msgstr ""
2574
 
2575
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2576
  msgid "Rearrange icons"
2577
  msgstr "Rearranjar ícones"
2578
 
2579
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2580
  msgid "Drag the icons to rearrange in desired order"
2581
  msgstr "Arraste os ícones para rearanjar na ordem desejada"
2582
 
2583
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2584
  msgid "Select Sharing Services"
2585
  msgstr "Selecione os Serviços Compartilhados"
2586
 
2587
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2588
  msgid "Select sharing services to show in social share bar"
2589
  msgstr ""
2590
  "Selecione os serviços compartilhados para exibir na barra de "
2591
  "compartilhamento social"
2592
 
2593
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2594
  #, fuzzy
2595
  msgid "Search social network"
2596
  msgstr "como rede social primária"
2597
 
2598
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2599
  msgid "Horizontal alignment of the sharing interface"
2600
  msgstr "Alinhamento horizontal da interface de compartilhamento"
2601
 
2602
+ #: admin/social_sharing.php:942
2603
  msgid "Specify position of the sharing interface with respect to the content"
2604
  msgstr ""
2605
  "Especifique a posição da interface de compartilhamento em relação ao conteúdo"
2606
 
2607
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2608
  msgid "Placement"
2609
  msgstr "Localização"
2610
 
2611
+ #: admin/social_sharing.php:1017
2612
  msgid "Specify the pages where you want to enable Sharing interface"
2613
  msgstr ""
2614
  "Especifique as páginas onde você deseja habilitar a interface de "
2615
  "compartilhamento"
2616
 
2617
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2618
  msgid "Show share counts"
2619
  msgstr "Exibir contadores de compartilhamento"
2620
 
2621
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2622
  #, fuzzy
2623
  msgid ""
2624
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2625
+ "Odnoklassniki, Fintel and Vkontakte"
2626
  msgstr ""
2627
  "Contadores oficiais de compartilhamento são suportados pelo Facebook, "
2628
  "Linkedin, GooglePlus, Delicious, Buffer, Reddit, Pinterest, Stumbleupon, "
2629
  "Odnoklassniki e Vkontakte"
2630
 
2631
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2632
  #, php-format
2633
  msgid ""
2634
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2637
  "their website."
2638
  msgstr ""
2639
 
2640
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2641
  msgid "If enabled, share counts are displayed above sharing icons."
2642
  msgstr ""
2643
  "Se habilitado, os contadores de compartilhamento são exibidos acima dos "
2644
  "ícones de compartilhamento."
2645
 
2646
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2647
+ #: admin/social_sharing.php:1659
2648
+ msgid "Track Social Shares for Every Social Network"
2649
+ msgstr ""
2650
+
2651
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2652
  msgid "Show total shares"
2653
  msgstr "Exibe total de compartilhamentos"
2654
 
2655
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2656
  msgid "If enabled, total shares will be displayed with sharing icons"
2657
  msgstr ""
2658
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
2659
  "de compartilhamento"
2660
 
2661
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2662
  msgid "Enable 'More' icon"
2663
  msgstr "Habilitar 'Mais' ícones"
2664
 
2665
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2666
  msgid ""
2667
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2668
  "which shows additional sharing networks in popup"
2671
  "de compartilhamento com a exibição adicional das redes sociais "
2672
  "compartilhadas em um popup"
2673
 
2674
+ #: admin/social_sharing.php:1096
2675
  msgid "Floating Sharing Interface Options"
2676
  msgstr "Opções da Interface de Compartilhamento Flutuante"
2677
 
2678
+ #: admin/social_sharing.php:1101
2679
  msgid "Enable Floating sharing interface"
2680
  msgstr "Habilita interface de compartilhamento flutuante"
2681
 
2682
+ #: admin/social_sharing.php:1111
2683
  msgid "Master control to enable floating sharing widget"
2684
  msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
2685
 
2686
+ #: admin/social_sharing.php:1299
2687
  msgid ""
2688
  "Specify the color or hex code (example #cc78e0) for the background of "
2689
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
2695
  "Você pode obter o código hexadecimal que você requer por meio deste link <a "
2696
  "href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2697
 
2698
+ #: admin/social_sharing.php:1337
2699
  msgid ""
2700
  "Specify a number. Increase in number will shift sharing interface towards "
2701
  "right and decrease will shift it towards left. Number can be negative too."
2705
  "interface de compartilhamento para a esquerda. Os números podem também ser "
2706
  "negativos."
2707
 
2708
+ #: admin/social_sharing.php:1356
2709
  msgid ""
2710
  "Specify a number. Increase in number will shift sharing interface towards "
2711
  "left and decrease will shift it towards right. Number can be negative too."
2715
  "interface de compartilhamento para a direita. Os números podem também ser "
2716
  "negativos."
2717
 
2718
+ #: admin/social_sharing.php:1374
2719
  msgid ""
2720
  "Specify a number. Increase in number will shift sharing interface towards "
2721
  "bottom and decrease will shift it towards top."
2724
  "compartilhamento para baixo e decrementos no número irão deslocar a "
2725
  "interface de compartilhamento para cima."
2726
 
2727
+ #: admin/social_sharing.php:1430
2728
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2729
  msgstr ""
2730
  "Especifique as páginas onde você deseja habilitar a interface de "
2731
  "compartilhamento vertical"
2732
 
2733
+ #: admin/social_sharing.php:1499
2734
  #, fuzzy
2735
  msgid "Hide floating slider"
2736
  msgstr "Escondido para usuários autenticados:"
2737
 
2738
+ #: admin/social_sharing.php:1509
2739
  #, fuzzy
2740
  msgid "Hides the slider arrow present below the floating share bar"
2741
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
2742
 
2743
+ #: admin/social_sharing.php:1516
2744
  msgid "Vertical floating bar responsiveness"
2745
  msgstr "Sensibilidade da barra flutuante vertical"
2746
 
2747
+ #: admin/social_sharing.php:1519
2748
  #, php-format
2749
  msgid "Display vertical interface only when screen is wider than %s pixels"
2750
  msgstr ""
2751
  "Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
2752
 
2753
+ #: admin/social_sharing.php:1526
2754
  msgid ""
2755
  "Display vertical interface only when screen is wider than the width "
2756
  "specified."
2758
  "Exibe interface vertical apenas quando a tela é mais larga que a largura "
2759
  "especificada."
2760
 
2761
+ #: admin/social_sharing.php:1533
2762
  msgid "Horizontal floating bar responsiveness"
2763
  msgstr "Sensibilidade da barra flutuante horizontal"
2764
 
2765
+ #: admin/social_sharing.php:1536
2766
  #, php-format
2767
  msgid ""
2768
  "Stick vertical floating interface horizontally at bottom only when screen is "
2771
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2772
  "quando a tela é mais estreita do que %s pixels"
2773
 
2774
+ #: admin/social_sharing.php:1543
2775
  msgid ""
2776
  "Stick vertical floating interface horizontally at bottom only when screen is "
2777
  "narrower than the width specified"
2779
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2780
  "quando a tela é mais estreita do que a largura especificada"
2781
 
2782
+ #: admin/social_sharing.php:1552
2783
  msgid "Horizontal floating bar position"
2784
  msgstr "Posição da barra de flutuação horizontal"
2785
 
2786
+ #: admin/social_sharing.php:1555
2787
  #, php-format
2788
  msgid "%s pixels from %s"
2789
  msgstr "%s pixels de %s"
2790
 
2791
+ #: admin/social_sharing.php:1556
2792
  msgid "Auto-adjust according to screen width (responsive)"
2793
  msgstr ""
2794
 
2795
+ #: admin/social_sharing.php:1563
2796
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2797
  msgstr ""
2798
  "Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
2799
  "também."
2800
 
2801
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2802
  msgid "Use shortlinks already installed"
2803
  msgstr "Use shortlinks já instalados"
2804
 
2805
+ #: admin/social_sharing.php:1598
2806
  msgid "Uses default short url permalinks without using any additional plugin"
2807
  msgstr ""
2808
  "Use a short url padrão de permalinks sem utilizar nenhum plugin adicional"
2809
 
2810
+ #: admin/social_sharing.php:1605
2811
  msgid "Enable bit.ly url shortener for sharing"
2812
  msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
2813
 
2814
+ #: admin/social_sharing.php:1664
2815
  msgid "Share Count Cache"
2816
  msgstr "Cache de Contador de Compartilhamento"
2817
 
2818
+ #: admin/social_sharing.php:1669
2819
  msgid "Refresh Share Count cache every"
2820
  msgstr "Atualizar o contador de compartilhamento a cada"
2821
 
2822
+ #: admin/social_sharing.php:1674
2823
  msgid "Second(s)"
2824
  msgstr ""
2825
 
2826
+ #: admin/social_sharing.php:1675
2827
  msgid "Minute(s)"
2828
  msgstr ""
2829
 
2830
+ #: admin/social_sharing.php:1676
2831
  msgid "Hour(s)"
2832
  msgstr ""
2833
 
2834
+ #: admin/social_sharing.php:1677
2835
  msgid "Day(s)"
2836
  msgstr ""
2837
 
2838
+ #: admin/social_sharing.php:1685
2839
  #, fuzzy, php-format
2840
  msgid ""
2841
  "Frequent cache refreshing results in slower loading of pages with share "
2845
  "Atualizações frequentes do cache resultam em carregamento mais lento das "
2846
  "páginas com os contadores de compartilhamento habilitados"
2847
 
2848
+ #: admin/social_sharing.php:1692
2849
  msgid "Clear Share Counts Cache"
2850
  msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
2851
 
2852
+ #: admin/social_sharing.php:1696
2853
  msgid "Share Counts cache cleared successfully."
2854
  msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
2855
 
2856
+ #: admin/social_sharing.php:1703
2857
  msgid "Use this to clear cached share counts"
2858
  msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
2859
 
2860
+ #: admin/social_sharing.php:1727
2861
  #, php-format
2862
  msgid ""
2863
  "Enter the code of the language you want to use for like buttons. You can "
2868
  "achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
2869
  "link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
2870
 
2871
+ #: admin/social_sharing.php:1736
2872
  msgid "Username in sharing"
2873
  msgstr "Username no compartilhamento"
2874
 
2875
+ #: admin/social_sharing.php:1741
2876
  msgid "Twitter username (without @)"
2877
  msgstr "Username do Twitter (sem @)"
2878
 
2879
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2880
  msgid ""
2881
  "Provided username will be appended after the content being shared as \"via "
2882
  "@USERNAME\". Leave empty if you do not want any username in the content "
2886
  "\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
2887
  "no conteúdo sendo compartilhado."
2888
 
2889
+ #: admin/social_sharing.php:1759
2890
  msgid "Buffer username (without @)"
2891
  msgstr "Username do Buffer (sem @)"
2892
 
2893
+ #: admin/social_sharing.php:1778
2894
  msgid "AMP"
2895
  msgstr ""
2896
 
2897
+ #: admin/social_sharing.php:1783
2898
  #, fuzzy
2899
  msgid "Enable sharing on AMP pages"
2900
  msgstr "Habilia a página de autenticação"
2901
 
2902
+ #: admin/social_sharing.php:1793
2903
  msgid "Enable this option to render sharing icons on AMP pages"
2904
  msgstr ""
2905
 
2906
+ #: admin/social_sharing.php:1850
2907
  msgid "Facebook Sharing Troubleshooter"
2908
  msgstr "Solução de problema no compartilhamento com o Facebook"
2909
 
2910
+ #: admin/social_sharing.php:1855
2911
  #, fuzzy
2912
  msgid ""
2913
  "If Facebook sharing is not working fine, click at the following link and "
2919
  "compartilhamento do Facebook não está funcionando adequadamente) no seu "
2920
  "website:"
2921
 
2922
+ #: admin/social_sharing.php:1873
2923
  msgid ""
2924
  "Why is sharer not showing the correct image, title and other meta tags "
2925
  "content?"
2926
  msgstr ""
2927
 
2928
+ #: admin/social_sharing.php:1874
2929
  #, fuzzy
2930
  msgid "Why is Facebook share count not working?"
2931
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
2932
 
2933
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2934
+ #, php-format
2935
+ msgid ""
2936
+ "After the recent changes introduced in the Facebook graph API, it's not "
2937
+ "possible to track Facebook shares using it. <a href='%s' "
2938
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2939
+ "not just for Facebook but for all the social networks"
2940
+ msgstr ""
2941
+
2942
+ #: admin/social_sharing.php:1877
2943
  msgid "Why is Instagram icon redirecting to Instagram website?"
2944
  msgstr ""
2945
 
2946
+ #: admin/social_sharing.php:1878
2947
  msgid ""
2948
  "Instagram icon is there to send website visitors to the Instagram page of "
2949
  "your choice. You can save the desired Instagram handle in \"Instagram "
2951
  "sections."
2952
  msgstr ""
2953
 
2954
+ #: admin/social_sharing.php:1881
2955
  #, fuzzy
2956
  msgid "How to customize the url being shared?"
2957
  msgstr ""
2958
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
2959
 
2960
+ #: admin/social_sharing.php:1882
2961
  msgid ""
2962
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2963
  msgstr ""
2964
 
2965
+ #: admin/social_sharing.php:1883
2966
  msgid ""
2967
  "It takes some time for their service to track the shares made on Twitter "
2968
  "from your website. If you still feel it's taking too long you can contact "
2969
  "their support directly from their website."
2970
  msgstr ""
2971
 
2972
+ #: admin/social_sharing.php:1886
2973
  msgid ""
2974
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2975
  msgstr ""
2976
 
2977
+ #: admin/social_sharing.php:1888
2978
  #, fuzzy
2979
  msgid "Why the color of share icons is not being updated?"
2980
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
2981
 
2982
+ #: admin/social_sharing.php:1889
2983
  #, fuzzy
2984
  msgid "Why Facebook share counts are not appearing?"
2985
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
2986
 
2987
+ #: admin/social_sharing.php:1890
2988
  msgid ""
2989
  "How can I show share counts of my website rather than of individual pages/"
2990
  "posts?"
2992
  "Como posso exibir os contadores de compartilhamento do meu website ao invés "
2993
  "das páginas/posts individuais?"
2994
 
2995
+ #: admin/social_sharing.php:1891
2996
  msgid "How can I disable sharing on particular page/post?"
2997
  msgstr ""
2998
  "Como posso desabilitar o compartilhamento em uma página/post em particular?"
2999
 
3000
+ #: admin/social_sharing.php:1892
3001
  msgid "How can I specify minimum sharing count for sharing networks?"
3002
  msgstr ""
3003
  "Como posso especificar um contador mínimo de compartilhamento das redes "
3004
  "sociais?"
3005
 
3006
+ #: admin/social_sharing.php:1893
3007
  msgid "How to share specific page?"
3008
  msgstr "Como compartilhar página específica?"
3009
 
3010
+ #: admin/social_sharing.php:1894
3011
  msgid "How to integrate Google Analytics with sharing?"
3012
  msgstr "Como integrar o Google Analytics com compartilhamento?"
3013
 
3014
+ #: admin/social_sharing.php:1895
3015
  msgid "How to customize the look of total share counts?"
3016
  msgstr ""
3017
  "Como personalizar a aparência dos contatores de compartilhamentos totais?"
3018
 
3019
+ #: admin/social_sharing.php:1896
3020
  msgid "How to customize the look of individual share counts?"
3021
  msgstr ""
3022
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
3023
 
3024
+ #: admin/social_sharing.php:1897
3025
  msgid "How to show Whatsapp icon only on mobile devices?"
3026
  msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
3027
 
3028
+ #: admin/social_sharing.php:1898
3029
  msgid "How to hide arrow after floating sharing bar?"
3030
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
3031
 
3032
+ #: admin/social_sharing.php:1899
3033
  #, fuzzy
3034
  msgid "Why is share count not getting updated?"
3035
  msgstr "Porque o contador de compartilhamentos não está sendo atualizado?"
3056
  msgid "Settings"
3057
  msgstr "Configurações"
3058
 
3059
+ #: helper.php:572
3060
  msgid "Account linked successfully"
3061
  msgstr "Conta associada com sucesso"
3062
 
3063
+ #: helper.php:576
3064
  msgid "Account already exists or linked"
3065
  msgstr "Conta já existente ou já está associada"
3066
 
3067
+ #: helper.php:612 helper.php:614
3068
  #, fuzzy
3069
  msgid "Login with"
3070
  msgstr "Ganhe pontos na Autenticação Social"
3071
 
3072
+ #: helper.php:649 helper.php:655
3073
  msgid "Currently"
3074
  msgstr "Atualmente"
3075
 
3076
+ #: helper.php:649 helper.php:655
3077
  msgid "Connected with"
3078
  msgstr ""
3079
 
3080
+ #: helper.php:649 helper.php:655
3081
  msgid "Remove"
3082
  msgstr "Remover"
3083
 
3084
+ #: helper.php:727
3085
  #, fuzzy
3086
  msgid "Social Account Linking"
3087
  msgstr ""
3088
  "Habilitar estar opção para exibir a conta social associada a página de "
3089
  "interface de perfil do BuddyPress"
3090
 
3091
+ #: helper.php:777
3092
  msgid "Disable Standard Social Sharing on this "
3093
  msgstr "Desabilitar o compatilhamento social padrão neste(a) "
3094
 
3095
+ #: helper.php:782
3096
  msgid "Disable Floating Social Sharing on this "
3097
  msgstr "Desabilitar o compartilhamento social flutuante neste(a) "
3098
 
3099
+ #: helper.php:787
3100
  msgid "Disable Standard like buttons on this "
3101
  msgstr "Desabilitar o botão de like padrão neste(a) "
3102
 
3103
+ #: helper.php:792
3104
  msgid "Disable Floating like buttons on this "
3105
  msgstr "Desabilitar o botão flutuante de like neste(a) "
3106
 
3107
+ #: helper.php:797
3108
  msgid "Disable Social Commenting on this "
3109
  msgstr "Desabilitar o Comentário Social neste(a) "
3110
 
3111
+ #: helper.php:806
3112
  msgid "Standard Sharing Interface"
3113
  msgstr "Interface Padrão de Compartilhamento"
3114
 
3115
+ #: helper.php:812 helper.php:831
3116
  msgid "Starting share count for "
3117
  msgstr "Iniciando contagem compartilhada para "
3118
 
3119
+ #: helper.php:825
3120
  msgid "Floating Sharing Interface"
3121
  msgstr "Interface de Compartilhamento Flutuante"
3122
 
3123
+ #: helper.php:921 super_socializer.php:2375
3124
  msgid "Social Avatar"
3125
  msgstr "Avatar Social"
3126
 
3127
+ #: helper.php:924 super_socializer.php:2386
3128
  msgid ""
3129
  "Do not fetch and update social avatar from my profile, next time I Social "
3130
  "Login"
3132
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
3133
  "Autenticação Social"
3134
 
3135
+ #: helper.php:925 super_socializer.php:2390
3136
  msgid "Update social avatar, next time I Social Login"
3137
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
3138
 
3139
+ #: helper.php:928
3140
  msgid "Small Avatar"
3141
  msgstr "Avatar Pequeno"
3142
 
3143
+ #: helper.php:932
3144
  msgid "Large Avatar"
3145
  msgstr "Avatar Grande"
3146
 
3147
+ #: helper.php:992 super_socializer.php:1936
3148
  msgid "Please verify your email address to login."
3149
  msgstr "Por favor verifique seu endereço de email no login."
3150
 
3151
+ #: helper.php:1029
3152
  msgid "Click to delete social profile data"
3153
  msgstr ""
3154
 
3155
+ #: helper.php:1058
3156
  #, fuzzy
3157
  msgid "Deleting"
3158
  msgstr "Configurações"
3159
 
3160
+ #: helper.php:1068
3161
  msgid "Deleted"
3162
  msgstr ""
3163
 
3164
+ #: helper.php:1070
3165
  msgid "Something bad happened"
3166
  msgstr ""
3167
 
3223
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
3224
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
3225
 
3226
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3227
  #, fuzzy
3228
  msgid "Share"
3229
+ msgstr "Posição do contador de compartilhamento"
3230
 
3231
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3232
  #, fuzzy
3233
  msgid "Shares"
3234
  msgstr ""
3235
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
3236
  "de compartilhamento"
3237
 
3238
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
3239
  msgid "Invalid request"
3240
  msgstr "Requisição inválida"
3241
 
3242
+ #: inc/social_sharing.php:938
3243
  msgid "Providers not selected"
3244
  msgstr "Provedor não selecionado"
3245
 
3246
+ #: inc/social_sharing_networks.php:58
3247
  msgid "Copy Link"
3248
  msgstr ""
3249
 
3522
  msgid "RSS Feed URL:"
3523
  msgstr ""
3524
 
3525
+ #: super_socializer.php:429
3526
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3527
+ msgstr ""
3528
+
3529
+ #: super_socializer.php:1718
3530
  #, fuzzy
3531
  msgid ""
3532
  "cURL is not enabled at your website server. Please contact your website "
3535
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
3536
  "que contatar o administrador do servidor do seu website para verificar isso."
3537
 
3538
+ #: super_socializer.php:1746
3539
  #, fuzzy, php-format
3540
  msgid ""
3541
  "Enter exactly the following url in <strong>Website</strong> option in your "
3545
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
3546
  "%s)"
3547
 
3548
+ #: super_socializer.php:1749
3549
  #, fuzzy, php-format
3550
  msgid ""
3551
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3555
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
3556
  "%s)"
3557
 
3558
+ #: super_socializer.php:1752
3559
  msgid ""
3560
  "Make sure cURL is enabled at your website server. You may need to contact "
3561
  "the server administrator of your website to verify this"
3563
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
3564
  "que contatar o administrador do servidor do seu website para verificar isso."
3565
 
3566
+ #: super_socializer.php:1914
3567
  msgid "Search"
3568
  msgstr ""
3569
 
3570
+ #: super_socializer.php:1936
3571
  msgid "Your email has been verified. Now you can login to your account"
3572
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
3573
 
3574
+ #: super_socializer.php:1940
3575
  msgid "Notification"
3576
  msgstr "Notificaçao"
3577
 
3578
+ #: super_socializer.php:1961
3579
  msgid "Please check your email inbox to complete the registration."
3580
  msgstr "Por favor verifique sua caixa de email para completar o registro."
3581
 
3582
+ #: super_socializer.php:2030
3583
  msgid "Leave a reply"
3584
  msgstr "Deixe uma resposta"
3585
 
3586
+ #: super_socializer.php:2046
3587
  #, fuzzy
3588
  msgid "Link copied."
3589
  msgstr "LinkedIn"
3590
 
3591
+ #: super_socializer.php:2291
3592
  msgid "Super Socializer - General Options"
3593
  msgstr "Super Socializer - Opções Gerais"
3594
 
3595
+ #: super_socializer.php:2362
3596
  msgid ""
3597
  "I agree to my personal data being stored and used as per Privacy Policy and "
3598
  "Terms and Conditions"
3599
  msgstr ""
3600
 
3601
+ #: super_socializer.php:2366
3602
  msgid ""
3603
  "I revoke my consent to store and use my personal data. Kindly delete my "
3604
  "personal data saved in this website."
3605
  msgstr ""
3606
 
3607
+ #: super_socializer.php:2378
3608
  msgid "Small Avatar Url"
3609
  msgstr "Url para Avatar pequeno"
3610
 
3611
+ #: super_socializer.php:2382
3612
  msgid "Large Avatar Url"
3613
  msgstr "Url para Avatar Grande"
3614
 
3615
+ #: super_socializer.php:2484
3616
  msgid "Login with your Social ID"
3617
  msgstr ""
3618
 
3619
+ #: super_socializer.php:2485
3620
  msgid "Email you entered is already registered or invalid"
3621
  msgstr "Email fornecido já está registrado ou é inválido"
3622
 
3623
+ #: super_socializer.php:2492
3624
  msgid "Please enter a valid email address. You might be required to verify it"
3625
  msgstr ""
3626
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
3627
  "confirmá-lo"
3628
 
3629
+ #: super_socializer.php:2496 super_socializer.php:3250
3630
  msgid "Link your social account to login to your account at this website"
3631
  msgstr "Associe sua conta social ao login de sua conta neste website"
3632
 
3633
+ #: super_socializer.php:2753
3634
  msgid "Thanks for installing Super Socializer plugin"
3635
  msgstr ""
3636
 
3637
+ #: super_socializer.php:2755
3638
  msgid "Configure the Plugin"
3639
  msgstr ""
3640
 
3641
+ #: super_socializer.php:2766
3642
  msgid ""
3643
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3644
  "current version of Super Socializer"
3645
  msgstr ""
3646
 
3647
+ #: super_socializer.php:2775
3648
  msgid ""
3649
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3650
  "version of Super Socializer"
3651
  msgstr ""
3652
 
3653
+ #: super_socializer.php:2784
3654
  msgid ""
3655
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3656
  "compatibility with the current version of Super Socializer"
3657
  msgstr ""
3658
 
3659
+ #: super_socializer.php:2793
3660
  msgid ""
3661
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3662
  "with current version of Super Socializer"
3663
  msgstr ""
3664
 
3665
+ #: super_socializer.php:2802
3666
  msgid ""
3667
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3668
  "with current version of Super Socializer"
3669
  msgstr ""
3670
 
3671
+ #: super_socializer.php:2813
3672
  #, php-format
3673
  msgid ""
3674
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3675
  msgstr ""
3676
 
3677
+ #: super_socializer.php:2822
3678
  #, php-format
3679
  msgid ""
3680
  "To continue using Instagram login create a new Instagram App as described <a "
3682
  "Instagram App Secret <a href=\"%s\">here</a>"
3683
  msgstr ""
3684
 
3685
+ #: super_socializer.php:2831 super_socializer.php:2840
3686
  #, php-format
3687
  msgid ""
3688
  "To continue using bitly url shortener, login to your bit.ly account and "
3691
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3692
  msgstr ""
3693
 
3694
+ #: super_socializer.php:2856
3695
  #, php-format
3696
  msgid ""
3697
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3698
  msgstr ""
3699
 
3700
+ #: super_socializer.php:2880
3701
  #, php-format
3702
  msgid ""
3703
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3705
  "target=\"_blank\">here</a>"
3706
  msgstr ""
3707
 
3708
+ #: super_socializer.php:2880 super_socializer.php:2905
3709
+ #: super_socializer.php:2930 super_socializer.php:2955
3710
+ #: super_socializer.php:2988 super_socializer.php:3016
3711
+ #: super_socializer.php:3043
3712
  msgid "Okay"
3713
  msgstr ""
3714
 
3715
+ #: super_socializer.php:2905
3716
  #, php-format
3717
  msgid ""
3718
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3720
  "\">here</a>"
3721
  msgstr ""
3722
 
3723
+ #: super_socializer.php:2930
3724
  #, php-format
3725
  msgid ""
3726
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3728
  "target=\"_blank\">here</a>"
3729
  msgstr ""
3730
 
3731
+ #: super_socializer.php:2955
3732
  #, php-format
3733
  msgid ""
3734
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3736
  "target=\"_blank\">here</a>"
3737
  msgstr ""
3738
 
3739
+ #: super_socializer.php:2966
3740
  #, php-format
3741
  msgid ""
3742
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3743
  msgstr ""
3744
 
3745
+ #: super_socializer.php:2988
3746
  #, php-format
3747
  msgid ""
3748
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3750
  "\"%s\" target=\"_blank\">here</a>"
3751
  msgstr ""
3752
 
3753
+ #: super_socializer.php:3016
3754
  #, php-format
3755
  msgid ""
3756
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3759
  "your website %s with them. No need to copy-paste any code from their website."
3760
  msgstr ""
3761
 
3762
+ #: super_socializer.php:3043
3763
  #, php-format
3764
  msgid ""
3765
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3767
  "\"%s\" target=\"_blank\">here</a>"
3768
  msgstr ""
3769
 
3770
+ #: super_socializer.php:3068
3771
  #, php-format
3772
  msgid ""
3773
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3775
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3776
  msgstr ""
3777
 
3778
+ #: super_socializer.php:3068 super_socializer.php:3095
3779
  msgid "Dismiss"
3780
  msgstr ""
3781
 
3782
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3783
  msgid ""
3784
  "Your browser is blocking some features of this website. Please follow the "
3785
  "instructions at {support_url} to unblock these."
3786
  msgstr ""
3787
 
3788
+ #~ msgid "Dismiss this notice"
3789
+ #~ msgstr "Dispense este aviso"
3790
+
3791
+ #, fuzzy
3792
+ #~ msgid "Facebook Share Count"
3793
+ #~ msgstr "Solução de problema no compartilhamento com o Facebook"
3794
+
3795
+ #, fuzzy
3796
+ #~ msgid ""
3797
+ #~ "Required for Facebook share count to work. Please follow the "
3798
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3799
+ #~ "Facebook App ID"
3800
+ #~ msgstr ""
3801
+ #~ "Requerido para a Autenticação Social do Facebook funcionar. Por favor, "
3802
+ #~ "siga a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
3803
+ #~ "link</a> para obter o Facebook App ID"
3804
+
3805
+ #, fuzzy
3806
+ #~ msgid ""
3807
+ #~ "Required for Facebook share count to work. Please follow the "
3808
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3809
+ #~ "Facebook App Secret"
3810
+ #~ msgstr ""
3811
+ #~ "Requerido para a Autenticação Social do Facebook funcionar. Por favor, "
3812
+ #~ "siga a documentação em <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
3813
+ #~ "link</a> para obter o Facebook App ID"
3814
+
3815
  #, fuzzy
3816
  #~ msgid ""
3817
  #~ "Required for Dropbox Social Login to work. Please follow the "
languages/super-socializer-ru_RU.mo CHANGED
Binary file
languages/super-socializer-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-15 14:09+0530\n"
6
- "PO-Revision-Date: 2021-06-15 14:09+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
@@ -22,7 +22,7 @@ msgstr ""
22
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
23
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
24
  #: admin/social_login.php:5 admin/social_login.php:1984
25
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
26
  #, fuzzy, php-format
27
  msgid ""
28
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -33,7 +33,7 @@ msgstr ""
33
  "Twitter."
34
 
35
  #: admin/general_options.php:15 admin/social_commenting.php:47
36
- #: super_socializer.php:2279
37
  msgid "General Options"
38
  msgstr "Основные настройки"
39
 
@@ -82,20 +82,20 @@ msgstr ""
82
 
83
  #: admin/general_options.php:89 admin/like_buttons.php:780
84
  #: admin/social_commenting.php:400 admin/social_login.php:1980
85
- #: admin/social_sharing.php:1944 helper.php:942
86
  msgid "Save Changes"
87
  msgstr "Сохранить изменения"
88
 
89
  #: admin/general_options.php:103 admin/like_buttons.php:790
90
  #: admin/social_commenting.php:410 admin/social_login.php:1990
91
- #: admin/social_sharing.php:1954
92
  #, fuzzy
93
  msgid "Instagram Shoutout"
94
  msgstr "Instagram"
95
 
96
  #: admin/general_options.php:105 admin/like_buttons.php:792
97
  #: admin/social_commenting.php:412 admin/social_login.php:1992
98
- #: admin/social_sharing.php:1956
99
  msgid ""
100
  "If you can send (to hello@heateor.com) how this plugin is helping your "
101
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -204,34 +204,34 @@ msgstr ""
204
  "Панель управления кнопками Нравится. Должно быть включено чтобы активировать "
205
  "кнопки Нравится"
206
 
207
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
208
  msgid "Standard Interface"
209
  msgstr "Стандартный интерфейс"
210
 
211
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
212
  msgid "Floating Interface"
213
  msgstr "Плавающий интерфейс"
214
 
215
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
216
  msgid "Miscellaneous"
217
  msgstr "Разное"
218
 
219
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
220
  #, fuzzy
221
  msgid "3rd Party Integration"
222
  msgstr "XProfile интеграция"
223
 
224
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
225
  #: admin/social_login.php:45 admin/social_login.php:1946
226
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
227
- #: admin/social_sharing.php:1871
228
  msgid "Shortcode & Widget"
229
  msgstr "Шорткод и виджет"
230
 
231
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
232
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
233
  #: admin/social_login.php:46 admin/social_login.php:1960
234
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
235
  msgid "FAQ"
236
  msgstr "Часто задаваемые вопросы (FAQ)"
237
 
@@ -248,22 +248,22 @@ msgid "Master control to enable horizontal like buttons"
248
  msgstr "Мастер настройки включения горизонтальных кнопок Нравится"
249
 
250
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
251
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
252
  msgid "Target Url"
253
  msgstr "Целевой URL:"
254
 
255
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
256
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
257
  msgid "Url of the webpage where icons are located (default)"
258
  msgstr "URL-адрес веб-страницы, где расположены значки (по умолчанию)"
259
 
260
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
261
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
262
  msgid "Url of the homepage of your website"
263
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
264
 
265
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
266
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
267
  msgid "Custom url"
268
  msgstr "Пользовательская ссылка"
269
 
@@ -274,7 +274,7 @@ msgstr ""
274
  "Твитнуть"
275
 
276
  #: admin/like_buttons.php:105 admin/social_login.php:1231
277
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
278
  msgid "Title"
279
  msgstr "Заголовок"
280
 
@@ -291,24 +291,24 @@ msgid "Select the providers for interface. Drag them to rearrange."
291
  msgstr "Выберите сервисы для интерфейса. Переместите их чтобы изменить порядок"
292
 
293
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
294
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
295
  msgid "Horizontal alignment"
296
  msgstr "Горизонтальное выравнивание"
297
 
298
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
299
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
300
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308
301
  #: inc/widget.php:446 inc/widget.php:758
302
  msgid "Left"
303
  msgstr "Слева"
304
 
305
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
306
  msgid "Center"
307
  msgstr "Центр"
308
 
309
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
310
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
311
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309
312
  #: inc/widget.php:447 inc/widget.php:759
313
  msgid "Right"
314
  msgstr "Справа"
@@ -317,15 +317,15 @@ msgstr "Справа"
317
  msgid "Horizontal alignment of the interface"
318
  msgstr "Горизонтальное выравнивание интерфейса"
319
 
320
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
321
  msgid "Position with respect to content"
322
  msgstr "Позиция относительно контента"
323
 
324
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
325
  msgid "Top of the content"
326
  msgstr "Над содержимым"
327
 
328
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
329
  msgid "Bottom of the content"
330
  msgstr "Под содержимым"
331
 
@@ -339,66 +339,66 @@ msgstr "Расположение интерфейса"
339
 
340
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
341
  #: admin/social_login.php:1548 admin/social_login.php:1577
342
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
343
  msgid "Homepage"
344
  msgstr "Главная"
345
 
346
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
347
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
348
  msgid "Posts"
349
  msgstr "Записи"
350
 
351
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
352
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
353
  msgid "Pages"
354
  msgstr "Страницы"
355
 
356
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
357
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
358
  msgid "Excerpts and Posts page"
359
  msgstr "Страницы анонсов и страниц"
360
 
361
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
362
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
363
  msgid "Category Archives"
364
  msgstr "Архивы категорий"
365
 
366
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
367
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
368
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
369
  msgstr "Архив Страницы (Категория, тегов, автор или страницы на основе дат)"
370
 
371
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
372
  msgid "BuddyPress activity"
373
  msgstr "BuddyPress активность"
374
 
375
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
376
  msgid "BuddyPress group (only at top of content)"
377
  msgstr "BuddyPress группы (только в верхней части контента)"
378
 
379
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
380
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
381
  msgid "BBPress forum"
382
  msgstr "BBPress форум"
383
 
384
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
385
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
386
  msgid "BBPress topic"
387
  msgstr "BBPress тема"
388
 
389
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
390
  msgid "BBPress reply"
391
  msgstr "BBPress ответ"
392
 
393
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
394
  msgid "After individual product at WooCommerce Shop page"
395
  msgstr "После индивидуального продукта на странице магазина"
396
 
397
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
398
  msgid "WooCommerce Product Page"
399
  msgstr "Продукт Woocommerce"
400
 
401
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
402
  msgid "WooCommerce Thankyou Page"
403
  msgstr "WooCommerce страница благодарности"
404
 
@@ -419,8 +419,8 @@ msgid "Master control to enable vertical (floating) counter widget"
419
  msgstr ""
420
  "Мастер управления для включения вертикального (плавающего) счетчика виджета "
421
 
422
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
423
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287
424
  #: inc/widget.php:460 inc/widget.php:772
425
  msgid "Background Color"
426
  msgstr "Цвет фона"
@@ -437,7 +437,7 @@ msgstr ""
437
  "можете получить шестнадцатеричный код <a href=\"http://www.colorpicker.com/"
438
  "\" target=\"_blank\">здесь</a>"
439
 
440
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
441
  msgid "Left offset"
442
  msgstr "Смещение влево"
443
 
@@ -450,7 +450,7 @@ msgstr ""
450
  "правой стороне и уменьшать по отношению к правой сторону. Число может быть "
451
  "отрицательным."
452
 
453
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
454
  msgid "Right offset"
455
  msgstr "Смещение вправо"
456
 
@@ -463,7 +463,7 @@ msgstr ""
463
  "правой стороне и уменьшать по отношению к правой сторону. Число может быть "
464
  "отрицательным."
465
 
466
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
467
  msgid "Top offset"
468
  msgstr "Верхний отступ"
469
 
@@ -475,7 +475,7 @@ msgstr ""
475
  "Укажите число. Увеличение числа будет сдвигать интерфейс по отношению к низу "
476
  "и уменьшать по отношению к верху. "
477
 
478
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
479
  msgid "BuddyPress group"
480
  msgstr "BuddyPress группа"
481
 
@@ -493,7 +493,7 @@ msgstr ""
493
  "Если включено, то вертикальный интерфейс Нравится не будет отображаться на "
494
  "мобильных устройствах"
495
 
496
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
497
  msgid "Url shortener"
498
  msgstr "Укорачивание URL"
499
 
@@ -513,15 +513,15 @@ msgstr ""
513
  msgid "Enable bit.ly url shortener for tweet button"
514
  msgstr "Активировать сокращение ссылок bit.ly для кнопки Твитнуть"
515
 
516
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
517
  msgid "Master control to enable bit.ly url shortening for sharing"
518
  msgstr "Мастер управления сокращения ссылок через bit.ly для Поделиться"
519
 
520
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
521
  msgid "Bit.ly generic access token"
522
  msgstr ""
523
 
524
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
525
  #, php-format
526
  msgid ""
527
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -530,15 +530,15 @@ msgid ""
530
  "\">link</a>"
531
  msgstr ""
532
 
533
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
534
  msgid "Clear Bitly Cache"
535
  msgstr "Очистить Bitly кэш"
536
 
537
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
538
  msgid "ShortUrl cache cleared successfully."
539
  msgstr "ShortUrl кэш успешно очищен."
540
 
541
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
542
  msgid ""
543
  "Use this to delete short urls saved in database. Handy, if urls of your "
544
  "website have been changed but short urls are still being generated for old "
@@ -549,8 +549,8 @@ msgstr ""
549
  "адреса по-прежнему создаются для старых URL-адресов."
550
 
551
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
552
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
553
- #: admin/social_sharing.php:1749
554
  msgid "Language"
555
  msgstr "Язык"
556
 
@@ -593,11 +593,11 @@ msgstr ""
593
  "Используемое имя пользователя будет показано в Buffer после Поделиться как "
594
  "\"via @USERNAME\". Оставьте пустым если не хотите отображать имя."
595
 
596
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
597
  msgid "myCRED"
598
  msgstr ""
599
 
600
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
601
  msgid "Append myCRED referral ID to the urls being shared"
602
  msgstr ""
603
 
@@ -605,17 +605,17 @@ msgstr ""
605
  msgid "Like Buttons Shortcode & Widget"
606
  msgstr "Шорткод и виджет Нравится"
607
 
608
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
609
  msgid "Why is there so much space between like buttons?"
610
  msgstr "Почему существует так много места между кнопками?"
611
 
612
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
613
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
614
  msgstr ""
615
  "Почему плавающая панель Поделиться/кнопки Нравится не отображаются на "
616
  "главной странице?"
617
 
618
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
619
  msgid "How to Place Title and Social Share Icons in the Same Row?"
620
  msgstr ""
621
 
@@ -826,7 +826,7 @@ msgid "Social Commenting Shortcode"
826
  msgstr "Шорткод комментирования через социальные сети"
827
 
828
  #: admin/social_commenting.php:386 admin/social_login.php:1962
829
- #: admin/social_sharing.php:1904
830
  msgid ""
831
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
832
  "an online website for the plugin to function properly."
@@ -844,7 +844,7 @@ msgid ""
844
  msgstr ""
845
 
846
  #: admin/social_commenting.php:389 admin/social_login.php:1969
847
- #: admin/social_sharing.php:1919
848
  msgid "Why is my browser blocking some features of the plugin?"
849
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
850
 
@@ -881,7 +881,7 @@ msgid "Advanced Configuration"
881
  msgstr "Расширенная конфигурация"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
- #: super_socializer.php:2347
885
  msgid "GDPR"
886
  msgstr ""
887
 
@@ -1026,7 +1026,7 @@ msgid "Reddit"
1026
  msgstr ""
1027
 
1028
  #: admin/social_login.php:203
1029
- msgid "Mailru"
1030
  msgstr ""
1031
 
1032
  #: admin/social_login.php:207
@@ -1041,7 +1041,7 @@ msgstr ""
1041
  msgid "Select Social ID provider to enable in Social Login"
1042
  msgstr "Выберите социальные сети чтобы активировать вход через социальные сети"
1043
 
1044
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1045
  msgid "Facebook App ID"
1046
  msgstr "Facebook App ID"
1047
 
@@ -1062,7 +1062,7 @@ msgstr ""
1062
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
1063
  "упоминания ссылки."
1064
 
1065
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1066
  #, fuzzy
1067
  msgid "Facebook App Secret"
1068
  msgstr "Facebook App ID"
@@ -2029,7 +2029,7 @@ msgstr ""
2029
  "Если этот параметр включен, пользователи смогут обновить свой социальный "
2030
  "аватар из раздела «Профиль» фото в профиле BuddyPress "
2031
 
2032
- #: admin/social_login.php:1490 super_socializer.php:1946
2033
  msgid "Email required"
2034
  msgstr "Email (Обязательно)"
2035
 
@@ -2330,33 +2330,23 @@ msgstr "Мастер настройки включения горизонтал
2330
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2331
  msgstr ""
2332
 
2333
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2334
- msgid ""
2335
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2336
- "Facebook share count to work"
2337
- msgstr ""
2338
-
2339
- #: admin/social_sharing.php:49
2340
- msgid "Dismiss this notice"
2341
- msgstr "Закрыть это уведомление"
2342
-
2343
- #: admin/social_sharing.php:56
2344
  msgid "Theme Selection"
2345
  msgstr "Выбор тем"
2346
 
2347
- #: admin/social_sharing.php:68
2348
  msgid "Troubleshooter"
2349
  msgstr "Устранение неисправностей"
2350
 
2351
- #: admin/social_sharing.php:77
2352
  msgid "Standard interface theme"
2353
  msgstr "Стандартный интерфейс"
2354
 
2355
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2356
  msgid "Icon Preview"
2357
  msgstr "Превью иконок"
2358
 
2359
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2360
  msgid ""
2361
  "Do not forget to save the configuration after making changes by clicking the "
2362
  "save button below"
@@ -2364,55 +2354,55 @@ msgstr ""
2364
  "Не забудьте сохранить конфигурацию после внесения изменений, нажав ниже "
2365
  "кнопку сохранить"
2366
 
2367
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2368
  msgid "Shape"
2369
  msgstr "Форма"
2370
 
2371
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2372
  msgid "Round"
2373
  msgstr "Круглая"
2374
 
2375
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2376
  msgid "Square"
2377
  msgstr "Квадратная"
2378
 
2379
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2380
  msgid "Rectangle"
2381
  msgstr "Прямоугольник"
2382
 
2383
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2384
  msgid "Shape of the sharing icons"
2385
  msgstr "Форма кнопок Поделиться"
2386
 
2387
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2388
  msgid "Size (in pixels)"
2389
  msgstr "Размер (в пикселях)"
2390
 
2391
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2392
  msgid "Size of the sharing icons"
2393
  msgstr "Размер кнопок Поделиться"
2394
 
2395
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2396
  msgid "Width (in pixels)"
2397
  msgstr "Ширина (в пикселях)"
2398
 
2399
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2400
  msgid "Width of the sharing icons"
2401
  msgstr "Ширина иконок поделиться"
2402
 
2403
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2404
  msgid "Height (in pixels)"
2405
  msgstr "Высота (в пикселях)"
2406
 
2407
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2408
  msgid "Height of the sharing icons"
2409
  msgstr "Высота кнопок Поделиться"
2410
 
2411
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2412
  msgid "Border radius (in pixels)"
2413
  msgstr "Радиус рамки (в пикселях)"
2414
 
2415
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2416
  msgid ""
2417
  "Specify a value for rounded corners. More the value, more rounded will the "
2418
  "corners be. Leave empty for sharp corners."
@@ -2420,23 +2410,23 @@ msgstr ""
2420
  "Укажите значение для закругленных углов. Чем больше значение параметра, "
2421
  "более округлыми будут углы. Оставьте пустым для прямых углов."
2422
 
2423
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2424
  msgid "Logo Color"
2425
  msgstr "Цвет логотипа"
2426
 
2427
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2428
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2429
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2430
  msgid "Default"
2431
  msgstr "По умолчанию"
2432
 
2433
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2434
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2435
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2436
  msgid "On Hover"
2437
  msgstr "При наведении"
2438
 
2439
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2440
  msgid ""
2441
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2442
  "empty for default. You can get the hex code of the required color from <a "
@@ -2447,7 +2437,7 @@ msgstr ""
2447
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2448
  "\">здесь</a>"
2449
 
2450
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2451
  msgid ""
2452
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2453
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -2459,89 +2449,89 @@ msgstr ""
2459
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2460
  "\">здесь</a>"
2461
 
2462
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2463
  msgid "Border"
2464
  msgstr "Рамка"
2465
 
2466
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2467
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2468
  msgid "Border Width"
2469
  msgstr "Ширина рамки"
2470
 
2471
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2472
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2473
  msgid "Border Color"
2474
  msgstr "Цвет рамки"
2475
 
2476
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2477
  msgid "Icon border"
2478
  msgstr "Иконка рамки"
2479
 
2480
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2481
  msgid "Counter Position"
2482
  msgstr "Позиция счетчика"
2483
 
2484
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2485
  msgid "(applies, if counter enabled)"
2486
  msgstr "(применяется, если счетчик включен)"
2487
 
2488
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2489
  msgid "Top"
2490
  msgstr "Сверху"
2491
 
2492
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2493
  msgid "Bottom"
2494
  msgstr "Снизу"
2495
 
2496
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2497
  msgid "Inner Left"
2498
  msgstr "Отступ слева"
2499
 
2500
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2501
  msgid "Inner Top"
2502
  msgstr "Верхний отступ"
2503
 
2504
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2505
  msgid "Inner Right"
2506
  msgstr "Внутренний отступ справа"
2507
 
2508
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2509
  msgid "Inner Bottom"
2510
  msgstr "Нижний отступ"
2511
 
2512
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2513
  msgid "Position of share counter"
2514
  msgstr "Положение счетчика Поделиться"
2515
 
2516
- #: admin/social_sharing.php:375
2517
  msgid "Floating interface theme"
2518
  msgstr "Плавающий интерфейс Поделиться"
2519
 
2520
- #: admin/social_sharing.php:679
2521
  msgid "Standard Sharing Interface Options"
2522
  msgstr "Стандартные параметры интерфейса"
2523
 
2524
- #: admin/social_sharing.php:684
2525
  msgid "Enable Standard sharing interface"
2526
  msgstr "Включить стандартный интерфейс Поделиться"
2527
 
2528
- #: admin/social_sharing.php:694
2529
  msgid "Master control to enable standard sharing"
2530
  msgstr "Мастер настройки включения стандартных опций Поделиться"
2531
 
2532
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2533
  msgid "Url to share"
2534
  msgstr "Ссылка чтобы Поделиться"
2535
 
2536
- #: admin/social_sharing.php:735
2537
  msgid "The text to display above the sharing interface"
2538
  msgstr "Текст, отображаемый над интерфейсом Поделиться"
2539
 
2540
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2541
  msgid "Instagram username"
2542
  msgstr "Введите имя пользователя Instagram."
2543
 
2544
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2545
  msgid ""
2546
  "Username of the Instagram account you want to redirect users to, on clicking "
2547
  "the icon"
@@ -2549,67 +2539,67 @@ msgstr ""
2549
  "Имя пользователя Instagram, на учетную запись которого вы хотите "
2550
  "перенаправить пользователей, по нажатию на иконку"
2551
 
2552
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2553
  #, fuzzy
2554
  msgid "HTML ID of container element of comment form"
2555
  msgstr "HTML-идентификатор форма комментария контейнер"
2556
 
2557
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2558
  msgid ""
2559
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2560
  "icon."
2561
  msgstr ""
2562
 
2563
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2564
  msgid "Rearrange icons"
2565
  msgstr "Переставить иконы"
2566
 
2567
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2568
  msgid "Drag the icons to rearrange in desired order"
2569
  msgstr "Если хотите изменить порядок, просто перетащите изображения"
2570
 
2571
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2572
  msgid "Select Sharing Services"
2573
  msgstr "Выберите сервисы Поделиться"
2574
 
2575
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2576
  msgid "Select sharing services to show in social share bar"
2577
  msgstr "Выберите сервисы для показа в панели шейринга"
2578
 
2579
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2580
  msgid "Search social network"
2581
  msgstr ""
2582
 
2583
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2584
  msgid "Horizontal alignment of the sharing interface"
2585
  msgstr "Горизонтальное выравнивание интерфейса Поделиться"
2586
 
2587
- #: admin/social_sharing.php:946
2588
  msgid "Specify position of the sharing interface with respect to the content"
2589
  msgstr "Укажите положение интерфейса Поделиться относительно содержимого."
2590
 
2591
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2592
  msgid "Placement"
2593
  msgstr "Размещение"
2594
 
2595
- #: admin/social_sharing.php:1021
2596
  msgid "Specify the pages where you want to enable Sharing interface"
2597
  msgstr "Укажите страницы, где вы хотите, чтобы включить интерфейс Sharing"
2598
 
2599
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2600
  msgid "Show share counts"
2601
  msgstr "Показать счетчик кнопок Поделиться"
2602
 
2603
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
2604
  #, fuzzy
2605
  msgid ""
2606
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2607
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2608
  msgstr ""
2609
  "Поддерживаются Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, "
2610
  "Pinterest, Stumbleupon, Odnoklassniki и Vkontakte"
2611
 
2612
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2613
  #, php-format
2614
  msgid ""
2615
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2618,25 +2608,30 @@ msgid ""
2618
  "their website."
2619
  msgstr ""
2620
 
2621
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2622
  msgid "If enabled, share counts are displayed above sharing icons."
2623
  msgstr "Если включено, счетчики отображаются выше кнопок Поделиться"
2624
 
2625
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2626
  msgid "Show total shares"
2627
  msgstr "Включить общее количество Поделиться"
2628
 
2629
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2630
  msgid "If enabled, total shares will be displayed with sharing icons"
2631
  msgstr ""
2632
  "Если включено, то общее количество Поделиться будет отображаться с кнопками "
2633
  "Поделиться"
2634
 
2635
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2636
  msgid "Enable 'More' icon"
2637
  msgstr "Включить значок «Больше»"
2638
 
2639
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2640
  msgid ""
2641
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2642
  "which shows additional sharing networks in popup"
@@ -2644,19 +2639,19 @@ msgstr ""
2644
  "Если включено, «Больше» будет отображаться после кнопок Поделиться, которая "
2645
  "показывает дополнительные сервисы в всплывающем окне"
2646
 
2647
- #: admin/social_sharing.php:1094
2648
  msgid "Floating Sharing Interface Options"
2649
  msgstr "Параметры плавающих кнопок Поделиться"
2650
 
2651
- #: admin/social_sharing.php:1099
2652
  msgid "Enable Floating sharing interface"
2653
  msgstr "Включить интерфейс плавающих кнопок Поделиться"
2654
 
2655
- #: admin/social_sharing.php:1109
2656
  msgid "Master control to enable floating sharing widget"
2657
  msgstr "Мастер управления включения плавающего виджета Поделиться"
2658
 
2659
- #: admin/social_sharing.php:1297
2660
  msgid ""
2661
  "Specify the color or hex code (example #cc78e0) for the background of "
2662
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -2668,7 +2663,7 @@ msgstr ""
2668
  "Вы можете получить шестнадцатеричный код <a href=\"http://www.colorpicker."
2669
  "com/\" target=\"_blank\">здесь</a>"
2670
 
2671
- #: admin/social_sharing.php:1335
2672
  msgid ""
2673
  "Specify a number. Increase in number will shift sharing interface towards "
2674
  "right and decrease will shift it towards left. Number can be negative too."
@@ -2677,7 +2672,7 @@ msgstr ""
2677
  "отношению к правой стороне и уменьшать по отношению к правой сторону. Число "
2678
  "может быть отрицательным."
2679
 
2680
- #: admin/social_sharing.php:1354
2681
  msgid ""
2682
  "Specify a number. Increase in number will shift sharing interface towards "
2683
  "left and decrease will shift it towards right. Number can be negative too."
@@ -2686,7 +2681,7 @@ msgstr ""
2686
  "отношению к левой стороне и уменьшать по отношению к правой сторону. Число "
2687
  "может быть отрицательным."
2688
 
2689
- #: admin/social_sharing.php:1372
2690
  msgid ""
2691
  "Specify a number. Increase in number will shift sharing interface towards "
2692
  "bottom and decrease will shift it towards top."
@@ -2694,33 +2689,33 @@ msgstr ""
2694
  "Укажите число. Увеличение числа будет сдвигать интерфейс Поделиться по "
2695
  "отношению к низу и уменьшать по отношению к верху. "
2696
 
2697
- #: admin/social_sharing.php:1428
2698
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2699
  msgstr ""
2700
  "Укажите страницы, где вы хотите включить вертикальный интерфейс Поделиться"
2701
 
2702
- #: admin/social_sharing.php:1491
2703
  #, fuzzy
2704
  msgid "Hide floating slider"
2705
  msgstr "Скрыть для зарегистрированных пользователей"
2706
 
2707
- #: admin/social_sharing.php:1501
2708
  #, fuzzy
2709
  msgid "Hides the slider arrow present below the floating share bar"
2710
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
2711
 
2712
- #: admin/social_sharing.php:1508
2713
  msgid "Vertical floating bar responsiveness"
2714
  msgstr "Отзывчивость вертикальных плавающих кнопок"
2715
 
2716
- #: admin/social_sharing.php:1511
2717
  #, php-format
2718
  msgid "Display vertical interface only when screen is wider than %s pixels"
2719
  msgstr ""
2720
  "Показывать вертикальный интерфейс только если ширина экрана больше чем %s "
2721
  "пикселей."
2722
 
2723
- #: admin/social_sharing.php:1518
2724
  msgid ""
2725
  "Display vertical interface only when screen is wider than the width "
2726
  "specified."
@@ -2728,11 +2723,11 @@ msgstr ""
2728
  "Показывать вертикальный интерфейс только если ширина экрана больше чем "
2729
  "ширина по умолчанию."
2730
 
2731
- #: admin/social_sharing.php:1525
2732
  msgid "Horizontal floating bar responsiveness"
2733
  msgstr "Отзывчивость вертикальных плавающих кнопок"
2734
 
2735
- #: admin/social_sharing.php:1528
2736
  #, php-format
2737
  msgid ""
2738
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2741,7 +2736,7 @@ msgstr ""
2741
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
2742
  "уже чем %s пикселей"
2743
 
2744
- #: admin/social_sharing.php:1535
2745
  msgid ""
2746
  "Stick vertical floating interface horizontally at bottom only when screen is "
2747
  "narrower than the width specified"
@@ -2749,95 +2744,64 @@ msgstr ""
2749
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
2750
  "уже чем указанная ширина"
2751
 
2752
- #: admin/social_sharing.php:1544
2753
  msgid "Horizontal floating bar position"
2754
  msgstr "Расположение горизонтальной плавающей панели"
2755
 
2756
- #: admin/social_sharing.php:1547
2757
  #, php-format
2758
  msgid "%s pixels from %s"
2759
  msgstr "%s пикселей от %s"
2760
 
2761
- #: admin/social_sharing.php:1548
2762
  msgid "Auto-adjust according to screen width (responsive)"
2763
  msgstr ""
2764
 
2765
- #: admin/social_sharing.php:1555
2766
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2767
  msgstr ""
2768
  "Выравнивание горизонтального плавающего интерфейса. Число может быть "
2769
  "отрицательным."
2770
 
2771
- #: admin/social_sharing.php:1575
2772
- #, fuzzy
2773
- msgid "Facebook Share Count"
2774
- msgstr "Устранение неисправностей Поделиться от Facebook"
2775
-
2776
- #: admin/social_sharing.php:1579
2777
- msgid "Note"
2778
- msgstr ""
2779
-
2780
- #: admin/social_sharing.php:1579
2781
- msgid "Required only to track Facebook share count"
2782
- msgstr ""
2783
-
2784
- #: admin/social_sharing.php:1594
2785
- #, fuzzy, php-format
2786
- msgid ""
2787
- "Required for Facebook share count to work. Please follow the documentation "
2788
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2789
- msgstr ""
2790
- "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
2791
- "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
2792
-
2793
- #: admin/social_sharing.php:1611
2794
- #, fuzzy, php-format
2795
- msgid ""
2796
- "Required for Facebook share count to work. Please follow the documentation "
2797
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2798
- msgstr ""
2799
- "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию <a "
2800
- "href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения Facebook."
2801
-
2802
- #: admin/social_sharing.php:1625
2803
  msgid "Use shortlinks already installed"
2804
  msgstr "Использование коротких ссылок уже установлено"
2805
 
2806
- #: admin/social_sharing.php:1635
2807
  msgid "Uses default short url permalinks without using any additional plugin"
2808
  msgstr ""
2809
  "Использует по умолчанию постоянные короткие url без использования каких-"
2810
  "либо дополнительных плагинов"
2811
 
2812
- #: admin/social_sharing.php:1642
2813
  msgid "Enable bit.ly url shortener for sharing"
2814
  msgstr "Активировать bit.ly для сокращения ссылок для Поделиться"
2815
 
2816
- #: admin/social_sharing.php:1696
2817
  msgid "Share Count Cache"
2818
  msgstr "Кэш счетчиков поделиться"
2819
 
2820
- #: admin/social_sharing.php:1701
2821
  msgid "Refresh Share Count cache every"
2822
  msgstr "Обновить кэш счетчиков Поделиться"
2823
 
2824
- #: admin/social_sharing.php:1706
2825
  msgid "Second(s)"
2826
  msgstr "Секунд"
2827
 
2828
- #: admin/social_sharing.php:1707
2829
  msgid "Minute(s)"
2830
  msgstr "Минут"
2831
 
2832
- #: admin/social_sharing.php:1708
2833
  msgid "Hour(s)"
2834
  msgstr "Часов"
2835
 
2836
- #: admin/social_sharing.php:1709
2837
  msgid "Day(s)"
2838
  msgstr "Дней"
2839
 
2840
- #: admin/social_sharing.php:1717
2841
  #, fuzzy, php-format
2842
  msgid ""
2843
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2847,19 +2811,19 @@ msgstr ""
2847
  "Частое обновление кэша приводит к более медленной загрузке страниц с "
2848
  "включенными счетчиками Поделиться"
2849
 
2850
- #: admin/social_sharing.php:1724
2851
  msgid "Clear Share Counts Cache"
2852
  msgstr "Очистить кэш счетчиков Поделиться"
2853
 
2854
- #: admin/social_sharing.php:1728
2855
  msgid "Share Counts cache cleared successfully."
2856
  msgstr "Share Counts кэш успешно очищен."
2857
 
2858
- #: admin/social_sharing.php:1735
2859
  msgid "Use this to clear cached share counts"
2860
  msgstr "Используйте это для очистки кэшированных счетчиков Поделиться"
2861
 
2862
- #: admin/social_sharing.php:1759
2863
  #, php-format
2864
  msgid ""
2865
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2870,15 +2834,15 @@ msgstr ""
2870
  "Вы можете найти код своего языка по <a href=\"%s\" target=\"_blank\">этой "
2871
  "ссылке</a>. Оставьте поле пустым чтобы оставить язык по умолчанию (English)."
2872
 
2873
- #: admin/social_sharing.php:1768
2874
  msgid "Username in sharing"
2875
  msgstr "Имя пользователя чтобы поделиться"
2876
 
2877
- #: admin/social_sharing.php:1773
2878
  msgid "Twitter username (without @)"
2879
  msgstr "Twitter имя пользователя (без @)"
2880
 
2881
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
2882
  msgid ""
2883
  "Provided username will be appended after the content being shared as \"via "
2884
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -2887,27 +2851,27 @@ msgstr ""
2887
  "Добавляет имя пользователя после того как контент будет расшарен с помощью "
2888
  "\"via @USERNAME\". Оставьте поле пустым если не хотите указывать имя."
2889
 
2890
- #: admin/social_sharing.php:1791
2891
  msgid "Buffer username (without @)"
2892
  msgstr "Имя пользователя в Twitter (без @)"
2893
 
2894
- #: admin/social_sharing.php:1810
2895
  msgid "AMP"
2896
  msgstr "AMP"
2897
 
2898
- #: admin/social_sharing.php:1815
2899
  msgid "Enable sharing on AMP pages"
2900
  msgstr "Разрешить общий доступ на страницах AMP"
2901
 
2902
- #: admin/social_sharing.php:1825
2903
  msgid "Enable this option to render sharing icons on AMP pages"
2904
  msgstr "Включите этот параметр для отображения иконок на страницах AMP"
2905
 
2906
- #: admin/social_sharing.php:1882
2907
  msgid "Facebook Sharing Troubleshooter"
2908
  msgstr "Устранение неисправностей Поделиться от Facebook"
2909
 
2910
- #: admin/social_sharing.php:1887
2911
  #, fuzzy
2912
  msgid ""
2913
  "If Facebook sharing is not working fine, click at the following link and "
@@ -2919,7 +2883,7 @@ msgstr ""
2919
  "работает должным образом) на вашем сайте в текстовом поле. Нажмите "
2920
  "\"Получение информации о новой поломке\" ."
2921
 
2922
- #: admin/social_sharing.php:1905
2923
  msgid ""
2924
  "Why is sharer not showing the correct image, title and other meta tags "
2925
  "content?"
@@ -2927,16 +2891,25 @@ msgstr ""
2927
  "Почему расшаривание не показывает корректино изображение, заголовок и другие "
2928
  "мета данные контента? "
2929
 
2930
- #: admin/social_sharing.php:1906
2931
  #, fuzzy
2932
  msgid "Why is Facebook share count not working?"
2933
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
2934
 
2935
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
2936
  msgid "Why is Instagram icon redirecting to Instagram website?"
2937
  msgstr ""
2938
 
2939
- #: admin/social_sharing.php:1910
2940
  msgid ""
2941
  "Instagram icon is there to send website visitors to the Instagram page of "
2942
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2944,38 +2917,38 @@ msgid ""
2944
  "sections."
2945
  msgstr ""
2946
 
2947
- #: admin/social_sharing.php:1913
2948
  #, fuzzy
2949
  msgid "How to customize the url being shared?"
2950
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
2951
 
2952
- #: admin/social_sharing.php:1914
2953
  msgid ""
2954
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2955
  msgstr ""
2956
 
2957
- #: admin/social_sharing.php:1915
2958
  msgid ""
2959
  "It takes some time for their service to track the shares made on Twitter "
2960
  "from your website. If you still feel it's taking too long you can contact "
2961
  "their support directly from their website."
2962
  msgstr ""
2963
 
2964
- #: admin/social_sharing.php:1918
2965
  msgid ""
2966
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2967
  msgstr ""
2968
 
2969
- #: admin/social_sharing.php:1920
2970
  #, fuzzy
2971
  msgid "Why the color of share icons is not being updated?"
2972
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
2973
 
2974
- #: admin/social_sharing.php:1921
2975
  msgid "Why Facebook share counts are not appearing?"
2976
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
2977
 
2978
- #: admin/social_sharing.php:1922
2979
  msgid ""
2980
  "How can I show share counts of my website rather than of individual pages/"
2981
  "posts?"
@@ -2983,40 +2956,40 @@ msgstr ""
2983
  "Как мне отобразить общее количество Поделиться основанное на страницах/"
2984
  "постах?"
2985
 
2986
- #: admin/social_sharing.php:1923
2987
  msgid "How can I disable sharing on particular page/post?"
2988
  msgstr ""
2989
  "Как можно отключить кнопки Поделиться на конкретной странице или в посте?"
2990
 
2991
- #: admin/social_sharing.php:1924
2992
  msgid "How can I specify minimum sharing count for sharing networks?"
2993
  msgstr "Как мне указать минимальное количество для Поделиться"
2994
 
2995
- #: admin/social_sharing.php:1925
2996
  msgid "How to share specific page?"
2997
  msgstr "Как поделиться определенной страницей?"
2998
 
2999
- #: admin/social_sharing.php:1926
3000
  msgid "How to integrate Google Analytics with sharing?"
3001
  msgstr "Как интегрировать Google Analytics с Поделиться?"
3002
 
3003
- #: admin/social_sharing.php:1927
3004
  msgid "How to customize the look of total share counts?"
3005
  msgstr "Как настроить внешний вид счетчиков поделиться?"
3006
 
3007
- #: admin/social_sharing.php:1928
3008
  msgid "How to customize the look of individual share counts?"
3009
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
3010
 
3011
- #: admin/social_sharing.php:1929
3012
  msgid "How to show Whatsapp icon only on mobile devices?"
3013
  msgstr "Как показать иконку Whatsapp только на мобильных устройствах?"
3014
 
3015
- #: admin/social_sharing.php:1930
3016
  msgid "How to hide arrow after floating sharing bar?"
3017
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
3018
 
3019
- #: admin/social_sharing.php:1931
3020
  #, fuzzy
3021
  msgid "Why is share count not getting updated?"
3022
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
@@ -3042,71 +3015,71 @@ msgstr "Техническая документация"
3042
  msgid "Settings"
3043
  msgstr "Настройки"
3044
 
3045
- #: helper.php:579
3046
  msgid "Account linked successfully"
3047
  msgstr "Аккаунт успешно связан"
3048
 
3049
- #: helper.php:583
3050
  msgid "Account already exists or linked"
3051
  msgstr "Аккаунт уже существует или связан"
3052
 
3053
- #: helper.php:619 helper.php:621
3054
  msgid "Login with"
3055
  msgstr "Войти с"
3056
 
3057
- #: helper.php:656 helper.php:662
3058
  msgid "Currently"
3059
  msgstr "На данный момент"
3060
 
3061
- #: helper.php:656 helper.php:662
3062
  msgid "Connected with"
3063
  msgstr "Авторизоваться с помощью"
3064
 
3065
- #: helper.php:656 helper.php:662
3066
  msgid "Remove"
3067
  msgstr "Удалить"
3068
 
3069
- #: helper.php:733
3070
  msgid "Social Account Linking"
3071
  msgstr "Ссылки на социальный аккаунт"
3072
 
3073
- #: helper.php:783
3074
  msgid "Disable Standard Social Sharing on this "
3075
  msgstr "Отключить стандартный блок Поделиться на этом"
3076
 
3077
- #: helper.php:788
3078
  msgid "Disable Floating Social Sharing on this "
3079
  msgstr "Отключить плавающий блок Поделиться на этом"
3080
 
3081
- #: helper.php:793
3082
  msgid "Disable Standard like buttons on this "
3083
  msgstr "Откдючить стандартные кнопки Нравится на этом"
3084
 
3085
- #: helper.php:798
3086
  msgid "Disable Floating like buttons on this "
3087
  msgstr "Откдючить плавающие кнопки Нравится на этом"
3088
 
3089
- #: helper.php:803
3090
  msgid "Disable Social Commenting on this "
3091
  msgstr "Деактивировать социальное комментироване"
3092
 
3093
- #: helper.php:812
3094
  msgid "Standard Sharing Interface"
3095
  msgstr "Стандартный интерфейс Поделиться"
3096
 
3097
- #: helper.php:818 helper.php:837
3098
  msgid "Starting share count for "
3099
  msgstr "Запустить счетчик поделиться для"
3100
 
3101
- #: helper.php:831
3102
  msgid "Floating Sharing Interface"
3103
  msgstr "Плавающий интерфейс Поделиться"
3104
 
3105
- #: helper.php:927 super_socializer.php:2363
3106
  msgid "Social Avatar"
3107
  msgstr "Социальный аватар"
3108
 
3109
- #: helper.php:930 super_socializer.php:2374
3110
  msgid ""
3111
  "Do not fetch and update social avatar from my profile, next time I Social "
3112
  "Login"
@@ -3114,38 +3087,38 @@ msgstr ""
3114
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
3115
  "я когда я использую вход через соцсети"
3116
 
3117
- #: helper.php:931 super_socializer.php:2378
3118
  msgid "Update social avatar, next time I Social Login"
3119
  msgstr ""
3120
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
3121
  "соцсети"
3122
 
3123
- #: helper.php:934
3124
  msgid "Small Avatar"
3125
  msgstr "Небольшой аватар"
3126
 
3127
- #: helper.php:938
3128
  msgid "Large Avatar"
3129
  msgstr "Большой аватар"
3130
 
3131
- #: helper.php:998 super_socializer.php:1924
3132
  msgid "Please verify your email address to login."
3133
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
3134
 
3135
- #: helper.php:1035
3136
  msgid "Click to delete social profile data"
3137
  msgstr ""
3138
 
3139
- #: helper.php:1064
3140
  #, fuzzy
3141
  msgid "Deleting"
3142
  msgstr "Настройки"
3143
 
3144
- #: helper.php:1074
3145
  msgid "Deleted"
3146
  msgstr ""
3147
 
3148
- #: helper.php:1076
3149
  msgid "Something bad happened"
3150
  msgstr ""
3151
 
@@ -3201,26 +3174,29 @@ msgid "Archives"
3201
  msgstr "Архивы "
3202
 
3203
  #: inc/social_sharing.php:225
 
3204
  msgid "More"
3205
  msgstr ""
 
 
3206
 
3207
- #: inc/social_sharing.php:241 super_socializer.php:2034
3208
  msgid "Share"
3209
  msgstr "Поделиться"
3210
 
3211
- #: inc/social_sharing.php:241 super_socializer.php:2034
3212
  msgid "Shares"
3213
  msgstr "Поделились"
3214
 
3215
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3216
  msgid "Invalid request"
3217
  msgstr "Неверный Запрос!"
3218
 
3219
- #: inc/social_sharing.php:949
3220
  msgid "Providers not selected"
3221
  msgstr "Сервисы не выбраны"
3222
 
3223
- #: inc/social_sharing_networks.php:57
3224
  msgid "Copy Link"
3225
  msgstr ""
3226
 
@@ -3497,7 +3473,11 @@ msgstr ""
3497
  msgid "RSS Feed URL:"
3498
  msgstr ""
3499
 
3500
- #: super_socializer.php:1707
 
 
 
 
3501
  msgid ""
3502
  "cURL is not enabled at your website server. Please contact your website "
3503
  "server administrator to enable it."
@@ -3505,7 +3485,7 @@ msgstr ""
3505
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
3506
  "администратору вашего сайта, чтобы включить это."
3507
 
3508
- #: super_socializer.php:1735
3509
  #, fuzzy, php-format
3510
  msgid ""
3511
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3514,7 +3494,7 @@ msgstr ""
3514
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
3515
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
3516
 
3517
- #: super_socializer.php:1738
3518
  #, fuzzy, php-format
3519
  msgid ""
3520
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3523,7 +3503,7 @@ msgstr ""
3523
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
3524
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
3525
 
3526
- #: super_socializer.php:1741
3527
  msgid ""
3528
  "Make sure cURL is enabled at your website server. You may need to contact "
3529
  "the server administrator of your website to verify this"
@@ -3531,122 +3511,122 @@ msgstr ""
3531
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
3532
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
3533
 
3534
- #: super_socializer.php:1902
3535
  #, fuzzy
3536
  msgid "Search"
3537
  msgstr "Искать"
3538
 
3539
- #: super_socializer.php:1924
3540
  msgid "Your email has been verified. Now you can login to your account"
3541
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
3542
 
3543
- #: super_socializer.php:1928
3544
  msgid "Notification"
3545
  msgstr "Уведомления"
3546
 
3547
- #: super_socializer.php:1949
3548
  msgid "Please check your email inbox to complete the registration."
3549
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
3550
 
3551
- #: super_socializer.php:2018
3552
  msgid "Leave a reply"
3553
  msgstr "Оставить ответ"
3554
 
3555
- #: super_socializer.php:2034
3556
  #, fuzzy
3557
  msgid "Link copied."
3558
  msgstr "LinkedIn"
3559
 
3560
- #: super_socializer.php:2279
3561
  msgid "Super Socializer - General Options"
3562
  msgstr "Super Socializer - Общие настройки"
3563
 
3564
- #: super_socializer.php:2350
3565
  msgid ""
3566
  "I agree to my personal data being stored and used as per Privacy Policy and "
3567
  "Terms and Conditions"
3568
  msgstr ""
3569
 
3570
- #: super_socializer.php:2354
3571
  msgid ""
3572
  "I revoke my consent to store and use my personal data. Kindly delete my "
3573
  "personal data saved in this website."
3574
  msgstr ""
3575
 
3576
- #: super_socializer.php:2366
3577
  msgid "Small Avatar Url"
3578
  msgstr "Ссылка для маленького аватара"
3579
 
3580
- #: super_socializer.php:2370
3581
  msgid "Large Avatar Url"
3582
  msgstr "Ссылка для большого аватара"
3583
 
3584
- #: super_socializer.php:2472
3585
  msgid "Login with your Social ID"
3586
  msgstr "Войти, используя социальный аккаунт"
3587
 
3588
- #: super_socializer.php:2473
3589
  msgid "Email you entered is already registered or invalid"
3590
  msgstr ""
3591
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
3592
 
3593
- #: super_socializer.php:2480
3594
  msgid "Please enter a valid email address. You might be required to verify it"
3595
  msgstr ""
3596
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
3597
  "потребуется проверить его"
3598
 
3599
- #: super_socializer.php:2484 super_socializer.php:3238
3600
  msgid "Link your social account to login to your account at this website"
3601
  msgstr ""
3602
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
3603
  "этом сайте"
3604
 
3605
- #: super_socializer.php:2741
3606
  msgid "Thanks for installing Super Socializer plugin"
3607
  msgstr ""
3608
 
3609
- #: super_socializer.php:2743
3610
  msgid "Configure the Plugin"
3611
  msgstr ""
3612
 
3613
- #: super_socializer.php:2754
3614
  msgid ""
3615
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3616
  "current version of Super Socializer"
3617
  msgstr ""
3618
 
3619
- #: super_socializer.php:2763
3620
  msgid ""
3621
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3622
  "version of Super Socializer"
3623
  msgstr ""
3624
 
3625
- #: super_socializer.php:2772
3626
  msgid ""
3627
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3628
  "compatibility with the current version of Super Socializer"
3629
  msgstr ""
3630
 
3631
- #: super_socializer.php:2781
3632
  msgid ""
3633
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3634
  "with current version of Super Socializer"
3635
  msgstr ""
3636
 
3637
- #: super_socializer.php:2790
3638
  msgid ""
3639
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3640
  "with current version of Super Socializer"
3641
  msgstr ""
3642
 
3643
- #: super_socializer.php:2801
3644
  #, php-format
3645
  msgid ""
3646
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3647
  msgstr ""
3648
 
3649
- #: super_socializer.php:2810
3650
  #, php-format
3651
  msgid ""
3652
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3654,7 +3634,7 @@ msgid ""
3654
  "Instagram App Secret <a href=\"%s\">here</a>"
3655
  msgstr ""
3656
 
3657
- #: super_socializer.php:2819 super_socializer.php:2828
3658
  #, php-format
3659
  msgid ""
3660
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3663,13 +3643,13 @@ msgid ""
3663
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3664
  msgstr ""
3665
 
3666
- #: super_socializer.php:2844
3667
  #, php-format
3668
  msgid ""
3669
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3670
  msgstr ""
3671
 
3672
- #: super_socializer.php:2868
3673
  #, php-format
3674
  msgid ""
3675
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3677,14 +3657,14 @@ msgid ""
3677
  "target=\"_blank\">here</a>"
3678
  msgstr ""
3679
 
3680
- #: super_socializer.php:2868 super_socializer.php:2893
3681
- #: super_socializer.php:2918 super_socializer.php:2943
3682
- #: super_socializer.php:2976 super_socializer.php:3004
3683
- #: super_socializer.php:3031
3684
  msgid "Okay"
3685
  msgstr "Окей"
3686
 
3687
- #: super_socializer.php:2893
3688
  #, php-format
3689
  msgid ""
3690
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3692,7 +3672,7 @@ msgid ""
3692
  "\">here</a>"
3693
  msgstr ""
3694
 
3695
- #: super_socializer.php:2918
3696
  #, php-format
3697
  msgid ""
3698
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3700,7 +3680,7 @@ msgid ""
3700
  "target=\"_blank\">here</a>"
3701
  msgstr ""
3702
 
3703
- #: super_socializer.php:2943
3704
  #, php-format
3705
  msgid ""
3706
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3708,13 +3688,13 @@ msgid ""
3708
  "target=\"_blank\">here</a>"
3709
  msgstr ""
3710
 
3711
- #: super_socializer.php:2954
3712
  #, php-format
3713
  msgid ""
3714
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3715
  msgstr ""
3716
 
3717
- #: super_socializer.php:2976
3718
  #, php-format
3719
  msgid ""
3720
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3722,7 +3702,7 @@ msgid ""
3722
  "\"%s\" target=\"_blank\">here</a>"
3723
  msgstr ""
3724
 
3725
- #: super_socializer.php:3004
3726
  #, php-format
3727
  msgid ""
3728
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3731,7 +3711,7 @@ msgid ""
3731
  "your website %s with them. No need to copy-paste any code from their website."
3732
  msgstr ""
3733
 
3734
- #: super_socializer.php:3031
3735
  #, php-format
3736
  msgid ""
3737
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3739,7 +3719,7 @@ msgid ""
3739
  "\"%s\" target=\"_blank\">here</a>"
3740
  msgstr ""
3741
 
3742
- #: super_socializer.php:3056
3743
  #, php-format
3744
  msgid ""
3745
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3747,20 +3727,11 @@ msgid ""
3747
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3748
  msgstr ""
3749
 
3750
- #: super_socializer.php:3056 super_socializer.php:3083
3751
  msgid "Dismiss"
3752
  msgstr ""
3753
 
3754
- #: super_socializer.php:3082
3755
- #, php-format
3756
- msgid ""
3757
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3758
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3759
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3760
- "that, clear share counts cache from \"Miscellaneous\" section"
3761
- msgstr ""
3762
-
3763
- #: super_socializer.php:3314
3764
  msgid ""
3765
  "Your browser is blocking some features of this website. Please follow the "
3766
  "instructions at {support_url} to unblock these."
@@ -3768,6 +3739,33 @@ msgstr ""
3768
  "Ваш браузер блокирует некоторые функции данного веб-сайта. Пожалуйста, "
3769
  "следуйте инструкциям в {support_url}, чтобы разблокировать функции."
3770
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3771
  #, fuzzy
3772
  #~ msgid ""
3773
  #~ "Required for Dropbox Social Login to work. Please follow the "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-17 15:41+0530\n"
6
+ "PO-Revision-Date: 2021-07-17 15:41+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
22
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
23
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
24
  #: admin/social_login.php:5 admin/social_login.php:1984
25
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
26
  #, fuzzy, php-format
27
  msgid ""
28
  "You can appreciate the effort put in this free plugin by rating it <a href="
33
  "Twitter."
34
 
35
  #: admin/general_options.php:15 admin/social_commenting.php:47
36
+ #: super_socializer.php:2291
37
  msgid "General Options"
38
  msgstr "Основные настройки"
39
 
82
 
83
  #: admin/general_options.php:89 admin/like_buttons.php:780
84
  #: admin/social_commenting.php:400 admin/social_login.php:1980
85
+ #: admin/social_sharing.php:1912 helper.php:936
86
  msgid "Save Changes"
87
  msgstr "Сохранить изменения"
88
 
89
  #: admin/general_options.php:103 admin/like_buttons.php:790
90
  #: admin/social_commenting.php:410 admin/social_login.php:1990
91
+ #: admin/social_sharing.php:1922
92
  #, fuzzy
93
  msgid "Instagram Shoutout"
94
  msgstr "Instagram"
95
 
96
  #: admin/general_options.php:105 admin/like_buttons.php:792
97
  #: admin/social_commenting.php:412 admin/social_login.php:1992
98
+ #: admin/social_sharing.php:1924
99
  msgid ""
100
  "If you can send (to hello@heateor.com) how this plugin is helping your "
101
  "business, we would be glad to shoutout on Instagram. You can also send any "
204
  "Панель управления кнопками Нравится. Должно быть включено чтобы активировать "
205
  "кнопки Нравится"
206
 
207
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
208
  msgid "Standard Interface"
209
  msgstr "Стандартный интерфейс"
210
 
211
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
212
  msgid "Floating Interface"
213
  msgstr "Плавающий интерфейс"
214
 
215
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
216
  msgid "Miscellaneous"
217
  msgstr "Разное"
218
 
219
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
220
  #, fuzzy
221
  msgid "3rd Party Integration"
222
  msgstr "XProfile интеграция"
223
 
224
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
225
  #: admin/social_login.php:45 admin/social_login.php:1946
226
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
227
+ #: admin/social_sharing.php:1839
228
  msgid "Shortcode & Widget"
229
  msgstr "Шорткод и виджет"
230
 
231
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
232
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
233
  #: admin/social_login.php:46 admin/social_login.php:1960
234
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
235
  msgid "FAQ"
236
  msgstr "Часто задаваемые вопросы (FAQ)"
237
 
248
  msgstr "Мастер настройки включения горизонтальных кнопок Нравится"
249
 
250
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
251
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
252
  msgid "Target Url"
253
  msgstr "Целевой URL:"
254
 
255
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
256
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
257
  msgid "Url of the webpage where icons are located (default)"
258
  msgstr "URL-адрес веб-страницы, где расположены значки (по умолчанию)"
259
 
260
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
261
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
262
  msgid "Url of the homepage of your website"
263
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
264
 
265
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
266
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
267
  msgid "Custom url"
268
  msgstr "Пользовательская ссылка"
269
 
274
  "Твитнуть"
275
 
276
  #: admin/like_buttons.php:105 admin/social_login.php:1231
277
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
278
  msgid "Title"
279
  msgstr "Заголовок"
280
 
291
  msgstr "Выберите сервисы для интерфейса. Переместите их чтобы изменить порядок"
292
 
293
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
294
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
295
  msgid "Horizontal alignment"
296
  msgstr "Горизонтальное выравнивание"
297
 
298
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
299
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
300
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
301
  #: inc/widget.php:446 inc/widget.php:758
302
  msgid "Left"
303
  msgstr "Слева"
304
 
305
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
306
  msgid "Center"
307
  msgstr "Центр"
308
 
309
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
310
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
311
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
312
  #: inc/widget.php:447 inc/widget.php:759
313
  msgid "Right"
314
  msgstr "Справа"
317
  msgid "Horizontal alignment of the interface"
318
  msgstr "Горизонтальное выравнивание интерфейса"
319
 
320
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
321
  msgid "Position with respect to content"
322
  msgstr "Позиция относительно контента"
323
 
324
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
325
  msgid "Top of the content"
326
  msgstr "Над содержимым"
327
 
328
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
329
  msgid "Bottom of the content"
330
  msgstr "Под содержимым"
331
 
339
 
340
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
341
  #: admin/social_login.php:1548 admin/social_login.php:1577
342
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
343
  msgid "Homepage"
344
  msgstr "Главная"
345
 
346
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
347
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
348
  msgid "Posts"
349
  msgstr "Записи"
350
 
351
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
352
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
353
  msgid "Pages"
354
  msgstr "Страницы"
355
 
356
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
357
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
358
  msgid "Excerpts and Posts page"
359
  msgstr "Страницы анонсов и страниц"
360
 
361
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
362
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
363
  msgid "Category Archives"
364
  msgstr "Архивы категорий"
365
 
366
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
367
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
368
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
369
  msgstr "Архив Страницы (Категория, тегов, автор или страницы на основе дат)"
370
 
371
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
372
  msgid "BuddyPress activity"
373
  msgstr "BuddyPress активность"
374
 
375
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
376
  msgid "BuddyPress group (only at top of content)"
377
  msgstr "BuddyPress группы (только в верхней части контента)"
378
 
379
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
380
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
381
  msgid "BBPress forum"
382
  msgstr "BBPress форум"
383
 
384
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
385
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
386
  msgid "BBPress topic"
387
  msgstr "BBPress тема"
388
 
389
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
390
  msgid "BBPress reply"
391
  msgstr "BBPress ответ"
392
 
393
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
394
  msgid "After individual product at WooCommerce Shop page"
395
  msgstr "После индивидуального продукта на странице магазина"
396
 
397
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
398
  msgid "WooCommerce Product Page"
399
  msgstr "Продукт Woocommerce"
400
 
401
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
402
  msgid "WooCommerce Thankyou Page"
403
  msgstr "WooCommerce страница благодарности"
404
 
419
  msgstr ""
420
  "Мастер управления для включения вертикального (плавающего) счетчика виджета "
421
 
422
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
423
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
424
  #: inc/widget.php:460 inc/widget.php:772
425
  msgid "Background Color"
426
  msgstr "Цвет фона"
437
  "можете получить шестнадцатеричный код <a href=\"http://www.colorpicker.com/"
438
  "\" target=\"_blank\">здесь</a>"
439
 
440
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
441
  msgid "Left offset"
442
  msgstr "Смещение влево"
443
 
450
  "правой стороне и уменьшать по отношению к правой сторону. Число может быть "
451
  "отрицательным."
452
 
453
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
454
  msgid "Right offset"
455
  msgstr "Смещение вправо"
456
 
463
  "правой стороне и уменьшать по отношению к правой сторону. Число может быть "
464
  "отрицательным."
465
 
466
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
467
  msgid "Top offset"
468
  msgstr "Верхний отступ"
469
 
475
  "Укажите число. Увеличение числа будет сдвигать интерфейс по отношению к низу "
476
  "и уменьшать по отношению к верху. "
477
 
478
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
479
  msgid "BuddyPress group"
480
  msgstr "BuddyPress группа"
481
 
493
  "Если включено, то вертикальный интерфейс Нравится не будет отображаться на "
494
  "мобильных устройствах"
495
 
496
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
497
  msgid "Url shortener"
498
  msgstr "Укорачивание URL"
499
 
513
  msgid "Enable bit.ly url shortener for tweet button"
514
  msgstr "Активировать сокращение ссылок bit.ly для кнопки Твитнуть"
515
 
516
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
517
  msgid "Master control to enable bit.ly url shortening for sharing"
518
  msgstr "Мастер управления сокращения ссылок через bit.ly для Поделиться"
519
 
520
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
521
  msgid "Bit.ly generic access token"
522
  msgstr ""
523
 
524
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
525
  #, php-format
526
  msgid ""
527
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
530
  "\">link</a>"
531
  msgstr ""
532
 
533
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
534
  msgid "Clear Bitly Cache"
535
  msgstr "Очистить Bitly кэш"
536
 
537
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
538
  msgid "ShortUrl cache cleared successfully."
539
  msgstr "ShortUrl кэш успешно очищен."
540
 
541
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
542
  msgid ""
543
  "Use this to delete short urls saved in database. Handy, if urls of your "
544
  "website have been changed but short urls are still being generated for old "
549
  "адреса по-прежнему создаются для старых URL-адресов."
550
 
551
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
552
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
553
+ #: admin/social_sharing.php:1717
554
  msgid "Language"
555
  msgstr "Язык"
556
 
593
  "Используемое имя пользователя будет показано в Buffer после Поделиться как "
594
  "\"via @USERNAME\". Оставьте пустым если не хотите отображать имя."
595
 
596
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
597
  msgid "myCRED"
598
  msgstr ""
599
 
600
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
601
  msgid "Append myCRED referral ID to the urls being shared"
602
  msgstr ""
603
 
605
  msgid "Like Buttons Shortcode & Widget"
606
  msgstr "Шорткод и виджет Нравится"
607
 
608
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
609
  msgid "Why is there so much space between like buttons?"
610
  msgstr "Почему существует так много места между кнопками?"
611
 
612
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
613
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
614
  msgstr ""
615
  "Почему плавающая панель Поделиться/кнопки Нравится не отображаются на "
616
  "главной странице?"
617
 
618
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
619
  msgid "How to Place Title and Social Share Icons in the Same Row?"
620
  msgstr ""
621
 
826
  msgstr "Шорткод комментирования через социальные сети"
827
 
828
  #: admin/social_commenting.php:386 admin/social_login.php:1962
829
+ #: admin/social_sharing.php:1872
830
  msgid ""
831
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
832
  "an online website for the plugin to function properly."
844
  msgstr ""
845
 
846
  #: admin/social_commenting.php:389 admin/social_login.php:1969
847
+ #: admin/social_sharing.php:1887
848
  msgid "Why is my browser blocking some features of the plugin?"
849
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
850
 
881
  msgstr "Расширенная конфигурация"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
+ #: super_socializer.php:2359
885
  msgid "GDPR"
886
  msgstr ""
887
 
1026
  msgstr ""
1027
 
1028
  #: admin/social_login.php:203
1029
+ msgid "Mail.ru"
1030
  msgstr ""
1031
 
1032
  #: admin/social_login.php:207
1041
  msgid "Select Social ID provider to enable in Social Login"
1042
  msgstr "Выберите социальные сети чтобы активировать вход через социальные сети"
1043
 
1044
+ #: admin/social_login.php:226
1045
  msgid "Facebook App ID"
1046
  msgstr "Facebook App ID"
1047
 
1062
  "Вставьте следующий URL-адрес в <strong>URL-адрес сайта</strong> для "
1063
  "упоминания ссылки."
1064
 
1065
+ #: admin/social_login.php:247
1066
  #, fuzzy
1067
  msgid "Facebook App Secret"
1068
  msgstr "Facebook App ID"
2029
  "Если этот параметр включен, пользователи смогут обновить свой социальный "
2030
  "аватар из раздела «Профиль» фото в профиле BuddyPress "
2031
 
2032
+ #: admin/social_login.php:1490 super_socializer.php:1958
2033
  msgid "Email required"
2034
  msgstr "Email (Обязательно)"
2035
 
2330
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2331
  msgstr ""
2332
 
2333
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2334
  msgid "Theme Selection"
2335
  msgstr "Выбор тем"
2336
 
2337
+ #: admin/social_sharing.php:64
2338
  msgid "Troubleshooter"
2339
  msgstr "Устранение неисправностей"
2340
 
2341
+ #: admin/social_sharing.php:73
2342
  msgid "Standard interface theme"
2343
  msgstr "Стандартный интерфейс"
2344
 
2345
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2346
  msgid "Icon Preview"
2347
  msgstr "Превью иконок"
2348
 
2349
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2350
  msgid ""
2351
  "Do not forget to save the configuration after making changes by clicking the "
2352
  "save button below"
2354
  "Не забудьте сохранить конфигурацию после внесения изменений, нажав ниже "
2355
  "кнопку сохранить"
2356
 
2357
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2358
  msgid "Shape"
2359
  msgstr "Форма"
2360
 
2361
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2362
  msgid "Round"
2363
  msgstr "Круглая"
2364
 
2365
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2366
  msgid "Square"
2367
  msgstr "Квадратная"
2368
 
2369
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2370
  msgid "Rectangle"
2371
  msgstr "Прямоугольник"
2372
 
2373
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2374
  msgid "Shape of the sharing icons"
2375
  msgstr "Форма кнопок Поделиться"
2376
 
2377
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2378
  msgid "Size (in pixels)"
2379
  msgstr "Размер (в пикселях)"
2380
 
2381
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2382
  msgid "Size of the sharing icons"
2383
  msgstr "Размер кнопок Поделиться"
2384
 
2385
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2386
  msgid "Width (in pixels)"
2387
  msgstr "Ширина (в пикселях)"
2388
 
2389
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2390
  msgid "Width of the sharing icons"
2391
  msgstr "Ширина иконок поделиться"
2392
 
2393
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2394
  msgid "Height (in pixels)"
2395
  msgstr "Высота (в пикселях)"
2396
 
2397
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2398
  msgid "Height of the sharing icons"
2399
  msgstr "Высота кнопок Поделиться"
2400
 
2401
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2402
  msgid "Border radius (in pixels)"
2403
  msgstr "Радиус рамки (в пикселях)"
2404
 
2405
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2406
  msgid ""
2407
  "Specify a value for rounded corners. More the value, more rounded will the "
2408
  "corners be. Leave empty for sharp corners."
2410
  "Укажите значение для закругленных углов. Чем больше значение параметра, "
2411
  "более округлыми будут углы. Оставьте пустым для прямых углов."
2412
 
2413
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2414
  msgid "Logo Color"
2415
  msgstr "Цвет логотипа"
2416
 
2417
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2418
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2419
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2420
  msgid "Default"
2421
  msgstr "По умолчанию"
2422
 
2423
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2424
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2425
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2426
  msgid "On Hover"
2427
  msgstr "При наведении"
2428
 
2429
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2430
  msgid ""
2431
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2432
  "empty for default. You can get the hex code of the required color from <a "
2437
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2438
  "\">здесь</a>"
2439
 
2440
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2441
  msgid ""
2442
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2443
  "\"transparent\" for transparent background. Leave empty for default. You can "
2449
  "шестнадцатеричный код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2450
  "\">здесь</a>"
2451
 
2452
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2453
  msgid "Border"
2454
  msgstr "Рамка"
2455
 
2456
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2457
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2458
  msgid "Border Width"
2459
  msgstr "Ширина рамки"
2460
 
2461
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2462
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2463
  msgid "Border Color"
2464
  msgstr "Цвет рамки"
2465
 
2466
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2467
  msgid "Icon border"
2468
  msgstr "Иконка рамки"
2469
 
2470
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2471
  msgid "Counter Position"
2472
  msgstr "Позиция счетчика"
2473
 
2474
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2475
  msgid "(applies, if counter enabled)"
2476
  msgstr "(применяется, если счетчик включен)"
2477
 
2478
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2479
  msgid "Top"
2480
  msgstr "Сверху"
2481
 
2482
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2483
  msgid "Bottom"
2484
  msgstr "Снизу"
2485
 
2486
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2487
  msgid "Inner Left"
2488
  msgstr "Отступ слева"
2489
 
2490
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2491
  msgid "Inner Top"
2492
  msgstr "Верхний отступ"
2493
 
2494
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2495
  msgid "Inner Right"
2496
  msgstr "Внутренний отступ справа"
2497
 
2498
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2499
  msgid "Inner Bottom"
2500
  msgstr "Нижний отступ"
2501
 
2502
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2503
  msgid "Position of share counter"
2504
  msgstr "Положение счетчика Поделиться"
2505
 
2506
+ #: admin/social_sharing.php:371
2507
  msgid "Floating interface theme"
2508
  msgstr "Плавающий интерфейс Поделиться"
2509
 
2510
+ #: admin/social_sharing.php:675
2511
  msgid "Standard Sharing Interface Options"
2512
  msgstr "Стандартные параметры интерфейса"
2513
 
2514
+ #: admin/social_sharing.php:680
2515
  msgid "Enable Standard sharing interface"
2516
  msgstr "Включить стандартный интерфейс Поделиться"
2517
 
2518
+ #: admin/social_sharing.php:690
2519
  msgid "Master control to enable standard sharing"
2520
  msgstr "Мастер настройки включения стандартных опций Поделиться"
2521
 
2522
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2523
  msgid "Url to share"
2524
  msgstr "Ссылка чтобы Поделиться"
2525
 
2526
+ #: admin/social_sharing.php:731
2527
  msgid "The text to display above the sharing interface"
2528
  msgstr "Текст, отображаемый над интерфейсом Поделиться"
2529
 
2530
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2531
  msgid "Instagram username"
2532
  msgstr "Введите имя пользователя Instagram."
2533
 
2534
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2535
  msgid ""
2536
  "Username of the Instagram account you want to redirect users to, on clicking "
2537
  "the icon"
2539
  "Имя пользователя Instagram, на учетную запись которого вы хотите "
2540
  "перенаправить пользователей, по нажатию на иконку"
2541
 
2542
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2543
  #, fuzzy
2544
  msgid "HTML ID of container element of comment form"
2545
  msgstr "HTML-идентификатор форма комментария контейнер"
2546
 
2547
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2548
  msgid ""
2549
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2550
  "icon."
2551
  msgstr ""
2552
 
2553
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2554
  msgid "Rearrange icons"
2555
  msgstr "Переставить иконы"
2556
 
2557
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2558
  msgid "Drag the icons to rearrange in desired order"
2559
  msgstr "Если хотите изменить порядок, просто перетащите изображения"
2560
 
2561
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2562
  msgid "Select Sharing Services"
2563
  msgstr "Выберите сервисы Поделиться"
2564
 
2565
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2566
  msgid "Select sharing services to show in social share bar"
2567
  msgstr "Выберите сервисы для показа в панели шейринга"
2568
 
2569
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2570
  msgid "Search social network"
2571
  msgstr ""
2572
 
2573
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2574
  msgid "Horizontal alignment of the sharing interface"
2575
  msgstr "Горизонтальное выравнивание интерфейса Поделиться"
2576
 
2577
+ #: admin/social_sharing.php:942
2578
  msgid "Specify position of the sharing interface with respect to the content"
2579
  msgstr "Укажите положение интерфейса Поделиться относительно содержимого."
2580
 
2581
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2582
  msgid "Placement"
2583
  msgstr "Размещение"
2584
 
2585
+ #: admin/social_sharing.php:1017
2586
  msgid "Specify the pages where you want to enable Sharing interface"
2587
  msgstr "Укажите страницы, где вы хотите, чтобы включить интерфейс Sharing"
2588
 
2589
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2590
  msgid "Show share counts"
2591
  msgstr "Показать счетчик кнопок Поделиться"
2592
 
2593
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2594
  #, fuzzy
2595
  msgid ""
2596
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2597
+ "Odnoklassniki, Fintel and Vkontakte"
2598
  msgstr ""
2599
  "Поддерживаются Facebook, Linkedin, GooglePlus, Delicious, Buffer, Reddit, "
2600
  "Pinterest, Stumbleupon, Odnoklassniki и Vkontakte"
2601
 
2602
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2603
  #, php-format
2604
  msgid ""
2605
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2608
  "their website."
2609
  msgstr ""
2610
 
2611
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2612
  msgid "If enabled, share counts are displayed above sharing icons."
2613
  msgstr "Если включено, счетчики отображаются выше кнопок Поделиться"
2614
 
2615
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2616
+ #: admin/social_sharing.php:1659
2617
+ msgid "Track Social Shares for Every Social Network"
2618
+ msgstr ""
2619
+
2620
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2621
  msgid "Show total shares"
2622
  msgstr "Включить общее количество Поделиться"
2623
 
2624
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2625
  msgid "If enabled, total shares will be displayed with sharing icons"
2626
  msgstr ""
2627
  "Если включено, то общее количество Поделиться будет отображаться с кнопками "
2628
  "Поделиться"
2629
 
2630
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2631
  msgid "Enable 'More' icon"
2632
  msgstr "Включить значок «Больше»"
2633
 
2634
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2635
  msgid ""
2636
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2637
  "which shows additional sharing networks in popup"
2639
  "Если включено, «Больше» будет отображаться после кнопок Поделиться, которая "
2640
  "показывает дополнительные сервисы в всплывающем окне"
2641
 
2642
+ #: admin/social_sharing.php:1096
2643
  msgid "Floating Sharing Interface Options"
2644
  msgstr "Параметры плавающих кнопок Поделиться"
2645
 
2646
+ #: admin/social_sharing.php:1101
2647
  msgid "Enable Floating sharing interface"
2648
  msgstr "Включить интерфейс плавающих кнопок Поделиться"
2649
 
2650
+ #: admin/social_sharing.php:1111
2651
  msgid "Master control to enable floating sharing widget"
2652
  msgstr "Мастер управления включения плавающего виджета Поделиться"
2653
 
2654
+ #: admin/social_sharing.php:1299
2655
  msgid ""
2656
  "Specify the color or hex code (example #cc78e0) for the background of "
2657
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
2663
  "Вы можете получить шестнадцатеричный код <a href=\"http://www.colorpicker."
2664
  "com/\" target=\"_blank\">здесь</a>"
2665
 
2666
+ #: admin/social_sharing.php:1337
2667
  msgid ""
2668
  "Specify a number. Increase in number will shift sharing interface towards "
2669
  "right and decrease will shift it towards left. Number can be negative too."
2672
  "отношению к правой стороне и уменьшать по отношению к правой сторону. Число "
2673
  "может быть отрицательным."
2674
 
2675
+ #: admin/social_sharing.php:1356
2676
  msgid ""
2677
  "Specify a number. Increase in number will shift sharing interface towards "
2678
  "left and decrease will shift it towards right. Number can be negative too."
2681
  "отношению к левой стороне и уменьшать по отношению к правой сторону. Число "
2682
  "может быть отрицательным."
2683
 
2684
+ #: admin/social_sharing.php:1374
2685
  msgid ""
2686
  "Specify a number. Increase in number will shift sharing interface towards "
2687
  "bottom and decrease will shift it towards top."
2689
  "Укажите число. Увеличение числа будет сдвигать интерфейс Поделиться по "
2690
  "отношению к низу и уменьшать по отношению к верху. "
2691
 
2692
+ #: admin/social_sharing.php:1430
2693
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2694
  msgstr ""
2695
  "Укажите страницы, где вы хотите включить вертикальный интерфейс Поделиться"
2696
 
2697
+ #: admin/social_sharing.php:1499
2698
  #, fuzzy
2699
  msgid "Hide floating slider"
2700
  msgstr "Скрыть для зарегистрированных пользователей"
2701
 
2702
+ #: admin/social_sharing.php:1509
2703
  #, fuzzy
2704
  msgid "Hides the slider arrow present below the floating share bar"
2705
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
2706
 
2707
+ #: admin/social_sharing.php:1516
2708
  msgid "Vertical floating bar responsiveness"
2709
  msgstr "Отзывчивость вертикальных плавающих кнопок"
2710
 
2711
+ #: admin/social_sharing.php:1519
2712
  #, php-format
2713
  msgid "Display vertical interface only when screen is wider than %s pixels"
2714
  msgstr ""
2715
  "Показывать вертикальный интерфейс только если ширина экрана больше чем %s "
2716
  "пикселей."
2717
 
2718
+ #: admin/social_sharing.php:1526
2719
  msgid ""
2720
  "Display vertical interface only when screen is wider than the width "
2721
  "specified."
2723
  "Показывать вертикальный интерфейс только если ширина экрана больше чем "
2724
  "ширина по умолчанию."
2725
 
2726
+ #: admin/social_sharing.php:1533
2727
  msgid "Horizontal floating bar responsiveness"
2728
  msgstr "Отзывчивость вертикальных плавающих кнопок"
2729
 
2730
+ #: admin/social_sharing.php:1536
2731
  #, php-format
2732
  msgid ""
2733
  "Stick vertical floating interface horizontally at bottom only when screen is "
2736
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
2737
  "уже чем %s пикселей"
2738
 
2739
+ #: admin/social_sharing.php:1543
2740
  msgid ""
2741
  "Stick vertical floating interface horizontally at bottom only when screen is "
2742
  "narrower than the width specified"
2744
  "Закреплять вертикальный плавающий интерфейс внизу только тогда когда экран "
2745
  "уже чем указанная ширина"
2746
 
2747
+ #: admin/social_sharing.php:1552
2748
  msgid "Horizontal floating bar position"
2749
  msgstr "Расположение горизонтальной плавающей панели"
2750
 
2751
+ #: admin/social_sharing.php:1555
2752
  #, php-format
2753
  msgid "%s pixels from %s"
2754
  msgstr "%s пикселей от %s"
2755
 
2756
+ #: admin/social_sharing.php:1556
2757
  msgid "Auto-adjust according to screen width (responsive)"
2758
  msgstr ""
2759
 
2760
+ #: admin/social_sharing.php:1563
2761
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2762
  msgstr ""
2763
  "Выравнивание горизонтального плавающего интерфейса. Число может быть "
2764
  "отрицательным."
2765
 
2766
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2767
  msgid "Use shortlinks already installed"
2768
  msgstr "Использование коротких ссылок уже установлено"
2769
 
2770
+ #: admin/social_sharing.php:1598
2771
  msgid "Uses default short url permalinks without using any additional plugin"
2772
  msgstr ""
2773
  "Использует по умолчанию постоянные короткие url без использования каких-"
2774
  "либо дополнительных плагинов"
2775
 
2776
+ #: admin/social_sharing.php:1605
2777
  msgid "Enable bit.ly url shortener for sharing"
2778
  msgstr "Активировать bit.ly для сокращения ссылок для Поделиться"
2779
 
2780
+ #: admin/social_sharing.php:1664
2781
  msgid "Share Count Cache"
2782
  msgstr "Кэш счетчиков поделиться"
2783
 
2784
+ #: admin/social_sharing.php:1669
2785
  msgid "Refresh Share Count cache every"
2786
  msgstr "Обновить кэш счетчиков Поделиться"
2787
 
2788
+ #: admin/social_sharing.php:1674
2789
  msgid "Second(s)"
2790
  msgstr "Секунд"
2791
 
2792
+ #: admin/social_sharing.php:1675
2793
  msgid "Minute(s)"
2794
  msgstr "Минут"
2795
 
2796
+ #: admin/social_sharing.php:1676
2797
  msgid "Hour(s)"
2798
  msgstr "Часов"
2799
 
2800
+ #: admin/social_sharing.php:1677
2801
  msgid "Day(s)"
2802
  msgstr "Дней"
2803
 
2804
+ #: admin/social_sharing.php:1685
2805
  #, fuzzy, php-format
2806
  msgid ""
2807
  "Frequent cache refreshing results in slower loading of pages with share "
2811
  "Частое обновление кэша приводит к более медленной загрузке страниц с "
2812
  "включенными счетчиками Поделиться"
2813
 
2814
+ #: admin/social_sharing.php:1692
2815
  msgid "Clear Share Counts Cache"
2816
  msgstr "Очистить кэш счетчиков Поделиться"
2817
 
2818
+ #: admin/social_sharing.php:1696
2819
  msgid "Share Counts cache cleared successfully."
2820
  msgstr "Share Counts кэш успешно очищен."
2821
 
2822
+ #: admin/social_sharing.php:1703
2823
  msgid "Use this to clear cached share counts"
2824
  msgstr "Используйте это для очистки кэшированных счетчиков Поделиться"
2825
 
2826
+ #: admin/social_sharing.php:1727
2827
  #, php-format
2828
  msgid ""
2829
  "Enter the code of the language you want to use for like buttons. You can "
2834
  "Вы можете найти код своего языка по <a href=\"%s\" target=\"_blank\">этой "
2835
  "ссылке</a>. Оставьте поле пустым чтобы оставить язык по умолчанию (English)."
2836
 
2837
+ #: admin/social_sharing.php:1736
2838
  msgid "Username in sharing"
2839
  msgstr "Имя пользователя чтобы поделиться"
2840
 
2841
+ #: admin/social_sharing.php:1741
2842
  msgid "Twitter username (without @)"
2843
  msgstr "Twitter имя пользователя (без @)"
2844
 
2845
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2846
  msgid ""
2847
  "Provided username will be appended after the content being shared as \"via "
2848
  "@USERNAME\". Leave empty if you do not want any username in the content "
2851
  "Добавляет имя пользователя после того как контент будет расшарен с помощью "
2852
  "\"via @USERNAME\". Оставьте поле пустым если не хотите указывать имя."
2853
 
2854
+ #: admin/social_sharing.php:1759
2855
  msgid "Buffer username (without @)"
2856
  msgstr "Имя пользователя в Twitter (без @)"
2857
 
2858
+ #: admin/social_sharing.php:1778
2859
  msgid "AMP"
2860
  msgstr "AMP"
2861
 
2862
+ #: admin/social_sharing.php:1783
2863
  msgid "Enable sharing on AMP pages"
2864
  msgstr "Разрешить общий доступ на страницах AMP"
2865
 
2866
+ #: admin/social_sharing.php:1793
2867
  msgid "Enable this option to render sharing icons on AMP pages"
2868
  msgstr "Включите этот параметр для отображения иконок на страницах AMP"
2869
 
2870
+ #: admin/social_sharing.php:1850
2871
  msgid "Facebook Sharing Troubleshooter"
2872
  msgstr "Устранение неисправностей Поделиться от Facebook"
2873
 
2874
+ #: admin/social_sharing.php:1855
2875
  #, fuzzy
2876
  msgid ""
2877
  "If Facebook sharing is not working fine, click at the following link and "
2883
  "работает должным образом) на вашем сайте в текстовом поле. Нажмите "
2884
  "\"Получение информации о новой поломке\" ."
2885
 
2886
+ #: admin/social_sharing.php:1873
2887
  msgid ""
2888
  "Why is sharer not showing the correct image, title and other meta tags "
2889
  "content?"
2891
  "Почему расшаривание не показывает корректино изображение, заголовок и другие "
2892
  "мета данные контента? "
2893
 
2894
+ #: admin/social_sharing.php:1874
2895
  #, fuzzy
2896
  msgid "Why is Facebook share count not working?"
2897
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
2898
 
2899
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2900
+ #, php-format
2901
+ msgid ""
2902
+ "After the recent changes introduced in the Facebook graph API, it's not "
2903
+ "possible to track Facebook shares using it. <a href='%s' "
2904
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2905
+ "not just for Facebook but for all the social networks"
2906
+ msgstr ""
2907
+
2908
+ #: admin/social_sharing.php:1877
2909
  msgid "Why is Instagram icon redirecting to Instagram website?"
2910
  msgstr ""
2911
 
2912
+ #: admin/social_sharing.php:1878
2913
  msgid ""
2914
  "Instagram icon is there to send website visitors to the Instagram page of "
2915
  "your choice. You can save the desired Instagram handle in \"Instagram "
2917
  "sections."
2918
  msgstr ""
2919
 
2920
+ #: admin/social_sharing.php:1881
2921
  #, fuzzy
2922
  msgid "How to customize the url being shared?"
2923
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
2924
 
2925
+ #: admin/social_sharing.php:1882
2926
  msgid ""
2927
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2928
  msgstr ""
2929
 
2930
+ #: admin/social_sharing.php:1883
2931
  msgid ""
2932
  "It takes some time for their service to track the shares made on Twitter "
2933
  "from your website. If you still feel it's taking too long you can contact "
2934
  "their support directly from their website."
2935
  msgstr ""
2936
 
2937
+ #: admin/social_sharing.php:1886
2938
  msgid ""
2939
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2940
  msgstr ""
2941
 
2942
+ #: admin/social_sharing.php:1888
2943
  #, fuzzy
2944
  msgid "Why the color of share icons is not being updated?"
2945
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
2946
 
2947
+ #: admin/social_sharing.php:1889
2948
  msgid "Why Facebook share counts are not appearing?"
2949
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
2950
 
2951
+ #: admin/social_sharing.php:1890
2952
  msgid ""
2953
  "How can I show share counts of my website rather than of individual pages/"
2954
  "posts?"
2956
  "Как мне отобразить общее количество Поделиться основанное на страницах/"
2957
  "постах?"
2958
 
2959
+ #: admin/social_sharing.php:1891
2960
  msgid "How can I disable sharing on particular page/post?"
2961
  msgstr ""
2962
  "Как можно отключить кнопки Поделиться на конкретной странице или в посте?"
2963
 
2964
+ #: admin/social_sharing.php:1892
2965
  msgid "How can I specify minimum sharing count for sharing networks?"
2966
  msgstr "Как мне указать минимальное количество для Поделиться"
2967
 
2968
+ #: admin/social_sharing.php:1893
2969
  msgid "How to share specific page?"
2970
  msgstr "Как поделиться определенной страницей?"
2971
 
2972
+ #: admin/social_sharing.php:1894
2973
  msgid "How to integrate Google Analytics with sharing?"
2974
  msgstr "Как интегрировать Google Analytics с Поделиться?"
2975
 
2976
+ #: admin/social_sharing.php:1895
2977
  msgid "How to customize the look of total share counts?"
2978
  msgstr "Как настроить внешний вид счетчиков поделиться?"
2979
 
2980
+ #: admin/social_sharing.php:1896
2981
  msgid "How to customize the look of individual share counts?"
2982
  msgstr "Как настроить внешний вид отдельных счетчиков поделиться?"
2983
 
2984
+ #: admin/social_sharing.php:1897
2985
  msgid "How to show Whatsapp icon only on mobile devices?"
2986
  msgstr "Как показать иконку Whatsapp только на мобильных устройствах?"
2987
 
2988
+ #: admin/social_sharing.php:1898
2989
  msgid "How to hide arrow after floating sharing bar?"
2990
  msgstr "Как скрыть стрелку после плавающих кнопок Поделиться?"
2991
 
2992
+ #: admin/social_sharing.php:1899
2993
  #, fuzzy
2994
  msgid "Why is share count not getting updated?"
2995
  msgstr "Почему счетчики Фейсбука поделиться не обновляются?"
3015
  msgid "Settings"
3016
  msgstr "Настройки"
3017
 
3018
+ #: helper.php:572
3019
  msgid "Account linked successfully"
3020
  msgstr "Аккаунт успешно связан"
3021
 
3022
+ #: helper.php:576
3023
  msgid "Account already exists or linked"
3024
  msgstr "Аккаунт уже существует или связан"
3025
 
3026
+ #: helper.php:612 helper.php:614
3027
  msgid "Login with"
3028
  msgstr "Войти с"
3029
 
3030
+ #: helper.php:649 helper.php:655
3031
  msgid "Currently"
3032
  msgstr "На данный момент"
3033
 
3034
+ #: helper.php:649 helper.php:655
3035
  msgid "Connected with"
3036
  msgstr "Авторизоваться с помощью"
3037
 
3038
+ #: helper.php:649 helper.php:655
3039
  msgid "Remove"
3040
  msgstr "Удалить"
3041
 
3042
+ #: helper.php:727
3043
  msgid "Social Account Linking"
3044
  msgstr "Ссылки на социальный аккаунт"
3045
 
3046
+ #: helper.php:777
3047
  msgid "Disable Standard Social Sharing on this "
3048
  msgstr "Отключить стандартный блок Поделиться на этом"
3049
 
3050
+ #: helper.php:782
3051
  msgid "Disable Floating Social Sharing on this "
3052
  msgstr "Отключить плавающий блок Поделиться на этом"
3053
 
3054
+ #: helper.php:787
3055
  msgid "Disable Standard like buttons on this "
3056
  msgstr "Откдючить стандартные кнопки Нравится на этом"
3057
 
3058
+ #: helper.php:792
3059
  msgid "Disable Floating like buttons on this "
3060
  msgstr "Откдючить плавающие кнопки Нравится на этом"
3061
 
3062
+ #: helper.php:797
3063
  msgid "Disable Social Commenting on this "
3064
  msgstr "Деактивировать социальное комментироване"
3065
 
3066
+ #: helper.php:806
3067
  msgid "Standard Sharing Interface"
3068
  msgstr "Стандартный интерфейс Поделиться"
3069
 
3070
+ #: helper.php:812 helper.php:831
3071
  msgid "Starting share count for "
3072
  msgstr "Запустить счетчик поделиться для"
3073
 
3074
+ #: helper.php:825
3075
  msgid "Floating Sharing Interface"
3076
  msgstr "Плавающий интерфейс Поделиться"
3077
 
3078
+ #: helper.php:921 super_socializer.php:2375
3079
  msgid "Social Avatar"
3080
  msgstr "Социальный аватар"
3081
 
3082
+ #: helper.php:924 super_socializer.php:2386
3083
  msgid ""
3084
  "Do not fetch and update social avatar from my profile, next time I Social "
3085
  "Login"
3087
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
3088
  "я когда я использую вход через соцсети"
3089
 
3090
+ #: helper.php:925 super_socializer.php:2390
3091
  msgid "Update social avatar, next time I Social Login"
3092
  msgstr ""
3093
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
3094
  "соцсети"
3095
 
3096
+ #: helper.php:928
3097
  msgid "Small Avatar"
3098
  msgstr "Небольшой аватар"
3099
 
3100
+ #: helper.php:932
3101
  msgid "Large Avatar"
3102
  msgstr "Большой аватар"
3103
 
3104
+ #: helper.php:992 super_socializer.php:1936
3105
  msgid "Please verify your email address to login."
3106
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
3107
 
3108
+ #: helper.php:1029
3109
  msgid "Click to delete social profile data"
3110
  msgstr ""
3111
 
3112
+ #: helper.php:1058
3113
  #, fuzzy
3114
  msgid "Deleting"
3115
  msgstr "Настройки"
3116
 
3117
+ #: helper.php:1068
3118
  msgid "Deleted"
3119
  msgstr ""
3120
 
3121
+ #: helper.php:1070
3122
  msgid "Something bad happened"
3123
  msgstr ""
3124
 
3174
  msgstr "Архивы "
3175
 
3176
  #: inc/social_sharing.php:225
3177
+ #, fuzzy
3178
  msgid "More"
3179
  msgstr ""
3180
+ "Укажите значение для закругленных углов. Чем больше значение параметра, "
3181
+ "более округлыми будут углы. Оставьте пустым для прямых углов."
3182
 
3183
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3184
  msgid "Share"
3185
  msgstr "Поделиться"
3186
 
3187
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3188
  msgid "Shares"
3189
  msgstr "Поделились"
3190
 
3191
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
3192
  msgid "Invalid request"
3193
  msgstr "Неверный Запрос!"
3194
 
3195
+ #: inc/social_sharing.php:938
3196
  msgid "Providers not selected"
3197
  msgstr "Сервисы не выбраны"
3198
 
3199
+ #: inc/social_sharing_networks.php:58
3200
  msgid "Copy Link"
3201
  msgstr ""
3202
 
3473
  msgid "RSS Feed URL:"
3474
  msgstr ""
3475
 
3476
+ #: super_socializer.php:429
3477
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3478
+ msgstr ""
3479
+
3480
+ #: super_socializer.php:1718
3481
  msgid ""
3482
  "cURL is not enabled at your website server. Please contact your website "
3483
  "server administrator to enable it."
3485
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
3486
  "администратору вашего сайта, чтобы включить это."
3487
 
3488
+ #: super_socializer.php:1746
3489
  #, fuzzy, php-format
3490
  msgid ""
3491
  "Enter exactly the following url in <strong>Website</strong> option in your "
3494
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
3495
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
3496
 
3497
+ #: super_socializer.php:1749
3498
  #, fuzzy, php-format
3499
  msgid ""
3500
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3503
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
3504
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
3505
 
3506
+ #: super_socializer.php:1752
3507
  msgid ""
3508
  "Make sure cURL is enabled at your website server. You may need to contact "
3509
  "the server administrator of your website to verify this"
3511
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
3512
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
3513
 
3514
+ #: super_socializer.php:1914
3515
  #, fuzzy
3516
  msgid "Search"
3517
  msgstr "Искать"
3518
 
3519
+ #: super_socializer.php:1936
3520
  msgid "Your email has been verified. Now you can login to your account"
3521
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
3522
 
3523
+ #: super_socializer.php:1940
3524
  msgid "Notification"
3525
  msgstr "Уведомления"
3526
 
3527
+ #: super_socializer.php:1961
3528
  msgid "Please check your email inbox to complete the registration."
3529
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
3530
 
3531
+ #: super_socializer.php:2030
3532
  msgid "Leave a reply"
3533
  msgstr "Оставить ответ"
3534
 
3535
+ #: super_socializer.php:2046
3536
  #, fuzzy
3537
  msgid "Link copied."
3538
  msgstr "LinkedIn"
3539
 
3540
+ #: super_socializer.php:2291
3541
  msgid "Super Socializer - General Options"
3542
  msgstr "Super Socializer - Общие настройки"
3543
 
3544
+ #: super_socializer.php:2362
3545
  msgid ""
3546
  "I agree to my personal data being stored and used as per Privacy Policy and "
3547
  "Terms and Conditions"
3548
  msgstr ""
3549
 
3550
+ #: super_socializer.php:2366
3551
  msgid ""
3552
  "I revoke my consent to store and use my personal data. Kindly delete my "
3553
  "personal data saved in this website."
3554
  msgstr ""
3555
 
3556
+ #: super_socializer.php:2378
3557
  msgid "Small Avatar Url"
3558
  msgstr "Ссылка для маленького аватара"
3559
 
3560
+ #: super_socializer.php:2382
3561
  msgid "Large Avatar Url"
3562
  msgstr "Ссылка для большого аватара"
3563
 
3564
+ #: super_socializer.php:2484
3565
  msgid "Login with your Social ID"
3566
  msgstr "Войти, используя социальный аккаунт"
3567
 
3568
+ #: super_socializer.php:2485
3569
  msgid "Email you entered is already registered or invalid"
3570
  msgstr ""
3571
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
3572
 
3573
+ #: super_socializer.php:2492
3574
  msgid "Please enter a valid email address. You might be required to verify it"
3575
  msgstr ""
3576
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
3577
  "потребуется проверить его"
3578
 
3579
+ #: super_socializer.php:2496 super_socializer.php:3250
3580
  msgid "Link your social account to login to your account at this website"
3581
  msgstr ""
3582
  "Введите ссылку на ваш аккаут в социальных сетях чтобы войти в аккаунт на "
3583
  "этом сайте"
3584
 
3585
+ #: super_socializer.php:2753
3586
  msgid "Thanks for installing Super Socializer plugin"
3587
  msgstr ""
3588
 
3589
+ #: super_socializer.php:2755
3590
  msgid "Configure the Plugin"
3591
  msgstr ""
3592
 
3593
+ #: super_socializer.php:2766
3594
  msgid ""
3595
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3596
  "current version of Super Socializer"
3597
  msgstr ""
3598
 
3599
+ #: super_socializer.php:2775
3600
  msgid ""
3601
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3602
  "version of Super Socializer"
3603
  msgstr ""
3604
 
3605
+ #: super_socializer.php:2784
3606
  msgid ""
3607
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3608
  "compatibility with the current version of Super Socializer"
3609
  msgstr ""
3610
 
3611
+ #: super_socializer.php:2793
3612
  msgid ""
3613
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3614
  "with current version of Super Socializer"
3615
  msgstr ""
3616
 
3617
+ #: super_socializer.php:2802
3618
  msgid ""
3619
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3620
  "with current version of Super Socializer"
3621
  msgstr ""
3622
 
3623
+ #: super_socializer.php:2813
3624
  #, php-format
3625
  msgid ""
3626
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3627
  msgstr ""
3628
 
3629
+ #: super_socializer.php:2822
3630
  #, php-format
3631
  msgid ""
3632
  "To continue using Instagram login create a new Instagram App as described <a "
3634
  "Instagram App Secret <a href=\"%s\">here</a>"
3635
  msgstr ""
3636
 
3637
+ #: super_socializer.php:2831 super_socializer.php:2840
3638
  #, php-format
3639
  msgid ""
3640
  "To continue using bitly url shortener, login to your bit.ly account and "
3643
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3644
  msgstr ""
3645
 
3646
+ #: super_socializer.php:2856
3647
  #, php-format
3648
  msgid ""
3649
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3650
  msgstr ""
3651
 
3652
+ #: super_socializer.php:2880
3653
  #, php-format
3654
  msgid ""
3655
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3657
  "target=\"_blank\">here</a>"
3658
  msgstr ""
3659
 
3660
+ #: super_socializer.php:2880 super_socializer.php:2905
3661
+ #: super_socializer.php:2930 super_socializer.php:2955
3662
+ #: super_socializer.php:2988 super_socializer.php:3016
3663
+ #: super_socializer.php:3043
3664
  msgid "Okay"
3665
  msgstr "Окей"
3666
 
3667
+ #: super_socializer.php:2905
3668
  #, php-format
3669
  msgid ""
3670
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3672
  "\">here</a>"
3673
  msgstr ""
3674
 
3675
+ #: super_socializer.php:2930
3676
  #, php-format
3677
  msgid ""
3678
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3680
  "target=\"_blank\">here</a>"
3681
  msgstr ""
3682
 
3683
+ #: super_socializer.php:2955
3684
  #, php-format
3685
  msgid ""
3686
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3688
  "target=\"_blank\">here</a>"
3689
  msgstr ""
3690
 
3691
+ #: super_socializer.php:2966
3692
  #, php-format
3693
  msgid ""
3694
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3695
  msgstr ""
3696
 
3697
+ #: super_socializer.php:2988
3698
  #, php-format
3699
  msgid ""
3700
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3702
  "\"%s\" target=\"_blank\">here</a>"
3703
  msgstr ""
3704
 
3705
+ #: super_socializer.php:3016
3706
  #, php-format
3707
  msgid ""
3708
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3711
  "your website %s with them. No need to copy-paste any code from their website."
3712
  msgstr ""
3713
 
3714
+ #: super_socializer.php:3043
3715
  #, php-format
3716
  msgid ""
3717
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3719
  "\"%s\" target=\"_blank\">here</a>"
3720
  msgstr ""
3721
 
3722
+ #: super_socializer.php:3068
3723
  #, php-format
3724
  msgid ""
3725
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3727
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3728
  msgstr ""
3729
 
3730
+ #: super_socializer.php:3068 super_socializer.php:3095
3731
  msgid "Dismiss"
3732
  msgstr ""
3733
 
3734
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3735
  msgid ""
3736
  "Your browser is blocking some features of this website. Please follow the "
3737
  "instructions at {support_url} to unblock these."
3739
  "Ваш браузер блокирует некоторые функции данного веб-сайта. Пожалуйста, "
3740
  "следуйте инструкциям в {support_url}, чтобы разблокировать функции."
3741
 
3742
+ #~ msgid "Dismiss this notice"
3743
+ #~ msgstr "Закрыть это уведомление"
3744
+
3745
+ #, fuzzy
3746
+ #~ msgid "Facebook Share Count"
3747
+ #~ msgstr "Устранение неисправностей Поделиться от Facebook"
3748
+
3749
+ #, fuzzy
3750
+ #~ msgid ""
3751
+ #~ "Required for Facebook share count to work. Please follow the "
3752
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3753
+ #~ "Facebook App ID"
3754
+ #~ msgstr ""
3755
+ #~ "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию "
3756
+ #~ "<a href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения "
3757
+ #~ "Facebook."
3758
+
3759
+ #, fuzzy
3760
+ #~ msgid ""
3761
+ #~ "Required for Facebook share count to work. Please follow the "
3762
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3763
+ #~ "Facebook App Secret"
3764
+ #~ msgstr ""
3765
+ #~ "Необходимо для входа через Facebook. Пожалуйста, посмотрите документацию "
3766
+ #~ "<a href=\"%s\" target=\"_blank\">здесь</a> для получения ID приложения "
3767
+ #~ "Facebook."
3768
+
3769
  #, fuzzy
3770
  #~ msgid ""
3771
  #~ "Required for Dropbox Social Login to work. Please follow the "
languages/super-socializer-uk.mo CHANGED
Binary file
languages/super-socializer-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-15 14:07+0530\n"
6
- "PO-Revision-Date: 2021-06-15 14:16+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
@@ -22,7 +22,7 @@ msgstr ""
22
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
23
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
24
  #: admin/social_login.php:5 admin/social_login.php:1984
25
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
26
  #, fuzzy, php-format
27
  msgid ""
28
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -32,7 +32,7 @@ msgstr ""
32
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
- #: super_socializer.php:2279
36
  msgid "General Options"
37
  msgstr "Загальні параметри"
38
 
@@ -81,20 +81,20 @@ msgstr ""
81
 
82
  #: admin/general_options.php:89 admin/like_buttons.php:780
83
  #: admin/social_commenting.php:400 admin/social_login.php:1980
84
- #: admin/social_sharing.php:1944 helper.php:942
85
  msgid "Save Changes"
86
  msgstr "Зберегти налаштування"
87
 
88
  #: admin/general_options.php:103 admin/like_buttons.php:790
89
  #: admin/social_commenting.php:410 admin/social_login.php:1990
90
- #: admin/social_sharing.php:1954
91
  #, fuzzy
92
  msgid "Instagram Shoutout"
93
  msgstr "Instagram"
94
 
95
  #: admin/general_options.php:105 admin/like_buttons.php:792
96
  #: admin/social_commenting.php:412 admin/social_login.php:1992
97
- #: admin/social_sharing.php:1956
98
  msgid ""
99
  "If you can send (to hello@heateor.com) how this plugin is helping your "
100
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -203,34 +203,34 @@ msgstr ""
203
  "Панель управління кнопками Подобається. Повинно бути включено щоб активувати "
204
  "кнопки Подобається"
205
 
206
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
207
  msgid "Standard Interface"
208
  msgstr "Стандартний інтерфейс"
209
 
210
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
211
  msgid "Floating Interface"
212
  msgstr "Плаваючий інтерфейс"
213
 
214
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
215
  msgid "Miscellaneous"
216
  msgstr "Різне"
217
 
218
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
219
  #, fuzzy
220
  msgid "3rd Party Integration"
221
  msgstr "XProfile інтеграція"
222
 
223
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
224
  #: admin/social_login.php:45 admin/social_login.php:1946
225
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
226
- #: admin/social_sharing.php:1871
227
  msgid "Shortcode & Widget"
228
  msgstr "Шорткод і віджет"
229
 
230
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
231
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
232
  #: admin/social_login.php:46 admin/social_login.php:1960
233
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
234
  msgid "FAQ"
235
  msgstr "Часті питання (FAQ)"
236
 
@@ -247,22 +247,22 @@ msgid "Master control to enable horizontal like buttons"
247
  msgstr "Майстер налаштування включення горизонтальних кнопок Подобається"
248
 
249
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
250
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
251
  msgid "Target Url"
252
  msgstr "Цільова URL-адреса"
253
 
254
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
255
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
256
  msgid "Url of the webpage where icons are located (default)"
257
  msgstr "URL-адресу веб-сторінки, де розташовані значки (за замовчуванням)"
258
 
259
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
260
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
261
  msgid "Url of the homepage of your website"
262
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
263
 
264
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
265
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
266
  msgid "Custom url"
267
  msgstr "Користувальницьке посилання"
268
 
@@ -273,7 +273,7 @@ msgstr ""
273
  "Подобається / Поділитися / Твитнути"
274
 
275
  #: admin/like_buttons.php:105 admin/social_login.php:1231
276
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
277
  msgid "Title"
278
  msgstr "Заголовок"
279
 
@@ -290,24 +290,24 @@ msgid "Select the providers for interface. Drag them to rearrange."
290
  msgstr "Виберіть сервіси для інтерфейсу. Перемістіть їх щоб змінити порядок"
291
 
292
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
293
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
294
  msgid "Horizontal alignment"
295
  msgstr "Горизонтальне вирівнювання"
296
 
297
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
298
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
299
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308
300
  #: inc/widget.php:446 inc/widget.php:758
301
  msgid "Left"
302
  msgstr "Зліва"
303
 
304
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
305
  msgid "Center"
306
  msgstr "Центр"
307
 
308
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
309
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
310
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309
311
  #: inc/widget.php:447 inc/widget.php:759
312
  msgid "Right"
313
  msgstr "Справа"
@@ -316,15 +316,15 @@ msgstr "Справа"
316
  msgid "Horizontal alignment of the interface"
317
  msgstr "Горизонтальне вирівнювання інтерфейсу"
318
 
319
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
320
  msgid "Position with respect to content"
321
  msgstr "Позиція щодо контенту"
322
 
323
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
324
  msgid "Top of the content"
325
  msgstr "Над вмістом"
326
 
327
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
328
  msgid "Bottom of the content"
329
  msgstr "Під вмістом"
330
 
@@ -338,66 +338,66 @@ msgstr "Розташування інтерфейсу"
338
 
339
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
340
  #: admin/social_login.php:1548 admin/social_login.php:1577
341
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
342
  msgid "Homepage"
343
  msgstr "Головна"
344
 
345
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
346
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
347
  msgid "Posts"
348
  msgstr "Записи"
349
 
350
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
351
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
352
  msgid "Pages"
353
  msgstr "Сторінки"
354
 
355
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
356
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
357
  msgid "Excerpts and Posts page"
358
  msgstr "Сторінки анонсів і постів"
359
 
360
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
361
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
362
  msgid "Category Archives"
363
  msgstr "Архіви категорій"
364
 
365
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
366
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
367
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
368
  msgstr "Архів сторінки (Категорія, тегів, автор або сторінки на основі дат)"
369
 
370
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
371
  msgid "BuddyPress activity"
372
  msgstr "BuddyPress активність"
373
 
374
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
375
  msgid "BuddyPress group (only at top of content)"
376
  msgstr "BuddyPress групи (тільки у верхній частині контенту)"
377
 
378
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
379
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
380
  msgid "BBPress forum"
381
  msgstr "BBPress форум"
382
 
383
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
384
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
385
  msgid "BBPress topic"
386
  msgstr "BBPress тема"
387
 
388
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
389
  msgid "BBPress reply"
390
  msgstr "BBPress відповідь"
391
 
392
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
393
  msgid "After individual product at WooCommerce Shop page"
394
  msgstr "Після індивідуального продукту на сторінці магазину"
395
 
396
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
397
  msgid "WooCommerce Product Page"
398
  msgstr "Продукт Woocommerce"
399
 
400
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
401
  msgid "WooCommerce Thankyou Page"
402
  msgstr "WooCommerce сторінка подяки"
403
 
@@ -418,8 +418,8 @@ msgid "Master control to enable vertical (floating) counter widget"
418
  msgstr ""
419
  "Майстер управління включення вертикального (плаваючого) лічильника віджета"
420
 
421
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
422
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287
423
  #: inc/widget.php:460 inc/widget.php:772
424
  msgid "Background Color"
425
  msgstr "Колір фону"
@@ -436,7 +436,7 @@ msgstr ""
436
  "отримати шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target="
437
  "\"_blank\"> тут </a>"
438
 
439
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
440
  msgid "Left offset"
441
  msgstr "Зміщення вліво"
442
 
@@ -449,7 +449,7 @@ msgstr ""
449
  "правого боку і зменшувати по відношенню до лівого боку. Число може бути "
450
  "негативним."
451
 
452
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
453
  msgid "Right offset"
454
  msgstr "Зміщення вправо"
455
 
@@ -462,7 +462,7 @@ msgstr ""
462
  "лівої сторони і зменшувати по відношенню до правої сторони. Число може бути "
463
  "негативним."
464
 
465
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
466
  msgid "Top offset"
467
  msgstr "Верхній відступ"
468
 
@@ -474,7 +474,7 @@ msgstr ""
474
  "Вкажіть число. Збільшення числа буде зрушувати інтерфейс по відношенню до "
475
  "низу і зменшувати по відношенню до верху."
476
 
477
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
478
  msgid "BuddyPress group"
479
  msgstr "BuddyPress Група"
480
 
@@ -492,7 +492,7 @@ msgstr ""
492
  "Якщо включено, то вертикальний інтерфейс Подобається не буде доступний на "
493
  "мобільних пристроях"
494
 
495
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
496
  msgid "Url shortener"
497
  msgstr "Скорочення URL"
498
 
@@ -512,15 +512,15 @@ msgstr ""
512
  msgid "Enable bit.ly url shortener for tweet button"
513
  msgstr "Активувати скорочення посилань bit.ly для кнопки Твитнути"
514
 
515
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
516
  msgid "Master control to enable bit.ly url shortening for sharing"
517
  msgstr "Майстер управління скорочення посилань через bit.ly для Поділитися"
518
 
519
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
520
  msgid "Bit.ly generic access token"
521
  msgstr ""
522
 
523
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
524
  #, php-format
525
  msgid ""
526
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -529,15 +529,15 @@ msgid ""
529
  "\">link</a>"
530
  msgstr ""
531
 
532
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
533
  msgid "Clear Bitly Cache"
534
  msgstr "Очистити Bitly кеш"
535
 
536
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
537
  msgid "ShortUrl cache cleared successfully."
538
  msgstr "ShortUrl кеш успішно очищений."
539
 
540
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
541
  msgid ""
542
  "Use this to delete short urls saved in database. Handy, if urls of your "
543
  "website have been changed but short urls are still being generated for old "
@@ -548,8 +548,8 @@ msgstr ""
548
  "адреси, як і раніше створюються для старих URL-адрес."
549
 
550
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
551
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
552
- #: admin/social_sharing.php:1749
553
  msgid "Language"
554
  msgstr "Мова"
555
 
@@ -593,11 +593,11 @@ msgstr ""
593
  "Ім'я користувача що використовується, буде показано після твіта як \"via "
594
  "@USERNAME \". Залиште порожнім якщо не хочете відображати ім'я."
595
 
596
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
597
  msgid "myCRED"
598
  msgstr ""
599
 
600
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
601
  msgid "Append myCRED referral ID to the urls being shared"
602
  msgstr ""
603
 
@@ -605,17 +605,17 @@ msgstr ""
605
  msgid "Like Buttons Shortcode & Widget"
606
  msgstr "Шорткод і віджет Подобається"
607
 
608
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
609
  msgid "Why is there so much space between like buttons?"
610
  msgstr "Чому існує так багато місця між кнопками?"
611
 
612
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
613
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
614
  msgstr ""
615
  "Чому плаваюча панель Поділитися / Подобається не відображаються на головній "
616
  "сторінці?"
617
 
618
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
619
  msgid "How to Place Title and Social Share Icons in the Same Row?"
620
  msgstr ""
621
 
@@ -827,7 +827,7 @@ msgid "Social Commenting Shortcode"
827
  msgstr "Шорткод коментування через соцмережі"
828
 
829
  #: admin/social_commenting.php:386 admin/social_login.php:1962
830
- #: admin/social_sharing.php:1904
831
  msgid ""
832
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
833
  "an online website for the plugin to function properly."
@@ -846,7 +846,7 @@ msgid ""
846
  msgstr ""
847
 
848
  #: admin/social_commenting.php:389 admin/social_login.php:1969
849
- #: admin/social_sharing.php:1919
850
  msgid "Why is my browser blocking some features of the plugin?"
851
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
852
 
@@ -881,7 +881,7 @@ msgid "Advanced Configuration"
881
  msgstr "Розширена конфігурація"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
- #: super_socializer.php:2347
885
  msgid "GDPR"
886
  msgstr ""
887
 
@@ -1025,7 +1025,7 @@ msgid "Reddit"
1025
  msgstr ""
1026
 
1027
  #: admin/social_login.php:203
1028
- msgid "Mailru"
1029
  msgstr ""
1030
 
1031
  #: admin/social_login.php:207
@@ -1040,7 +1040,7 @@ msgstr ""
1040
  msgid "Select Social ID provider to enable in Social Login"
1041
  msgstr "Виберіть соцмережі щоб активувати вхід через соцмережі"
1042
 
1043
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1044
  msgid "Facebook App ID"
1045
  msgstr "Facebook App ID"
1046
 
@@ -1061,7 +1061,7 @@ msgstr ""
1061
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
1062
  "згадки посилання."
1063
 
1064
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1065
  #, fuzzy
1066
  msgid "Facebook App Secret"
1067
  msgstr "Facebook App ID"
@@ -2021,7 +2021,7 @@ msgstr ""
2021
  "Якщо цей параметр включений, користувачі зможуть оновити свій соціальний "
2022
  "аватар з розділу «Профіль» фото в профілі BuddyPress"
2023
 
2024
- #: admin/social_login.php:1490 super_socializer.php:1946
2025
  msgid "Email required"
2026
  msgstr "Електронна адреса (обо'язково)"
2027
 
@@ -2322,33 +2322,23 @@ msgstr "Майстер налаштування включення кнопок
2322
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2323
  msgstr ""
2324
 
2325
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2326
- msgid ""
2327
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2328
- "Facebook share count to work"
2329
- msgstr ""
2330
-
2331
- #: admin/social_sharing.php:49
2332
- msgid "Dismiss this notice"
2333
- msgstr "Закрити це повідомлення"
2334
-
2335
- #: admin/social_sharing.php:56
2336
  msgid "Theme Selection"
2337
  msgstr "Вибір теми"
2338
 
2339
- #: admin/social_sharing.php:68
2340
  msgid "Troubleshooter"
2341
  msgstr "Усунення несправностей"
2342
 
2343
- #: admin/social_sharing.php:77
2344
  msgid "Standard interface theme"
2345
  msgstr "Стандартний інтерфейс"
2346
 
2347
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2348
  msgid "Icon Preview"
2349
  msgstr "Прев'ю іконок"
2350
 
2351
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2352
  msgid ""
2353
  "Do not forget to save the configuration after making changes by clicking the "
2354
  "save button below"
@@ -2356,55 +2346,55 @@ msgstr ""
2356
  "Не забудьте зберегти конфігурацію після внесення змін, натиснувши нижче "
2357
  "кнопку зберегти"
2358
 
2359
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2360
  msgid "Shape"
2361
  msgstr "Форма"
2362
 
2363
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2364
  msgid "Round"
2365
  msgstr "Кругла"
2366
 
2367
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2368
  msgid "Square"
2369
  msgstr "Квадратна"
2370
 
2371
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2372
  msgid "Rectangle"
2373
  msgstr "Прямокутник"
2374
 
2375
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2376
  msgid "Shape of the sharing icons"
2377
  msgstr "Форма кнопок Поділитися"
2378
 
2379
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2380
  msgid "Size (in pixels)"
2381
  msgstr "Розмір (в пікселях)"
2382
 
2383
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2384
  msgid "Size of the sharing icons"
2385
  msgstr "Розмір кнопок Поділитися"
2386
 
2387
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2388
  msgid "Width (in pixels)"
2389
  msgstr "Ширина (в пікселях)"
2390
 
2391
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2392
  msgid "Width of the sharing icons"
2393
  msgstr "Ширина іконок поділитися"
2394
 
2395
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2396
  msgid "Height (in pixels)"
2397
  msgstr "Висота (в пікселях)"
2398
 
2399
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2400
  msgid "Height of the sharing icons"
2401
  msgstr "Висота кнопок Поділитися"
2402
 
2403
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2404
  msgid "Border radius (in pixels)"
2405
  msgstr "Радіус рамки (в пікселях)"
2406
 
2407
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2408
  msgid ""
2409
  "Specify a value for rounded corners. More the value, more rounded will the "
2410
  "corners be. Leave empty for sharp corners."
@@ -2412,23 +2402,23 @@ msgstr ""
2412
  "Вкажіть значення для закруглених кутів. Чим більше значення параметра, більш "
2413
  "округлими будуть кути. Залиште порожнім для прямих кутів."
2414
 
2415
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2416
  msgid "Logo Color"
2417
  msgstr "Колір логотипу"
2418
 
2419
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2420
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2421
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2422
  msgid "Default"
2423
  msgstr "За замовчуванням"
2424
 
2425
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2426
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2427
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2428
  msgid "On Hover"
2429
  msgstr "При наведенні"
2430
 
2431
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2432
  msgid ""
2433
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2434
  "empty for default. You can get the hex code of the required color from <a "
@@ -2439,7 +2429,7 @@ msgstr ""
2439
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2440
  "\"> тут </a>"
2441
 
2442
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2443
  msgid ""
2444
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2445
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -2451,89 +2441,89 @@ msgstr ""
2451
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2452
  "\"> тут </a>"
2453
 
2454
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2455
  msgid "Border"
2456
  msgstr "Рамка"
2457
 
2458
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2459
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2460
  msgid "Border Width"
2461
  msgstr "Ширина рамки"
2462
 
2463
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2464
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2465
  msgid "Border Color"
2466
  msgstr "Колір рамки"
2467
 
2468
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2469
  msgid "Icon border"
2470
  msgstr "Іконка рамки"
2471
 
2472
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2473
  msgid "Counter Position"
2474
  msgstr "Позиція лічильника"
2475
 
2476
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2477
  msgid "(applies, if counter enabled)"
2478
  msgstr "(застосовується, якщо лічильник включений)"
2479
 
2480
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2481
  msgid "Top"
2482
  msgstr "Зверху"
2483
 
2484
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2485
  msgid "Bottom"
2486
  msgstr "Знизу"
2487
 
2488
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2489
  msgid "Inner Left"
2490
  msgstr "Лівий відступ"
2491
 
2492
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2493
  msgid "Inner Top"
2494
  msgstr "Верхній відступ"
2495
 
2496
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2497
  msgid "Inner Right"
2498
  msgstr "Внутрішній відступ справа"
2499
 
2500
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2501
  msgid "Inner Bottom"
2502
  msgstr "Нижній відступ"
2503
 
2504
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2505
  msgid "Position of share counter"
2506
  msgstr "Положення лічильника Поділитися"
2507
 
2508
- #: admin/social_sharing.php:375
2509
  msgid "Floating interface theme"
2510
  msgstr "Плаваючий інтерфейс Поділитися"
2511
 
2512
- #: admin/social_sharing.php:679
2513
  msgid "Standard Sharing Interface Options"
2514
  msgstr "Стандартні параметри інтерфейсу"
2515
 
2516
- #: admin/social_sharing.php:684
2517
  msgid "Enable Standard sharing interface"
2518
  msgstr "Включити стандартний інтерфейс Поділитися"
2519
 
2520
- #: admin/social_sharing.php:694
2521
  msgid "Master control to enable standard sharing"
2522
  msgstr "Майстер налаштування включення стандартних опцій Поділитися"
2523
 
2524
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2525
  msgid "Url to share"
2526
  msgstr "Посилання щоб Поділитися"
2527
 
2528
- #: admin/social_sharing.php:735
2529
  msgid "The text to display above the sharing interface"
2530
  msgstr "Текст, що відображається над інтерфейсом Поділитися"
2531
 
2532
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2533
  msgid "Instagram username"
2534
  msgstr "Введіть ім'я користувача Instagram."
2535
 
2536
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2537
  msgid ""
2538
  "Username of the Instagram account you want to redirect users to, on clicking "
2539
  "the icon"
@@ -2541,68 +2531,68 @@ msgstr ""
2541
  "Ім'я користувача Instagram, на обліковий запис якого ви хочете перенаправити "
2542
  "користувачів, якщо натиснути на іконку"
2543
 
2544
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2545
  #, fuzzy
2546
  msgid "HTML ID of container element of comment form"
2547
  msgstr "HTML-ідентифікатор форми контейнера коментаря"
2548
 
2549
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2550
  msgid ""
2551
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2552
  "icon."
2553
  msgstr ""
2554
 
2555
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2556
  msgid "Rearrange icons"
2557
  msgstr "Змінити порядок іконок"
2558
 
2559
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2560
  msgid "Drag the icons to rearrange in desired order"
2561
  msgstr "Якщо хочете змінити порядок, просто перетягніть зображення"
2562
 
2563
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2564
  msgid "Select Sharing Services"
2565
  msgstr "Виберіть сервіси Поділитися"
2566
 
2567
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2568
  msgid "Select sharing services to show in social share bar"
2569
  msgstr "Виберіть сервіси для показу в панелі Поділитися"
2570
 
2571
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2572
  #, fuzzy
2573
  msgid "Search social network"
2574
  msgstr "Виберіть сервіси"
2575
 
2576
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2577
  msgid "Horizontal alignment of the sharing interface"
2578
  msgstr "Горизонтальне вирівнювання інтерфейсу Поділитися"
2579
 
2580
- #: admin/social_sharing.php:946
2581
  msgid "Specify position of the sharing interface with respect to the content"
2582
  msgstr "Вкажіть положення інтерфейсу Поділитися щодо вмісту."
2583
 
2584
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2585
  msgid "Placement"
2586
  msgstr "Розміщення"
2587
 
2588
- #: admin/social_sharing.php:1021
2589
  msgid "Specify the pages where you want to enable Sharing interface"
2590
  msgstr "Вкажіть сторінки, де ви хочете включити інтерфейс Поділитися"
2591
 
2592
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2593
  msgid "Show share counts"
2594
  msgstr "Показати лічильники кнопки Поділитися"
2595
 
2596
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
2597
  #, fuzzy
2598
  msgid ""
2599
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2600
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2601
  msgstr ""
2602
  "Підтримуються Facebook, Linkedin, Google Plus, Delicious, Buffer, Reddit, "
2603
  "Pinterest, Stumbleupon, Odnoklassniki і Vkontakte"
2604
 
2605
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2606
  #, php-format
2607
  msgid ""
2608
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2611,25 +2601,30 @@ msgid ""
2611
  "their website."
2612
  msgstr ""
2613
 
2614
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2615
  msgid "If enabled, share counts are displayed above sharing icons."
2616
  msgstr "Якщо включено, лічильники відображаються вище кнопок Поділитися"
2617
 
2618
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2619
  msgid "Show total shares"
2620
  msgstr "Включити загальну кількість Поділитися"
2621
 
2622
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2623
  msgid "If enabled, total shares will be displayed with sharing icons"
2624
  msgstr ""
2625
  "Якщо включено, то загальна кількість Поділитися буде відображатися з "
2626
  "кнопками Поділитися"
2627
 
2628
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2629
  msgid "Enable 'More' icon"
2630
  msgstr "Включити значок «Більше»"
2631
 
2632
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2633
  msgid ""
2634
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2635
  "which shows additional sharing networks in popup"
@@ -2637,19 +2632,19 @@ msgstr ""
2637
  "Якщо включено, «Більше» буде відображатися після кнопок Поділитися, яка "
2638
  "показує додаткові сервіси в спливаючому вікні"
2639
 
2640
- #: admin/social_sharing.php:1094
2641
  msgid "Floating Sharing Interface Options"
2642
  msgstr "Параметри плаваючих кнопок Поділитися"
2643
 
2644
- #: admin/social_sharing.php:1099
2645
  msgid "Enable Floating sharing interface"
2646
  msgstr "Включити інтерфейс плаваючих кнопок Поділитися"
2647
 
2648
- #: admin/social_sharing.php:1109
2649
  msgid "Master control to enable floating sharing widget"
2650
  msgstr "Майстер управління включення плаваючого віджета Поділитися"
2651
 
2652
- #: admin/social_sharing.php:1297
2653
  msgid ""
2654
  "Specify the color or hex code (example #cc78e0) for the background of "
2655
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -2661,7 +2656,7 @@ msgstr ""
2661
  "можете отримати шістнадцятковий код <a href=\"http://www.colorpicker.com/\" "
2662
  "target=\"_blank\"> тут </a>"
2663
 
2664
- #: admin/social_sharing.php:1335
2665
  msgid ""
2666
  "Specify a number. Increase in number will shift sharing interface towards "
2667
  "right and decrease will shift it towards left. Number can be negative too."
@@ -2670,7 +2665,7 @@ msgstr ""
2670
  "правої сторони і зменшувати по відношенню до лівої сторони. Число може бути "
2671
  "негативним."
2672
 
2673
- #: admin/social_sharing.php:1354
2674
  msgid ""
2675
  "Specify a number. Increase in number will shift sharing interface towards "
2676
  "left and decrease will shift it towards right. Number can be negative too."
@@ -2679,7 +2674,7 @@ msgstr ""
2679
  "лівої сторони і зменшувати по відношенню до правої сторони. Число може бути "
2680
  "негативним."
2681
 
2682
- #: admin/social_sharing.php:1372
2683
  msgid ""
2684
  "Specify a number. Increase in number will shift sharing interface towards "
2685
  "bottom and decrease will shift it towards top."
@@ -2687,33 +2682,33 @@ msgstr ""
2687
  "Вкажіть число. Збільшення числа буде зсувати інтерфейс Поділитися стосовно "
2688
  "низу і зменшувати по відношенню до верху."
2689
 
2690
- #: admin/social_sharing.php:1428
2691
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2692
  msgstr ""
2693
  "Вкажіть сторінки, де ви хочете включити вертикальний інтерфейс Поділитися"
2694
 
2695
- #: admin/social_sharing.php:1491
2696
  #, fuzzy
2697
  msgid "Hide floating slider"
2698
  msgstr "Закрити для зареєстрованих користувачів"
2699
 
2700
- #: admin/social_sharing.php:1501
2701
  #, fuzzy
2702
  msgid "Hides the slider arrow present below the floating share bar"
2703
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
2704
 
2705
- #: admin/social_sharing.php:1508
2706
  msgid "Vertical floating bar responsiveness"
2707
  msgstr "Адаптивність вертикальних плаваючих кнопок"
2708
 
2709
- #: admin/social_sharing.php:1511
2710
  #, php-format
2711
  msgid "Display vertical interface only when screen is wider than %s pixels"
2712
  msgstr ""
2713
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж% s "
2714
  "пікселів."
2715
 
2716
- #: admin/social_sharing.php:1518
2717
  msgid ""
2718
  "Display vertical interface only when screen is wider than the width "
2719
  "specified."
@@ -2721,11 +2716,11 @@ msgstr ""
2721
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж "
2722
  "ширина за замовчуванням."
2723
 
2724
- #: admin/social_sharing.php:1525
2725
  msgid "Horizontal floating bar responsiveness"
2726
  msgstr "Адаптивність вертикальних плаваючих кнопок"
2727
 
2728
- #: admin/social_sharing.php:1528
2729
  #, php-format
2730
  msgid ""
2731
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2734,7 +2729,7 @@ msgstr ""
2734
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
2735
  "вужче ніж% s пікселів"
2736
 
2737
- #: admin/social_sharing.php:1535
2738
  msgid ""
2739
  "Stick vertical floating interface horizontally at bottom only when screen is "
2740
  "narrower than the width specified"
@@ -2742,95 +2737,64 @@ msgstr ""
2742
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
2743
  "вужче чим зазначена ширина"
2744
 
2745
- #: admin/social_sharing.php:1544
2746
  msgid "Horizontal floating bar position"
2747
  msgstr "Розташування горизонтальної плаваючої панелі"
2748
 
2749
- #: admin/social_sharing.php:1547
2750
  #, php-format
2751
  msgid "%s pixels from %s"
2752
  msgstr "%s пікселів від %s"
2753
 
2754
- #: admin/social_sharing.php:1548
2755
  msgid "Auto-adjust according to screen width (responsive)"
2756
  msgstr ""
2757
 
2758
- #: admin/social_sharing.php:1555
2759
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2760
  msgstr ""
2761
  "Вирівнювання горизонтального плаваючого інтерфейсу. Число може бути "
2762
  "негативним."
2763
 
2764
- #: admin/social_sharing.php:1575
2765
- #, fuzzy
2766
- msgid "Facebook Share Count"
2767
- msgstr "Усунення несправностей Поділитися від Facebook"
2768
-
2769
- #: admin/social_sharing.php:1579
2770
- msgid "Note"
2771
- msgstr ""
2772
-
2773
- #: admin/social_sharing.php:1579
2774
- msgid "Required only to track Facebook share count"
2775
- msgstr ""
2776
-
2777
- #: admin/social_sharing.php:1594
2778
- #, fuzzy, php-format
2779
- msgid ""
2780
- "Required for Facebook share count to work. Please follow the documentation "
2781
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2782
- msgstr ""
2783
- "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
2784
- "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
2785
-
2786
- #: admin/social_sharing.php:1611
2787
- #, fuzzy, php-format
2788
- msgid ""
2789
- "Required for Facebook share count to work. Please follow the documentation "
2790
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2791
- msgstr ""
2792
- "Необхідно для входу через Facebook. Будь ласка, подивіться документацію <a "
2793
- "href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку Facebook."
2794
-
2795
- #: admin/social_sharing.php:1625
2796
  msgid "Use shortlinks already installed"
2797
  msgstr "Використання коротких посилань вже встановлено"
2798
 
2799
- #: admin/social_sharing.php:1635
2800
  msgid "Uses default short url permalinks without using any additional plugin"
2801
  msgstr ""
2802
  "Використовує за замовчуванням постійні короткі url без використання будь-"
2803
  "яких додаткових плагінів"
2804
 
2805
- #: admin/social_sharing.php:1642
2806
  msgid "Enable bit.ly url shortener for sharing"
2807
  msgstr "Активувати bit.ly для скорочення посилань для Поділитися"
2808
 
2809
- #: admin/social_sharing.php:1696
2810
  msgid "Share Count Cache"
2811
  msgstr "Кеш лічильників Поділитися"
2812
 
2813
- #: admin/social_sharing.php:1701
2814
  msgid "Refresh Share Count cache every"
2815
  msgstr "Оновити кеш лічильників Поділитися"
2816
 
2817
- #: admin/social_sharing.php:1706
2818
  msgid "Second(s)"
2819
  msgstr "Секунд"
2820
 
2821
- #: admin/social_sharing.php:1707
2822
  msgid "Minute(s)"
2823
  msgstr "Хвилин"
2824
 
2825
- #: admin/social_sharing.php:1708
2826
  msgid "Hour(s)"
2827
  msgstr "Годин"
2828
 
2829
- #: admin/social_sharing.php:1709
2830
  msgid "Day(s)"
2831
  msgstr "Днів"
2832
 
2833
- #: admin/social_sharing.php:1717
2834
  #, fuzzy, php-format
2835
  msgid ""
2836
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2840,19 +2804,19 @@ msgstr ""
2840
  "Часте оновлення кешу призводить до більш повільного завантаження сторінок з "
2841
  "включеними лічильниками Поділитися"
2842
 
2843
- #: admin/social_sharing.php:1724
2844
  msgid "Clear Share Counts Cache"
2845
  msgstr "Очистити кеш лічильників Поділитися"
2846
 
2847
- #: admin/social_sharing.php:1728
2848
  msgid "Share Counts cache cleared successfully."
2849
  msgstr "Кеш лічільників Поділитися успішно очищений."
2850
 
2851
- #: admin/social_sharing.php:1735
2852
  msgid "Use this to clear cached share counts"
2853
  msgstr "Використовуйте це для очищення кешованих лічильників Поділитися"
2854
 
2855
- #: admin/social_sharing.php:1759
2856
  #, php-format
2857
  msgid ""
2858
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2864,15 +2828,15 @@ msgstr ""
2864
  "\"_blank\"> цим посиланням </a>. Залиште поле порожнім щоб залишити мову за "
2865
  "замовчуванням (Українська)."
2866
 
2867
- #: admin/social_sharing.php:1768
2868
  msgid "Username in sharing"
2869
  msgstr "Ім'я користувача щоб поділитися"
2870
 
2871
- #: admin/social_sharing.php:1773
2872
  msgid "Twitter username (without @)"
2873
  msgstr "Twitter ім'я користувача (без @)"
2874
 
2875
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
2876
  msgid ""
2877
  "Provided username will be appended after the content being shared as \"via "
2878
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -2881,27 +2845,27 @@ msgstr ""
2881
  "Додає ім'я користувача після того як контент буде розшарено за допомогою "
2882
  "\"via @USERNAME\". Залиште поле порожнім якщо не хочете вказувати ім'я."
2883
 
2884
- #: admin/social_sharing.php:1791
2885
  msgid "Buffer username (without @)"
2886
  msgstr "Ім'я користувача в Twitter (без @)"
2887
 
2888
- #: admin/social_sharing.php:1810
2889
  msgid "AMP"
2890
  msgstr "AMP"
2891
 
2892
- #: admin/social_sharing.php:1815
2893
  msgid "Enable sharing on AMP pages"
2894
  msgstr "Дозволити загальний доступ на сторінках AMP"
2895
 
2896
- #: admin/social_sharing.php:1825
2897
  msgid "Enable this option to render sharing icons on AMP pages"
2898
  msgstr "Увімкніть цей параметр для відображення іконок на сторінках AMP"
2899
 
2900
- #: admin/social_sharing.php:1882
2901
  msgid "Facebook Sharing Troubleshooter"
2902
  msgstr "Усунення несправностей Поділитися від Facebook"
2903
 
2904
- #: admin/social_sharing.php:1887
2905
  #, fuzzy
2906
  msgid ""
2907
  "If Facebook sharing is not working fine, click at the following link and "
@@ -2913,7 +2877,7 @@ msgstr ""
2913
  "працює належним чином) на вашому сайті в текстовому полі. Натисніть "
2914
  "\"Отримання інформації про нову поломки \"."
2915
 
2916
- #: admin/social_sharing.php:1905
2917
  msgid ""
2918
  "Why is sharer not showing the correct image, title and other meta tags "
2919
  "content?"
@@ -2921,16 +2885,25 @@ msgstr ""
2921
  "Чому расшаріваніє не вказує корректіно зображення, заголовок і інші мета "
2922
  "дані контенту?"
2923
 
2924
- #: admin/social_sharing.php:1906
2925
  #, fuzzy
2926
  msgid "Why is Facebook share count not working?"
2927
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
2928
 
2929
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
2930
  msgid "Why is Instagram icon redirecting to Instagram website?"
2931
  msgstr ""
2932
 
2933
- #: admin/social_sharing.php:1910
2934
  msgid ""
2935
  "Instagram icon is there to send website visitors to the Instagram page of "
2936
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2938,38 +2911,38 @@ msgid ""
2938
  "sections."
2939
  msgstr ""
2940
 
2941
- #: admin/social_sharing.php:1913
2942
  #, fuzzy
2943
  msgid "How to customize the url being shared?"
2944
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
2945
 
2946
- #: admin/social_sharing.php:1914
2947
  msgid ""
2948
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2949
  msgstr ""
2950
 
2951
- #: admin/social_sharing.php:1915
2952
  msgid ""
2953
  "It takes some time for their service to track the shares made on Twitter "
2954
  "from your website. If you still feel it's taking too long you can contact "
2955
  "their support directly from their website."
2956
  msgstr ""
2957
 
2958
- #: admin/social_sharing.php:1918
2959
  msgid ""
2960
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2961
  msgstr ""
2962
 
2963
- #: admin/social_sharing.php:1920
2964
  #, fuzzy
2965
  msgid "Why the color of share icons is not being updated?"
2966
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
2967
 
2968
- #: admin/social_sharing.php:1921
2969
  msgid "Why Facebook share counts are not appearing?"
2970
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
2971
 
2972
- #: admin/social_sharing.php:1922
2973
  msgid ""
2974
  "How can I show share counts of my website rather than of individual pages/"
2975
  "posts?"
@@ -2977,40 +2950,40 @@ msgstr ""
2977
  "Як мені відобразити загальну кількість Поділитися засноване на сторінках / "
2978
  "постах?"
2979
 
2980
- #: admin/social_sharing.php:1923
2981
  msgid "How can I disable sharing on particular page/post?"
2982
  msgstr ""
2983
  "Як можна відключити кнопки Поділитися на конкретній сторінці або в пості?"
2984
 
2985
- #: admin/social_sharing.php:1924
2986
  msgid "How can I specify minimum sharing count for sharing networks?"
2987
  msgstr "Як мені вказати мінімальну кількість для Поділитися"
2988
 
2989
- #: admin/social_sharing.php:1925
2990
  msgid "How to share specific page?"
2991
  msgstr "Як поділитися певною сторінкою?"
2992
 
2993
- #: admin/social_sharing.php:1926
2994
  msgid "How to integrate Google Analytics with sharing?"
2995
  msgstr "Як інтегрувати Google Analytics з Поділитися?"
2996
 
2997
- #: admin/social_sharing.php:1927
2998
  msgid "How to customize the look of total share counts?"
2999
  msgstr "Як налаштувати зовнішній вигляд лічильників Поділитися?"
3000
 
3001
- #: admin/social_sharing.php:1928
3002
  msgid "How to customize the look of individual share counts?"
3003
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
3004
 
3005
- #: admin/social_sharing.php:1929
3006
  msgid "How to show Whatsapp icon only on mobile devices?"
3007
  msgstr "Як показати іконку Whatsapp тільки на мобільних пристроях?"
3008
 
3009
- #: admin/social_sharing.php:1930
3010
  msgid "How to hide arrow after floating sharing bar?"
3011
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
3012
 
3013
- #: admin/social_sharing.php:1931
3014
  #, fuzzy
3015
  msgid "Why is share count not getting updated?"
3016
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
@@ -3036,71 +3009,71 @@ msgstr "Технічна документація"
3036
  msgid "Settings"
3037
  msgstr "Налаштування"
3038
 
3039
- #: helper.php:579
3040
  msgid "Account linked successfully"
3041
  msgstr "Аккаунт успішно пов'язаний"
3042
 
3043
- #: helper.php:583
3044
  msgid "Account already exists or linked"
3045
  msgstr "Аккаунт вже існує або пов'язаний"
3046
 
3047
- #: helper.php:619 helper.php:621
3048
  msgid "Login with"
3049
  msgstr "Увійти з"
3050
 
3051
- #: helper.php:656 helper.php:662
3052
  msgid "Currently"
3053
  msgstr "в даний час"
3054
 
3055
- #: helper.php:656 helper.php:662
3056
  msgid "Connected with"
3057
  msgstr "Авторизуватися за допомогою"
3058
 
3059
- #: helper.php:656 helper.php:662
3060
  msgid "Remove"
3061
  msgstr "Видалити"
3062
 
3063
- #: helper.php:733
3064
  msgid "Social Account Linking"
3065
  msgstr "Посилання на соціальний аккаунт"
3066
 
3067
- #: helper.php:783
3068
  msgid "Disable Standard Social Sharing on this "
3069
  msgstr "Відключити стандартний блок Поділитися на цьому"
3070
 
3071
- #: helper.php:788
3072
  msgid "Disable Floating Social Sharing on this "
3073
  msgstr "Відключити плаваючий блок Поділитися на цьому"
3074
 
3075
- #: helper.php:793
3076
  msgid "Disable Standard like buttons on this "
3077
  msgstr "Відключити стандартні кнопки Подобається на цьому"
3078
 
3079
- #: helper.php:798
3080
  msgid "Disable Floating like buttons on this "
3081
  msgstr "Відключити плаваючі кнопки Подобається на цьому"
3082
 
3083
- #: helper.php:803
3084
  msgid "Disable Social Commenting on this "
3085
  msgstr "Деактивувати соціальне коментування"
3086
 
3087
- #: helper.php:812
3088
  msgid "Standard Sharing Interface"
3089
  msgstr "Стандартний інтерфейс Поділитися"
3090
 
3091
- #: helper.php:818 helper.php:837
3092
  msgid "Starting share count for "
3093
  msgstr "Запустити лічильник Поділитися для"
3094
 
3095
- #: helper.php:831
3096
  msgid "Floating Sharing Interface"
3097
  msgstr "Плаваючий інтерфейс Поділитися"
3098
 
3099
- #: helper.php:927 super_socializer.php:2363
3100
  msgid "Social Avatar"
3101
  msgstr "Соціальний Аватар"
3102
 
3103
- #: helper.php:930 super_socializer.php:2374
3104
  msgid ""
3105
  "Do not fetch and update social avatar from my profile, next time I Social "
3106
  "Login"
@@ -3108,39 +3081,39 @@ msgstr ""
3108
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
3109
  "раз коли я використовую вхід через соцмережі"
3110
 
3111
- #: helper.php:931 super_socializer.php:2378
3112
  msgid "Update social avatar, next time I Social Login"
3113
  msgstr ""
3114
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
3115
  "соцмережі"
3116
 
3117
- #: helper.php:934
3118
  msgid "Small Avatar"
3119
  msgstr "Невеликий аватар"
3120
 
3121
- #: helper.php:938
3122
  msgid "Large Avatar"
3123
  msgstr "Великий аватар"
3124
 
3125
- #: helper.php:998 super_socializer.php:1924
3126
  msgid "Please verify your email address to login."
3127
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
3128
 
3129
- #: helper.php:1035
3130
  msgid "Click to delete social profile data"
3131
  msgstr ""
3132
 
3133
- #: helper.php:1064
3134
  #, fuzzy
3135
  msgid "Deleting"
3136
  msgstr "Налаштування"
3137
 
3138
- #: helper.php:1074
3139
  #, fuzzy
3140
  msgid "Deleted"
3141
  msgstr "Налаштування"
3142
 
3143
- #: helper.php:1076
3144
  msgid "Something bad happened"
3145
  msgstr ""
3146
 
@@ -3198,23 +3171,23 @@ msgstr "Архіви "
3198
  msgid "More"
3199
  msgstr ""
3200
 
3201
- #: inc/social_sharing.php:241 super_socializer.php:2034
3202
  msgid "Share"
3203
  msgstr "Поділитися"
3204
 
3205
- #: inc/social_sharing.php:241 super_socializer.php:2034
3206
  msgid "Shares"
3207
  msgstr "Поширили:"
3208
 
3209
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
3210
  msgid "Invalid request"
3211
  msgstr "Невірний Запит!"
3212
 
3213
- #: inc/social_sharing.php:949
3214
  msgid "Providers not selected"
3215
  msgstr "Сервіси не вибрані"
3216
 
3217
- #: inc/social_sharing_networks.php:57
3218
  msgid "Copy Link"
3219
  msgstr ""
3220
 
@@ -3501,7 +3474,11 @@ msgstr ""
3501
  msgid "RSS Feed URL:"
3502
  msgstr ""
3503
 
3504
- #: super_socializer.php:1707
 
 
 
 
3505
  msgid ""
3506
  "cURL is not enabled at your website server. Please contact your website "
3507
  "server administrator to enable it."
@@ -3509,7 +3486,7 @@ msgstr ""
3509
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
3510
  "до адміністратора вашого сайту, щоб включити це."
3511
 
3512
- #: super_socializer.php:1735
3513
  #, fuzzy, php-format
3514
  msgid ""
3515
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3518,7 +3495,7 @@ msgstr ""
3518
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
3519
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
3520
 
3521
- #: super_socializer.php:1738
3522
  #, fuzzy, php-format
3523
  msgid ""
3524
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3527,7 +3504,7 @@ msgstr ""
3527
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
3528
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
3529
 
3530
- #: super_socializer.php:1741
3531
  msgid ""
3532
  "Make sure cURL is enabled at your website server. You may need to contact "
3533
  "the server administrator of your website to verify this"
@@ -3536,123 +3513,123 @@ msgstr ""
3536
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
3537
  "переконатися в цьому."
3538
 
3539
- #: super_socializer.php:1902
3540
  #, fuzzy
3541
  msgid "Search"
3542
  msgstr "Шукати"
3543
 
3544
- #: super_socializer.php:1924
3545
  msgid "Your email has been verified. Now you can login to your account"
3546
  msgstr ""
3547
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
3548
  "облікового запису"
3549
 
3550
- #: super_socializer.php:1928
3551
  msgid "Notification"
3552
  msgstr "Повідомлення"
3553
 
3554
- #: super_socializer.php:1949
3555
  msgid "Please check your email inbox to complete the registration."
3556
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
3557
 
3558
- #: super_socializer.php:2018
3559
  msgid "Leave a reply"
3560
  msgstr "Залишити коментар"
3561
 
3562
- #: super_socializer.php:2034
3563
  #, fuzzy
3564
  msgid "Link copied."
3565
  msgstr "LinkedIn"
3566
 
3567
- #: super_socializer.php:2279
3568
  msgid "Super Socializer - General Options"
3569
  msgstr "Super Socializer - Загальні Параметри"
3570
 
3571
- #: super_socializer.php:2350
3572
  msgid ""
3573
  "I agree to my personal data being stored and used as per Privacy Policy and "
3574
  "Terms and Conditions"
3575
  msgstr ""
3576
 
3577
- #: super_socializer.php:2354
3578
  msgid ""
3579
  "I revoke my consent to store and use my personal data. Kindly delete my "
3580
  "personal data saved in this website."
3581
  msgstr ""
3582
 
3583
- #: super_socializer.php:2366
3584
  msgid "Small Avatar Url"
3585
  msgstr "Посилання для маленького аватара"
3586
 
3587
- #: super_socializer.php:2370
3588
  msgid "Large Avatar Url"
3589
  msgstr "Посилання для великого аватара"
3590
 
3591
- #: super_socializer.php:2472
3592
  msgid "Login with your Social ID"
3593
  msgstr "Увійти через соціальний аккаунт"
3594
 
3595
- #: super_socializer.php:2473
3596
  msgid "Email you entered is already registered or invalid"
3597
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
3598
 
3599
- #: super_socializer.php:2480
3600
  msgid "Please enter a valid email address. You might be required to verify it"
3601
  msgstr ""
3602
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
3603
  "потрібно перевірити його"
3604
 
3605
- #: super_socializer.php:2484 super_socializer.php:3238
3606
  msgid "Link your social account to login to your account at this website"
3607
  msgstr ""
3608
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
3609
  "запис на цьому сайті"
3610
 
3611
- #: super_socializer.php:2741
3612
  msgid "Thanks for installing Super Socializer plugin"
3613
  msgstr ""
3614
 
3615
- #: super_socializer.php:2743
3616
  msgid "Configure the Plugin"
3617
  msgstr ""
3618
 
3619
- #: super_socializer.php:2754
3620
  msgid ""
3621
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3622
  "current version of Super Socializer"
3623
  msgstr ""
3624
 
3625
- #: super_socializer.php:2763
3626
  msgid ""
3627
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3628
  "version of Super Socializer"
3629
  msgstr ""
3630
 
3631
- #: super_socializer.php:2772
3632
  msgid ""
3633
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3634
  "compatibility with the current version of Super Socializer"
3635
  msgstr ""
3636
 
3637
- #: super_socializer.php:2781
3638
  msgid ""
3639
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3640
  "with current version of Super Socializer"
3641
  msgstr ""
3642
 
3643
- #: super_socializer.php:2790
3644
  msgid ""
3645
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3646
  "with current version of Super Socializer"
3647
  msgstr ""
3648
 
3649
- #: super_socializer.php:2801
3650
  #, php-format
3651
  msgid ""
3652
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3653
  msgstr ""
3654
 
3655
- #: super_socializer.php:2810
3656
  #, php-format
3657
  msgid ""
3658
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3660,7 +3637,7 @@ msgid ""
3660
  "Instagram App Secret <a href=\"%s\">here</a>"
3661
  msgstr ""
3662
 
3663
- #: super_socializer.php:2819 super_socializer.php:2828
3664
  #, php-format
3665
  msgid ""
3666
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3669,13 +3646,13 @@ msgid ""
3669
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3670
  msgstr ""
3671
 
3672
- #: super_socializer.php:2844
3673
  #, php-format
3674
  msgid ""
3675
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3676
  msgstr ""
3677
 
3678
- #: super_socializer.php:2868
3679
  #, php-format
3680
  msgid ""
3681
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3683,14 +3660,14 @@ msgid ""
3683
  "target=\"_blank\">here</a>"
3684
  msgstr ""
3685
 
3686
- #: super_socializer.php:2868 super_socializer.php:2893
3687
- #: super_socializer.php:2918 super_socializer.php:2943
3688
- #: super_socializer.php:2976 super_socializer.php:3004
3689
- #: super_socializer.php:3031
3690
  msgid "Okay"
3691
  msgstr "Гаразд."
3692
 
3693
- #: super_socializer.php:2893
3694
  #, php-format
3695
  msgid ""
3696
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3698,7 +3675,7 @@ msgid ""
3698
  "\">here</a>"
3699
  msgstr ""
3700
 
3701
- #: super_socializer.php:2918
3702
  #, php-format
3703
  msgid ""
3704
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3706,7 +3683,7 @@ msgid ""
3706
  "target=\"_blank\">here</a>"
3707
  msgstr ""
3708
 
3709
- #: super_socializer.php:2943
3710
  #, php-format
3711
  msgid ""
3712
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3714,13 +3691,13 @@ msgid ""
3714
  "target=\"_blank\">here</a>"
3715
  msgstr ""
3716
 
3717
- #: super_socializer.php:2954
3718
  #, fuzzy, php-format
3719
  msgid ""
3720
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3721
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
3722
 
3723
- #: super_socializer.php:2976
3724
  #, php-format
3725
  msgid ""
3726
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3728,7 +3705,7 @@ msgid ""
3728
  "\"%s\" target=\"_blank\">here</a>"
3729
  msgstr ""
3730
 
3731
- #: super_socializer.php:3004
3732
  #, php-format
3733
  msgid ""
3734
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3737,7 +3714,7 @@ msgid ""
3737
  "your website %s with them. No need to copy-paste any code from their website."
3738
  msgstr ""
3739
 
3740
- #: super_socializer.php:3031
3741
  #, php-format
3742
  msgid ""
3743
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3745,7 +3722,7 @@ msgid ""
3745
  "\"%s\" target=\"_blank\">here</a>"
3746
  msgstr ""
3747
 
3748
- #: super_socializer.php:3056
3749
  #, php-format
3750
  msgid ""
3751
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3753,20 +3730,11 @@ msgid ""
3753
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3754
  msgstr ""
3755
 
3756
- #: super_socializer.php:3056 super_socializer.php:3083
3757
  msgid "Dismiss"
3758
  msgstr ""
3759
 
3760
- #: super_socializer.php:3082
3761
- #, php-format
3762
- msgid ""
3763
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3764
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3765
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3766
- "that, clear share counts cache from \"Miscellaneous\" section"
3767
- msgstr ""
3768
-
3769
- #: super_socializer.php:3314
3770
  msgid ""
3771
  "Your browser is blocking some features of this website. Please follow the "
3772
  "instructions at {support_url} to unblock these."
@@ -3774,6 +3742,33 @@ msgstr ""
3774
  "Ваш браузер блокує деякі функції даного веб-сайту. Будь ласка, дотримуйтесь "
3775
  "інструкцій в {support_url}, щоб розблокувати функції."
3776
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3777
  #, fuzzy
3778
  #~ msgid ""
3779
  #~ "Required for Dropbox Social Login to work. Please follow the "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-17 15:41+0530\n"
6
+ "PO-Revision-Date: 2021-07-17 15:41+0530\n"
7
  "Last-Translator: Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
22
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
23
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
24
  #: admin/social_login.php:5 admin/social_login.php:1984
25
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
26
  #, fuzzy, php-format
27
  msgid ""
28
  "You can appreciate the effort put in this free plugin by rating it <a href="
32
  "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
33
 
34
  #: admin/general_options.php:15 admin/social_commenting.php:47
35
+ #: super_socializer.php:2291
36
  msgid "General Options"
37
  msgstr "Загальні параметри"
38
 
81
 
82
  #: admin/general_options.php:89 admin/like_buttons.php:780
83
  #: admin/social_commenting.php:400 admin/social_login.php:1980
84
+ #: admin/social_sharing.php:1912 helper.php:936
85
  msgid "Save Changes"
86
  msgstr "Зберегти налаштування"
87
 
88
  #: admin/general_options.php:103 admin/like_buttons.php:790
89
  #: admin/social_commenting.php:410 admin/social_login.php:1990
90
+ #: admin/social_sharing.php:1922
91
  #, fuzzy
92
  msgid "Instagram Shoutout"
93
  msgstr "Instagram"
94
 
95
  #: admin/general_options.php:105 admin/like_buttons.php:792
96
  #: admin/social_commenting.php:412 admin/social_login.php:1992
97
+ #: admin/social_sharing.php:1924
98
  msgid ""
99
  "If you can send (to hello@heateor.com) how this plugin is helping your "
100
  "business, we would be glad to shoutout on Instagram. You can also send any "
203
  "Панель управління кнопками Подобається. Повинно бути включено щоб активувати "
204
  "кнопки Подобається"
205
 
206
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
207
  msgid "Standard Interface"
208
  msgstr "Стандартний інтерфейс"
209
 
210
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
211
  msgid "Floating Interface"
212
  msgstr "Плаваючий інтерфейс"
213
 
214
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
215
  msgid "Miscellaneous"
216
  msgstr "Різне"
217
 
218
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
219
  #, fuzzy
220
  msgid "3rd Party Integration"
221
  msgstr "XProfile інтеграція"
222
 
223
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
224
  #: admin/social_login.php:45 admin/social_login.php:1946
225
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
226
+ #: admin/social_sharing.php:1839
227
  msgid "Shortcode & Widget"
228
  msgstr "Шорткод і віджет"
229
 
230
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
231
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
232
  #: admin/social_login.php:46 admin/social_login.php:1960
233
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
234
  msgid "FAQ"
235
  msgstr "Часті питання (FAQ)"
236
 
247
  msgstr "Майстер налаштування включення горизонтальних кнопок Подобається"
248
 
249
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
250
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
251
  msgid "Target Url"
252
  msgstr "Цільова URL-адреса"
253
 
254
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
255
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
256
  msgid "Url of the webpage where icons are located (default)"
257
  msgstr "URL-адресу веб-сторінки, де розташовані значки (за замовчуванням)"
258
 
259
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
260
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
261
  msgid "Url of the homepage of your website"
262
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
263
 
264
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
265
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
266
  msgid "Custom url"
267
  msgstr "Користувальницьке посилання"
268
 
273
  "Подобається / Поділитися / Твитнути"
274
 
275
  #: admin/like_buttons.php:105 admin/social_login.php:1231
276
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
277
  msgid "Title"
278
  msgstr "Заголовок"
279
 
290
  msgstr "Виберіть сервіси для інтерфейсу. Перемістіть їх щоб змінити порядок"
291
 
292
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
293
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
294
  msgid "Horizontal alignment"
295
  msgstr "Горизонтальне вирівнювання"
296
 
297
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
298
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
299
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
300
  #: inc/widget.php:446 inc/widget.php:758
301
  msgid "Left"
302
  msgstr "Зліва"
303
 
304
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
305
  msgid "Center"
306
  msgstr "Центр"
307
 
308
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
309
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
310
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
311
  #: inc/widget.php:447 inc/widget.php:759
312
  msgid "Right"
313
  msgstr "Справа"
316
  msgid "Horizontal alignment of the interface"
317
  msgstr "Горизонтальне вирівнювання інтерфейсу"
318
 
319
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
320
  msgid "Position with respect to content"
321
  msgstr "Позиція щодо контенту"
322
 
323
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
324
  msgid "Top of the content"
325
  msgstr "Над вмістом"
326
 
327
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
328
  msgid "Bottom of the content"
329
  msgstr "Під вмістом"
330
 
338
 
339
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
340
  #: admin/social_login.php:1548 admin/social_login.php:1577
341
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
342
  msgid "Homepage"
343
  msgstr "Головна"
344
 
345
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
346
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
347
  msgid "Posts"
348
  msgstr "Записи"
349
 
350
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
351
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
352
  msgid "Pages"
353
  msgstr "Сторінки"
354
 
355
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
356
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
357
  msgid "Excerpts and Posts page"
358
  msgstr "Сторінки анонсів і постів"
359
 
360
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
361
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
362
  msgid "Category Archives"
363
  msgstr "Архіви категорій"
364
 
365
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
366
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
367
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
368
  msgstr "Архів сторінки (Категорія, тегів, автор або сторінки на основі дат)"
369
 
370
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
371
  msgid "BuddyPress activity"
372
  msgstr "BuddyPress активність"
373
 
374
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
375
  msgid "BuddyPress group (only at top of content)"
376
  msgstr "BuddyPress групи (тільки у верхній частині контенту)"
377
 
378
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
379
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
380
  msgid "BBPress forum"
381
  msgstr "BBPress форум"
382
 
383
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
384
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
385
  msgid "BBPress topic"
386
  msgstr "BBPress тема"
387
 
388
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
389
  msgid "BBPress reply"
390
  msgstr "BBPress відповідь"
391
 
392
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
393
  msgid "After individual product at WooCommerce Shop page"
394
  msgstr "Після індивідуального продукту на сторінці магазину"
395
 
396
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
397
  msgid "WooCommerce Product Page"
398
  msgstr "Продукт Woocommerce"
399
 
400
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
401
  msgid "WooCommerce Thankyou Page"
402
  msgstr "WooCommerce сторінка подяки"
403
 
418
  msgstr ""
419
  "Майстер управління включення вертикального (плаваючого) лічильника віджета"
420
 
421
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
422
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
423
  #: inc/widget.php:460 inc/widget.php:772
424
  msgid "Background Color"
425
  msgstr "Колір фону"
436
  "отримати шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target="
437
  "\"_blank\"> тут </a>"
438
 
439
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
440
  msgid "Left offset"
441
  msgstr "Зміщення вліво"
442
 
449
  "правого боку і зменшувати по відношенню до лівого боку. Число може бути "
450
  "негативним."
451
 
452
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
453
  msgid "Right offset"
454
  msgstr "Зміщення вправо"
455
 
462
  "лівої сторони і зменшувати по відношенню до правої сторони. Число може бути "
463
  "негативним."
464
 
465
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
466
  msgid "Top offset"
467
  msgstr "Верхній відступ"
468
 
474
  "Вкажіть число. Збільшення числа буде зрушувати інтерфейс по відношенню до "
475
  "низу і зменшувати по відношенню до верху."
476
 
477
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
478
  msgid "BuddyPress group"
479
  msgstr "BuddyPress Група"
480
 
492
  "Якщо включено, то вертикальний інтерфейс Подобається не буде доступний на "
493
  "мобільних пристроях"
494
 
495
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
496
  msgid "Url shortener"
497
  msgstr "Скорочення URL"
498
 
512
  msgid "Enable bit.ly url shortener for tweet button"
513
  msgstr "Активувати скорочення посилань bit.ly для кнопки Твитнути"
514
 
515
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
516
  msgid "Master control to enable bit.ly url shortening for sharing"
517
  msgstr "Майстер управління скорочення посилань через bit.ly для Поділитися"
518
 
519
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
520
  msgid "Bit.ly generic access token"
521
  msgstr ""
522
 
523
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
524
  #, php-format
525
  msgid ""
526
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
529
  "\">link</a>"
530
  msgstr ""
531
 
532
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
533
  msgid "Clear Bitly Cache"
534
  msgstr "Очистити Bitly кеш"
535
 
536
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
537
  msgid "ShortUrl cache cleared successfully."
538
  msgstr "ShortUrl кеш успішно очищений."
539
 
540
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
541
  msgid ""
542
  "Use this to delete short urls saved in database. Handy, if urls of your "
543
  "website have been changed but short urls are still being generated for old "
548
  "адреси, як і раніше створюються для старих URL-адрес."
549
 
550
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
551
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
552
+ #: admin/social_sharing.php:1717
553
  msgid "Language"
554
  msgstr "Мова"
555
 
593
  "Ім'я користувача що використовується, буде показано після твіта як \"via "
594
  "@USERNAME \". Залиште порожнім якщо не хочете відображати ім'я."
595
 
596
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
597
  msgid "myCRED"
598
  msgstr ""
599
 
600
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
601
  msgid "Append myCRED referral ID to the urls being shared"
602
  msgstr ""
603
 
605
  msgid "Like Buttons Shortcode & Widget"
606
  msgstr "Шорткод і віджет Подобається"
607
 
608
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
609
  msgid "Why is there so much space between like buttons?"
610
  msgstr "Чому існує так багато місця між кнопками?"
611
 
612
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
613
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
614
  msgstr ""
615
  "Чому плаваюча панель Поділитися / Подобається не відображаються на головній "
616
  "сторінці?"
617
 
618
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
619
  msgid "How to Place Title and Social Share Icons in the Same Row?"
620
  msgstr ""
621
 
827
  msgstr "Шорткод коментування через соцмережі"
828
 
829
  #: admin/social_commenting.php:386 admin/social_login.php:1962
830
+ #: admin/social_sharing.php:1872
831
  msgid ""
832
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
833
  "an online website for the plugin to function properly."
846
  msgstr ""
847
 
848
  #: admin/social_commenting.php:389 admin/social_login.php:1969
849
+ #: admin/social_sharing.php:1887
850
  msgid "Why is my browser blocking some features of the plugin?"
851
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
852
 
881
  msgstr "Розширена конфігурація"
882
 
883
  #: admin/social_login.php:41 admin/social_login.php:1746
884
+ #: super_socializer.php:2359
885
  msgid "GDPR"
886
  msgstr ""
887
 
1025
  msgstr ""
1026
 
1027
  #: admin/social_login.php:203
1028
+ msgid "Mail.ru"
1029
  msgstr ""
1030
 
1031
  #: admin/social_login.php:207
1040
  msgid "Select Social ID provider to enable in Social Login"
1041
  msgstr "Виберіть соцмережі щоб активувати вхід через соцмережі"
1042
 
1043
+ #: admin/social_login.php:226
1044
  msgid "Facebook App ID"
1045
  msgstr "Facebook App ID"
1046
 
1061
  "Вставити наступний URL-адресу в <strong> URL-адресу сайту </ strong> для "
1062
  "згадки посилання."
1063
 
1064
+ #: admin/social_login.php:247
1065
  #, fuzzy
1066
  msgid "Facebook App Secret"
1067
  msgstr "Facebook App ID"
2021
  "Якщо цей параметр включений, користувачі зможуть оновити свій соціальний "
2022
  "аватар з розділу «Профіль» фото в профілі BuddyPress"
2023
 
2024
+ #: admin/social_login.php:1490 super_socializer.php:1958
2025
  msgid "Email required"
2026
  msgstr "Електронна адреса (обо'язково)"
2027
 
2322
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2323
  msgstr ""
2324
 
2325
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2326
  msgid "Theme Selection"
2327
  msgstr "Вибір теми"
2328
 
2329
+ #: admin/social_sharing.php:64
2330
  msgid "Troubleshooter"
2331
  msgstr "Усунення несправностей"
2332
 
2333
+ #: admin/social_sharing.php:73
2334
  msgid "Standard interface theme"
2335
  msgstr "Стандартний інтерфейс"
2336
 
2337
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2338
  msgid "Icon Preview"
2339
  msgstr "Прев'ю іконок"
2340
 
2341
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2342
  msgid ""
2343
  "Do not forget to save the configuration after making changes by clicking the "
2344
  "save button below"
2346
  "Не забудьте зберегти конфігурацію після внесення змін, натиснувши нижче "
2347
  "кнопку зберегти"
2348
 
2349
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2350
  msgid "Shape"
2351
  msgstr "Форма"
2352
 
2353
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2354
  msgid "Round"
2355
  msgstr "Кругла"
2356
 
2357
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2358
  msgid "Square"
2359
  msgstr "Квадратна"
2360
 
2361
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2362
  msgid "Rectangle"
2363
  msgstr "Прямокутник"
2364
 
2365
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2366
  msgid "Shape of the sharing icons"
2367
  msgstr "Форма кнопок Поділитися"
2368
 
2369
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2370
  msgid "Size (in pixels)"
2371
  msgstr "Розмір (в пікселях)"
2372
 
2373
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2374
  msgid "Size of the sharing icons"
2375
  msgstr "Розмір кнопок Поділитися"
2376
 
2377
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2378
  msgid "Width (in pixels)"
2379
  msgstr "Ширина (в пікселях)"
2380
 
2381
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2382
  msgid "Width of the sharing icons"
2383
  msgstr "Ширина іконок поділитися"
2384
 
2385
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2386
  msgid "Height (in pixels)"
2387
  msgstr "Висота (в пікселях)"
2388
 
2389
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2390
  msgid "Height of the sharing icons"
2391
  msgstr "Висота кнопок Поділитися"
2392
 
2393
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2394
  msgid "Border radius (in pixels)"
2395
  msgstr "Радіус рамки (в пікселях)"
2396
 
2397
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2398
  msgid ""
2399
  "Specify a value for rounded corners. More the value, more rounded will the "
2400
  "corners be. Leave empty for sharp corners."
2402
  "Вкажіть значення для закруглених кутів. Чим більше значення параметра, більш "
2403
  "округлими будуть кути. Залиште порожнім для прямих кутів."
2404
 
2405
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2406
  msgid "Logo Color"
2407
  msgstr "Колір логотипу"
2408
 
2409
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2410
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2411
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2412
  msgid "Default"
2413
  msgstr "За замовчуванням"
2414
 
2415
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2416
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2417
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2418
  msgid "On Hover"
2419
  msgstr "При наведенні"
2420
 
2421
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2422
  msgid ""
2423
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2424
  "empty for default. You can get the hex code of the required color from <a "
2429
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2430
  "\"> тут </a>"
2431
 
2432
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2433
  msgid ""
2434
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2435
  "\"transparent\" for transparent background. Leave empty for default. You can "
2441
  "шістнадцятковий код <a href=\"http://www.colorpicker.com/\" target=\"_blank"
2442
  "\"> тут </a>"
2443
 
2444
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2445
  msgid "Border"
2446
  msgstr "Рамка"
2447
 
2448
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2449
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2450
  msgid "Border Width"
2451
  msgstr "Ширина рамки"
2452
 
2453
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2454
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2455
  msgid "Border Color"
2456
  msgstr "Колір рамки"
2457
 
2458
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2459
  msgid "Icon border"
2460
  msgstr "Іконка рамки"
2461
 
2462
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2463
  msgid "Counter Position"
2464
  msgstr "Позиція лічильника"
2465
 
2466
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2467
  msgid "(applies, if counter enabled)"
2468
  msgstr "(застосовується, якщо лічильник включений)"
2469
 
2470
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2471
  msgid "Top"
2472
  msgstr "Зверху"
2473
 
2474
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2475
  msgid "Bottom"
2476
  msgstr "Знизу"
2477
 
2478
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2479
  msgid "Inner Left"
2480
  msgstr "Лівий відступ"
2481
 
2482
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2483
  msgid "Inner Top"
2484
  msgstr "Верхній відступ"
2485
 
2486
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2487
  msgid "Inner Right"
2488
  msgstr "Внутрішній відступ справа"
2489
 
2490
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2491
  msgid "Inner Bottom"
2492
  msgstr "Нижній відступ"
2493
 
2494
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2495
  msgid "Position of share counter"
2496
  msgstr "Положення лічильника Поділитися"
2497
 
2498
+ #: admin/social_sharing.php:371
2499
  msgid "Floating interface theme"
2500
  msgstr "Плаваючий інтерфейс Поділитися"
2501
 
2502
+ #: admin/social_sharing.php:675
2503
  msgid "Standard Sharing Interface Options"
2504
  msgstr "Стандартні параметри інтерфейсу"
2505
 
2506
+ #: admin/social_sharing.php:680
2507
  msgid "Enable Standard sharing interface"
2508
  msgstr "Включити стандартний інтерфейс Поділитися"
2509
 
2510
+ #: admin/social_sharing.php:690
2511
  msgid "Master control to enable standard sharing"
2512
  msgstr "Майстер налаштування включення стандартних опцій Поділитися"
2513
 
2514
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2515
  msgid "Url to share"
2516
  msgstr "Посилання щоб Поділитися"
2517
 
2518
+ #: admin/social_sharing.php:731
2519
  msgid "The text to display above the sharing interface"
2520
  msgstr "Текст, що відображається над інтерфейсом Поділитися"
2521
 
2522
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2523
  msgid "Instagram username"
2524
  msgstr "Введіть ім'я користувача Instagram."
2525
 
2526
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2527
  msgid ""
2528
  "Username of the Instagram account you want to redirect users to, on clicking "
2529
  "the icon"
2531
  "Ім'я користувача Instagram, на обліковий запис якого ви хочете перенаправити "
2532
  "користувачів, якщо натиснути на іконку"
2533
 
2534
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2535
  #, fuzzy
2536
  msgid "HTML ID of container element of comment form"
2537
  msgstr "HTML-ідентифікатор форми контейнера коментаря"
2538
 
2539
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2540
  msgid ""
2541
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2542
  "icon."
2543
  msgstr ""
2544
 
2545
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2546
  msgid "Rearrange icons"
2547
  msgstr "Змінити порядок іконок"
2548
 
2549
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2550
  msgid "Drag the icons to rearrange in desired order"
2551
  msgstr "Якщо хочете змінити порядок, просто перетягніть зображення"
2552
 
2553
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2554
  msgid "Select Sharing Services"
2555
  msgstr "Виберіть сервіси Поділитися"
2556
 
2557
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2558
  msgid "Select sharing services to show in social share bar"
2559
  msgstr "Виберіть сервіси для показу в панелі Поділитися"
2560
 
2561
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2562
  #, fuzzy
2563
  msgid "Search social network"
2564
  msgstr "Виберіть сервіси"
2565
 
2566
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2567
  msgid "Horizontal alignment of the sharing interface"
2568
  msgstr "Горизонтальне вирівнювання інтерфейсу Поділитися"
2569
 
2570
+ #: admin/social_sharing.php:942
2571
  msgid "Specify position of the sharing interface with respect to the content"
2572
  msgstr "Вкажіть положення інтерфейсу Поділитися щодо вмісту."
2573
 
2574
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2575
  msgid "Placement"
2576
  msgstr "Розміщення"
2577
 
2578
+ #: admin/social_sharing.php:1017
2579
  msgid "Specify the pages where you want to enable Sharing interface"
2580
  msgstr "Вкажіть сторінки, де ви хочете включити інтерфейс Поділитися"
2581
 
2582
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2583
  msgid "Show share counts"
2584
  msgstr "Показати лічильники кнопки Поділитися"
2585
 
2586
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2587
  #, fuzzy
2588
  msgid ""
2589
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2590
+ "Odnoklassniki, Fintel and Vkontakte"
2591
  msgstr ""
2592
  "Підтримуються Facebook, Linkedin, Google Plus, Delicious, Buffer, Reddit, "
2593
  "Pinterest, Stumbleupon, Odnoklassniki і Vkontakte"
2594
 
2595
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2596
  #, php-format
2597
  msgid ""
2598
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2601
  "their website."
2602
  msgstr ""
2603
 
2604
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2605
  msgid "If enabled, share counts are displayed above sharing icons."
2606
  msgstr "Якщо включено, лічильники відображаються вище кнопок Поділитися"
2607
 
2608
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2609
+ #: admin/social_sharing.php:1659
2610
+ msgid "Track Social Shares for Every Social Network"
2611
+ msgstr ""
2612
+
2613
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2614
  msgid "Show total shares"
2615
  msgstr "Включити загальну кількість Поділитися"
2616
 
2617
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2618
  msgid "If enabled, total shares will be displayed with sharing icons"
2619
  msgstr ""
2620
  "Якщо включено, то загальна кількість Поділитися буде відображатися з "
2621
  "кнопками Поділитися"
2622
 
2623
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2624
  msgid "Enable 'More' icon"
2625
  msgstr "Включити значок «Більше»"
2626
 
2627
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2628
  msgid ""
2629
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2630
  "which shows additional sharing networks in popup"
2632
  "Якщо включено, «Більше» буде відображатися після кнопок Поділитися, яка "
2633
  "показує додаткові сервіси в спливаючому вікні"
2634
 
2635
+ #: admin/social_sharing.php:1096
2636
  msgid "Floating Sharing Interface Options"
2637
  msgstr "Параметри плаваючих кнопок Поділитися"
2638
 
2639
+ #: admin/social_sharing.php:1101
2640
  msgid "Enable Floating sharing interface"
2641
  msgstr "Включити інтерфейс плаваючих кнопок Поділитися"
2642
 
2643
+ #: admin/social_sharing.php:1111
2644
  msgid "Master control to enable floating sharing widget"
2645
  msgstr "Майстер управління включення плаваючого віджета Поділитися"
2646
 
2647
+ #: admin/social_sharing.php:1299
2648
  msgid ""
2649
  "Specify the color or hex code (example #cc78e0) for the background of "
2650
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
2656
  "можете отримати шістнадцятковий код <a href=\"http://www.colorpicker.com/\" "
2657
  "target=\"_blank\"> тут </a>"
2658
 
2659
+ #: admin/social_sharing.php:1337
2660
  msgid ""
2661
  "Specify a number. Increase in number will shift sharing interface towards "
2662
  "right and decrease will shift it towards left. Number can be negative too."
2665
  "правої сторони і зменшувати по відношенню до лівої сторони. Число може бути "
2666
  "негативним."
2667
 
2668
+ #: admin/social_sharing.php:1356
2669
  msgid ""
2670
  "Specify a number. Increase in number will shift sharing interface towards "
2671
  "left and decrease will shift it towards right. Number can be negative too."
2674
  "лівої сторони і зменшувати по відношенню до правої сторони. Число може бути "
2675
  "негативним."
2676
 
2677
+ #: admin/social_sharing.php:1374
2678
  msgid ""
2679
  "Specify a number. Increase in number will shift sharing interface towards "
2680
  "bottom and decrease will shift it towards top."
2682
  "Вкажіть число. Збільшення числа буде зсувати інтерфейс Поділитися стосовно "
2683
  "низу і зменшувати по відношенню до верху."
2684
 
2685
+ #: admin/social_sharing.php:1430
2686
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2687
  msgstr ""
2688
  "Вкажіть сторінки, де ви хочете включити вертикальний інтерфейс Поділитися"
2689
 
2690
+ #: admin/social_sharing.php:1499
2691
  #, fuzzy
2692
  msgid "Hide floating slider"
2693
  msgstr "Закрити для зареєстрованих користувачів"
2694
 
2695
+ #: admin/social_sharing.php:1509
2696
  #, fuzzy
2697
  msgid "Hides the slider arrow present below the floating share bar"
2698
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
2699
 
2700
+ #: admin/social_sharing.php:1516
2701
  msgid "Vertical floating bar responsiveness"
2702
  msgstr "Адаптивність вертикальних плаваючих кнопок"
2703
 
2704
+ #: admin/social_sharing.php:1519
2705
  #, php-format
2706
  msgid "Display vertical interface only when screen is wider than %s pixels"
2707
  msgstr ""
2708
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж% s "
2709
  "пікселів."
2710
 
2711
+ #: admin/social_sharing.php:1526
2712
  msgid ""
2713
  "Display vertical interface only when screen is wider than the width "
2714
  "specified."
2716
  "Показувати вертикальний інтерфейс тільки якщо ширина екрану більше ніж "
2717
  "ширина за замовчуванням."
2718
 
2719
+ #: admin/social_sharing.php:1533
2720
  msgid "Horizontal floating bar responsiveness"
2721
  msgstr "Адаптивність вертикальних плаваючих кнопок"
2722
 
2723
+ #: admin/social_sharing.php:1536
2724
  #, php-format
2725
  msgid ""
2726
  "Stick vertical floating interface horizontally at bottom only when screen is "
2729
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
2730
  "вужче ніж% s пікселів"
2731
 
2732
+ #: admin/social_sharing.php:1543
2733
  msgid ""
2734
  "Stick vertical floating interface horizontally at bottom only when screen is "
2735
  "narrower than the width specified"
2737
  "Закріпити вертикальний плаваючий інтерфейс внизу тільки тоді коли екран "
2738
  "вужче чим зазначена ширина"
2739
 
2740
+ #: admin/social_sharing.php:1552
2741
  msgid "Horizontal floating bar position"
2742
  msgstr "Розташування горизонтальної плаваючої панелі"
2743
 
2744
+ #: admin/social_sharing.php:1555
2745
  #, php-format
2746
  msgid "%s pixels from %s"
2747
  msgstr "%s пікселів від %s"
2748
 
2749
+ #: admin/social_sharing.php:1556
2750
  msgid "Auto-adjust according to screen width (responsive)"
2751
  msgstr ""
2752
 
2753
+ #: admin/social_sharing.php:1563
2754
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2755
  msgstr ""
2756
  "Вирівнювання горизонтального плаваючого інтерфейсу. Число може бути "
2757
  "негативним."
2758
 
2759
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2760
  msgid "Use shortlinks already installed"
2761
  msgstr "Використання коротких посилань вже встановлено"
2762
 
2763
+ #: admin/social_sharing.php:1598
2764
  msgid "Uses default short url permalinks without using any additional plugin"
2765
  msgstr ""
2766
  "Використовує за замовчуванням постійні короткі url без використання будь-"
2767
  "яких додаткових плагінів"
2768
 
2769
+ #: admin/social_sharing.php:1605
2770
  msgid "Enable bit.ly url shortener for sharing"
2771
  msgstr "Активувати bit.ly для скорочення посилань для Поділитися"
2772
 
2773
+ #: admin/social_sharing.php:1664
2774
  msgid "Share Count Cache"
2775
  msgstr "Кеш лічильників Поділитися"
2776
 
2777
+ #: admin/social_sharing.php:1669
2778
  msgid "Refresh Share Count cache every"
2779
  msgstr "Оновити кеш лічильників Поділитися"
2780
 
2781
+ #: admin/social_sharing.php:1674
2782
  msgid "Second(s)"
2783
  msgstr "Секунд"
2784
 
2785
+ #: admin/social_sharing.php:1675
2786
  msgid "Minute(s)"
2787
  msgstr "Хвилин"
2788
 
2789
+ #: admin/social_sharing.php:1676
2790
  msgid "Hour(s)"
2791
  msgstr "Годин"
2792
 
2793
+ #: admin/social_sharing.php:1677
2794
  msgid "Day(s)"
2795
  msgstr "Днів"
2796
 
2797
+ #: admin/social_sharing.php:1685
2798
  #, fuzzy, php-format
2799
  msgid ""
2800
  "Frequent cache refreshing results in slower loading of pages with share "
2804
  "Часте оновлення кешу призводить до більш повільного завантаження сторінок з "
2805
  "включеними лічильниками Поділитися"
2806
 
2807
+ #: admin/social_sharing.php:1692
2808
  msgid "Clear Share Counts Cache"
2809
  msgstr "Очистити кеш лічильників Поділитися"
2810
 
2811
+ #: admin/social_sharing.php:1696
2812
  msgid "Share Counts cache cleared successfully."
2813
  msgstr "Кеш лічільників Поділитися успішно очищений."
2814
 
2815
+ #: admin/social_sharing.php:1703
2816
  msgid "Use this to clear cached share counts"
2817
  msgstr "Використовуйте це для очищення кешованих лічильників Поділитися"
2818
 
2819
+ #: admin/social_sharing.php:1727
2820
  #, php-format
2821
  msgid ""
2822
  "Enter the code of the language you want to use for like buttons. You can "
2828
  "\"_blank\"> цим посиланням </a>. Залиште поле порожнім щоб залишити мову за "
2829
  "замовчуванням (Українська)."
2830
 
2831
+ #: admin/social_sharing.php:1736
2832
  msgid "Username in sharing"
2833
  msgstr "Ім'я користувача щоб поділитися"
2834
 
2835
+ #: admin/social_sharing.php:1741
2836
  msgid "Twitter username (without @)"
2837
  msgstr "Twitter ім'я користувача (без @)"
2838
 
2839
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2840
  msgid ""
2841
  "Provided username will be appended after the content being shared as \"via "
2842
  "@USERNAME\". Leave empty if you do not want any username in the content "
2845
  "Додає ім'я користувача після того як контент буде розшарено за допомогою "
2846
  "\"via @USERNAME\". Залиште поле порожнім якщо не хочете вказувати ім'я."
2847
 
2848
+ #: admin/social_sharing.php:1759
2849
  msgid "Buffer username (without @)"
2850
  msgstr "Ім'я користувача в Twitter (без @)"
2851
 
2852
+ #: admin/social_sharing.php:1778
2853
  msgid "AMP"
2854
  msgstr "AMP"
2855
 
2856
+ #: admin/social_sharing.php:1783
2857
  msgid "Enable sharing on AMP pages"
2858
  msgstr "Дозволити загальний доступ на сторінках AMP"
2859
 
2860
+ #: admin/social_sharing.php:1793
2861
  msgid "Enable this option to render sharing icons on AMP pages"
2862
  msgstr "Увімкніть цей параметр для відображення іконок на сторінках AMP"
2863
 
2864
+ #: admin/social_sharing.php:1850
2865
  msgid "Facebook Sharing Troubleshooter"
2866
  msgstr "Усунення несправностей Поділитися від Facebook"
2867
 
2868
+ #: admin/social_sharing.php:1855
2869
  #, fuzzy
2870
  msgid ""
2871
  "If Facebook sharing is not working fine, click at the following link and "
2877
  "працює належним чином) на вашому сайті в текстовому полі. Натисніть "
2878
  "\"Отримання інформації про нову поломки \"."
2879
 
2880
+ #: admin/social_sharing.php:1873
2881
  msgid ""
2882
  "Why is sharer not showing the correct image, title and other meta tags "
2883
  "content?"
2885
  "Чому расшаріваніє не вказує корректіно зображення, заголовок і інші мета "
2886
  "дані контенту?"
2887
 
2888
+ #: admin/social_sharing.php:1874
2889
  #, fuzzy
2890
  msgid "Why is Facebook share count not working?"
2891
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
2892
 
2893
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2894
+ #, php-format
2895
+ msgid ""
2896
+ "After the recent changes introduced in the Facebook graph API, it's not "
2897
+ "possible to track Facebook shares using it. <a href='%s' "
2898
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2899
+ "not just for Facebook but for all the social networks"
2900
+ msgstr ""
2901
+
2902
+ #: admin/social_sharing.php:1877
2903
  msgid "Why is Instagram icon redirecting to Instagram website?"
2904
  msgstr ""
2905
 
2906
+ #: admin/social_sharing.php:1878
2907
  msgid ""
2908
  "Instagram icon is there to send website visitors to the Instagram page of "
2909
  "your choice. You can save the desired Instagram handle in \"Instagram "
2911
  "sections."
2912
  msgstr ""
2913
 
2914
+ #: admin/social_sharing.php:1881
2915
  #, fuzzy
2916
  msgid "How to customize the url being shared?"
2917
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
2918
 
2919
+ #: admin/social_sharing.php:1882
2920
  msgid ""
2921
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2922
  msgstr ""
2923
 
2924
+ #: admin/social_sharing.php:1883
2925
  msgid ""
2926
  "It takes some time for their service to track the shares made on Twitter "
2927
  "from your website. If you still feel it's taking too long you can contact "
2928
  "their support directly from their website."
2929
  msgstr ""
2930
 
2931
+ #: admin/social_sharing.php:1886
2932
  msgid ""
2933
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2934
  msgstr ""
2935
 
2936
+ #: admin/social_sharing.php:1888
2937
  #, fuzzy
2938
  msgid "Why the color of share icons is not being updated?"
2939
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
2940
 
2941
+ #: admin/social_sharing.php:1889
2942
  msgid "Why Facebook share counts are not appearing?"
2943
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
2944
 
2945
+ #: admin/social_sharing.php:1890
2946
  msgid ""
2947
  "How can I show share counts of my website rather than of individual pages/"
2948
  "posts?"
2950
  "Як мені відобразити загальну кількість Поділитися засноване на сторінках / "
2951
  "постах?"
2952
 
2953
+ #: admin/social_sharing.php:1891
2954
  msgid "How can I disable sharing on particular page/post?"
2955
  msgstr ""
2956
  "Як можна відключити кнопки Поділитися на конкретній сторінці або в пості?"
2957
 
2958
+ #: admin/social_sharing.php:1892
2959
  msgid "How can I specify minimum sharing count for sharing networks?"
2960
  msgstr "Як мені вказати мінімальну кількість для Поділитися"
2961
 
2962
+ #: admin/social_sharing.php:1893
2963
  msgid "How to share specific page?"
2964
  msgstr "Як поділитися певною сторінкою?"
2965
 
2966
+ #: admin/social_sharing.php:1894
2967
  msgid "How to integrate Google Analytics with sharing?"
2968
  msgstr "Як інтегрувати Google Analytics з Поділитися?"
2969
 
2970
+ #: admin/social_sharing.php:1895
2971
  msgid "How to customize the look of total share counts?"
2972
  msgstr "Як налаштувати зовнішній вигляд лічильників Поділитися?"
2973
 
2974
+ #: admin/social_sharing.php:1896
2975
  msgid "How to customize the look of individual share counts?"
2976
  msgstr "Як налаштувати зовнішній вигляд окремих лічильників Поділитися?"
2977
 
2978
+ #: admin/social_sharing.php:1897
2979
  msgid "How to show Whatsapp icon only on mobile devices?"
2980
  msgstr "Як показати іконку Whatsapp тільки на мобільних пристроях?"
2981
 
2982
+ #: admin/social_sharing.php:1898
2983
  msgid "How to hide arrow after floating sharing bar?"
2984
  msgstr "Як приховати стрілку після плаваючих кнопок Поділитися?"
2985
 
2986
+ #: admin/social_sharing.php:1899
2987
  #, fuzzy
2988
  msgid "Why is share count not getting updated?"
2989
  msgstr "Чому лічильники Фейсбуку поділитися не оновлюються?"
3009
  msgid "Settings"
3010
  msgstr "Налаштування"
3011
 
3012
+ #: helper.php:572
3013
  msgid "Account linked successfully"
3014
  msgstr "Аккаунт успішно пов'язаний"
3015
 
3016
+ #: helper.php:576
3017
  msgid "Account already exists or linked"
3018
  msgstr "Аккаунт вже існує або пов'язаний"
3019
 
3020
+ #: helper.php:612 helper.php:614
3021
  msgid "Login with"
3022
  msgstr "Увійти з"
3023
 
3024
+ #: helper.php:649 helper.php:655
3025
  msgid "Currently"
3026
  msgstr "в даний час"
3027
 
3028
+ #: helper.php:649 helper.php:655
3029
  msgid "Connected with"
3030
  msgstr "Авторизуватися за допомогою"
3031
 
3032
+ #: helper.php:649 helper.php:655
3033
  msgid "Remove"
3034
  msgstr "Видалити"
3035
 
3036
+ #: helper.php:727
3037
  msgid "Social Account Linking"
3038
  msgstr "Посилання на соціальний аккаунт"
3039
 
3040
+ #: helper.php:777
3041
  msgid "Disable Standard Social Sharing on this "
3042
  msgstr "Відключити стандартний блок Поділитися на цьому"
3043
 
3044
+ #: helper.php:782
3045
  msgid "Disable Floating Social Sharing on this "
3046
  msgstr "Відключити плаваючий блок Поділитися на цьому"
3047
 
3048
+ #: helper.php:787
3049
  msgid "Disable Standard like buttons on this "
3050
  msgstr "Відключити стандартні кнопки Подобається на цьому"
3051
 
3052
+ #: helper.php:792
3053
  msgid "Disable Floating like buttons on this "
3054
  msgstr "Відключити плаваючі кнопки Подобається на цьому"
3055
 
3056
+ #: helper.php:797
3057
  msgid "Disable Social Commenting on this "
3058
  msgstr "Деактивувати соціальне коментування"
3059
 
3060
+ #: helper.php:806
3061
  msgid "Standard Sharing Interface"
3062
  msgstr "Стандартний інтерфейс Поділитися"
3063
 
3064
+ #: helper.php:812 helper.php:831
3065
  msgid "Starting share count for "
3066
  msgstr "Запустити лічильник Поділитися для"
3067
 
3068
+ #: helper.php:825
3069
  msgid "Floating Sharing Interface"
3070
  msgstr "Плаваючий інтерфейс Поділитися"
3071
 
3072
+ #: helper.php:921 super_socializer.php:2375
3073
  msgid "Social Avatar"
3074
  msgstr "Соціальний Аватар"
3075
 
3076
+ #: helper.php:924 super_socializer.php:2386
3077
  msgid ""
3078
  "Do not fetch and update social avatar from my profile, next time I Social "
3079
  "Login"
3081
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
3082
  "раз коли я використовую вхід через соцмережі"
3083
 
3084
+ #: helper.php:925 super_socializer.php:2390
3085
  msgid "Update social avatar, next time I Social Login"
3086
  msgstr ""
3087
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
3088
  "соцмережі"
3089
 
3090
+ #: helper.php:928
3091
  msgid "Small Avatar"
3092
  msgstr "Невеликий аватар"
3093
 
3094
+ #: helper.php:932
3095
  msgid "Large Avatar"
3096
  msgstr "Великий аватар"
3097
 
3098
+ #: helper.php:992 super_socializer.php:1936
3099
  msgid "Please verify your email address to login."
3100
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
3101
 
3102
+ #: helper.php:1029
3103
  msgid "Click to delete social profile data"
3104
  msgstr ""
3105
 
3106
+ #: helper.php:1058
3107
  #, fuzzy
3108
  msgid "Deleting"
3109
  msgstr "Налаштування"
3110
 
3111
+ #: helper.php:1068
3112
  #, fuzzy
3113
  msgid "Deleted"
3114
  msgstr "Налаштування"
3115
 
3116
+ #: helper.php:1070
3117
  msgid "Something bad happened"
3118
  msgstr ""
3119
 
3171
  msgid "More"
3172
  msgstr ""
3173
 
3174
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3175
  msgid "Share"
3176
  msgstr "Поділитися"
3177
 
3178
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3179
  msgid "Shares"
3180
  msgstr "Поширили:"
3181
 
3182
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
3183
  msgid "Invalid request"
3184
  msgstr "Невірний Запит!"
3185
 
3186
+ #: inc/social_sharing.php:938
3187
  msgid "Providers not selected"
3188
  msgstr "Сервіси не вибрані"
3189
 
3190
+ #: inc/social_sharing_networks.php:58
3191
  msgid "Copy Link"
3192
  msgstr ""
3193
 
3474
  msgid "RSS Feed URL:"
3475
  msgstr ""
3476
 
3477
+ #: super_socializer.php:429
3478
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3479
+ msgstr ""
3480
+
3481
+ #: super_socializer.php:1718
3482
  msgid ""
3483
  "cURL is not enabled at your website server. Please contact your website "
3484
  "server administrator to enable it."
3486
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
3487
  "до адміністратора вашого сайту, щоб включити це."
3488
 
3489
+ #: super_socializer.php:1746
3490
  #, fuzzy, php-format
3491
  msgid ""
3492
  "Enter exactly the following url in <strong>Website</strong> option in your "
3495
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
3496
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
3497
 
3498
+ #: super_socializer.php:1749
3499
  #, fuzzy, php-format
3500
  msgid ""
3501
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3504
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
3505
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
3506
 
3507
+ #: super_socializer.php:1752
3508
  msgid ""
3509
  "Make sure cURL is enabled at your website server. You may need to contact "
3510
  "the server administrator of your website to verify this"
3513
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
3514
  "переконатися в цьому."
3515
 
3516
+ #: super_socializer.php:1914
3517
  #, fuzzy
3518
  msgid "Search"
3519
  msgstr "Шукати"
3520
 
3521
+ #: super_socializer.php:1936
3522
  msgid "Your email has been verified. Now you can login to your account"
3523
  msgstr ""
3524
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
3525
  "облікового запису"
3526
 
3527
+ #: super_socializer.php:1940
3528
  msgid "Notification"
3529
  msgstr "Повідомлення"
3530
 
3531
+ #: super_socializer.php:1961
3532
  msgid "Please check your email inbox to complete the registration."
3533
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
3534
 
3535
+ #: super_socializer.php:2030
3536
  msgid "Leave a reply"
3537
  msgstr "Залишити коментар"
3538
 
3539
+ #: super_socializer.php:2046
3540
  #, fuzzy
3541
  msgid "Link copied."
3542
  msgstr "LinkedIn"
3543
 
3544
+ #: super_socializer.php:2291
3545
  msgid "Super Socializer - General Options"
3546
  msgstr "Super Socializer - Загальні Параметри"
3547
 
3548
+ #: super_socializer.php:2362
3549
  msgid ""
3550
  "I agree to my personal data being stored and used as per Privacy Policy and "
3551
  "Terms and Conditions"
3552
  msgstr ""
3553
 
3554
+ #: super_socializer.php:2366
3555
  msgid ""
3556
  "I revoke my consent to store and use my personal data. Kindly delete my "
3557
  "personal data saved in this website."
3558
  msgstr ""
3559
 
3560
+ #: super_socializer.php:2378
3561
  msgid "Small Avatar Url"
3562
  msgstr "Посилання для маленького аватара"
3563
 
3564
+ #: super_socializer.php:2382
3565
  msgid "Large Avatar Url"
3566
  msgstr "Посилання для великого аватара"
3567
 
3568
+ #: super_socializer.php:2484
3569
  msgid "Login with your Social ID"
3570
  msgstr "Увійти через соціальний аккаунт"
3571
 
3572
+ #: super_socializer.php:2485
3573
  msgid "Email you entered is already registered or invalid"
3574
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
3575
 
3576
+ #: super_socializer.php:2492
3577
  msgid "Please enter a valid email address. You might be required to verify it"
3578
  msgstr ""
3579
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
3580
  "потрібно перевірити його"
3581
 
3582
+ #: super_socializer.php:2496 super_socializer.php:3250
3583
  msgid "Link your social account to login to your account at this website"
3584
  msgstr ""
3585
  "Введіть посилання на ваш аккаунт в соціальних мережах щоб увійти в обліковий "
3586
  "запис на цьому сайті"
3587
 
3588
+ #: super_socializer.php:2753
3589
  msgid "Thanks for installing Super Socializer plugin"
3590
  msgstr ""
3591
 
3592
+ #: super_socializer.php:2755
3593
  msgid "Configure the Plugin"
3594
  msgstr ""
3595
 
3596
+ #: super_socializer.php:2766
3597
  msgid ""
3598
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3599
  "current version of Super Socializer"
3600
  msgstr ""
3601
 
3602
+ #: super_socializer.php:2775
3603
  msgid ""
3604
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3605
  "version of Super Socializer"
3606
  msgstr ""
3607
 
3608
+ #: super_socializer.php:2784
3609
  msgid ""
3610
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3611
  "compatibility with the current version of Super Socializer"
3612
  msgstr ""
3613
 
3614
+ #: super_socializer.php:2793
3615
  msgid ""
3616
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3617
  "with current version of Super Socializer"
3618
  msgstr ""
3619
 
3620
+ #: super_socializer.php:2802
3621
  msgid ""
3622
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3623
  "with current version of Super Socializer"
3624
  msgstr ""
3625
 
3626
+ #: super_socializer.php:2813
3627
  #, php-format
3628
  msgid ""
3629
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3630
  msgstr ""
3631
 
3632
+ #: super_socializer.php:2822
3633
  #, php-format
3634
  msgid ""
3635
  "To continue using Instagram login create a new Instagram App as described <a "
3637
  "Instagram App Secret <a href=\"%s\">here</a>"
3638
  msgstr ""
3639
 
3640
+ #: super_socializer.php:2831 super_socializer.php:2840
3641
  #, php-format
3642
  msgid ""
3643
  "To continue using bitly url shortener, login to your bit.ly account and "
3646
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3647
  msgstr ""
3648
 
3649
+ #: super_socializer.php:2856
3650
  #, php-format
3651
  msgid ""
3652
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3653
  msgstr ""
3654
 
3655
+ #: super_socializer.php:2880
3656
  #, php-format
3657
  msgid ""
3658
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3660
  "target=\"_blank\">here</a>"
3661
  msgstr ""
3662
 
3663
+ #: super_socializer.php:2880 super_socializer.php:2905
3664
+ #: super_socializer.php:2930 super_socializer.php:2955
3665
+ #: super_socializer.php:2988 super_socializer.php:3016
3666
+ #: super_socializer.php:3043
3667
  msgid "Okay"
3668
  msgstr "Гаразд."
3669
 
3670
+ #: super_socializer.php:2905
3671
  #, php-format
3672
  msgid ""
3673
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3675
  "\">here</a>"
3676
  msgstr ""
3677
 
3678
+ #: super_socializer.php:2930
3679
  #, php-format
3680
  msgid ""
3681
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3683
  "target=\"_blank\">here</a>"
3684
  msgstr ""
3685
 
3686
+ #: super_socializer.php:2955
3687
  #, php-format
3688
  msgid ""
3689
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3691
  "target=\"_blank\">here</a>"
3692
  msgstr ""
3693
 
3694
+ #: super_socializer.php:2966
3695
  #, fuzzy, php-format
3696
  msgid ""
3697
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3698
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
3699
 
3700
+ #: super_socializer.php:2988
3701
  #, php-format
3702
  msgid ""
3703
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3705
  "\"%s\" target=\"_blank\">here</a>"
3706
  msgstr ""
3707
 
3708
+ #: super_socializer.php:3016
3709
  #, php-format
3710
  msgid ""
3711
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3714
  "your website %s with them. No need to copy-paste any code from their website."
3715
  msgstr ""
3716
 
3717
+ #: super_socializer.php:3043
3718
  #, php-format
3719
  msgid ""
3720
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3722
  "\"%s\" target=\"_blank\">here</a>"
3723
  msgstr ""
3724
 
3725
+ #: super_socializer.php:3068
3726
  #, php-format
3727
  msgid ""
3728
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3730
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3731
  msgstr ""
3732
 
3733
+ #: super_socializer.php:3068 super_socializer.php:3095
3734
  msgid "Dismiss"
3735
  msgstr ""
3736
 
3737
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3738
  msgid ""
3739
  "Your browser is blocking some features of this website. Please follow the "
3740
  "instructions at {support_url} to unblock these."
3742
  "Ваш браузер блокує деякі функції даного веб-сайту. Будь ласка, дотримуйтесь "
3743
  "інструкцій в {support_url}, щоб розблокувати функції."
3744
 
3745
+ #~ msgid "Dismiss this notice"
3746
+ #~ msgstr "Закрити це повідомлення"
3747
+
3748
+ #, fuzzy
3749
+ #~ msgid "Facebook Share Count"
3750
+ #~ msgstr "Усунення несправностей Поділитися від Facebook"
3751
+
3752
+ #, fuzzy
3753
+ #~ msgid ""
3754
+ #~ "Required for Facebook share count to work. Please follow the "
3755
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3756
+ #~ "Facebook App ID"
3757
+ #~ msgstr ""
3758
+ #~ "Необхідно для входу через Facebook. Будь ласка, подивіться документацію "
3759
+ #~ "<a href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку "
3760
+ #~ "Facebook."
3761
+
3762
+ #, fuzzy
3763
+ #~ msgid ""
3764
+ #~ "Required for Facebook share count to work. Please follow the "
3765
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3766
+ #~ "Facebook App Secret"
3767
+ #~ msgstr ""
3768
+ #~ "Необхідно для входу через Facebook. Будь ласка, подивіться документацію "
3769
+ #~ "<a href=\"%s\" target=\"_blank\"> тут </a> для отримання ID додатку "
3770
+ #~ "Facebook."
3771
+
3772
  #, fuzzy
3773
  #~ msgid ""
3774
  #~ "Required for Dropbox Social Login to work. Please follow the "
languages/super-socializer-zh_CN.mo CHANGED
Binary file
languages/super-socializer-zh_CN.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
- "POT-Creation-Date: 2021-06-15 14:09+0530\n"
5
- "PO-Revision-Date: 2021-06-15 14:10+0530\n"
6
  "Last-Translator: Heateor <hello@heateor.com>\n"
7
  "Language-Team: 汤小贤 <calmsmile@aliyun.com>\n"
8
  "Language: zh_CN\n"
@@ -25,7 +25,7 @@ msgstr ""
25
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
26
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
27
  #: admin/social_login.php:5 admin/social_login.php:1984
28
- #: admin/social_sharing.php:5 admin/social_sharing.php:1948
29
  #, php-format
30
  msgid ""
31
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -35,7 +35,7 @@ msgstr ""
35
  "件所付出的努力"
36
 
37
  #: admin/general_options.php:15 admin/social_commenting.php:47
38
- #: super_socializer.php:2279
39
  msgid "General Options"
40
  msgstr "常规选项"
41
 
@@ -78,19 +78,19 @@ msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
78
 
79
  #: admin/general_options.php:89 admin/like_buttons.php:780
80
  #: admin/social_commenting.php:400 admin/social_login.php:1980
81
- #: admin/social_sharing.php:1944 helper.php:942
82
  msgid "Save Changes"
83
  msgstr "保存更改"
84
 
85
  #: admin/general_options.php:103 admin/like_buttons.php:790
86
  #: admin/social_commenting.php:410 admin/social_login.php:1990
87
- #: admin/social_sharing.php:1954
88
  msgid "Instagram Shoutout"
89
  msgstr ""
90
 
91
  #: admin/general_options.php:105 admin/like_buttons.php:792
92
  #: admin/social_commenting.php:412 admin/social_login.php:1992
93
- #: admin/social_sharing.php:1956
94
  msgid ""
95
  "If you can send (to hello@heateor.com) how this plugin is helping your "
96
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -200,33 +200,33 @@ msgid ""
200
  "functionality"
201
  msgstr "主控类似按钮。必须检查它以启用类似按钮的功能"
202
 
203
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
204
  msgid "Standard Interface"
205
  msgstr "标准接口"
206
 
207
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
208
  msgid "Floating Interface"
209
  msgstr "浮动接口"
210
 
211
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
212
  msgid "Miscellaneous"
213
  msgstr "其他"
214
 
215
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
216
  msgid "3rd Party Integration"
217
  msgstr "第三方集成"
218
 
219
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
220
  #: admin/social_login.php:45 admin/social_login.php:1946
221
- #: admin/social_sharing.php:67 admin/social_sharing.php:1869
222
- #: admin/social_sharing.php:1871
223
  msgid "Shortcode & Widget"
224
  msgstr "简码&小工具"
225
 
226
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
227
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
228
  #: admin/social_login.php:46 admin/social_login.php:1960
229
- #: admin/social_sharing.php:69 admin/social_sharing.php:1902
230
  msgid "FAQ"
231
  msgstr "常见问题解答"
232
 
@@ -243,22 +243,22 @@ msgid "Master control to enable horizontal like buttons"
243
  msgstr "使用主控件启用 水平 like 按钮"
244
 
245
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
246
- #: admin/social_sharing.php:703 admin/social_sharing.php:1118
247
  msgid "Target Url"
248
  msgstr "目标URL"
249
 
250
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
251
- #: admin/social_sharing.php:707 admin/social_sharing.php:1122
252
  msgid "Url of the webpage where icons are located (default)"
253
  msgstr "图标所在网页的Url (默认值)"
254
 
255
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
256
- #: admin/social_sharing.php:709 admin/social_sharing.php:1124
257
  msgid "Url of the homepage of your website"
258
  msgstr "您网站的主页的 Url"
259
 
260
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
261
- #: admin/social_sharing.php:711 admin/social_sharing.php:1126
262
  msgid "Custom url"
263
  msgstr "自定义 URL"
264
 
@@ -267,7 +267,7 @@ msgid "Url to like/share/tweet and display like/share/tweet counts"
267
  msgstr "链接到喜欢/分享/tweet和显示喜欢/分享/tweet计数"
268
 
269
  #: admin/like_buttons.php:105 admin/social_login.php:1231
270
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
271
  msgid "Title"
272
  msgstr "标题"
273
 
@@ -284,24 +284,24 @@ msgid "Select the providers for interface. Drag them to rearrange."
284
  msgstr "选择接口的提供商。拖动它们重新排列。"
285
 
286
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
287
- #: admin/social_sharing.php:912 admin/social_sharing.php:1304
288
  msgid "Horizontal alignment"
289
  msgstr "水平对齐"
290
 
291
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
292
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
293
- #: admin/social_sharing.php:916 admin/social_sharing.php:1308
294
  #: inc/widget.php:446 inc/widget.php:758
295
  msgid "Left"
296
  msgstr "左边"
297
 
298
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
299
  msgid "Center"
300
  msgstr "居中"
301
 
302
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
303
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
304
- #: admin/social_sharing.php:918 admin/social_sharing.php:1309
305
  #: inc/widget.php:447 inc/widget.php:759
306
  msgid "Right"
307
  msgstr "右侧"
@@ -310,15 +310,15 @@ msgstr "右侧"
310
  msgid "Horizontal alignment of the interface"
311
  msgstr "界面的水平对齐"
312
 
313
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
314
  msgid "Position with respect to content"
315
  msgstr "相对于内容的位置"
316
 
317
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
318
  msgid "Top of the content"
319
  msgstr "内容的顶部"
320
 
321
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
322
  msgid "Bottom of the content"
323
  msgstr "内容的底部"
324
 
@@ -332,66 +332,66 @@ msgstr "界面位置"
332
 
333
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
334
  #: admin/social_login.php:1548 admin/social_login.php:1577
335
- #: admin/social_sharing.php:957 admin/social_sharing.php:1383
336
  msgid "Homepage"
337
  msgstr "主页"
338
 
339
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
340
- #: admin/social_sharing.php:959 admin/social_sharing.php:1385
341
  msgid "Posts"
342
  msgstr "文章"
343
 
344
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
345
- #: admin/social_sharing.php:961 admin/social_sharing.php:1387
346
  msgid "Pages"
347
  msgstr "页面"
348
 
349
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
350
- #: admin/social_sharing.php:963 admin/social_sharing.php:1389
351
  msgid "Excerpts and Posts page"
352
  msgstr "摘录和帖子页面"
353
 
354
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
355
- #: admin/social_sharing.php:965 admin/social_sharing.php:1391
356
  msgid "Category Archives"
357
  msgstr "目录类别"
358
 
359
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
360
- #: admin/social_sharing.php:967 admin/social_sharing.php:1393
361
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
362
  msgstr "存档页 (分类、 标记、 作者或根据日期分类的页)"
363
 
364
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
365
  msgid "BuddyPress activity"
366
  msgstr "BuddyPress 活动"
367
 
368
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
369
  msgid "BuddyPress group (only at top of content)"
370
  msgstr "BuddyPress 组 (只有顶部的内容)"
371
 
372
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
373
- #: admin/social_sharing.php:991 admin/social_sharing.php:1415
374
  msgid "BBPress forum"
375
  msgstr "BBPress 论坛"
376
 
377
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
378
- #: admin/social_sharing.php:994 admin/social_sharing.php:1418
379
  msgid "BBPress topic"
380
  msgstr "BBPress 主题"
381
 
382
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
383
  msgid "BBPress reply"
384
  msgstr "BBPress 答复"
385
 
386
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
387
  msgid "After individual product at WooCommerce Shop page"
388
  msgstr "在 WooCommerce 商店页面上单独的商品后"
389
 
390
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
391
  msgid "WooCommerce Product Page"
392
  msgstr "Woocommerce商品页"
393
 
394
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
395
  msgid "WooCommerce Thankyou Page"
396
  msgstr "WooCommerce 致谢页面"
397
 
@@ -411,8 +411,8 @@ msgstr "启用浮动Like按钮"
411
  msgid "Master control to enable vertical (floating) counter widget"
412
  msgstr "主控,启用垂直(浮动)计数器小部件"
413
 
414
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
415
- #: admin/social_sharing.php:594 admin/social_sharing.php:1287
416
  #: inc/widget.php:460 inc/widget.php:772
417
  msgid "Background Color"
418
  msgstr "背景颜色"
@@ -428,7 +428,7 @@ msgstr ""
428
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">此链接</a>获取所需颜色"
429
  "的六角码"
430
 
431
- #: admin/like_buttons.php:436 admin/social_sharing.php:1325
432
  msgid "Left offset"
433
  msgstr "左偏移"
434
 
@@ -440,7 +440,7 @@ msgstr ""
440
  "指定一个数字。数量的增加将把接口向右移动,减少将把它向左移动。数字也可以是负"
441
  "数。"
442
 
443
- #: admin/like_buttons.php:455 admin/social_sharing.php:1344
444
  msgid "Right offset"
445
  msgstr "右偏移"
446
 
@@ -452,7 +452,7 @@ msgstr ""
452
  "指定一个数字。数量的增加将把界面向左移动,减少的接口将向右移动。数字也可以是"
453
  "负数。"
454
 
455
- #: admin/like_buttons.php:473 admin/social_sharing.php:1362
456
  msgid "Top offset"
457
  msgstr "顶部偏移"
458
 
@@ -462,7 +462,7 @@ msgid ""
462
  "decrease will shift it towards top."
463
  msgstr "指定一个数字。数量的增加将把接口移到底部,减少将把它移到顶部。"
464
 
465
- #: admin/like_buttons.php:518 admin/social_sharing.php:1407
466
  msgid "BuddyPress group"
467
  msgstr "BuddyPress 组"
468
 
@@ -478,7 +478,7 @@ msgstr "隐藏在移动设备上的Like按钮"
478
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
479
  msgstr "如果启用,垂直Like按钮不会显示在移动设备上"
480
 
481
- #: admin/like_buttons.php:574 admin/social_sharing.php:1620
482
  msgid "Url shortener"
483
  msgstr "短网址"
484
 
@@ -496,15 +496,15 @@ msgstr "如果安装了缩短插件,则允许在共享内容时使用缩短的
496
  msgid "Enable bit.ly url shortener for tweet button"
497
  msgstr "启用 bit.ly 网址缩短器用于推文按钮"
498
 
499
- #: admin/like_buttons.php:606 admin/social_sharing.php:1652
500
  msgid "Master control to enable bit.ly url shortening for sharing"
501
  msgstr "主控件以启用 bit.ly url 短链共享"
502
 
503
- #: admin/like_buttons.php:613 admin/social_sharing.php:1659
504
  msgid "Bit.ly generic access token"
505
  msgstr ""
506
 
507
- #: admin/like_buttons.php:623 admin/social_sharing.php:1669
508
  #, php-format
509
  msgid ""
510
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -513,15 +513,15 @@ msgid ""
513
  "\">link</a>"
514
  msgstr ""
515
 
516
- #: admin/like_buttons.php:630 admin/social_sharing.php:1676
517
  msgid "Clear Bitly Cache"
518
  msgstr "清除 Bitly 缓存"
519
 
520
- #: admin/like_buttons.php:634 admin/social_sharing.php:1680
521
  msgid "ShortUrl cache cleared successfully."
522
  msgstr "ShortUrl 缓存成功清除。"
523
 
524
- #: admin/like_buttons.php:641 admin/social_sharing.php:1687
525
  msgid ""
526
  "Use this to delete short urls saved in database. Handy, if urls of your "
527
  "website have been changed but short urls are still being generated for old "
@@ -531,8 +531,8 @@ msgstr ""
531
  "仍为旧网址,手动处理。"
532
 
533
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
534
- #: admin/social_commenting.php:304 admin/social_sharing.php:1744
535
- #: admin/social_sharing.php:1749
536
  msgid "Language"
537
  msgstr "语言"
538
 
@@ -574,11 +574,11 @@ msgstr ""
574
  "在缓冲区共享内容后,所提供的用户名将附加为\"通过@USERNAME\"。如果您不想要任何"
575
  "用户名,请留下空。"
576
 
577
- #: admin/like_buttons.php:726 admin/social_sharing.php:1844
578
  msgid "myCRED"
579
  msgstr "myCRED"
580
 
581
- #: admin/like_buttons.php:731 admin/social_sharing.php:1849
582
  msgid "Append myCRED referral ID to the urls being shared"
583
  msgstr "将myCRED推荐ID追加到分享的URL"
584
 
@@ -586,15 +586,15 @@ msgstr "将myCRED推荐ID追加到分享的URL"
586
  msgid "Like Buttons Shortcode & Widget"
587
  msgstr "喜欢按钮简码 & 小部件"
588
 
589
- #: admin/like_buttons.php:766 admin/social_sharing.php:1932
590
  msgid "Why is there so much space between like buttons?"
591
  msgstr "为什么像按钮之间有这么多的空间?"
592
 
593
- #: admin/like_buttons.php:767 admin/social_sharing.php:1933
594
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
595
  msgstr "为什么在主页上没有显示浮动分享/喜欢按钮?"
596
 
597
- #: admin/like_buttons.php:768 admin/social_sharing.php:1917
598
  msgid "How to Place Title and Social Share Icons in the Same Row?"
599
  msgstr "如何在同一行中放置标题和社交分享图标?"
600
 
@@ -790,7 +790,7 @@ msgid "Social Commenting Shortcode"
790
  msgstr "社会化评论简码"
791
 
792
  #: admin/social_commenting.php:386 admin/social_login.php:1962
793
- #: admin/social_sharing.php:1904
794
  msgid ""
795
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
796
  "an online website for the plugin to function properly."
@@ -810,7 +810,7 @@ msgid ""
810
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的Facebook 评论?"
811
 
812
  #: admin/social_commenting.php:389 admin/social_login.php:1969
813
- #: admin/social_sharing.php:1919
814
  msgid "Why is my browser blocking some features of the plugin?"
815
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
816
 
@@ -841,7 +841,7 @@ msgid "Advanced Configuration"
841
  msgstr "高级配置"
842
 
843
  #: admin/social_login.php:41 admin/social_login.php:1746
844
- #: super_socializer.php:2347
845
  msgid "GDPR"
846
  msgstr "GDPR"
847
 
@@ -981,7 +981,7 @@ msgid "Reddit"
981
  msgstr ""
982
 
983
  #: admin/social_login.php:203
984
- msgid "Mailru"
985
  msgstr ""
986
 
987
  #: admin/social_login.php:207
@@ -996,7 +996,7 @@ msgstr ""
996
  msgid "Select Social ID provider to enable in Social Login"
997
  msgstr "选择需要启用的第三方登录方式"
998
 
999
- #: admin/social_login.php:226 admin/social_sharing.php:1584
1000
  msgid "Facebook App ID"
1001
  msgstr "Facebook 应用 ID"
1002
 
@@ -1012,7 +1012,7 @@ msgid ""
1012
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1013
  msgstr ""
1014
 
1015
- #: admin/social_login.php:247 admin/social_sharing.php:1601
1016
  msgid "Facebook App Secret"
1017
  msgstr "FacebookAPP密码"
1018
 
@@ -1784,7 +1784,7 @@ msgstr ""
1784
  "如果启用,用户将能够从前端的BuddyPress配置文件中的“个人资料照片”部分更新他们"
1785
  "的社交头像"
1786
 
1787
- #: admin/social_login.php:1490 super_socializer.php:1946
1788
  msgid "Email required"
1789
  msgstr "邮件地址(比选)"
1790
 
@@ -2054,109 +2054,99 @@ msgstr "主控件,以使社交共享"
2054
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2055
  msgstr "恢复社交股计数移动到 ssl/http 后丢失"
2056
 
2057
- #: admin/social_sharing.php:49 admin/social_sharing.php:1907
2058
- msgid ""
2059
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2060
- "Facebook share count to work"
2061
- msgstr ""
2062
-
2063
- #: admin/social_sharing.php:49
2064
- msgid "Dismiss this notice"
2065
- msgstr "关闭该通知"
2066
-
2067
- #: admin/social_sharing.php:56
2068
  msgid "Theme Selection"
2069
  msgstr "主题选择"
2070
 
2071
- #: admin/social_sharing.php:68
2072
  msgid "Troubleshooter"
2073
  msgstr "排错"
2074
 
2075
- #: admin/social_sharing.php:77
2076
  msgid "Standard interface theme"
2077
  msgstr "标准接口主题"
2078
 
2079
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2080
  msgid "Icon Preview"
2081
  msgstr "图标预览"
2082
 
2083
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2084
  msgid ""
2085
  "Do not forget to save the configuration after making changes by clicking the "
2086
  "save button below"
2087
  msgstr "更改后不要忘记单击下面的保存按钮以保存下面存配置"
2088
 
2089
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2090
  msgid "Shape"
2091
  msgstr "形状"
2092
 
2093
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2094
  msgid "Round"
2095
  msgstr "圆"
2096
 
2097
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2098
  msgid "Square"
2099
  msgstr "正方形"
2100
 
2101
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2102
  msgid "Rectangle"
2103
  msgstr "矩形"
2104
 
2105
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2106
  msgid "Shape of the sharing icons"
2107
  msgstr "共享图标的形状"
2108
 
2109
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2110
  msgid "Size (in pixels)"
2111
  msgstr "大小 (以像素为单位)"
2112
 
2113
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2114
  msgid "Size of the sharing icons"
2115
  msgstr "共享图标的大小"
2116
 
2117
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2118
  msgid "Width (in pixels)"
2119
  msgstr "宽度(px)"
2120
 
2121
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2122
  msgid "Width of the sharing icons"
2123
  msgstr "共享图标宽度"
2124
 
2125
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2126
  msgid "Height (in pixels)"
2127
  msgstr "高度(像素)"
2128
 
2129
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2130
  msgid "Height of the sharing icons"
2131
  msgstr "共享图标高度"
2132
 
2133
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2134
  msgid "Border radius (in pixels)"
2135
  msgstr "(以像素为单位) 的边界半径"
2136
 
2137
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2138
  msgid ""
2139
  "Specify a value for rounded corners. More the value, more rounded will the "
2140
  "corners be. Leave empty for sharp corners."
2141
  msgstr "定义圆角的值。值越大,圆角越园。留空为尖角。"
2142
 
2143
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2144
  msgid "Logo Color"
2145
  msgstr "Logo 颜色"
2146
 
2147
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2148
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2149
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2150
  msgid "Default"
2151
  msgstr "默认"
2152
 
2153
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2154
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2155
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2156
  msgid "On Hover"
2157
  msgstr "鼠标悬停"
2158
 
2159
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2160
  msgid ""
2161
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2162
  "empty for default. You can get the hex code of the required color from <a "
@@ -2166,7 +2156,7 @@ msgstr ""
2166
  "href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的颜色"
2167
  "的十六进制代码"
2168
 
2169
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2170
  msgid ""
2171
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2172
  "\"transparent\" for transparent background. Leave empty for default. You can "
@@ -2177,153 +2167,154 @@ msgstr ""
2177
  "为默认。你可以从<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链"
2178
  "接</a>获得所需的颜色的十六进制代码"
2179
 
2180
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2181
  msgid "Border"
2182
  msgstr "边框"
2183
 
2184
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2185
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2186
  msgid "Border Width"
2187
  msgstr "边框宽度"
2188
 
2189
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2190
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2191
  msgid "Border Color"
2192
  msgstr "边框颜色"
2193
 
2194
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2195
  msgid "Icon border"
2196
  msgstr "图标边框"
2197
 
2198
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2199
  msgid "Counter Position"
2200
  msgstr "计数器的位置"
2201
 
2202
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2203
  msgid "(applies, if counter enabled)"
2204
  msgstr "(适用,如果启用计数器)"
2205
 
2206
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2207
  msgid "Top"
2208
  msgstr "顶部"
2209
 
2210
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2211
  msgid "Bottom"
2212
  msgstr "居下"
2213
 
2214
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2215
  msgid "Inner Left"
2216
  msgstr "内左"
2217
 
2218
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2219
  msgid "Inner Top"
2220
  msgstr "内顶"
2221
 
2222
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2223
  msgid "Inner Right"
2224
  msgstr "内右"
2225
 
2226
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2227
  msgid "Inner Bottom"
2228
  msgstr "内底"
2229
 
2230
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2231
  msgid "Position of share counter"
2232
  msgstr "共享计数器的位置"
2233
 
2234
- #: admin/social_sharing.php:375
2235
  msgid "Floating interface theme"
2236
  msgstr "浮动的界面主题"
2237
 
2238
- #: admin/social_sharing.php:679
2239
  msgid "Standard Sharing Interface Options"
2240
  msgstr "标准共享界面选项"
2241
 
2242
- #: admin/social_sharing.php:684
2243
  msgid "Enable Standard sharing interface"
2244
  msgstr "启用共享接口标准"
2245
 
2246
- #: admin/social_sharing.php:694
2247
  msgid "Master control to enable standard sharing"
2248
  msgstr "主控件以启用标准共享"
2249
 
2250
- #: admin/social_sharing.php:718 admin/social_sharing.php:1133
2251
  msgid "Url to share"
2252
  msgstr "要分享的网址"
2253
 
2254
- #: admin/social_sharing.php:735
2255
  msgid "The text to display above the sharing interface"
2256
  msgstr "要共享界面上方显示的文本"
2257
 
2258
- #: admin/social_sharing.php:759 admin/social_sharing.php:1141
2259
  msgid "Instagram username"
2260
  msgstr ""
2261
 
2262
- #: admin/social_sharing.php:769 admin/social_sharing.php:1151
2263
  msgid ""
2264
  "Username of the Instagram account you want to redirect users to, on clicking "
2265
  "the icon"
2266
  msgstr "要将用户重定向到的 Instagram 帐户的用户名, 请单击图标"
2267
 
2268
- #: admin/social_sharing.php:778 admin/social_sharing.php:1160
2269
  msgid "HTML ID of container element of comment form"
2270
  msgstr "注释表单的容器元素的HTML ID"
2271
 
2272
- #: admin/social_sharing.php:788 admin/social_sharing.php:1170
2273
  msgid ""
2274
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2275
  "icon."
2276
  msgstr "HTML ID的元素,你想集中在网页上,点击评论图标。"
2277
 
2278
- #: admin/social_sharing.php:801 admin/social_sharing.php:1178
2279
  msgid "Rearrange icons"
2280
  msgstr "重新排列图标"
2281
 
2282
- #: admin/social_sharing.php:862 admin/social_sharing.php:1237
2283
  msgid "Drag the icons to rearrange in desired order"
2284
  msgstr "按所需顺序拖动要重新排列的图标"
2285
 
2286
- #: admin/social_sharing.php:869 admin/social_sharing.php:1244
2287
  msgid "Select Sharing Services"
2288
  msgstr "选择共享服务"
2289
 
2290
- #: admin/social_sharing.php:876 admin/social_sharing.php:1251
2291
  msgid "Select sharing services to show in social share bar"
2292
  msgstr "请选择要在社交共享栏中显示的共享服务"
2293
 
2294
- #: admin/social_sharing.php:894 admin/social_sharing.php:1269
2295
  msgid "Search social network"
2296
  msgstr "搜索社交网络"
2297
 
2298
- #: admin/social_sharing.php:926 admin/social_sharing.php:1317
2299
  msgid "Horizontal alignment of the sharing interface"
2300
  msgstr "共享界面水平对齐方式"
2301
 
2302
- #: admin/social_sharing.php:946
2303
  msgid "Specify position of the sharing interface with respect to the content"
2304
  msgstr "指定相对于内容而言共享界面的位置"
2305
 
2306
- #: admin/social_sharing.php:953 admin/social_sharing.php:1379
2307
  msgid "Placement"
2308
  msgstr "放置"
2309
 
2310
- #: admin/social_sharing.php:1021
2311
  msgid "Specify the pages where you want to enable Sharing interface"
2312
  msgstr "指定要启用共享界面的页面"
2313
 
2314
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1435
2315
  msgid "Show share counts"
2316
  msgstr "显示共享计数"
2317
 
2318
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1440
 
2319
  msgid ""
2320
- "Share counts are supported for Facebook, Twitter, Linkedin, Buffer, Reddit, "
2321
- "Pinterest, Odnoklassniki, Fintel and Vkontakte"
2322
  msgstr ""
2323
  "Facebook,Twitter,Linkedin,Buffer,Reddit,Pinterest,Odnoklassniki,Fintel"
2324
  "和Vkontakte支持分享计数"
2325
 
2326
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1441
2327
  #, php-format
2328
  msgid ""
2329
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2332,42 +2323,47 @@ msgid ""
2332
  "their website."
2333
  msgstr ""
2334
 
2335
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1448
2336
  msgid "If enabled, share counts are displayed above sharing icons."
2337
  msgstr "如果启用,共享计数在共享图标上面显示。"
2338
 
2339
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1456
 
 
 
 
 
2340
  msgid "Show total shares"
2341
  msgstr "分享总数"
2342
 
2343
- #: admin/social_sharing.php:1059 admin/social_sharing.php:1466
2344
  msgid "If enabled, total shares will be displayed with sharing icons"
2345
  msgstr "如果启用,总分享数将显示为带有分享图标"
2346
 
2347
- #: admin/social_sharing.php:1067 admin/social_sharing.php:1474
2348
  msgid "Enable 'More' icon"
2349
  msgstr "启用“更多”图标"
2350
 
2351
- #: admin/social_sharing.php:1077 admin/social_sharing.php:1484
2352
  msgid ""
2353
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2354
  "which shows additional sharing networks in popup"
2355
  msgstr ""
2356
  "如果启用,将选定的共享图标后,会显示“更多”图标,它显示在弹出的其他共享网络"
2357
 
2358
- #: admin/social_sharing.php:1094
2359
  msgid "Floating Sharing Interface Options"
2360
  msgstr "浮动共享界面选项"
2361
 
2362
- #: admin/social_sharing.php:1099
2363
  msgid "Enable Floating sharing interface"
2364
  msgstr "启用共享接口标准"
2365
 
2366
- #: admin/social_sharing.php:1109
2367
  msgid "Master control to enable floating sharing widget"
2368
  msgstr "主控,使共享浮动部件"
2369
 
2370
- #: admin/social_sharing.php:1297
2371
  msgid ""
2372
  "Specify the color or hex code (example #cc78e0) for the background of "
2373
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
@@ -2378,152 +2374,122 @@ msgstr ""
2378
  "<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的"
2379
  "颜色的十六进制代码"
2380
 
2381
- #: admin/social_sharing.php:1335
2382
  msgid ""
2383
  "Specify a number. Increase in number will shift sharing interface towards "
2384
  "right and decrease will shift it towards left. Number can be negative too."
2385
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
2386
 
2387
- #: admin/social_sharing.php:1354
2388
  msgid ""
2389
  "Specify a number. Increase in number will shift sharing interface towards "
2390
  "left and decrease will shift it towards right. Number can be negative too."
2391
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
2392
 
2393
- #: admin/social_sharing.php:1372
2394
  msgid ""
2395
  "Specify a number. Increase in number will shift sharing interface towards "
2396
  "bottom and decrease will shift it towards top."
2397
  msgstr "指定一个数字。增加数目将朝底部移动和减少则为向顶部。"
2398
 
2399
- #: admin/social_sharing.php:1428
2400
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2401
  msgstr "指定要实现垂直共享界面的网页"
2402
 
2403
- #: admin/social_sharing.php:1491
2404
  msgid "Hide floating slider"
2405
  msgstr "隐藏浮动滑块"
2406
 
2407
- #: admin/social_sharing.php:1501
2408
  msgid "Hides the slider arrow present below the floating share bar"
2409
  msgstr "隐藏浮动共享栏下方的滑块箭头"
2410
 
2411
- #: admin/social_sharing.php:1508
2412
  msgid "Vertical floating bar responsiveness"
2413
  msgstr "立式浮栏响应能力"
2414
 
2415
- #: admin/social_sharing.php:1511
2416
  #, php-format
2417
  msgid "Display vertical interface only when screen is wider than %s pixels"
2418
  msgstr "只有屏幕宽度超过 %s 像素时显示垂直界面"
2419
 
2420
- #: admin/social_sharing.php:1518
2421
  msgid ""
2422
  "Display vertical interface only when screen is wider than the width "
2423
  "specified."
2424
  msgstr "只有在指定的宽度比宽屏幕时显示垂直界面。"
2425
 
2426
- #: admin/social_sharing.php:1525
2427
  msgid "Horizontal floating bar responsiveness"
2428
  msgstr "水平浮动栏响应"
2429
 
2430
- #: admin/social_sharing.php:1528
2431
  #, php-format
2432
  msgid ""
2433
  "Stick vertical floating interface horizontally at bottom only when screen is "
2434
  "narrower than %s pixels"
2435
  msgstr "只有当屏幕小于 %s 像素时,粘性垂直浮动界面底部的水平位置"
2436
 
2437
- #: admin/social_sharing.php:1535
2438
  msgid ""
2439
  "Stick vertical floating interface horizontally at bottom only when screen is "
2440
  "narrower than the width specified"
2441
  msgstr "只有当屏幕小于指定的宽度时,粘性垂直浮动界面底部的水平位置"
2442
 
2443
- #: admin/social_sharing.php:1544
2444
  msgid "Horizontal floating bar position"
2445
  msgstr "水平浮动栏位置"
2446
 
2447
- #: admin/social_sharing.php:1547
2448
  #, php-format
2449
  msgid "%s pixels from %s"
2450
  msgstr "%s像素来自%s"
2451
 
2452
- #: admin/social_sharing.php:1548
2453
  msgid "Auto-adjust according to screen width (responsive)"
2454
  msgstr "根据屏幕宽度自动调整 (自响应)"
2455
 
2456
- #: admin/social_sharing.php:1555
2457
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2458
  msgstr "对齐方式的水平浮动界面。数值可以为负。"
2459
 
2460
- #: admin/social_sharing.php:1575
2461
- msgid "Facebook Share Count"
2462
- msgstr "Facebook分享计数"
2463
-
2464
- #: admin/social_sharing.php:1579
2465
- msgid "Note"
2466
- msgstr ""
2467
-
2468
- #: admin/social_sharing.php:1579
2469
- msgid "Required only to track Facebook share count"
2470
- msgstr ""
2471
-
2472
- #: admin/social_sharing.php:1594
2473
- #, php-format
2474
- msgid ""
2475
- "Required for Facebook share count to work. Please follow the documentation "
2476
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2477
- msgstr ""
2478
- "要使用Facebook共享计数,此功能是必需的。 请按照<a href=\"%s\" target=\"_blank"
2479
- "\">此链接</a>上的文档获取Facebook App ID"
2480
-
2481
- #: admin/social_sharing.php:1611
2482
- #, php-format
2483
- msgid ""
2484
- "Required for Facebook share count to work. Please follow the documentation "
2485
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2486
- msgstr ""
2487
- "要使用Facebook共享计数,此功能是必需的。 请按照<a href=\"%s\" target=\"_blank"
2488
- "\">此链接</a>中的文档操作,以获取Facebook App 秘钥"
2489
-
2490
- #: admin/social_sharing.php:1625
2491
  msgid "Use shortlinks already installed"
2492
  msgstr "短网址已安装,发推按钮"
2493
 
2494
- #: admin/social_sharing.php:1635
2495
  msgid "Uses default short url permalinks without using any additional plugin"
2496
  msgstr "使用默认的短网址永久链接, 而无需使用任何额外的插件"
2497
 
2498
- #: admin/social_sharing.php:1642
2499
  msgid "Enable bit.ly url shortener for sharing"
2500
  msgstr "用于使用bit.ly url短链共享"
2501
 
2502
- #: admin/social_sharing.php:1696
2503
  msgid "Share Count Cache"
2504
  msgstr "共享计数缓存"
2505
 
2506
- #: admin/social_sharing.php:1701
2507
  msgid "Refresh Share Count cache every"
2508
  msgstr "清空每个计数器缓存"
2509
 
2510
- #: admin/social_sharing.php:1706
2511
  msgid "Second(s)"
2512
  msgstr "秒(s)"
2513
 
2514
- #: admin/social_sharing.php:1707
2515
  msgid "Minute(s)"
2516
  msgstr "分钟"
2517
 
2518
- #: admin/social_sharing.php:1708
2519
  msgid "Hour(s)"
2520
  msgstr "小时"
2521
 
2522
- #: admin/social_sharing.php:1709
2523
  msgid "Day(s)"
2524
  msgstr "天"
2525
 
2526
- #: admin/social_sharing.php:1717
2527
  #, php-format
2528
  msgid ""
2529
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2533,19 +2499,19 @@ msgstr ""
2533
  "频繁的缓存刷新会导致启用共享计数的页面加载速度变慢。 保留为空以禁用缓存。 相"
2534
  "关信息 <a href=\"%s\" target=\"_blank\"> 在这里 </a>"
2535
 
2536
- #: admin/social_sharing.php:1724
2537
  msgid "Clear Share Counts Cache"
2538
  msgstr "清除共享计数缓存"
2539
 
2540
- #: admin/social_sharing.php:1728
2541
  msgid "Share Counts cache cleared successfully."
2542
  msgstr "分享计数缓存成功清除。"
2543
 
2544
- #: admin/social_sharing.php:1735
2545
  msgid "Use this to clear cached share counts"
2546
  msgstr "使用这个清除计数的缓存"
2547
 
2548
- #: admin/social_sharing.php:1759
2549
  #, php-format
2550
  msgid ""
2551
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2555,15 +2521,15 @@ msgstr ""
2555
  "输入你想要为喜欢按钮指定的语言代码。你可以在<a href=“%s” target=“_blank”>这个"
2556
  "链接</a>找到语言代码。留空为默认 (英语)"
2557
 
2558
- #: admin/social_sharing.php:1768
2559
  msgid "Username in sharing"
2560
  msgstr "共享的用户名"
2561
 
2562
- #: admin/social_sharing.php:1773
2563
  msgid "Twitter username (without @)"
2564
  msgstr "Twitter账号(无@)"
2565
 
2566
- #: admin/social_sharing.php:1783 admin/social_sharing.php:1801
2567
  msgid ""
2568
  "Provided username will be appended after the content being shared as \"via "
2569
  "@USERNAME\". Leave empty if you do not want any username in the content "
@@ -2572,27 +2538,27 @@ msgstr ""
2572
  "提供的用户名将在”通过 @USERNAME”的内容共享后。如果你不想用户名在共享内容中,"
2573
  "请留空。"
2574
 
2575
- #: admin/social_sharing.php:1791
2576
  msgid "Buffer username (without @)"
2577
  msgstr "缓冲用户名 (无 @)"
2578
 
2579
- #: admin/social_sharing.php:1810
2580
  msgid "AMP"
2581
  msgstr ""
2582
 
2583
- #: admin/social_sharing.php:1815
2584
  msgid "Enable sharing on AMP pages"
2585
  msgstr "在 AMP 页面上启用分享"
2586
 
2587
- #: admin/social_sharing.php:1825
2588
  msgid "Enable this option to render sharing icons on AMP pages"
2589
  msgstr "启用此选项可在AMP页面上呈现分享图标"
2590
 
2591
- #: admin/social_sharing.php:1882
2592
  msgid "Facebook Sharing Troubleshooter"
2593
  msgstr "Facebook 分享疑难解答"
2594
 
2595
- #: admin/social_sharing.php:1887
2596
  msgid ""
2597
  "If Facebook sharing is not working fine, click at the following link and "
2598
  "enter the problematic url (where Facebook sharing is not working properly) "
@@ -2601,21 +2567,30 @@ msgstr ""
2601
  "如果 Facebook 共享工作不正常,请单击以下链接,并在文本字段中输入您网站有问题"
2602
  "的网址(Facebook 共享无法正常工作)。单击\"调试\"按钮。"
2603
 
2604
- #: admin/social_sharing.php:1905
2605
  msgid ""
2606
  "Why is sharer not showing the correct image, title and other meta tags "
2607
  "content?"
2608
  msgstr "为什么分享者没有显示正确的图像,标题和其他元标记内容?"
2609
 
2610
- #: admin/social_sharing.php:1906
2611
  msgid "Why is Facebook share count not working?"
2612
  msgstr "为什么Facebook分享计数不起作用?"
2613
 
2614
- #: admin/social_sharing.php:1909
 
 
 
 
 
 
 
 
 
2615
  msgid "Why is Instagram icon redirecting to Instagram website?"
2616
  msgstr "为什么 instagram 图标重定向到 instagram 网站?"
2617
 
2618
- #: admin/social_sharing.php:1910
2619
  msgid ""
2620
  "Instagram icon is there to send website visitors to the Instagram page of "
2621
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2625,74 +2600,74 @@ msgstr ""
2625
  "Instagram图标可以将网站访问者发送到您选择的Instagram页面。 您可以在“标准界"
2626
  "面”和“浮动界面”部分的“Instagram用户名”选项中保存所需的Instagram句柄。"
2627
 
2628
- #: admin/social_sharing.php:1913
2629
  msgid "How to customize the url being shared?"
2630
  msgstr "如何自定义正在共享的网址?"
2631
 
2632
- #: admin/social_sharing.php:1914
2633
  msgid ""
2634
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2635
  msgstr ""
2636
 
2637
- #: admin/social_sharing.php:1915
2638
  msgid ""
2639
  "It takes some time for their service to track the shares made on Twitter "
2640
  "from your website. If you still feel it's taking too long you can contact "
2641
  "their support directly from their website."
2642
  msgstr ""
2643
 
2644
- #: admin/social_sharing.php:1918
2645
  msgid ""
2646
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2647
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
2648
 
2649
- #: admin/social_sharing.php:1920
2650
  msgid "Why the color of share icons is not being updated?"
2651
  msgstr "为什么分享图标的颜色未更新?"
2652
 
2653
- #: admin/social_sharing.php:1921
2654
  msgid "Why Facebook share counts are not appearing?"
2655
  msgstr "为什么Facebook 分享数量没有出现?"
2656
 
2657
- #: admin/social_sharing.php:1922
2658
  msgid ""
2659
  "How can I show share counts of my website rather than of individual pages/"
2660
  "posts?"
2661
  msgstr "怎样表示我网站的共享计数,而不是个别网页/文章?"
2662
 
2663
- #: admin/social_sharing.php:1923
2664
  msgid "How can I disable sharing on particular page/post?"
2665
  msgstr "如何在特定的页面文章上禁用共享?"
2666
 
2667
- #: admin/social_sharing.php:1924
2668
  msgid "How can I specify minimum sharing count for sharing networks?"
2669
  msgstr "如何为共享网络共享指定最少数目?"
2670
 
2671
- #: admin/social_sharing.php:1925
2672
  msgid "How to share specific page?"
2673
  msgstr "如何共享特定页面?"
2674
 
2675
- #: admin/social_sharing.php:1926
2676
  msgid "How to integrate Google Analytics with sharing?"
2677
  msgstr "如何将Google Analytics与分享集成?"
2678
 
2679
- #: admin/social_sharing.php:1927
2680
  msgid "How to customize the look of total share counts?"
2681
  msgstr "如何自定义总共享计数的外观?"
2682
 
2683
- #: admin/social_sharing.php:1928
2684
  msgid "How to customize the look of individual share counts?"
2685
  msgstr "如何自定义个人共享计数的外观?"
2686
 
2687
- #: admin/social_sharing.php:1929
2688
  msgid "How to show Whatsapp icon only on mobile devices?"
2689
  msgstr "如何仅在移动设备上显示 Whatsapp 图标?"
2690
 
2691
- #: admin/social_sharing.php:1930
2692
  msgid "How to hide arrow after floating sharing bar?"
2693
  msgstr "如何在浮动共享栏后隐藏箭头?"
2694
 
2695
- #: admin/social_sharing.php:1931
2696
  msgid "Why is share count not getting updated?"
2697
  msgstr "为什么共享计数没有得到更新?"
2698
 
@@ -2716,106 +2691,106 @@ msgstr "支持文档"
2716
  msgid "Settings"
2717
  msgstr "设置"
2718
 
2719
- #: helper.php:579
2720
  msgid "Account linked successfully"
2721
  msgstr "成功关联帐户"
2722
 
2723
- #: helper.php:583
2724
  msgid "Account already exists or linked"
2725
  msgstr "帐户已经存在或被链接"
2726
 
2727
- #: helper.php:619 helper.php:621
2728
  #, fuzzy
2729
  msgid "Login with"
2730
- msgstr "启用社交登录"
2731
 
2732
- #: helper.php:656 helper.php:662
2733
  msgid "Currently"
2734
  msgstr "目前"
2735
 
2736
- #: helper.php:656 helper.php:662
2737
  msgid "Connected with"
2738
  msgstr "连接与"
2739
 
2740
- #: helper.php:656 helper.php:662
2741
  msgid "Remove"
2742
  msgstr "删除"
2743
 
2744
- #: helper.php:733
2745
  msgid "Social Account Linking"
2746
  msgstr "社交账户链接"
2747
 
2748
- #: helper.php:783
2749
  msgid "Disable Standard Social Sharing on this "
2750
  msgstr "此处禁用标准社交分享 "
2751
 
2752
- #: helper.php:788
2753
  msgid "Disable Floating Social Sharing on this "
2754
  msgstr "此处禁用悬浮社交分享 "
2755
 
2756
- #: helper.php:793
2757
  msgid "Disable Standard like buttons on this "
2758
  msgstr "此处禁用标准Like按钮 "
2759
 
2760
- #: helper.php:798
2761
  msgid "Disable Floating like buttons on this "
2762
  msgstr "此处禁用悬浮Like按钮 "
2763
 
2764
- #: helper.php:803
2765
  msgid "Disable Social Commenting on this "
2766
  msgstr "此处禁用第三方登录用户的评论 "
2767
 
2768
- #: helper.php:812
2769
  msgid "Standard Sharing Interface"
2770
  msgstr "标准共享界面"
2771
 
2772
- #: helper.php:818 helper.php:837
2773
  msgid "Starting share count for "
2774
  msgstr "起始共享计数 "
2775
 
2776
- #: helper.php:831
2777
  msgid "Floating Sharing Interface"
2778
  msgstr "浮动共享界面"
2779
 
2780
- #: helper.php:927 super_socializer.php:2363
2781
  msgid "Social Avatar"
2782
  msgstr "社会化头像"
2783
 
2784
- #: helper.php:930 super_socializer.php:2374
2785
  msgid ""
2786
  "Do not fetch and update social avatar from my profile, next time I Social "
2787
  "Login"
2788
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
2789
 
2790
- #: helper.php:931 super_socializer.php:2378
2791
  msgid "Update social avatar, next time I Social Login"
2792
  msgstr "更新社会化头像,下次社会化登录"
2793
 
2794
- #: helper.php:934
2795
  msgid "Small Avatar"
2796
  msgstr "小头像"
2797
 
2798
- #: helper.php:938
2799
  msgid "Large Avatar"
2800
  msgstr "大头像"
2801
 
2802
- #: helper.php:998 super_socializer.php:1924
2803
  msgid "Please verify your email address to login."
2804
  msgstr "请验证您的电子邮件地址以便登录。"
2805
 
2806
- #: helper.php:1035
2807
  msgid "Click to delete social profile data"
2808
  msgstr "点击删除社交个人资料数据"
2809
 
2810
- #: helper.php:1064
2811
  msgid "Deleting"
2812
  msgstr "删除"
2813
 
2814
- #: helper.php:1074
2815
  msgid "Deleted"
2816
  msgstr "已删除"
2817
 
2818
- #: helper.php:1076
2819
  msgid "Something bad happened"
2820
  msgstr "发生了一些不好的事情"
2821
 
@@ -2871,23 +2846,23 @@ msgstr "归档"
2871
  msgid "More"
2872
  msgstr "更多"
2873
 
2874
- #: inc/social_sharing.php:241 super_socializer.php:2034
2875
  msgid "Share"
2876
  msgstr "分享"
2877
 
2878
- #: inc/social_sharing.php:241 super_socializer.php:2034
2879
  msgid "Shares"
2880
  msgstr "分享"
2881
 
2882
- #: inc/social_sharing.php:942 inc/social_sharing.php:1180
2883
  msgid "Invalid request"
2884
  msgstr "无效的请求"
2885
 
2886
- #: inc/social_sharing.php:949
2887
  msgid "Providers not selected"
2888
  msgstr "未选定的供应商"
2889
 
2890
- #: inc/social_sharing_networks.php:57
2891
  msgid "Copy Link"
2892
  msgstr "复制链接"
2893
 
@@ -3132,13 +3107,17 @@ msgstr ""
3132
  msgid "RSS Feed URL:"
3133
  msgstr ""
3134
 
3135
- #: super_socializer.php:1707
 
 
 
 
3136
  msgid ""
3137
  "cURL is not enabled at your website server. Please contact your website "
3138
  "server administrator to enable it."
3139
  msgstr "在您的网站服务器上未启用 curl。请与您的网站服务器管理员联系以启用它。"
3140
 
3141
- #: super_socializer.php:1735
3142
  #, php-format
3143
  msgid ""
3144
  "Enter exactly the following url in <strong>Website</strong> option in your "
@@ -3147,7 +3126,7 @@ msgstr ""
3147
  "在 twitter 应用中的 <strong> 网站 </strong> 选项中输入以下 url (请参阅步骤 3 "
3148
  "%s)"
3149
 
3150
- #: super_socializer.php:1738
3151
  #, php-format
3152
  msgid ""
3153
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
@@ -3156,98 +3135,98 @@ msgstr ""
3156
  "在 twitter 应用中 <strong> 回调 url </strong> 选项中输入以下 url (请参阅步骤 "
3157
  "3 %s)"
3158
 
3159
- #: super_socializer.php:1741
3160
  msgid ""
3161
  "Make sure cURL is enabled at your website server. You may need to contact "
3162
  "the server administrator of your website to verify this"
3163
  msgstr ""
3164
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实"
3165
 
3166
- #: super_socializer.php:1902
3167
  msgid "Search"
3168
  msgstr "搜索"
3169
 
3170
- #: super_socializer.php:1924
3171
  msgid "Your email has been verified. Now you can login to your account"
3172
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
3173
 
3174
- #: super_socializer.php:1928
3175
  msgid "Notification"
3176
  msgstr "通知"
3177
 
3178
- #: super_socializer.php:1949
3179
  msgid "Please check your email inbox to complete the registration."
3180
  msgstr "请检查您的电子邮件收件箱以完成注册。"
3181
 
3182
- #: super_socializer.php:2018
3183
  msgid "Leave a reply"
3184
  msgstr "回复"
3185
 
3186
- #: super_socializer.php:2034
3187
  msgid "Link copied."
3188
  msgstr "链接已复制。"
3189
 
3190
- #: super_socializer.php:2279
3191
  msgid "Super Socializer - General Options"
3192
  msgstr "Super Socializer-常规选项"
3193
 
3194
- #: super_socializer.php:2350
3195
  msgid ""
3196
  "I agree to my personal data being stored and used as per Privacy Policy and "
3197
  "Terms and Conditions"
3198
  msgstr "我同意根据隐私政策和条款和条件存储和使用我的个人数据"
3199
 
3200
- #: super_socializer.php:2354
3201
  msgid ""
3202
  "I revoke my consent to store and use my personal data. Kindly delete my "
3203
  "personal data saved in this website."
3204
  msgstr "我撤销了存储和使用个人数据的同意。请删除保存在此网站的个人数据。"
3205
 
3206
- #: super_socializer.php:2366
3207
  msgid "Small Avatar Url"
3208
  msgstr "小头像 Url"
3209
 
3210
- #: super_socializer.php:2370
3211
  msgid "Large Avatar Url"
3212
  msgstr "大头像 Url"
3213
 
3214
- #: super_socializer.php:2472
3215
  msgid "Login with your Social ID"
3216
  msgstr "使用您的社交 ID登录"
3217
 
3218
- #: super_socializer.php:2473
3219
  msgid "Email you entered is already registered or invalid"
3220
  msgstr "您输入的电子邮件已经注册或无效"
3221
 
3222
- #: super_socializer.php:2480
3223
  msgid "Please enter a valid email address. You might be required to verify it"
3224
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
3225
 
3226
- #: super_socializer.php:2484 super_socializer.php:3238
3227
  msgid "Link your social account to login to your account at this website"
3228
  msgstr "链接你的社会化媒体帐户登录您本站账号"
3229
 
3230
- #: super_socializer.php:2741
3231
  msgid "Thanks for installing Super Socializer plugin"
3232
  msgstr ""
3233
 
3234
- #: super_socializer.php:2743
3235
  msgid "Configure the Plugin"
3236
  msgstr ""
3237
 
3238
- #: super_socializer.php:2754
3239
  msgid ""
3240
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3241
  "current version of Super Socializer"
3242
  msgstr "更新\"脸谱评论适度\"附加组件,以与当前版本的超级社交者兼容"
3243
 
3244
- #: super_socializer.php:2763
3245
  msgid ""
3246
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3247
  "version of Super Socializer"
3248
  msgstr "更新\"脸谱评论通知器\"附加组件,以与当前版本的超级社交者兼容"
3249
 
3250
- #: super_socializer.php:2772
3251
  #, fuzzy
3252
  msgid ""
3253
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
@@ -3256,21 +3235,21 @@ msgstr ""
3256
  "将\"社交登录按钮\"附加组件更新到版本 1.2.7 或以上,以便与当前版本的超级社交用"
3257
  "户兼容"
3258
 
3259
- #: super_socializer.php:2781
3260
  msgid ""
3261
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3262
  "with current version of Super Socializer"
3263
  msgstr ""
3264
  "更新\"社交共享我的CRED集成\"附加组件,以最大限度地兼容当前版本的超级社交"
3265
 
3266
- #: super_socializer.php:2790
3267
  msgid ""
3268
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3269
  "with current version of Super Socializer"
3270
  msgstr ""
3271
  "更新\"社交登录 myCRED 集成\"附加组件,以最大限度地兼容当前版本的超级社交"
3272
 
3273
- #: super_socializer.php:2801
3274
  #, php-format
3275
  msgid ""
3276
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
@@ -3278,7 +3257,7 @@ msgstr ""
3278
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
3279
  "处 </a>"
3280
 
3281
- #: super_socializer.php:2810
3282
  #, php-format
3283
  msgid ""
3284
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3286,7 +3265,7 @@ msgid ""
3286
  "Instagram App Secret <a href=\"%s\">here</a>"
3287
  msgstr ""
3288
 
3289
- #: super_socializer.php:2819 super_socializer.php:2828
3290
  #, php-format
3291
  msgid ""
3292
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3295,13 +3274,13 @@ msgid ""
3295
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3296
  msgstr ""
3297
 
3298
- #: super_socializer.php:2844
3299
  #, php-format
3300
  msgid ""
3301
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3302
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
3303
 
3304
- #: super_socializer.php:2868
3305
  #, php-format
3306
  msgid ""
3307
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3312,14 +3291,14 @@ msgstr ""
3312
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
3313
  "target = \"_ black\" > </a>"
3314
 
3315
- #: super_socializer.php:2868 super_socializer.php:2893
3316
- #: super_socializer.php:2918 super_socializer.php:2943
3317
- #: super_socializer.php:2976 super_socializer.php:3004
3318
- #: super_socializer.php:3031
3319
  msgid "Okay"
3320
  msgstr "好的"
3321
 
3322
- #: super_socializer.php:2893
3323
  #, php-format
3324
  msgid ""
3325
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3330,7 +3309,7 @@ msgstr ""
3330
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
3331
  "a>"
3332
 
3333
- #: super_socializer.php:2918
3334
  #, php-format
3335
  msgid ""
3336
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3341,7 +3320,7 @@ msgstr ""
3341
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
3342
  "black\" > </a>"
3343
 
3344
- #: super_socializer.php:2943
3345
  #, php-format
3346
  msgid ""
3347
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3352,13 +3331,13 @@ msgstr ""
3352
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
3353
  "black\" > </a>"
3354
 
3355
- #: super_socializer.php:2954
3356
  #, php-format
3357
  msgid ""
3358
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3359
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
3360
 
3361
- #: super_socializer.php:2976
3362
  #, php-format
3363
  msgid ""
3364
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3368,7 +3347,7 @@ msgstr ""
3368
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
3369
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
3370
 
3371
- #: super_socializer.php:3004
3372
  #, php-format
3373
  msgid ""
3374
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3377,7 +3356,7 @@ msgid ""
3377
  "your website %s with them. No need to copy-paste any code from their website."
3378
  msgstr ""
3379
 
3380
- #: super_socializer.php:3031
3381
  #, php-format
3382
  msgid ""
3383
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3388,7 +3367,7 @@ msgstr ""
3388
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
3389
  "\" > </a>"
3390
 
3391
- #: super_socializer.php:3056
3392
  #, php-format
3393
  msgid ""
3394
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3399,20 +3378,11 @@ msgstr ""
3399
  "替换为您的LinkedIn应用设置 %s 。有关详细信息,请<a href=\"%s\" target="
3400
  "\"_blank\">在此处</a>查看第 6 步"
3401
 
3402
- #: super_socializer.php:3056 super_socializer.php:3083
3403
  msgid "Dismiss"
3404
  msgstr ""
3405
 
3406
- #: super_socializer.php:3082
3407
- #, php-format
3408
- msgid ""
3409
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3410
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3411
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3412
- "that, clear share counts cache from \"Miscellaneous\" section"
3413
- msgstr ""
3414
-
3415
- #: super_socializer.php:3314
3416
  msgid ""
3417
  "Your browser is blocking some features of this website. Please follow the "
3418
  "instructions at {support_url} to unblock these."
@@ -3420,6 +3390,28 @@ msgstr ""
3420
  "您的浏览器正在阻止此网站的某些功能。请按照 {支持 _ url} 中的说明取消阻止这些"
3421
  "操作。"
3422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3423
  #~ msgid "Problem fetching access token: "
3424
  #~ msgstr "获取access token的问题:"
3425
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
+ "POT-Creation-Date: 2021-07-17 15:41+0530\n"
5
+ "PO-Revision-Date: 2021-07-17 15:41+0530\n"
6
  "Last-Translator: Heateor <hello@heateor.com>\n"
7
  "Language-Team: 汤小贤 <calmsmile@aliyun.com>\n"
8
  "Language: zh_CN\n"
25
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
26
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
27
  #: admin/social_login.php:5 admin/social_login.php:1984
28
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
29
  #, php-format
30
  msgid ""
31
  "You can appreciate the effort put in this free plugin by rating it <a href="
35
  "件所付出的努力"
36
 
37
  #: admin/general_options.php:15 admin/social_commenting.php:47
38
+ #: super_socializer.php:2291
39
  msgid "General Options"
40
  msgstr "常规选项"
41
 
78
 
79
  #: admin/general_options.php:89 admin/like_buttons.php:780
80
  #: admin/social_commenting.php:400 admin/social_login.php:1980
81
+ #: admin/social_sharing.php:1912 helper.php:936
82
  msgid "Save Changes"
83
  msgstr "保存更改"
84
 
85
  #: admin/general_options.php:103 admin/like_buttons.php:790
86
  #: admin/social_commenting.php:410 admin/social_login.php:1990
87
+ #: admin/social_sharing.php:1922
88
  msgid "Instagram Shoutout"
89
  msgstr ""
90
 
91
  #: admin/general_options.php:105 admin/like_buttons.php:792
92
  #: admin/social_commenting.php:412 admin/social_login.php:1992
93
+ #: admin/social_sharing.php:1924
94
  msgid ""
95
  "If you can send (to hello@heateor.com) how this plugin is helping your "
96
  "business, we would be glad to shoutout on Instagram. You can also send any "
200
  "functionality"
201
  msgstr "主控类似按钮。必须检查它以启用类似按钮的功能"
202
 
203
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
204
  msgid "Standard Interface"
205
  msgstr "标准接口"
206
 
207
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
208
  msgid "Floating Interface"
209
  msgstr "浮动接口"
210
 
211
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
212
  msgid "Miscellaneous"
213
  msgstr "其他"
214
 
215
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
216
  msgid "3rd Party Integration"
217
  msgstr "第三方集成"
218
 
219
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
220
  #: admin/social_login.php:45 admin/social_login.php:1946
221
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
222
+ #: admin/social_sharing.php:1839
223
  msgid "Shortcode & Widget"
224
  msgstr "简码&小工具"
225
 
226
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
227
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
228
  #: admin/social_login.php:46 admin/social_login.php:1960
229
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
230
  msgid "FAQ"
231
  msgstr "常见问题解答"
232
 
243
  msgstr "使用主控件启用 水平 like 按钮"
244
 
245
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
246
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
247
  msgid "Target Url"
248
  msgstr "目标URL"
249
 
250
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
251
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
252
  msgid "Url of the webpage where icons are located (default)"
253
  msgstr "图标所在网页的Url (默认值)"
254
 
255
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
256
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
257
  msgid "Url of the homepage of your website"
258
  msgstr "您网站的主页的 Url"
259
 
260
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
261
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
262
  msgid "Custom url"
263
  msgstr "自定义 URL"
264
 
267
  msgstr "链接到喜欢/分享/tweet和显示喜欢/分享/tweet计数"
268
 
269
  #: admin/like_buttons.php:105 admin/social_login.php:1231
270
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
271
  msgid "Title"
272
  msgstr "标题"
273
 
284
  msgstr "选择接口的提供商。拖动它们重新排列。"
285
 
286
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
287
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
288
  msgid "Horizontal alignment"
289
  msgstr "水平对齐"
290
 
291
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
292
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
293
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
294
  #: inc/widget.php:446 inc/widget.php:758
295
  msgid "Left"
296
  msgstr "左边"
297
 
298
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
299
  msgid "Center"
300
  msgstr "居中"
301
 
302
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
303
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
304
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
305
  #: inc/widget.php:447 inc/widget.php:759
306
  msgid "Right"
307
  msgstr "右侧"
310
  msgid "Horizontal alignment of the interface"
311
  msgstr "界面的水平对齐"
312
 
313
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
314
  msgid "Position with respect to content"
315
  msgstr "相对于内容的位置"
316
 
317
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
318
  msgid "Top of the content"
319
  msgstr "内容的顶部"
320
 
321
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
322
  msgid "Bottom of the content"
323
  msgstr "内容的底部"
324
 
332
 
333
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
334
  #: admin/social_login.php:1548 admin/social_login.php:1577
335
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
336
  msgid "Homepage"
337
  msgstr "主页"
338
 
339
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
340
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
341
  msgid "Posts"
342
  msgstr "文章"
343
 
344
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
345
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
346
  msgid "Pages"
347
  msgstr "页面"
348
 
349
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
350
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
351
  msgid "Excerpts and Posts page"
352
  msgstr "摘录和帖子页面"
353
 
354
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
355
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
356
  msgid "Category Archives"
357
  msgstr "目录类别"
358
 
359
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
360
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
361
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
362
  msgstr "存档页 (分类、 标记、 作者或根据日期分类的页)"
363
 
364
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
365
  msgid "BuddyPress activity"
366
  msgstr "BuddyPress 活动"
367
 
368
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
369
  msgid "BuddyPress group (only at top of content)"
370
  msgstr "BuddyPress 组 (只有顶部的内容)"
371
 
372
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
373
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
374
  msgid "BBPress forum"
375
  msgstr "BBPress 论坛"
376
 
377
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
378
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
379
  msgid "BBPress topic"
380
  msgstr "BBPress 主题"
381
 
382
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
383
  msgid "BBPress reply"
384
  msgstr "BBPress 答复"
385
 
386
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
387
  msgid "After individual product at WooCommerce Shop page"
388
  msgstr "在 WooCommerce 商店页面上单独的商品后"
389
 
390
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
391
  msgid "WooCommerce Product Page"
392
  msgstr "Woocommerce商品页"
393
 
394
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
395
  msgid "WooCommerce Thankyou Page"
396
  msgstr "WooCommerce 致谢页面"
397
 
411
  msgid "Master control to enable vertical (floating) counter widget"
412
  msgstr "主控,启用垂直(浮动)计数器小部件"
413
 
414
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
415
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
416
  #: inc/widget.php:460 inc/widget.php:772
417
  msgid "Background Color"
418
  msgstr "背景颜色"
428
  "href=\"http://www.colorpicker.com/\" target=\"_blank\">此链接</a>获取所需颜色"
429
  "的六角码"
430
 
431
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
432
  msgid "Left offset"
433
  msgstr "左偏移"
434
 
440
  "指定一个数字。数量的增加将把接口向右移动,减少将把它向左移动。数字也可以是负"
441
  "数。"
442
 
443
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
444
  msgid "Right offset"
445
  msgstr "右偏移"
446
 
452
  "指定一个数字。数量的增加将把界面向左移动,减少的接口将向右移动。数字也可以是"
453
  "负数。"
454
 
455
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
456
  msgid "Top offset"
457
  msgstr "顶部偏移"
458
 
462
  "decrease will shift it towards top."
463
  msgstr "指定一个数字。数量的增加将把接口移到底部,减少将把它移到顶部。"
464
 
465
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
466
  msgid "BuddyPress group"
467
  msgstr "BuddyPress 组"
468
 
478
  msgid "If enabled, vertical like buttons will not appear on mobile devices"
479
  msgstr "如果启用,垂直Like按钮不会显示在移动设备上"
480
 
481
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
482
  msgid "Url shortener"
483
  msgstr "短网址"
484
 
496
  msgid "Enable bit.ly url shortener for tweet button"
497
  msgstr "启用 bit.ly 网址缩短器用于推文按钮"
498
 
499
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
500
  msgid "Master control to enable bit.ly url shortening for sharing"
501
  msgstr "主控件以启用 bit.ly url 短链共享"
502
 
503
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
504
  msgid "Bit.ly generic access token"
505
  msgstr ""
506
 
507
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
508
  #, php-format
509
  msgid ""
510
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
513
  "\">link</a>"
514
  msgstr ""
515
 
516
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
517
  msgid "Clear Bitly Cache"
518
  msgstr "清除 Bitly 缓存"
519
 
520
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
521
  msgid "ShortUrl cache cleared successfully."
522
  msgstr "ShortUrl 缓存成功清除。"
523
 
524
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
525
  msgid ""
526
  "Use this to delete short urls saved in database. Handy, if urls of your "
527
  "website have been changed but short urls are still being generated for old "
531
  "仍为旧网址,手动处理。"
532
 
533
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
534
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
535
+ #: admin/social_sharing.php:1717
536
  msgid "Language"
537
  msgstr "语言"
538
 
574
  "在缓冲区共享内容后,所提供的用户名将附加为\"通过@USERNAME\"。如果您不想要任何"
575
  "用户名,请留下空。"
576
 
577
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
578
  msgid "myCRED"
579
  msgstr "myCRED"
580
 
581
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
582
  msgid "Append myCRED referral ID to the urls being shared"
583
  msgstr "将myCRED推荐ID追加到分享的URL"
584
 
586
  msgid "Like Buttons Shortcode & Widget"
587
  msgstr "喜欢按钮简码 & 小部件"
588
 
589
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
590
  msgid "Why is there so much space between like buttons?"
591
  msgstr "为什么像按钮之间有这么多的空间?"
592
 
593
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
594
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
595
  msgstr "为什么在主页上没有显示浮动分享/喜欢按钮?"
596
 
597
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
598
  msgid "How to Place Title and Social Share Icons in the Same Row?"
599
  msgstr "如何在同一行中放置标题和社交分享图标?"
600
 
790
  msgstr "社会化评论简码"
791
 
792
  #: admin/social_commenting.php:386 admin/social_login.php:1962
793
+ #: admin/social_sharing.php:1872
794
  msgid ""
795
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
796
  "an online website for the plugin to function properly."
810
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的Facebook 评论?"
811
 
812
  #: admin/social_commenting.php:389 admin/social_login.php:1969
813
+ #: admin/social_sharing.php:1887
814
  msgid "Why is my browser blocking some features of the plugin?"
815
  msgstr "为什么我的浏览器会阻止插件的某些功能?"
816
 
841
  msgstr "高级配置"
842
 
843
  #: admin/social_login.php:41 admin/social_login.php:1746
844
+ #: super_socializer.php:2359
845
  msgid "GDPR"
846
  msgstr "GDPR"
847
 
981
  msgstr ""
982
 
983
  #: admin/social_login.php:203
984
+ msgid "Mail.ru"
985
  msgstr ""
986
 
987
  #: admin/social_login.php:207
996
  msgid "Select Social ID provider to enable in Social Login"
997
  msgstr "选择需要启用的第三方登录方式"
998
 
999
+ #: admin/social_login.php:226
1000
  msgid "Facebook App ID"
1001
  msgstr "Facebook 应用 ID"
1002
 
1012
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1013
  msgstr ""
1014
 
1015
+ #: admin/social_login.php:247
1016
  msgid "Facebook App Secret"
1017
  msgstr "FacebookAPP密码"
1018
 
1784
  "如果启用,用户将能够从前端的BuddyPress配置文件中的“个人资料照片”部分更新他们"
1785
  "的社交头像"
1786
 
1787
+ #: admin/social_login.php:1490 super_socializer.php:1958
1788
  msgid "Email required"
1789
  msgstr "邮件地址(比选)"
1790
 
2054
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2055
  msgstr "恢复社交股计数移动到 ssl/http 后丢失"
2056
 
2057
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
2058
  msgid "Theme Selection"
2059
  msgstr "主题选择"
2060
 
2061
+ #: admin/social_sharing.php:64
2062
  msgid "Troubleshooter"
2063
  msgstr "排错"
2064
 
2065
+ #: admin/social_sharing.php:73
2066
  msgid "Standard interface theme"
2067
  msgstr "标准接口主题"
2068
 
2069
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2070
  msgid "Icon Preview"
2071
  msgstr "图标预览"
2072
 
2073
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2074
  msgid ""
2075
  "Do not forget to save the configuration after making changes by clicking the "
2076
  "save button below"
2077
  msgstr "更改后不要忘记单击下面的保存按钮以保存下面存配置"
2078
 
2079
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2080
  msgid "Shape"
2081
  msgstr "形状"
2082
 
2083
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2084
  msgid "Round"
2085
  msgstr "圆"
2086
 
2087
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2088
  msgid "Square"
2089
  msgstr "正方形"
2090
 
2091
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2092
  msgid "Rectangle"
2093
  msgstr "矩形"
2094
 
2095
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2096
  msgid "Shape of the sharing icons"
2097
  msgstr "共享图标的形状"
2098
 
2099
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2100
  msgid "Size (in pixels)"
2101
  msgstr "大小 (以像素为单位)"
2102
 
2103
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2104
  msgid "Size of the sharing icons"
2105
  msgstr "共享图标的大小"
2106
 
2107
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2108
  msgid "Width (in pixels)"
2109
  msgstr "宽度(px)"
2110
 
2111
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2112
  msgid "Width of the sharing icons"
2113
  msgstr "共享图标宽度"
2114
 
2115
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2116
  msgid "Height (in pixels)"
2117
  msgstr "高度(像素)"
2118
 
2119
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2120
  msgid "Height of the sharing icons"
2121
  msgstr "共享图标高度"
2122
 
2123
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2124
  msgid "Border radius (in pixels)"
2125
  msgstr "(以像素为单位) 的边界半径"
2126
 
2127
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2128
  msgid ""
2129
  "Specify a value for rounded corners. More the value, more rounded will the "
2130
  "corners be. Leave empty for sharp corners."
2131
  msgstr "定义圆角的值。值越大,圆角越园。留空为尖角。"
2132
 
2133
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2134
  msgid "Logo Color"
2135
  msgstr "Logo 颜色"
2136
 
2137
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2138
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2139
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2140
  msgid "Default"
2141
  msgstr "默认"
2142
 
2143
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2144
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2145
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2146
  msgid "On Hover"
2147
  msgstr "鼠标悬停"
2148
 
2149
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2150
  msgid ""
2151
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2152
  "empty for default. You can get the hex code of the required color from <a "
2156
  "href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的颜色"
2157
  "的十六进制代码"
2158
 
2159
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2160
  msgid ""
2161
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2162
  "\"transparent\" for transparent background. Leave empty for default. You can "
2167
  "为默认。你可以从<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链"
2168
  "接</a>获得所需的颜色的十六进制代码"
2169
 
2170
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2171
  msgid "Border"
2172
  msgstr "边框"
2173
 
2174
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2175
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2176
  msgid "Border Width"
2177
  msgstr "边框宽度"
2178
 
2179
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2180
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2181
  msgid "Border Color"
2182
  msgstr "边框颜色"
2183
 
2184
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2185
  msgid "Icon border"
2186
  msgstr "图标边框"
2187
 
2188
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2189
  msgid "Counter Position"
2190
  msgstr "计数器的位置"
2191
 
2192
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2193
  msgid "(applies, if counter enabled)"
2194
  msgstr "(适用,如果启用计数器)"
2195
 
2196
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2197
  msgid "Top"
2198
  msgstr "顶部"
2199
 
2200
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2201
  msgid "Bottom"
2202
  msgstr "居下"
2203
 
2204
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2205
  msgid "Inner Left"
2206
  msgstr "内左"
2207
 
2208
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2209
  msgid "Inner Top"
2210
  msgstr "内顶"
2211
 
2212
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2213
  msgid "Inner Right"
2214
  msgstr "内右"
2215
 
2216
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2217
  msgid "Inner Bottom"
2218
  msgstr "内底"
2219
 
2220
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2221
  msgid "Position of share counter"
2222
  msgstr "共享计数器的位置"
2223
 
2224
+ #: admin/social_sharing.php:371
2225
  msgid "Floating interface theme"
2226
  msgstr "浮动的界面主题"
2227
 
2228
+ #: admin/social_sharing.php:675
2229
  msgid "Standard Sharing Interface Options"
2230
  msgstr "标准共享界面选项"
2231
 
2232
+ #: admin/social_sharing.php:680
2233
  msgid "Enable Standard sharing interface"
2234
  msgstr "启用共享接口标准"
2235
 
2236
+ #: admin/social_sharing.php:690
2237
  msgid "Master control to enable standard sharing"
2238
  msgstr "主控件以启用标准共享"
2239
 
2240
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2241
  msgid "Url to share"
2242
  msgstr "要分享的网址"
2243
 
2244
+ #: admin/social_sharing.php:731
2245
  msgid "The text to display above the sharing interface"
2246
  msgstr "要共享界面上方显示的文本"
2247
 
2248
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2249
  msgid "Instagram username"
2250
  msgstr ""
2251
 
2252
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2253
  msgid ""
2254
  "Username of the Instagram account you want to redirect users to, on clicking "
2255
  "the icon"
2256
  msgstr "要将用户重定向到的 Instagram 帐户的用户名, 请单击图标"
2257
 
2258
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2259
  msgid "HTML ID of container element of comment form"
2260
  msgstr "注释表单的容器元素的HTML ID"
2261
 
2262
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2263
  msgid ""
2264
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2265
  "icon."
2266
  msgstr "HTML ID的元素,你想集中在网页上,点击评论图标。"
2267
 
2268
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2269
  msgid "Rearrange icons"
2270
  msgstr "重新排列图标"
2271
 
2272
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2273
  msgid "Drag the icons to rearrange in desired order"
2274
  msgstr "按所需顺序拖动要重新排列的图标"
2275
 
2276
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2277
  msgid "Select Sharing Services"
2278
  msgstr "选择共享服务"
2279
 
2280
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2281
  msgid "Select sharing services to show in social share bar"
2282
  msgstr "请选择要在社交共享栏中显示的共享服务"
2283
 
2284
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2285
  msgid "Search social network"
2286
  msgstr "搜索社交网络"
2287
 
2288
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2289
  msgid "Horizontal alignment of the sharing interface"
2290
  msgstr "共享界面水平对齐方式"
2291
 
2292
+ #: admin/social_sharing.php:942
2293
  msgid "Specify position of the sharing interface with respect to the content"
2294
  msgstr "指定相对于内容而言共享界面的位置"
2295
 
2296
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2297
  msgid "Placement"
2298
  msgstr "放置"
2299
 
2300
+ #: admin/social_sharing.php:1017
2301
  msgid "Specify the pages where you want to enable Sharing interface"
2302
  msgstr "指定要启用共享界面的页面"
2303
 
2304
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2305
  msgid "Show share counts"
2306
  msgstr "显示共享计数"
2307
 
2308
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2309
+ #, fuzzy
2310
  msgid ""
2311
+ "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2312
+ "Odnoklassniki, Fintel and Vkontakte"
2313
  msgstr ""
2314
  "Facebook,Twitter,Linkedin,Buffer,Reddit,Pinterest,Odnoklassniki,Fintel"
2315
  "和Vkontakte支持分享计数"
2316
 
2317
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2318
  #, php-format
2319
  msgid ""
2320
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2323
  "their website."
2324
  msgstr ""
2325
 
2326
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2327
  msgid "If enabled, share counts are displayed above sharing icons."
2328
  msgstr "如果启用,共享计数在共享图标上面显示。"
2329
 
2330
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2331
+ #: admin/social_sharing.php:1659
2332
+ msgid "Track Social Shares for Every Social Network"
2333
+ msgstr ""
2334
+
2335
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2336
  msgid "Show total shares"
2337
  msgstr "分享总数"
2338
 
2339
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2340
  msgid "If enabled, total shares will be displayed with sharing icons"
2341
  msgstr "如果启用,总分享数将显示为带有分享图标"
2342
 
2343
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2344
  msgid "Enable 'More' icon"
2345
  msgstr "启用“更多”图标"
2346
 
2347
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2348
  msgid ""
2349
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2350
  "which shows additional sharing networks in popup"
2351
  msgstr ""
2352
  "如果启用,将选定的共享图标后,会显示“更多”图标,它显示在弹出的其他共享网络"
2353
 
2354
+ #: admin/social_sharing.php:1096
2355
  msgid "Floating Sharing Interface Options"
2356
  msgstr "浮动共享界面选项"
2357
 
2358
+ #: admin/social_sharing.php:1101
2359
  msgid "Enable Floating sharing interface"
2360
  msgstr "启用共享接口标准"
2361
 
2362
+ #: admin/social_sharing.php:1111
2363
  msgid "Master control to enable floating sharing widget"
2364
  msgstr "主控,使共享浮动部件"
2365
 
2366
+ #: admin/social_sharing.php:1299
2367
  msgid ""
2368
  "Specify the color or hex code (example #cc78e0) for the background of "
2369
  "vertical sharing bar. Leave empty for transparent. You can get the hex code "
2374
  "<a href=“http://www.colorpicker.com/“ target=“_blank”>这个链接</a>获得所需的"
2375
  "颜色的十六进制代码"
2376
 
2377
+ #: admin/social_sharing.php:1337
2378
  msgid ""
2379
  "Specify a number. Increase in number will shift sharing interface towards "
2380
  "right and decrease will shift it towards left. Number can be negative too."
2381
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
2382
 
2383
+ #: admin/social_sharing.php:1356
2384
  msgid ""
2385
  "Specify a number. Increase in number will shift sharing interface towards "
2386
  "left and decrease will shift it towards right. Number can be negative too."
2387
  msgstr "指定一个数字。数目增加将朝左边移动和减少则向右。数值可以为负。"
2388
 
2389
+ #: admin/social_sharing.php:1374
2390
  msgid ""
2391
  "Specify a number. Increase in number will shift sharing interface towards "
2392
  "bottom and decrease will shift it towards top."
2393
  msgstr "指定一个数字。增加数目将朝底部移动和减少则为向顶部。"
2394
 
2395
+ #: admin/social_sharing.php:1430
2396
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2397
  msgstr "指定要实现垂直共享界面的网页"
2398
 
2399
+ #: admin/social_sharing.php:1499
2400
  msgid "Hide floating slider"
2401
  msgstr "隐藏浮动滑块"
2402
 
2403
+ #: admin/social_sharing.php:1509
2404
  msgid "Hides the slider arrow present below the floating share bar"
2405
  msgstr "隐藏浮动共享栏下方的滑块箭头"
2406
 
2407
+ #: admin/social_sharing.php:1516
2408
  msgid "Vertical floating bar responsiveness"
2409
  msgstr "立式浮栏响应能力"
2410
 
2411
+ #: admin/social_sharing.php:1519
2412
  #, php-format
2413
  msgid "Display vertical interface only when screen is wider than %s pixels"
2414
  msgstr "只有屏幕宽度超过 %s 像素时显示垂直界面"
2415
 
2416
+ #: admin/social_sharing.php:1526
2417
  msgid ""
2418
  "Display vertical interface only when screen is wider than the width "
2419
  "specified."
2420
  msgstr "只有在指定的宽度比宽屏幕时显示垂直界面。"
2421
 
2422
+ #: admin/social_sharing.php:1533
2423
  msgid "Horizontal floating bar responsiveness"
2424
  msgstr "水平浮动栏响应"
2425
 
2426
+ #: admin/social_sharing.php:1536
2427
  #, php-format
2428
  msgid ""
2429
  "Stick vertical floating interface horizontally at bottom only when screen is "
2430
  "narrower than %s pixels"
2431
  msgstr "只有当屏幕小于 %s 像素时,粘性垂直浮动界面底部的水平位置"
2432
 
2433
+ #: admin/social_sharing.php:1543
2434
  msgid ""
2435
  "Stick vertical floating interface horizontally at bottom only when screen is "
2436
  "narrower than the width specified"
2437
  msgstr "只有当屏幕小于指定的宽度时,粘性垂直浮动界面底部的水平位置"
2438
 
2439
+ #: admin/social_sharing.php:1552
2440
  msgid "Horizontal floating bar position"
2441
  msgstr "水平浮动栏位置"
2442
 
2443
+ #: admin/social_sharing.php:1555
2444
  #, php-format
2445
  msgid "%s pixels from %s"
2446
  msgstr "%s像素来自%s"
2447
 
2448
+ #: admin/social_sharing.php:1556
2449
  msgid "Auto-adjust according to screen width (responsive)"
2450
  msgstr "根据屏幕宽度自动调整 (自响应)"
2451
 
2452
+ #: admin/social_sharing.php:1563
2453
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2454
  msgstr "对齐方式的水平浮动界面。数值可以为负。"
2455
 
2456
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2457
  msgid "Use shortlinks already installed"
2458
  msgstr "短网址已安装,发推按钮"
2459
 
2460
+ #: admin/social_sharing.php:1598
2461
  msgid "Uses default short url permalinks without using any additional plugin"
2462
  msgstr "使用默认的短网址永久链接, 而无需使用任何额外的插件"
2463
 
2464
+ #: admin/social_sharing.php:1605
2465
  msgid "Enable bit.ly url shortener for sharing"
2466
  msgstr "用于使用bit.ly url短链共享"
2467
 
2468
+ #: admin/social_sharing.php:1664
2469
  msgid "Share Count Cache"
2470
  msgstr "共享计数缓存"
2471
 
2472
+ #: admin/social_sharing.php:1669
2473
  msgid "Refresh Share Count cache every"
2474
  msgstr "清空每个计数器缓存"
2475
 
2476
+ #: admin/social_sharing.php:1674
2477
  msgid "Second(s)"
2478
  msgstr "秒(s)"
2479
 
2480
+ #: admin/social_sharing.php:1675
2481
  msgid "Minute(s)"
2482
  msgstr "分钟"
2483
 
2484
+ #: admin/social_sharing.php:1676
2485
  msgid "Hour(s)"
2486
  msgstr "小时"
2487
 
2488
+ #: admin/social_sharing.php:1677
2489
  msgid "Day(s)"
2490
  msgstr "天"
2491
 
2492
+ #: admin/social_sharing.php:1685
2493
  #, php-format
2494
  msgid ""
2495
  "Frequent cache refreshing results in slower loading of pages with share "
2499
  "频繁的缓存刷新会导致启用共享计数的页面加载速度变慢。 保留为空以禁用缓存。 相"
2500
  "关信息 <a href=\"%s\" target=\"_blank\"> 在这里 </a>"
2501
 
2502
+ #: admin/social_sharing.php:1692
2503
  msgid "Clear Share Counts Cache"
2504
  msgstr "清除共享计数缓存"
2505
 
2506
+ #: admin/social_sharing.php:1696
2507
  msgid "Share Counts cache cleared successfully."
2508
  msgstr "分享计数缓存成功清除。"
2509
 
2510
+ #: admin/social_sharing.php:1703
2511
  msgid "Use this to clear cached share counts"
2512
  msgstr "使用这个清除计数的缓存"
2513
 
2514
+ #: admin/social_sharing.php:1727
2515
  #, php-format
2516
  msgid ""
2517
  "Enter the code of the language you want to use for like buttons. You can "
2521
  "输入你想要为喜欢按钮指定的语言代码。你可以在<a href=“%s” target=“_blank”>这个"
2522
  "链接</a>找到语言代码。留空为默认 (英语)"
2523
 
2524
+ #: admin/social_sharing.php:1736
2525
  msgid "Username in sharing"
2526
  msgstr "共享的用户名"
2527
 
2528
+ #: admin/social_sharing.php:1741
2529
  msgid "Twitter username (without @)"
2530
  msgstr "Twitter账号(无@)"
2531
 
2532
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2533
  msgid ""
2534
  "Provided username will be appended after the content being shared as \"via "
2535
  "@USERNAME\". Leave empty if you do not want any username in the content "
2538
  "提供的用户名将在”通过 @USERNAME”的内容共享后。如果你不想用户名在共享内容中,"
2539
  "请留空。"
2540
 
2541
+ #: admin/social_sharing.php:1759
2542
  msgid "Buffer username (without @)"
2543
  msgstr "缓冲用户名 (无 @)"
2544
 
2545
+ #: admin/social_sharing.php:1778
2546
  msgid "AMP"
2547
  msgstr ""
2548
 
2549
+ #: admin/social_sharing.php:1783
2550
  msgid "Enable sharing on AMP pages"
2551
  msgstr "在 AMP 页面上启用分享"
2552
 
2553
+ #: admin/social_sharing.php:1793
2554
  msgid "Enable this option to render sharing icons on AMP pages"
2555
  msgstr "启用此选项可在AMP页面上呈现分享图标"
2556
 
2557
+ #: admin/social_sharing.php:1850
2558
  msgid "Facebook Sharing Troubleshooter"
2559
  msgstr "Facebook 分享疑难解答"
2560
 
2561
+ #: admin/social_sharing.php:1855
2562
  msgid ""
2563
  "If Facebook sharing is not working fine, click at the following link and "
2564
  "enter the problematic url (where Facebook sharing is not working properly) "
2567
  "如果 Facebook 共享工作不正常,请单击以下链接,并在文本字段中输入您网站有问题"
2568
  "的网址(Facebook 共享无法正常工作)。单击\"调试\"按钮。"
2569
 
2570
+ #: admin/social_sharing.php:1873
2571
  msgid ""
2572
  "Why is sharer not showing the correct image, title and other meta tags "
2573
  "content?"
2574
  msgstr "为什么分享者没有显示正确的图像,标题和其他元标记内容?"
2575
 
2576
+ #: admin/social_sharing.php:1874
2577
  msgid "Why is Facebook share count not working?"
2578
  msgstr "为什么Facebook分享计数不起作用?"
2579
 
2580
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2581
+ #, php-format
2582
+ msgid ""
2583
+ "After the recent changes introduced in the Facebook graph API, it's not "
2584
+ "possible to track Facebook shares using it. <a href='%s' "
2585
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2586
+ "not just for Facebook but for all the social networks"
2587
+ msgstr ""
2588
+
2589
+ #: admin/social_sharing.php:1877
2590
  msgid "Why is Instagram icon redirecting to Instagram website?"
2591
  msgstr "为什么 instagram 图标重定向到 instagram 网站?"
2592
 
2593
+ #: admin/social_sharing.php:1878
2594
  msgid ""
2595
  "Instagram icon is there to send website visitors to the Instagram page of "
2596
  "your choice. You can save the desired Instagram handle in \"Instagram "
2600
  "Instagram图标可以将网站访问者发送到您选择的Instagram页面。 您可以在“标准界"
2601
  "面”和“浮动界面”部分的“Instagram用户名”选项中保存所需的Instagram句柄。"
2602
 
2603
+ #: admin/social_sharing.php:1881
2604
  msgid "How to customize the url being shared?"
2605
  msgstr "如何自定义正在共享的网址?"
2606
 
2607
+ #: admin/social_sharing.php:1882
2608
  msgid ""
2609
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2610
  msgstr ""
2611
 
2612
+ #: admin/social_sharing.php:1883
2613
  msgid ""
2614
  "It takes some time for their service to track the shares made on Twitter "
2615
  "from your website. If you still feel it's taking too long you can contact "
2616
  "their support directly from their website."
2617
  msgstr ""
2618
 
2619
+ #: admin/social_sharing.php:1886
2620
  msgid ""
2621
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2622
  msgstr "如何恢复在将我的网站转移到SSL/https之后丢失的社交分享数?"
2623
 
2624
+ #: admin/social_sharing.php:1888
2625
  msgid "Why the color of share icons is not being updated?"
2626
  msgstr "为什么分享图标的颜色未更新?"
2627
 
2628
+ #: admin/social_sharing.php:1889
2629
  msgid "Why Facebook share counts are not appearing?"
2630
  msgstr "为什么Facebook 分享数量没有出现?"
2631
 
2632
+ #: admin/social_sharing.php:1890
2633
  msgid ""
2634
  "How can I show share counts of my website rather than of individual pages/"
2635
  "posts?"
2636
  msgstr "怎样表示我网站的共享计数,而不是个别网页/文章?"
2637
 
2638
+ #: admin/social_sharing.php:1891
2639
  msgid "How can I disable sharing on particular page/post?"
2640
  msgstr "如何在特定的页面文章上禁用共享?"
2641
 
2642
+ #: admin/social_sharing.php:1892
2643
  msgid "How can I specify minimum sharing count for sharing networks?"
2644
  msgstr "如何为共享网络共享指定最少数目?"
2645
 
2646
+ #: admin/social_sharing.php:1893
2647
  msgid "How to share specific page?"
2648
  msgstr "如何共享特定页面?"
2649
 
2650
+ #: admin/social_sharing.php:1894
2651
  msgid "How to integrate Google Analytics with sharing?"
2652
  msgstr "如何将Google Analytics与分享集成?"
2653
 
2654
+ #: admin/social_sharing.php:1895
2655
  msgid "How to customize the look of total share counts?"
2656
  msgstr "如何自定义总共享计数的外观?"
2657
 
2658
+ #: admin/social_sharing.php:1896
2659
  msgid "How to customize the look of individual share counts?"
2660
  msgstr "如何自定义个人共享计数的外观?"
2661
 
2662
+ #: admin/social_sharing.php:1897
2663
  msgid "How to show Whatsapp icon only on mobile devices?"
2664
  msgstr "如何仅在移动设备上显示 Whatsapp 图标?"
2665
 
2666
+ #: admin/social_sharing.php:1898
2667
  msgid "How to hide arrow after floating sharing bar?"
2668
  msgstr "如何在浮动共享栏后隐藏箭头?"
2669
 
2670
+ #: admin/social_sharing.php:1899
2671
  msgid "Why is share count not getting updated?"
2672
  msgstr "为什么共享计数没有得到更新?"
2673
 
2691
  msgid "Settings"
2692
  msgstr "设置"
2693
 
2694
+ #: helper.php:572
2695
  msgid "Account linked successfully"
2696
  msgstr "成功关联帐户"
2697
 
2698
+ #: helper.php:576
2699
  msgid "Account already exists or linked"
2700
  msgstr "帐户已经存在或被链接"
2701
 
2702
+ #: helper.php:612 helper.php:614
2703
  #, fuzzy
2704
  msgid "Login with"
2705
+ msgstr "自定义社交登录图标"
2706
 
2707
+ #: helper.php:649 helper.php:655
2708
  msgid "Currently"
2709
  msgstr "目前"
2710
 
2711
+ #: helper.php:649 helper.php:655
2712
  msgid "Connected with"
2713
  msgstr "连接与"
2714
 
2715
+ #: helper.php:649 helper.php:655
2716
  msgid "Remove"
2717
  msgstr "删除"
2718
 
2719
+ #: helper.php:727
2720
  msgid "Social Account Linking"
2721
  msgstr "社交账户链接"
2722
 
2723
+ #: helper.php:777
2724
  msgid "Disable Standard Social Sharing on this "
2725
  msgstr "此处禁用标准社交分享 "
2726
 
2727
+ #: helper.php:782
2728
  msgid "Disable Floating Social Sharing on this "
2729
  msgstr "此处禁用悬浮社交分享 "
2730
 
2731
+ #: helper.php:787
2732
  msgid "Disable Standard like buttons on this "
2733
  msgstr "此处禁用标准Like按钮 "
2734
 
2735
+ #: helper.php:792
2736
  msgid "Disable Floating like buttons on this "
2737
  msgstr "此处禁用悬浮Like按钮 "
2738
 
2739
+ #: helper.php:797
2740
  msgid "Disable Social Commenting on this "
2741
  msgstr "此处禁用第三方登录用户的评论 "
2742
 
2743
+ #: helper.php:806
2744
  msgid "Standard Sharing Interface"
2745
  msgstr "标准共享界面"
2746
 
2747
+ #: helper.php:812 helper.php:831
2748
  msgid "Starting share count for "
2749
  msgstr "起始共享计数 "
2750
 
2751
+ #: helper.php:825
2752
  msgid "Floating Sharing Interface"
2753
  msgstr "浮动共享界面"
2754
 
2755
+ #: helper.php:921 super_socializer.php:2375
2756
  msgid "Social Avatar"
2757
  msgstr "社会化头像"
2758
 
2759
+ #: helper.php:924 super_socializer.php:2386
2760
  msgid ""
2761
  "Do not fetch and update social avatar from my profile, next time I Social "
2762
  "Login"
2763
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
2764
 
2765
+ #: helper.php:925 super_socializer.php:2390
2766
  msgid "Update social avatar, next time I Social Login"
2767
  msgstr "更新社会化头像,下次社会化登录"
2768
 
2769
+ #: helper.php:928
2770
  msgid "Small Avatar"
2771
  msgstr "小头像"
2772
 
2773
+ #: helper.php:932
2774
  msgid "Large Avatar"
2775
  msgstr "大头像"
2776
 
2777
+ #: helper.php:992 super_socializer.php:1936
2778
  msgid "Please verify your email address to login."
2779
  msgstr "请验证您的电子邮件地址以便登录。"
2780
 
2781
+ #: helper.php:1029
2782
  msgid "Click to delete social profile data"
2783
  msgstr "点击删除社交个人资料数据"
2784
 
2785
+ #: helper.php:1058
2786
  msgid "Deleting"
2787
  msgstr "删除"
2788
 
2789
+ #: helper.php:1068
2790
  msgid "Deleted"
2791
  msgstr "已删除"
2792
 
2793
+ #: helper.php:1070
2794
  msgid "Something bad happened"
2795
  msgstr "发生了一些不好的事情"
2796
 
2846
  msgid "More"
2847
  msgstr "更多"
2848
 
2849
+ #: inc/social_sharing.php:241 super_socializer.php:2046
2850
  msgid "Share"
2851
  msgstr "分享"
2852
 
2853
+ #: inc/social_sharing.php:241 super_socializer.php:2046
2854
  msgid "Shares"
2855
  msgstr "分享"
2856
 
2857
+ #: inc/social_sharing.php:931 inc/social_sharing.php:1169
2858
  msgid "Invalid request"
2859
  msgstr "无效的请求"
2860
 
2861
+ #: inc/social_sharing.php:938
2862
  msgid "Providers not selected"
2863
  msgstr "未选定的供应商"
2864
 
2865
+ #: inc/social_sharing_networks.php:58
2866
  msgid "Copy Link"
2867
  msgstr "复制链接"
2868
 
3107
  msgid "RSS Feed URL:"
3108
  msgstr ""
3109
 
3110
+ #: super_socializer.php:429
3111
+ msgid "Enable CURL at your website server to use Mail.ru Social Login."
3112
+ msgstr ""
3113
+
3114
+ #: super_socializer.php:1718
3115
  msgid ""
3116
  "cURL is not enabled at your website server. Please contact your website "
3117
  "server administrator to enable it."
3118
  msgstr "在您的网站服务器上未启用 curl。请与您的网站服务器管理员联系以启用它。"
3119
 
3120
+ #: super_socializer.php:1746
3121
  #, php-format
3122
  msgid ""
3123
  "Enter exactly the following url in <strong>Website</strong> option in your "
3126
  "在 twitter 应用中的 <strong> 网站 </strong> 选项中输入以下 url (请参阅步骤 3 "
3127
  "%s)"
3128
 
3129
+ #: super_socializer.php:1749
3130
  #, php-format
3131
  msgid ""
3132
  "Enter exactly the following url in <strong>Callback URLs</strong> option in "
3135
  "在 twitter 应用中 <strong> 回调 url </strong> 选项中输入以下 url (请参阅步骤 "
3136
  "3 %s)"
3137
 
3138
+ #: super_socializer.php:1752
3139
  msgid ""
3140
  "Make sure cURL is enabled at your website server. You may need to contact "
3141
  "the server administrator of your website to verify this"
3142
  msgstr ""
3143
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实"
3144
 
3145
+ #: super_socializer.php:1914
3146
  msgid "Search"
3147
  msgstr "搜索"
3148
 
3149
+ #: super_socializer.php:1936
3150
  msgid "Your email has been verified. Now you can login to your account"
3151
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
3152
 
3153
+ #: super_socializer.php:1940
3154
  msgid "Notification"
3155
  msgstr "通知"
3156
 
3157
+ #: super_socializer.php:1961
3158
  msgid "Please check your email inbox to complete the registration."
3159
  msgstr "请检查您的电子邮件收件箱以完成注册。"
3160
 
3161
+ #: super_socializer.php:2030
3162
  msgid "Leave a reply"
3163
  msgstr "回复"
3164
 
3165
+ #: super_socializer.php:2046
3166
  msgid "Link copied."
3167
  msgstr "链接已复制。"
3168
 
3169
+ #: super_socializer.php:2291
3170
  msgid "Super Socializer - General Options"
3171
  msgstr "Super Socializer-常规选项"
3172
 
3173
+ #: super_socializer.php:2362
3174
  msgid ""
3175
  "I agree to my personal data being stored and used as per Privacy Policy and "
3176
  "Terms and Conditions"
3177
  msgstr "我同意根据隐私政策和条款和条件存储和使用我的个人数据"
3178
 
3179
+ #: super_socializer.php:2366
3180
  msgid ""
3181
  "I revoke my consent to store and use my personal data. Kindly delete my "
3182
  "personal data saved in this website."
3183
  msgstr "我撤销了存储和使用个人数据的同意。请删除保存在此网站的个人数据。"
3184
 
3185
+ #: super_socializer.php:2378
3186
  msgid "Small Avatar Url"
3187
  msgstr "小头像 Url"
3188
 
3189
+ #: super_socializer.php:2382
3190
  msgid "Large Avatar Url"
3191
  msgstr "大头像 Url"
3192
 
3193
+ #: super_socializer.php:2484
3194
  msgid "Login with your Social ID"
3195
  msgstr "使用您的社交 ID登录"
3196
 
3197
+ #: super_socializer.php:2485
3198
  msgid "Email you entered is already registered or invalid"
3199
  msgstr "您输入的电子邮件已经注册或无效"
3200
 
3201
+ #: super_socializer.php:2492
3202
  msgid "Please enter a valid email address. You might be required to verify it"
3203
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
3204
 
3205
+ #: super_socializer.php:2496 super_socializer.php:3250
3206
  msgid "Link your social account to login to your account at this website"
3207
  msgstr "链接你的社会化媒体帐户登录您本站账号"
3208
 
3209
+ #: super_socializer.php:2753
3210
  msgid "Thanks for installing Super Socializer plugin"
3211
  msgstr ""
3212
 
3213
+ #: super_socializer.php:2755
3214
  msgid "Configure the Plugin"
3215
  msgstr ""
3216
 
3217
+ #: super_socializer.php:2766
3218
  msgid ""
3219
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3220
  "current version of Super Socializer"
3221
  msgstr "更新\"脸谱评论适度\"附加组件,以与当前版本的超级社交者兼容"
3222
 
3223
+ #: super_socializer.php:2775
3224
  msgid ""
3225
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3226
  "version of Super Socializer"
3227
  msgstr "更新\"脸谱评论通知器\"附加组件,以与当前版本的超级社交者兼容"
3228
 
3229
+ #: super_socializer.php:2784
3230
  #, fuzzy
3231
  msgid ""
3232
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3235
  "将\"社交登录按钮\"附加组件更新到版本 1.2.7 或以上,以便与当前版本的超级社交用"
3236
  "户兼容"
3237
 
3238
+ #: super_socializer.php:2793
3239
  msgid ""
3240
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3241
  "with current version of Super Socializer"
3242
  msgstr ""
3243
  "更新\"社交共享我的CRED集成\"附加组件,以最大限度地兼容当前版本的超级社交"
3244
 
3245
+ #: super_socializer.php:2802
3246
  msgid ""
3247
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3248
  "with current version of Super Socializer"
3249
  msgstr ""
3250
  "更新\"社交登录 myCRED 集成\"附加组件,以最大限度地兼容当前版本的超级社交"
3251
 
3252
+ #: super_socializer.php:2813
3253
  #, php-format
3254
  msgid ""
3255
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3257
  "要继续使用 steam 登录, 请保存 steam api 密钥 < a href = \" %s\" >, 请点击此"
3258
  "处 </a>"
3259
 
3260
+ #: super_socializer.php:2822
3261
  #, php-format
3262
  msgid ""
3263
  "To continue using Instagram login create a new Instagram App as described <a "
3265
  "Instagram App Secret <a href=\"%s\">here</a>"
3266
  msgstr ""
3267
 
3268
+ #: super_socializer.php:2831 super_socializer.php:2840
3269
  #, php-format
3270
  msgid ""
3271
  "To continue using bitly url shortener, login to your bit.ly account and "
3274
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3275
  msgstr ""
3276
 
3277
+ #: super_socializer.php:2856
3278
  #, php-format
3279
  msgid ""
3280
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3281
  msgstr "若要继续使用社交登录, 请在此处保存密钥 < ref = \" %s\" > </a>"
3282
 
3283
+ #: super_socializer.php:2880
3284
  #, php-format
3285
  msgid ""
3286
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3291
  "facebook 登录正常工作。有关更多详细信息, 请在此处检查步骤 9 < ref = \" %s\" "
3292
  "target = \"_ black\" > </a>"
3293
 
3294
+ #: super_socializer.php:2880 super_socializer.php:2905
3295
+ #: super_socializer.php:2930 super_socializer.php:2955
3296
+ #: super_socializer.php:2988 super_socializer.php:3016
3297
+ #: super_socializer.php:3043
3298
  msgid "Okay"
3299
  msgstr "好的"
3300
 
3301
+ #: super_socializer.php:2905
3302
  #, php-format
3303
  msgid ""
3304
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3309
  "关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black\" > </"
3310
  "a>"
3311
 
3312
+ #: super_socializer.php:2930
3313
  #, php-format
3314
  msgid ""
3315
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3320
  "正常工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ "
3321
  "black\" > </a>"
3322
 
3323
+ #: super_socializer.php:2955
3324
  #, php-format
3325
  msgid ""
3326
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3331
  "常工作。有关更多详细信息, 请在此处检查步骤 11 < ref = \" %s\" target = \"_ "
3332
  "black\" > </a>"
3333
 
3334
+ #: super_socializer.php:2966
3335
  #, php-format
3336
  msgid ""
3337
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3338
  msgstr "保存您的网站 < reof = \" %s\" 的隐私政策页面的网址 </a>"
3339
 
3340
+ #: super_socializer.php:2988
3341
  #, php-format
3342
  msgid ""
3343
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3347
  "这个插件是符合GDPR的。您需要更新网站有关此插件保存的个人数据的隐私政策。如 "
3348
  "<a href=\"%s\" target=\"_blank\">这里</a>所述"
3349
 
3350
+ #: super_socializer.php:3016
3351
  #, php-format
3352
  msgid ""
3353
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3356
  "your website %s with them. No need to copy-paste any code from their website."
3357
  msgstr ""
3358
 
3359
+ #: super_socializer.php:3043
3360
  #, php-format
3361
  msgid ""
3362
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3367
  "工作。有关更多详细信息, 请在此处检查步骤 4 < ref = \" %s\" target = \"_ black"
3368
  "\" > </a>"
3369
 
3370
+ #: super_socializer.php:3068
3371
  #, php-format
3372
  msgid ""
3373
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3378
  "替换为您的LinkedIn应用设置 %s 。有关详细信息,请<a href=\"%s\" target="
3379
  "\"_blank\">在此处</a>查看第 6 步"
3380
 
3381
+ #: super_socializer.php:3068 super_socializer.php:3095
3382
  msgid "Dismiss"
3383
  msgstr ""
3384
 
3385
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3386
  msgid ""
3387
  "Your browser is blocking some features of this website. Please follow the "
3388
  "instructions at {support_url} to unblock these."
3390
  "您的浏览器正在阻止此网站的某些功能。请按照 {支持 _ url} 中的说明取消阻止这些"
3391
  "操作。"
3392
 
3393
+ #~ msgid "Dismiss this notice"
3394
+ #~ msgstr "关闭该通知"
3395
+
3396
+ #~ msgid "Facebook Share Count"
3397
+ #~ msgstr "Facebook分享计数"
3398
+
3399
+ #~ msgid ""
3400
+ #~ "Required for Facebook share count to work. Please follow the "
3401
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3402
+ #~ "Facebook App ID"
3403
+ #~ msgstr ""
3404
+ #~ "要使用Facebook共享计数,此功能是必需的。 请按照<a href=\"%s\" target="
3405
+ #~ "\"_blank\">此链接</a>上的文档获取Facebook App ID"
3406
+
3407
+ #~ msgid ""
3408
+ #~ "Required for Facebook share count to work. Please follow the "
3409
+ #~ "documentation at <a href=\"%s\" target=\"_blank\">this link</a> to get "
3410
+ #~ "Facebook App Secret"
3411
+ #~ msgstr ""
3412
+ #~ "要使用Facebook共享计数,此功能是必需的。 请按照<a href=\"%s\" target="
3413
+ #~ "\"_blank\">此链接</a>中的文档操作,以获取Facebook App 秘钥"
3414
+
3415
  #~ msgid "Problem fetching access token: "
3416
  #~ msgstr "获取access token的问题:"
3417
 
languages/super-socializer.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Super Socializer\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2021-06-28 17:18+0530\n"
7
  "PO-Revision-Date: 2021-05-05 13:27+0530\n"
8
  "Last-Translator: Heateor <hello@heateor.com>\n"
9
  "Language-Team: Heateor <hello@heateor.com>\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
- #: admin/social_sharing.php:5 admin/social_sharing.php:1965
25
  #, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
@@ -29,7 +29,7 @@ msgid ""
29
  msgstr ""
30
 
31
  #: admin/general_options.php:15 admin/social_commenting.php:47
32
- #: super_socializer.php:2290
33
  #, fuzzy
34
  msgid "General Options"
35
  msgstr "Opções Gerais"
@@ -88,20 +88,20 @@ msgstr ""
88
 
89
  #: admin/general_options.php:89 admin/like_buttons.php:780
90
  #: admin/social_commenting.php:400 admin/social_login.php:1980
91
- #: admin/social_sharing.php:1961 helper.php:936
92
  #, fuzzy
93
  msgid "Save Changes"
94
  msgstr "Salvar Alterações"
95
 
96
  #: admin/general_options.php:103 admin/like_buttons.php:790
97
  #: admin/social_commenting.php:410 admin/social_login.php:1990
98
- #: admin/social_sharing.php:1971
99
  msgid "Instagram Shoutout"
100
  msgstr ""
101
 
102
  #: admin/general_options.php:105 admin/like_buttons.php:792
103
  #: admin/social_commenting.php:412 admin/social_login.php:1992
104
- #: admin/social_sharing.php:1973
105
  msgid ""
106
  "If you can send (to hello@heateor.com) how this plugin is helping your "
107
  "business, we would be glad to shoutout on Instagram. You can also send any "
@@ -224,29 +224,29 @@ msgstr ""
224
  "Controle mestre dos botões like. Ele deve ser selecionado para habilitar a "
225
  "funcionalidade dos botões like"
226
 
227
- #: admin/like_buttons.php:40 admin/social_sharing.php:57
228
  #, fuzzy
229
  msgid "Standard Interface"
230
  msgstr "Interface Padrão"
231
 
232
- #: admin/like_buttons.php:41 admin/social_sharing.php:58
233
  #, fuzzy
234
  msgid "Floating Interface"
235
  msgstr "Interface Flutuante"
236
 
237
- #: admin/like_buttons.php:42 admin/social_sharing.php:59
238
  #, fuzzy
239
  msgid "Miscellaneous"
240
  msgstr "Miscelânia"
241
 
242
- #: admin/like_buttons.php:46 admin/social_sharing.php:63
243
  msgid "3rd Party Integration"
244
  msgstr ""
245
 
246
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
247
  #: admin/social_login.php:45 admin/social_login.php:1946
248
- #: admin/social_sharing.php:67 admin/social_sharing.php:1886
249
- #: admin/social_sharing.php:1888
250
  #, fuzzy
251
  msgid "Shortcode & Widget"
252
  msgstr "Shortcode & Widget"
@@ -254,7 +254,7 @@ msgstr "Shortcode & Widget"
254
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
255
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
256
  #: admin/social_login.php:46 admin/social_login.php:1960
257
- #: admin/social_sharing.php:69 admin/social_sharing.php:1919
258
  #, fuzzy
259
  msgid "FAQ"
260
  msgstr "P&R"
@@ -275,25 +275,25 @@ msgid "Master control to enable horizontal like buttons"
275
  msgstr "Controle mestre para habiliat botões de like horizontal"
276
 
277
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
278
- #: admin/social_sharing.php:703 admin/social_sharing.php:1124
279
  #, fuzzy
280
  msgid "Target Url"
281
  msgstr "Url Destino"
282
 
283
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
284
- #: admin/social_sharing.php:707 admin/social_sharing.php:1128
285
  #, fuzzy
286
  msgid "Url of the webpage where icons are located (default)"
287
  msgstr "Url das webpages onde os ícones estão localizados (padrão)"
288
 
289
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
290
- #: admin/social_sharing.php:709 admin/social_sharing.php:1130
291
  #, fuzzy
292
  msgid "Url of the homepage of your website"
293
  msgstr "Url da homepage do seu website"
294
 
295
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
296
- #: admin/social_sharing.php:711 admin/social_sharing.php:1132
297
  #, fuzzy
298
  msgid "Custom url"
299
  msgstr "Url personalizada"
@@ -305,7 +305,7 @@ msgstr ""
305
  "Url para like/compartilhar/tweet e exibir contadores like/compartilhar/tweet"
306
 
307
  #: admin/like_buttons.php:105 admin/social_login.php:1231
308
- #: admin/social_login.php:1607 admin/social_sharing.php:725 inc/widget.php:949
309
  #, fuzzy
310
  msgid "Title"
311
  msgstr "Título"
@@ -326,27 +326,27 @@ msgid "Select the providers for interface. Drag them to rearrange."
326
  msgstr "Selecione o provedor da interface. Arraste-os para rearranjar."
327
 
328
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
329
- #: admin/social_sharing.php:912 admin/social_sharing.php:1310
330
  #, fuzzy
331
  msgid "Horizontal alignment"
332
  msgstr "Alinhamento horizonal"
333
 
334
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
335
- #: admin/social_sharing.php:343 admin/social_sharing.php:641
336
- #: admin/social_sharing.php:916 admin/social_sharing.php:1314
337
  #: inc/widget.php:446 inc/widget.php:758
338
  #, fuzzy
339
  msgid "Left"
340
  msgstr "Esquerda"
341
 
342
- #: admin/like_buttons.php:178 admin/social_sharing.php:917
343
  #, fuzzy
344
  msgid "Center"
345
  msgstr "Centro"
346
 
347
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
348
- #: admin/social_sharing.php:347 admin/social_sharing.php:645
349
- #: admin/social_sharing.php:918 admin/social_sharing.php:1315
350
  #: inc/widget.php:447 inc/widget.php:759
351
  #, fuzzy
352
  msgid "Right"
@@ -357,17 +357,17 @@ msgstr "Direita"
357
  msgid "Horizontal alignment of the interface"
358
  msgstr "Alinhamento horizontal da interface"
359
 
360
- #: admin/like_buttons.php:194 admin/social_sharing.php:933
361
  #, fuzzy
362
  msgid "Position with respect to content"
363
  msgstr "Posição em relação ao conteúdo"
364
 
365
- #: admin/like_buttons.php:198 admin/social_sharing.php:937
366
  #, fuzzy
367
  msgid "Top of the content"
368
  msgstr "Acima do conteúdo"
369
 
370
- #: admin/like_buttons.php:200 admin/social_sharing.php:939
371
  #, fuzzy
372
  msgid "Bottom of the content"
373
  msgstr "Abaixo do conteúdo"
@@ -384,78 +384,78 @@ msgstr "Localização da interface"
384
 
385
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
386
  #: admin/social_login.php:1548 admin/social_login.php:1577
387
- #: admin/social_sharing.php:957 admin/social_sharing.php:1389
388
  #, fuzzy
389
  msgid "Homepage"
390
  msgstr "Homepage"
391
 
392
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
393
- #: admin/social_sharing.php:959 admin/social_sharing.php:1391
394
  #, fuzzy
395
  msgid "Posts"
396
  msgstr "Posts"
397
 
398
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
399
- #: admin/social_sharing.php:961 admin/social_sharing.php:1393
400
  #, fuzzy
401
  msgid "Pages"
402
  msgstr "Páginas"
403
 
404
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
405
- #: admin/social_sharing.php:963 admin/social_sharing.php:1395
406
  msgid "Excerpts and Posts page"
407
  msgstr ""
408
 
409
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
410
- #: admin/social_sharing.php:965 admin/social_sharing.php:1397
411
  #, fuzzy
412
  msgid "Category Archives"
413
  msgstr "Arquivos de Categorias"
414
 
415
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
416
- #: admin/social_sharing.php:967 admin/social_sharing.php:1399
417
  #, fuzzy
418
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
419
  msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
420
 
421
- #: admin/like_buttons.php:244 admin/social_sharing.php:983
422
  #, fuzzy
423
  msgid "BuddyPress activity"
424
  msgstr "Atividade BuddyPress"
425
 
426
- #: admin/like_buttons.php:247 admin/social_sharing.php:985
427
  #, fuzzy
428
  msgid "BuddyPress group (only at top of content)"
429
  msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
430
 
431
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
432
- #: admin/social_sharing.php:991 admin/social_sharing.php:1421
433
  #, fuzzy
434
  msgid "BBPress forum"
435
  msgstr "Forum BBPress"
436
 
437
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
438
- #: admin/social_sharing.php:994 admin/social_sharing.php:1424
439
  #, fuzzy
440
  msgid "BBPress topic"
441
  msgstr "Tópico BBPress"
442
 
443
- #: admin/like_buttons.php:260 admin/social_sharing.php:997
444
  #, fuzzy
445
  msgid "BBPress reply"
446
  msgstr "Responder BBPress"
447
 
448
- #: admin/like_buttons.php:267 admin/social_sharing.php:1004
449
  #, fuzzy
450
  msgid "After individual product at WooCommerce Shop page"
451
  msgstr "Depois de produtos individuais na página WooCommerce Shop"
452
 
453
- #: admin/like_buttons.php:270 admin/social_sharing.php:1007
454
  #, fuzzy
455
  msgid "WooCommerce Product Page"
456
  msgstr "Página de Produtos WooCommerce"
457
 
458
- #: admin/like_buttons.php:273 admin/social_sharing.php:1010
459
  #, fuzzy
460
  msgid "WooCommerce Thankyou Page"
461
  msgstr "Página de Agradecimento WooCommerce"
@@ -480,8 +480,8 @@ msgstr "Habilitar botões like flutuantes"
480
  msgid "Master control to enable vertical (floating) counter widget"
481
  msgstr "Controle mestre para habilitar widget contador vertical (flutuante)"
482
 
483
- #: admin/like_buttons.php:398 admin/social_sharing.php:295
484
- #: admin/social_sharing.php:594 admin/social_sharing.php:1293
485
  #: inc/widget.php:460 inc/widget.php:772
486
  #, fuzzy
487
  msgid "Background Color"
@@ -500,7 +500,7 @@ msgstr ""
500
  "hexadecimal de uma cor desejada <a href=\\\"http://www.colorpicker.com/\\\" "
501
  "target=\\\"_blank\\\">neste link</a>"
502
 
503
- #: admin/like_buttons.php:436 admin/social_sharing.php:1331
504
  #, fuzzy
505
  msgid "Left offset"
506
  msgstr "Ajuste à esquerda"
@@ -515,7 +515,7 @@ msgstr ""
515
  "direita e decrementos deslocam para a esquerda. Os números podem ser "
516
  "negativos também."
517
 
518
- #: admin/like_buttons.php:455 admin/social_sharing.php:1350
519
  #, fuzzy
520
  msgid "Right offset"
521
  msgstr "Ajuste à direita"
@@ -530,7 +530,7 @@ msgstr ""
530
  "esquerda e decrementos deslocam para a direita. Os números podem ser "
531
  "negativos também."
532
 
533
- #: admin/like_buttons.php:473 admin/social_sharing.php:1368
534
  #, fuzzy
535
  msgid "Top offset"
536
  msgstr "Ajuste acima"
@@ -544,7 +544,7 @@ msgstr ""
544
  "Especifique um número. Incrementos no número deslocam a interface para baixo "
545
  "e decrementos deslocam para cima."
546
 
547
- #: admin/like_buttons.php:518 admin/social_sharing.php:1413
548
  #, fuzzy
549
  msgid "BuddyPress group"
550
  msgstr "Grupo BuddyPress"
@@ -565,7 +565,7 @@ msgid "If enabled, vertical like buttons will not appear on mobile devices"
565
  msgstr ""
566
  "Se habilitado, botões de like vertical não aparecerão em dispositivos móveis"
567
 
568
- #: admin/like_buttons.php:574 admin/social_sharing.php:1632
569
  #, fuzzy
570
  msgid "Url shortener"
571
  msgstr "Encurtador de Url"
@@ -589,17 +589,17 @@ msgstr ""
589
  msgid "Enable bit.ly url shortener for tweet button"
590
  msgstr "Habilitar bit.ly url shortener para botões tweet"
591
 
592
- #: admin/like_buttons.php:606 admin/social_sharing.php:1664
593
  #, fuzzy
594
  msgid "Master control to enable bit.ly url shortening for sharing"
595
  msgstr ""
596
  "Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
597
 
598
- #: admin/like_buttons.php:613 admin/social_sharing.php:1671
599
  msgid "Bit.ly generic access token"
600
  msgstr ""
601
 
602
- #: admin/like_buttons.php:623 admin/social_sharing.php:1681
603
  #, php-format
604
  msgid ""
605
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
@@ -608,17 +608,17 @@ msgid ""
608
  "\">link</a>"
609
  msgstr ""
610
 
611
- #: admin/like_buttons.php:630 admin/social_sharing.php:1688
612
  #, fuzzy
613
  msgid "Clear Bitly Cache"
614
  msgstr "Limpar o Cache Bitly"
615
 
616
- #: admin/like_buttons.php:634 admin/social_sharing.php:1692
617
  #, fuzzy
618
  msgid "ShortUrl cache cleared successfully."
619
  msgstr "Cache ShortUrl limpo com sucesso."
620
 
621
- #: admin/like_buttons.php:641 admin/social_sharing.php:1699
622
  #, fuzzy
623
  msgid ""
624
  "Use this to delete short urls saved in database. Handy, if urls of your "
@@ -630,8 +630,8 @@ msgstr ""
630
  "geradas para suas urls antigas."
631
 
632
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
633
- #: admin/social_commenting.php:304 admin/social_sharing.php:1761
634
- #: admin/social_sharing.php:1766
635
  #, fuzzy
636
  msgid "Language"
637
  msgstr "Languagem"
@@ -681,11 +681,11 @@ msgstr ""
681
  "compartilhamento como \\\"via @USERNAME\\\". Deixe vazio se você não deseja "
682
  "nenhum username."
683
 
684
- #: admin/like_buttons.php:726 admin/social_sharing.php:1861
685
  msgid "myCRED"
686
  msgstr ""
687
 
688
- #: admin/like_buttons.php:731 admin/social_sharing.php:1866
689
  msgid "Append myCRED referral ID to the urls being shared"
690
  msgstr ""
691
 
@@ -694,15 +694,15 @@ msgstr ""
694
  msgid "Like Buttons Shortcode & Widget"
695
  msgstr "Botões Like Shortcode & Widget"
696
 
697
- #: admin/like_buttons.php:766 admin/social_sharing.php:1949
698
  msgid "Why is there so much space between like buttons?"
699
  msgstr ""
700
 
701
- #: admin/like_buttons.php:767 admin/social_sharing.php:1950
702
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
703
  msgstr ""
704
 
705
- #: admin/like_buttons.php:768 admin/social_sharing.php:1934
706
  msgid "How to Place Title and Social Share Icons in the Same Row?"
707
  msgstr ""
708
 
@@ -951,7 +951,7 @@ msgid "Social Commenting Shortcode"
951
  msgstr "Shortcode em Comentário Social"
952
 
953
  #: admin/social_commenting.php:386 admin/social_login.php:1962
954
- #: admin/social_sharing.php:1921
955
  msgid ""
956
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
957
  "an online website for the plugin to function properly."
@@ -969,7 +969,7 @@ msgid ""
969
  msgstr ""
970
 
971
  #: admin/social_commenting.php:389 admin/social_login.php:1969
972
- #: admin/social_sharing.php:1936
973
  msgid "Why is my browser blocking some features of the plugin?"
974
  msgstr ""
975
 
@@ -1009,7 +1009,7 @@ msgid "Advanced Configuration"
1009
  msgstr ""
1010
 
1011
  #: admin/social_login.php:41 admin/social_login.php:1746
1012
- #: super_socializer.php:2358
1013
  msgid "GDPR"
1014
  msgstr ""
1015
 
@@ -1171,7 +1171,7 @@ msgid "Select Social ID provider to enable in Social Login"
1171
  msgstr ""
1172
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1173
 
1174
- #: admin/social_login.php:226 admin/social_sharing.php:1596
1175
  #, fuzzy
1176
  msgid "Facebook App ID"
1177
  msgstr "Facebook App ID"
@@ -1191,7 +1191,7 @@ msgid ""
1191
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1192
  msgstr ""
1193
 
1194
- #: admin/social_login.php:247 admin/social_sharing.php:1613
1195
  msgid "Facebook App Secret"
1196
  msgstr ""
1197
 
@@ -2000,7 +2000,7 @@ msgstr ""
2000
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2001
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2002
 
2003
- #: admin/social_login.php:1490 super_socializer.php:1957
2004
  #, fuzzy
2005
  msgid "Email required"
2006
  msgstr "Necessário email"
@@ -2306,38 +2306,27 @@ msgstr "Controle mestre para habilitar o Compartilhamento Social"
2306
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2307
  msgstr ""
2308
 
2309
- #: admin/social_sharing.php:49 admin/social_sharing.php:1924
2310
- msgid ""
2311
- "Save Facebook App Id and Secret in the \"Miscellaneous\" section for "
2312
- "Facebook share count to work"
2313
- msgstr ""
2314
-
2315
- #: admin/social_sharing.php:49
2316
- #, fuzzy
2317
- msgid "Dismiss this notice"
2318
- msgstr "Dispense este aviso"
2319
-
2320
- #: admin/social_sharing.php:56
2321
  #, fuzzy
2322
  msgid "Theme Selection"
2323
  msgstr "Escolha de Temas"
2324
 
2325
- #: admin/social_sharing.php:68
2326
  #, fuzzy
2327
  msgid "Troubleshooter"
2328
  msgstr "Resolução de Problemas"
2329
 
2330
- #: admin/social_sharing.php:77
2331
  #, fuzzy
2332
  msgid "Standard interface theme"
2333
  msgstr "Tema padrão da interface"
2334
 
2335
- #: admin/social_sharing.php:82 admin/social_sharing.php:380
2336
  #, fuzzy
2337
  msgid "Icon Preview"
2338
  msgstr "Visualização do Ícone"
2339
 
2340
- #: admin/social_sharing.php:154 admin/social_sharing.php:453
2341
  #, fuzzy
2342
  msgid ""
2343
  "Do not forget to save the configuration after making changes by clicking the "
@@ -2346,67 +2335,67 @@ msgstr ""
2346
  "Não esqueça de salvar as configurações após realizar as mudanças clicando no "
2347
  "botão de salvar abaixo"
2348
 
2349
- #: admin/social_sharing.php:160 admin/social_sharing.php:459
2350
  #, fuzzy
2351
  msgid "Shape"
2352
  msgstr "Forma"
2353
 
2354
- #: admin/social_sharing.php:164 admin/social_sharing.php:463 inc/widget.php:955
2355
  #, fuzzy
2356
  msgid "Round"
2357
  msgstr "Arredondada"
2358
 
2359
- #: admin/social_sharing.php:166 admin/social_sharing.php:465 inc/widget.php:956
2360
  #, fuzzy
2361
  msgid "Square"
2362
  msgstr "Quadrada"
2363
 
2364
- #: admin/social_sharing.php:168 admin/social_sharing.php:467
2365
  #, fuzzy
2366
  msgid "Rectangle"
2367
  msgstr "Retangular"
2368
 
2369
- #: admin/social_sharing.php:175 admin/social_sharing.php:474
2370
  #, fuzzy
2371
  msgid "Shape of the sharing icons"
2372
  msgstr "Forma dos ícones de compartilhameto"
2373
 
2374
- #: admin/social_sharing.php:183 admin/social_sharing.php:482
2375
  #, fuzzy
2376
  msgid "Size (in pixels)"
2377
  msgstr "Tamanho (em pixels)"
2378
 
2379
- #: admin/social_sharing.php:199 admin/social_sharing.php:498
2380
  #, fuzzy
2381
  msgid "Size of the sharing icons"
2382
  msgstr "Tamanho dos ícones de compartilhameto"
2383
 
2384
- #: admin/social_sharing.php:208 admin/social_sharing.php:507
2385
  #, fuzzy
2386
  msgid "Width (in pixels)"
2387
  msgstr "Largura (em pixels)"
2388
 
2389
- #: admin/social_sharing.php:224 admin/social_sharing.php:523
2390
  #, fuzzy
2391
  msgid "Width of the sharing icons"
2392
  msgstr "Largura dos ícones de compartilhameto"
2393
 
2394
- #: admin/social_sharing.php:231 admin/social_sharing.php:530
2395
  #, fuzzy
2396
  msgid "Height (in pixels)"
2397
  msgstr "Altura (em pixels)"
2398
 
2399
- #: admin/social_sharing.php:247 admin/social_sharing.php:546
2400
  #, fuzzy
2401
  msgid "Height of the sharing icons"
2402
  msgstr "Altura dos ícones de compartilhameto"
2403
 
2404
- #: admin/social_sharing.php:256 admin/social_sharing.php:555
2405
  #, fuzzy
2406
  msgid "Border radius (in pixels)"
2407
  msgstr "Raio da borda (em pixels)"
2408
 
2409
- #: admin/social_sharing.php:266 admin/social_sharing.php:565
2410
  #, fuzzy
2411
  msgid ""
2412
  "Specify a value for rounded corners. More the value, more rounded will the "
@@ -2415,26 +2404,26 @@ msgstr ""
2415
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
2416
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
2417
 
2418
- #: admin/social_sharing.php:274 admin/social_sharing.php:573
2419
  #, fuzzy
2420
  msgid "Logo Color"
2421
  msgstr "Cor do logo"
2422
 
2423
- #: admin/social_sharing.php:278 admin/social_sharing.php:298
2424
- #: admin/social_sharing.php:317 admin/social_sharing.php:577
2425
- #: admin/social_sharing.php:597 admin/social_sharing.php:615
2426
  #, fuzzy
2427
  msgid "Default"
2428
  msgstr "Padrão"
2429
 
2430
- #: admin/social_sharing.php:280 admin/social_sharing.php:299
2431
- #: admin/social_sharing.php:322 admin/social_sharing.php:579
2432
- #: admin/social_sharing.php:598 admin/social_sharing.php:620
2433
  #, fuzzy
2434
  msgid "On Hover"
2435
  msgstr "Em foco"
2436
 
2437
- #: admin/social_sharing.php:288 admin/social_sharing.php:587
2438
  #, fuzzy
2439
  msgid ""
2440
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
@@ -2446,7 +2435,7 @@ msgstr ""
2446
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2447
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2448
 
2449
- #: admin/social_sharing.php:306 admin/social_sharing.php:605
2450
  #, fuzzy
2451
  msgid ""
2452
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
@@ -2460,184 +2449,184 @@ msgstr ""
2460
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2461
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2462
 
2463
- #: admin/social_sharing.php:313 admin/social_sharing.php:612
2464
  #, fuzzy
2465
  msgid "Border"
2466
  msgstr "Borda"
2467
 
2468
- #: admin/social_sharing.php:319 admin/social_sharing.php:324
2469
- #: admin/social_sharing.php:617 admin/social_sharing.php:622
2470
  #, fuzzy
2471
  msgid "Border Width"
2472
  msgstr "Largura da Borda"
2473
 
2474
- #: admin/social_sharing.php:320 admin/social_sharing.php:325
2475
- #: admin/social_sharing.php:618 admin/social_sharing.php:623
2476
  #, fuzzy
2477
  msgid "Border Color"
2478
  msgstr "Cor da Borda"
2479
 
2480
- #: admin/social_sharing.php:332 admin/social_sharing.php:630
2481
  #, fuzzy
2482
  msgid "Icon border"
2483
  msgstr "Ícone da borda"
2484
 
2485
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2486
  #, fuzzy
2487
  msgid "Counter Position"
2488
  msgstr "Posição do Contador"
2489
 
2490
- #: admin/social_sharing.php:339 admin/social_sharing.php:637
2491
  #, fuzzy
2492
  msgid "(applies, if counter enabled)"
2493
  msgstr "(aplica-se, caso o contador esteja habilitado)"
2494
 
2495
- #: admin/social_sharing.php:345 admin/social_sharing.php:643
2496
  #, fuzzy
2497
  msgid "Top"
2498
  msgstr "Acima"
2499
 
2500
- #: admin/social_sharing.php:349 admin/social_sharing.php:647
2501
  #, fuzzy
2502
  msgid "Bottom"
2503
  msgstr "Abaixo"
2504
 
2505
- #: admin/social_sharing.php:351 admin/social_sharing.php:649
2506
  #, fuzzy
2507
  msgid "Inner Left"
2508
  msgstr "Inner a Esquerda"
2509
 
2510
- #: admin/social_sharing.php:353 admin/social_sharing.php:651
2511
  #, fuzzy
2512
  msgid "Inner Top"
2513
  msgstr "Inner Acima"
2514
 
2515
- #: admin/social_sharing.php:355 admin/social_sharing.php:653
2516
  #, fuzzy
2517
  msgid "Inner Right"
2518
  msgstr "Inner a Direita"
2519
 
2520
- #: admin/social_sharing.php:357 admin/social_sharing.php:655
2521
  #, fuzzy
2522
  msgid "Inner Bottom"
2523
  msgstr "Inner a Baixo"
2524
 
2525
- #: admin/social_sharing.php:365 admin/social_sharing.php:663
2526
  #, fuzzy
2527
  msgid "Position of share counter"
2528
  msgstr "Posição do contador de compartilhamento"
2529
 
2530
- #: admin/social_sharing.php:375
2531
  #, fuzzy
2532
  msgid "Floating interface theme"
2533
  msgstr "Tema da inteface flutuante"
2534
 
2535
- #: admin/social_sharing.php:679
2536
  #, fuzzy
2537
  msgid "Standard Sharing Interface Options"
2538
  msgstr "Opções de Interface de Compartilhamento Padrão"
2539
 
2540
- #: admin/social_sharing.php:684
2541
  #, fuzzy
2542
  msgid "Enable Standard sharing interface"
2543
  msgstr "Habilita interface de Compartilhamento padrão"
2544
 
2545
- #: admin/social_sharing.php:694
2546
  #, fuzzy
2547
  msgid "Master control to enable standard sharing"
2548
  msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
2549
 
2550
- #: admin/social_sharing.php:718 admin/social_sharing.php:1139
2551
  #, fuzzy
2552
  msgid "Url to share"
2553
  msgstr "Url para compartilhar"
2554
 
2555
- #: admin/social_sharing.php:735
2556
  #, fuzzy
2557
  msgid "The text to display above the sharing interface"
2558
  msgstr "Texto a ser exibido acima da interface de compartilhamento"
2559
 
2560
- #: admin/social_sharing.php:759 admin/social_sharing.php:1147
2561
  msgid "Instagram username"
2562
  msgstr ""
2563
 
2564
- #: admin/social_sharing.php:769 admin/social_sharing.php:1157
2565
  msgid ""
2566
  "Username of the Instagram account you want to redirect users to, on clicking "
2567
  "the icon"
2568
  msgstr ""
2569
 
2570
- #: admin/social_sharing.php:778 admin/social_sharing.php:1166
2571
  msgid "HTML ID of container element of comment form"
2572
  msgstr ""
2573
 
2574
- #: admin/social_sharing.php:788 admin/social_sharing.php:1176
2575
  msgid ""
2576
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2577
  "icon."
2578
  msgstr ""
2579
 
2580
- #: admin/social_sharing.php:801 admin/social_sharing.php:1184
2581
  #, fuzzy
2582
  msgid "Rearrange icons"
2583
  msgstr "Rearranjar ícones"
2584
 
2585
- #: admin/social_sharing.php:862 admin/social_sharing.php:1243
2586
  #, fuzzy
2587
  msgid "Drag the icons to rearrange in desired order"
2588
  msgstr "Arraste os ícones para rearanjar na ordem desejada"
2589
 
2590
- #: admin/social_sharing.php:869 admin/social_sharing.php:1250
2591
  #, fuzzy
2592
  msgid "Select Sharing Services"
2593
  msgstr "Selecione os Serviços Compartilhados"
2594
 
2595
- #: admin/social_sharing.php:876 admin/social_sharing.php:1257
2596
  #, fuzzy
2597
  msgid "Select sharing services to show in social share bar"
2598
  msgstr ""
2599
  "Selecione os serviços compartilhados para exibir na barra de "
2600
  "compartilhamento social"
2601
 
2602
- #: admin/social_sharing.php:894 admin/social_sharing.php:1275
2603
  msgid "Search social network"
2604
  msgstr ""
2605
 
2606
- #: admin/social_sharing.php:926 admin/social_sharing.php:1323
2607
  #, fuzzy
2608
  msgid "Horizontal alignment of the sharing interface"
2609
  msgstr "Alinhamento horizontal da interface de compartilhamento"
2610
 
2611
- #: admin/social_sharing.php:946
2612
  #, fuzzy
2613
  msgid "Specify position of the sharing interface with respect to the content"
2614
  msgstr ""
2615
  "Especifique a posição da interface de compartilhamento em relação ao conteúdo"
2616
 
2617
- #: admin/social_sharing.php:953 admin/social_sharing.php:1385
2618
  #, fuzzy
2619
  msgid "Placement"
2620
  msgstr "Localização"
2621
 
2622
- #: admin/social_sharing.php:1021
2623
  #, fuzzy
2624
  msgid "Specify the pages where you want to enable Sharing interface"
2625
  msgstr ""
2626
  "Especifique as páginas onde você deseja habilitar a interface de "
2627
  "compartilhamento"
2628
 
2629
- #: admin/social_sharing.php:1028 admin/social_sharing.php:1441
2630
  #, fuzzy
2631
  msgid "Show share counts"
2632
  msgstr "Exibir contadores de compartilhamento"
2633
 
2634
- #: admin/social_sharing.php:1033 admin/social_sharing.php:1446
2635
  msgid ""
2636
  "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2637
  "Odnoklassniki, Fintel and Vkontakte"
2638
  msgstr ""
2639
 
2640
- #: admin/social_sharing.php:1034 admin/social_sharing.php:1447
2641
  #, php-format
2642
  msgid ""
2643
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
@@ -2646,36 +2635,36 @@ msgid ""
2646
  "their website."
2647
  msgstr ""
2648
 
2649
- #: admin/social_sharing.php:1041 admin/social_sharing.php:1454
2650
  #, fuzzy
2651
  msgid "If enabled, share counts are displayed above sharing icons."
2652
  msgstr ""
2653
  "Se habilitado, os contadores de compartilhamento são exibidos acima dos "
2654
  "ícones de compartilhamento."
2655
 
2656
- #: admin/social_sharing.php:1049 admin/social_sharing.php:1462
2657
- #: admin/social_sharing.php:1708
2658
  msgid "Track Social Shares for Every Social Network"
2659
  msgstr ""
2660
 
2661
- #: admin/social_sharing.php:1055 admin/social_sharing.php:1468
2662
  #, fuzzy
2663
  msgid "Show total shares"
2664
  msgstr "Exibe total de compartilhamentos"
2665
 
2666
- #: admin/social_sharing.php:1065 admin/social_sharing.php:1478
2667
  #, fuzzy
2668
  msgid "If enabled, total shares will be displayed with sharing icons"
2669
  msgstr ""
2670
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
2671
  "de compartilhamento"
2672
 
2673
- #: admin/social_sharing.php:1073 admin/social_sharing.php:1486
2674
  #, fuzzy
2675
  msgid "Enable 'More' icon"
2676
  msgstr "Habilitar 'Mais' ícones"
2677
 
2678
- #: admin/social_sharing.php:1083 admin/social_sharing.php:1496
2679
  #, fuzzy
2680
  msgid ""
2681
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
@@ -2685,22 +2674,22 @@ msgstr ""
2685
  "de compartilhamento com a exibição adicional das redes sociais "
2686
  "compartilhadas em um popup"
2687
 
2688
- #: admin/social_sharing.php:1100
2689
  #, fuzzy
2690
  msgid "Floating Sharing Interface Options"
2691
  msgstr "Opções da Interface de Compartilhamento Flutuante"
2692
 
2693
- #: admin/social_sharing.php:1105
2694
  #, fuzzy
2695
  msgid "Enable Floating sharing interface"
2696
  msgstr "Habilita interface de compartilhamento flutuante"
2697
 
2698
- #: admin/social_sharing.php:1115
2699
  #, fuzzy
2700
  msgid "Master control to enable floating sharing widget"
2701
  msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
2702
 
2703
- #: admin/social_sharing.php:1303
2704
  #, fuzzy
2705
  msgid ""
2706
  "Specify the color or hex code (example #cc78e0) for the background of "
@@ -2713,7 +2702,7 @@ msgstr ""
2713
  "Você pode obter o código hexadecimal que você requer por meio deste link <a "
2714
  "href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2715
 
2716
- #: admin/social_sharing.php:1341
2717
  #, fuzzy
2718
  msgid ""
2719
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -2724,7 +2713,7 @@ msgstr ""
2724
  "interface de compartilhamento para a esquerda. Os números podem também ser "
2725
  "negativos."
2726
 
2727
- #: admin/social_sharing.php:1360
2728
  #, fuzzy
2729
  msgid ""
2730
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -2735,7 +2724,7 @@ msgstr ""
2735
  "interface de compartilhamento para a direita. Os números podem também ser "
2736
  "negativos."
2737
 
2738
- #: admin/social_sharing.php:1378
2739
  #, fuzzy
2740
  msgid ""
2741
  "Specify a number. Increase in number will shift sharing interface towards "
@@ -2745,33 +2734,33 @@ msgstr ""
2745
  "compartilhamento para baixo e decrementos no número irão deslocar a "
2746
  "interface de compartilhamento para cima."
2747
 
2748
- #: admin/social_sharing.php:1434
2749
  #, fuzzy
2750
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2751
  msgstr ""
2752
  "Especifique as páginas onde você deseja habilitar a interface de "
2753
  "compartilhamento vertical"
2754
 
2755
- #: admin/social_sharing.php:1503
2756
  msgid "Hide floating slider"
2757
  msgstr ""
2758
 
2759
- #: admin/social_sharing.php:1513
2760
  msgid "Hides the slider arrow present below the floating share bar"
2761
  msgstr ""
2762
 
2763
- #: admin/social_sharing.php:1520
2764
  #, fuzzy
2765
  msgid "Vertical floating bar responsiveness"
2766
  msgstr "Sensibilidade da barra flutuante vertical"
2767
 
2768
- #: admin/social_sharing.php:1523
2769
  #, fuzzy, php-format
2770
  msgid "Display vertical interface only when screen is wider than %s pixels"
2771
  msgstr ""
2772
  "Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
2773
 
2774
- #: admin/social_sharing.php:1530
2775
  #, fuzzy
2776
  msgid ""
2777
  "Display vertical interface only when screen is wider than the width "
@@ -2780,12 +2769,12 @@ msgstr ""
2780
  "Exibe interface vertical apenas quando a tela é mais larga que a largura "
2781
  "especificada."
2782
 
2783
- #: admin/social_sharing.php:1537
2784
  #, fuzzy
2785
  msgid "Horizontal floating bar responsiveness"
2786
  msgstr "Sensibilidade da barra flutuante horizontal"
2787
 
2788
- #: admin/social_sharing.php:1540
2789
  #, fuzzy, php-format
2790
  msgid ""
2791
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2794,7 +2783,7 @@ msgstr ""
2794
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2795
  "quando a tela é mais estreita do que %s pixels"
2796
 
2797
- #: admin/social_sharing.php:1547
2798
  #, fuzzy
2799
  msgid ""
2800
  "Stick vertical floating interface horizontally at bottom only when screen is "
@@ -2803,96 +2792,70 @@ msgstr ""
2803
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2804
  "quando a tela é mais estreita do que a largura especificada"
2805
 
2806
- #: admin/social_sharing.php:1556
2807
  #, fuzzy
2808
  msgid "Horizontal floating bar position"
2809
  msgstr "Posição da barra de flutuação horizontal"
2810
 
2811
- #: admin/social_sharing.php:1559
2812
  #, fuzzy, php-format
2813
  msgid "%s pixels from %s"
2814
  msgstr "%s pixels de %s"
2815
 
2816
- #: admin/social_sharing.php:1560
2817
  msgid "Auto-adjust according to screen width (responsive)"
2818
  msgstr ""
2819
 
2820
- #: admin/social_sharing.php:1567
2821
  #, fuzzy
2822
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2823
  msgstr ""
2824
  "Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
2825
  "também."
2826
 
2827
- #: admin/social_sharing.php:1587
2828
- msgid "Facebook Share Count"
2829
- msgstr ""
2830
-
2831
- #: admin/social_sharing.php:1591
2832
- msgid "Note"
2833
- msgstr ""
2834
-
2835
- #: admin/social_sharing.php:1591
2836
- msgid "Required only to track Facebook share count"
2837
- msgstr ""
2838
-
2839
- #: admin/social_sharing.php:1606
2840
- #, php-format
2841
- msgid ""
2842
- "Required for Facebook share count to work. Please follow the documentation "
2843
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App ID"
2844
- msgstr ""
2845
-
2846
- #: admin/social_sharing.php:1623
2847
- #, php-format
2848
- msgid ""
2849
- "Required for Facebook share count to work. Please follow the documentation "
2850
- "at <a href=\"%s\" target=\"_blank\">this link</a> to get Facebook App Secret"
2851
- msgstr ""
2852
-
2853
- #: admin/social_sharing.php:1637
2854
  #, fuzzy
2855
  msgid "Use shortlinks already installed"
2856
  msgstr "Use shortlinks já instalados"
2857
 
2858
- #: admin/social_sharing.php:1647
2859
  #, fuzzy
2860
  msgid "Uses default short url permalinks without using any additional plugin"
2861
  msgstr ""
2862
  "Use a short url padrão de permalinks sem utilizar nenhum plugin adicional"
2863
 
2864
- #: admin/social_sharing.php:1654
2865
  #, fuzzy
2866
  msgid "Enable bit.ly url shortener for sharing"
2867
  msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
2868
 
2869
- #: admin/social_sharing.php:1713
2870
  #, fuzzy
2871
  msgid "Share Count Cache"
2872
  msgstr "Cache de Contador de Compartilhamento"
2873
 
2874
- #: admin/social_sharing.php:1718
2875
  #, fuzzy
2876
  msgid "Refresh Share Count cache every"
2877
  msgstr "Atualizar o contador de compartilhamento a cada"
2878
 
2879
- #: admin/social_sharing.php:1723
2880
  msgid "Second(s)"
2881
  msgstr ""
2882
 
2883
- #: admin/social_sharing.php:1724
2884
  msgid "Minute(s)"
2885
  msgstr ""
2886
 
2887
- #: admin/social_sharing.php:1725
2888
  msgid "Hour(s)"
2889
  msgstr ""
2890
 
2891
- #: admin/social_sharing.php:1726
2892
  msgid "Day(s)"
2893
  msgstr ""
2894
 
2895
- #: admin/social_sharing.php:1734
2896
  #, php-format
2897
  msgid ""
2898
  "Frequent cache refreshing results in slower loading of pages with share "
@@ -2900,22 +2863,22 @@ msgid ""
2900
  "target=\"_blank\">here</a>"
2901
  msgstr ""
2902
 
2903
- #: admin/social_sharing.php:1741
2904
  #, fuzzy
2905
  msgid "Clear Share Counts Cache"
2906
  msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
2907
 
2908
- #: admin/social_sharing.php:1745
2909
  #, fuzzy
2910
  msgid "Share Counts cache cleared successfully."
2911
  msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
2912
 
2913
- #: admin/social_sharing.php:1752
2914
  #, fuzzy
2915
  msgid "Use this to clear cached share counts"
2916
  msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
2917
 
2918
- #: admin/social_sharing.php:1776
2919
  #, fuzzy, php-format
2920
  msgid ""
2921
  "Enter the code of the language you want to use for like buttons. You can "
@@ -2926,17 +2889,17 @@ msgstr ""
2926
  "achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
2927
  "link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
2928
 
2929
- #: admin/social_sharing.php:1785
2930
  #, fuzzy
2931
  msgid "Username in sharing"
2932
  msgstr "Username no compartilhamento"
2933
 
2934
- #: admin/social_sharing.php:1790
2935
  #, fuzzy
2936
  msgid "Twitter username (without @)"
2937
  msgstr "Username do Twitter (sem @)"
2938
 
2939
- #: admin/social_sharing.php:1800 admin/social_sharing.php:1818
2940
  #, fuzzy
2941
  msgid ""
2942
  "Provided username will be appended after the content being shared as \"via "
@@ -2947,50 +2910,59 @@ msgstr ""
2947
  "\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
2948
  "no conteúdo sendo compartilhado."
2949
 
2950
- #: admin/social_sharing.php:1808
2951
  #, fuzzy
2952
  msgid "Buffer username (without @)"
2953
  msgstr "Username do Buffer (sem @)"
2954
 
2955
- #: admin/social_sharing.php:1827
2956
  msgid "AMP"
2957
  msgstr ""
2958
 
2959
- #: admin/social_sharing.php:1832
2960
  msgid "Enable sharing on AMP pages"
2961
  msgstr ""
2962
 
2963
- #: admin/social_sharing.php:1842
2964
  msgid "Enable this option to render sharing icons on AMP pages"
2965
  msgstr ""
2966
 
2967
- #: admin/social_sharing.php:1899
2968
  #, fuzzy
2969
  msgid "Facebook Sharing Troubleshooter"
2970
  msgstr "Solução de problema no compartilhamento com o Facebook"
2971
 
2972
- #: admin/social_sharing.php:1904
2973
  msgid ""
2974
  "If Facebook sharing is not working fine, click at the following link and "
2975
  "enter the problematic url (where Facebook sharing is not working properly) "
2976
  "of your website in the text field. Click \"Debug\" button."
2977
  msgstr ""
2978
 
2979
- #: admin/social_sharing.php:1922
2980
  msgid ""
2981
  "Why is sharer not showing the correct image, title and other meta tags "
2982
  "content?"
2983
  msgstr ""
2984
 
2985
- #: admin/social_sharing.php:1923
2986
  msgid "Why is Facebook share count not working?"
2987
  msgstr ""
2988
 
2989
- #: admin/social_sharing.php:1926
 
 
 
 
 
 
 
 
 
2990
  msgid "Why is Instagram icon redirecting to Instagram website?"
2991
  msgstr ""
2992
 
2993
- #: admin/social_sharing.php:1927
2994
  msgid ""
2995
  "Instagram icon is there to send website visitors to the Instagram page of "
2996
  "your choice. You can save the desired Instagram handle in \"Instagram "
@@ -2998,36 +2970,36 @@ msgid ""
2998
  "sections."
2999
  msgstr ""
3000
 
3001
- #: admin/social_sharing.php:1930
3002
  msgid "How to customize the url being shared?"
3003
  msgstr ""
3004
 
3005
- #: admin/social_sharing.php:1931
3006
  msgid ""
3007
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
3008
  msgstr ""
3009
 
3010
- #: admin/social_sharing.php:1932
3011
  msgid ""
3012
  "It takes some time for their service to track the shares made on Twitter "
3013
  "from your website. If you still feel it's taking too long you can contact "
3014
  "their support directly from their website."
3015
  msgstr ""
3016
 
3017
- #: admin/social_sharing.php:1935
3018
  msgid ""
3019
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
3020
  msgstr ""
3021
 
3022
- #: admin/social_sharing.php:1937
3023
  msgid "Why the color of share icons is not being updated?"
3024
  msgstr ""
3025
 
3026
- #: admin/social_sharing.php:1938
3027
  msgid "Why Facebook share counts are not appearing?"
3028
  msgstr ""
3029
 
3030
- #: admin/social_sharing.php:1939
3031
  #, fuzzy
3032
  msgid ""
3033
  "How can I show share counts of my website rather than of individual pages/"
@@ -3036,52 +3008,52 @@ msgstr ""
3036
  "Como posso exibir os contadores de compartilhamento do meu website ao invés "
3037
  "das páginas/posts individuais?"
3038
 
3039
- #: admin/social_sharing.php:1940
3040
  #, fuzzy
3041
  msgid "How can I disable sharing on particular page/post?"
3042
  msgstr ""
3043
  "Como posso desabilitar o compartilhamento em uma página/post em particular?"
3044
 
3045
- #: admin/social_sharing.php:1941
3046
  #, fuzzy
3047
  msgid "How can I specify minimum sharing count for sharing networks?"
3048
  msgstr ""
3049
  "Como posso especificar um contador mínimo de compartilhamento das redes "
3050
  "sociais?"
3051
 
3052
- #: admin/social_sharing.php:1942
3053
  #, fuzzy
3054
  msgid "How to share specific page?"
3055
  msgstr "Como compartilhar página específica?"
3056
 
3057
- #: admin/social_sharing.php:1943
3058
  #, fuzzy
3059
  msgid "How to integrate Google Analytics with sharing?"
3060
  msgstr "Como integrar o Google Analytics com compartilhamento?"
3061
 
3062
- #: admin/social_sharing.php:1944
3063
  #, fuzzy
3064
  msgid "How to customize the look of total share counts?"
3065
  msgstr ""
3066
  "Como personalizar a aparência dos contatores de compartilhamentos totais?"
3067
 
3068
- #: admin/social_sharing.php:1945
3069
  #, fuzzy
3070
  msgid "How to customize the look of individual share counts?"
3071
  msgstr ""
3072
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
3073
 
3074
- #: admin/social_sharing.php:1946
3075
  #, fuzzy
3076
  msgid "How to show Whatsapp icon only on mobile devices?"
3077
  msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
3078
 
3079
- #: admin/social_sharing.php:1947
3080
  #, fuzzy
3081
  msgid "How to hide arrow after floating sharing bar?"
3082
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
3083
 
3084
- #: admin/social_sharing.php:1948
3085
  msgid "Why is share count not getting updated?"
3086
  msgstr ""
3087
 
@@ -3183,12 +3155,12 @@ msgstr "Iniciando contagem compartilhada para "
3183
  msgid "Floating Sharing Interface"
3184
  msgstr "Interface de Compartilhamento Flutuante"
3185
 
3186
- #: helper.php:921 super_socializer.php:2374
3187
  #, fuzzy
3188
  msgid "Social Avatar"
3189
  msgstr "Avatar Social"
3190
 
3191
- #: helper.php:924 super_socializer.php:2385
3192
  #, fuzzy
3193
  msgid ""
3194
  "Do not fetch and update social avatar from my profile, next time I Social "
@@ -3197,7 +3169,7 @@ msgstr ""
3197
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
3198
  "Autenticação Social"
3199
 
3200
- #: helper.php:925 super_socializer.php:2389
3201
  #, fuzzy
3202
  msgid "Update social avatar, next time I Social Login"
3203
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
@@ -3212,7 +3184,7 @@ msgstr "Avatar Pequeno"
3212
  msgid "Large Avatar"
3213
  msgstr "Avatar Grande"
3214
 
3215
- #: helper.php:992 super_socializer.php:1935
3216
  #, fuzzy
3217
  msgid "Please verify your email address to login."
3218
  msgstr "Por favor verifique seu endereço de email no login."
@@ -3289,12 +3261,12 @@ msgstr ""
3289
  msgid "More"
3290
  msgstr ""
3291
 
3292
- #: inc/social_sharing.php:241 super_socializer.php:2045
3293
  #, fuzzy
3294
  msgid "Share"
3295
  msgstr "Posição do contador de compartilhamento"
3296
 
3297
- #: inc/social_sharing.php:241 super_socializer.php:2045
3298
  #, fuzzy
3299
  msgid "Shares"
3300
  msgstr ""
@@ -3592,127 +3564,127 @@ msgstr ""
3592
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
3593
  "que contatar o administrador do servidor do seu website para verificar isso."
3594
 
3595
- #: super_socializer.php:1913
3596
  msgid "Search"
3597
  msgstr ""
3598
 
3599
- #: super_socializer.php:1935
3600
  #, fuzzy
3601
  msgid "Your email has been verified. Now you can login to your account"
3602
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
3603
 
3604
- #: super_socializer.php:1939
3605
  #, fuzzy
3606
  msgid "Notification"
3607
  msgstr "Notificaçao"
3608
 
3609
- #: super_socializer.php:1960
3610
  #, fuzzy
3611
  msgid "Please check your email inbox to complete the registration."
3612
  msgstr "Por favor verifique sua caixa de email para completar o registro."
3613
 
3614
- #: super_socializer.php:2029
3615
  #, fuzzy
3616
  msgid "Leave a reply"
3617
  msgstr "Deixe uma resposta"
3618
 
3619
- #: super_socializer.php:2045
3620
  msgid "Link copied."
3621
  msgstr ""
3622
 
3623
- #: super_socializer.php:2290
3624
  #, fuzzy
3625
  msgid "Super Socializer - General Options"
3626
  msgstr "Super Socializer - Opções Gerais"
3627
 
3628
- #: super_socializer.php:2361
3629
  msgid ""
3630
  "I agree to my personal data being stored and used as per Privacy Policy and "
3631
  "Terms and Conditions"
3632
  msgstr ""
3633
 
3634
- #: super_socializer.php:2365
3635
  msgid ""
3636
  "I revoke my consent to store and use my personal data. Kindly delete my "
3637
  "personal data saved in this website."
3638
  msgstr ""
3639
 
3640
- #: super_socializer.php:2377
3641
  #, fuzzy
3642
  msgid "Small Avatar Url"
3643
  msgstr "Url para Avatar pequeno"
3644
 
3645
- #: super_socializer.php:2381
3646
  #, fuzzy
3647
  msgid "Large Avatar Url"
3648
  msgstr "Url para Avatar Grande"
3649
 
3650
- #: super_socializer.php:2483
3651
  msgid "Login with your Social ID"
3652
  msgstr ""
3653
 
3654
- #: super_socializer.php:2484
3655
  #, fuzzy
3656
  msgid "Email you entered is already registered or invalid"
3657
  msgstr "Email fornecido já está registrado ou é inválido"
3658
 
3659
- #: super_socializer.php:2491
3660
  #, fuzzy
3661
  msgid "Please enter a valid email address. You might be required to verify it"
3662
  msgstr ""
3663
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
3664
  "confirmá-lo"
3665
 
3666
- #: super_socializer.php:2495 super_socializer.php:3249
3667
  #, fuzzy
3668
  msgid "Link your social account to login to your account at this website"
3669
  msgstr "Associe sua conta social ao login de sua conta neste website"
3670
 
3671
- #: super_socializer.php:2752
3672
  msgid "Thanks for installing Super Socializer plugin"
3673
  msgstr ""
3674
 
3675
- #: super_socializer.php:2754
3676
  msgid "Configure the Plugin"
3677
  msgstr ""
3678
 
3679
- #: super_socializer.php:2765
3680
  msgid ""
3681
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3682
  "current version of Super Socializer"
3683
  msgstr ""
3684
 
3685
- #: super_socializer.php:2774
3686
  msgid ""
3687
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3688
  "version of Super Socializer"
3689
  msgstr ""
3690
 
3691
- #: super_socializer.php:2783
3692
  msgid ""
3693
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3694
  "compatibility with the current version of Super Socializer"
3695
  msgstr ""
3696
 
3697
- #: super_socializer.php:2792
3698
  msgid ""
3699
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3700
  "with current version of Super Socializer"
3701
  msgstr ""
3702
 
3703
- #: super_socializer.php:2801
3704
  msgid ""
3705
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3706
  "with current version of Super Socializer"
3707
  msgstr ""
3708
 
3709
- #: super_socializer.php:2812
3710
  #, php-format
3711
  msgid ""
3712
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3713
  msgstr ""
3714
 
3715
- #: super_socializer.php:2821
3716
  #, php-format
3717
  msgid ""
3718
  "To continue using Instagram login create a new Instagram App as described <a "
@@ -3720,7 +3692,7 @@ msgid ""
3720
  "Instagram App Secret <a href=\"%s\">here</a>"
3721
  msgstr ""
3722
 
3723
- #: super_socializer.php:2830 super_socializer.php:2839
3724
  #, php-format
3725
  msgid ""
3726
  "To continue using bitly url shortener, login to your bit.ly account and "
@@ -3729,13 +3701,13 @@ msgid ""
3729
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3730
  msgstr ""
3731
 
3732
- #: super_socializer.php:2855
3733
  #, php-format
3734
  msgid ""
3735
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3736
  msgstr ""
3737
 
3738
- #: super_socializer.php:2879
3739
  #, php-format
3740
  msgid ""
3741
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -3743,14 +3715,14 @@ msgid ""
3743
  "target=\"_blank\">here</a>"
3744
  msgstr ""
3745
 
3746
- #: super_socializer.php:2879 super_socializer.php:2904
3747
- #: super_socializer.php:2929 super_socializer.php:2954
3748
- #: super_socializer.php:2987 super_socializer.php:3015
3749
- #: super_socializer.php:3042
3750
  msgid "Okay"
3751
  msgstr ""
3752
 
3753
- #: super_socializer.php:2904
3754
  #, php-format
3755
  msgid ""
3756
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
@@ -3758,7 +3730,7 @@ msgid ""
3758
  "\">here</a>"
3759
  msgstr ""
3760
 
3761
- #: super_socializer.php:2929
3762
  #, php-format
3763
  msgid ""
3764
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -3766,7 +3738,7 @@ msgid ""
3766
  "target=\"_blank\">here</a>"
3767
  msgstr ""
3768
 
3769
- #: super_socializer.php:2954
3770
  #, php-format
3771
  msgid ""
3772
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -3774,13 +3746,13 @@ msgid ""
3774
  "target=\"_blank\">here</a>"
3775
  msgstr ""
3776
 
3777
- #: super_socializer.php:2965
3778
  #, php-format
3779
  msgid ""
3780
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3781
  msgstr ""
3782
 
3783
- #: super_socializer.php:2987
3784
  #, php-format
3785
  msgid ""
3786
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -3788,7 +3760,7 @@ msgid ""
3788
  "\"%s\" target=\"_blank\">here</a>"
3789
  msgstr ""
3790
 
3791
- #: super_socializer.php:3015
3792
  #, php-format
3793
  msgid ""
3794
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
@@ -3797,7 +3769,7 @@ msgid ""
3797
  "your website %s with them. No need to copy-paste any code from their website."
3798
  msgstr ""
3799
 
3800
- #: super_socializer.php:3042
3801
  #, php-format
3802
  msgid ""
3803
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
@@ -3805,7 +3777,7 @@ msgid ""
3805
  "\"%s\" target=\"_blank\">here</a>"
3806
  msgstr ""
3807
 
3808
- #: super_socializer.php:3067
3809
  #, php-format
3810
  msgid ""
3811
  "If you cannot get Linkedin login to work after updating the plugin, replace "
@@ -3813,20 +3785,11 @@ msgid ""
3813
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3814
  msgstr ""
3815
 
3816
- #: super_socializer.php:3067 super_socializer.php:3094
3817
  msgid "Dismiss"
3818
  msgstr ""
3819
 
3820
- #: super_socializer.php:3093
3821
- #, php-format
3822
- msgid ""
3823
- "Save Facebook App ID and Secret keys in \"Standard Interface\" and/or "
3824
- "\"Floating Interface\" section(s) at <a href=\"%s\">Super Socializer > "
3825
- "Social Sharing</a> page to fix the issue with Facebook share count. After "
3826
- "that, clear share counts cache from \"Miscellaneous\" section"
3827
- msgstr ""
3828
-
3829
- #: super_socializer.php:3325
3830
  msgid ""
3831
  "Your browser is blocking some features of this website. Please follow the "
3832
  "instructions at {support_url} to unblock these."
3
  msgstr ""
4
  "Project-Id-Version: Super Socializer\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2021-07-17 15:40+0530\n"
7
  "PO-Revision-Date: 2021-05-05 13:27+0530\n"
8
  "Last-Translator: Heateor <hello@heateor.com>\n"
9
  "Language-Team: Heateor <hello@heateor.com>\n"
21
  #: admin/like_buttons.php:6 admin/like_buttons.php:784
22
  #: admin/social_commenting.php:5 admin/social_commenting.php:404
23
  #: admin/social_login.php:5 admin/social_login.php:1984
24
+ #: admin/social_sharing.php:5 admin/social_sharing.php:1916
25
  #, php-format
26
  msgid ""
27
  "You can appreciate the effort put in this free plugin by rating it <a href="
29
  msgstr ""
30
 
31
  #: admin/general_options.php:15 admin/social_commenting.php:47
32
+ #: super_socializer.php:2291
33
  #, fuzzy
34
  msgid "General Options"
35
  msgstr "Opções Gerais"
88
 
89
  #: admin/general_options.php:89 admin/like_buttons.php:780
90
  #: admin/social_commenting.php:400 admin/social_login.php:1980
91
+ #: admin/social_sharing.php:1912 helper.php:936
92
  #, fuzzy
93
  msgid "Save Changes"
94
  msgstr "Salvar Alterações"
95
 
96
  #: admin/general_options.php:103 admin/like_buttons.php:790
97
  #: admin/social_commenting.php:410 admin/social_login.php:1990
98
+ #: admin/social_sharing.php:1922
99
  msgid "Instagram Shoutout"
100
  msgstr ""
101
 
102
  #: admin/general_options.php:105 admin/like_buttons.php:792
103
  #: admin/social_commenting.php:412 admin/social_login.php:1992
104
+ #: admin/social_sharing.php:1924
105
  msgid ""
106
  "If you can send (to hello@heateor.com) how this plugin is helping your "
107
  "business, we would be glad to shoutout on Instagram. You can also send any "
224
  "Controle mestre dos botões like. Ele deve ser selecionado para habilitar a "
225
  "funcionalidade dos botões like"
226
 
227
+ #: admin/like_buttons.php:40 admin/social_sharing.php:53
228
  #, fuzzy
229
  msgid "Standard Interface"
230
  msgstr "Interface Padrão"
231
 
232
+ #: admin/like_buttons.php:41 admin/social_sharing.php:54
233
  #, fuzzy
234
  msgid "Floating Interface"
235
  msgstr "Interface Flutuante"
236
 
237
+ #: admin/like_buttons.php:42 admin/social_sharing.php:55
238
  #, fuzzy
239
  msgid "Miscellaneous"
240
  msgstr "Miscelânia"
241
 
242
+ #: admin/like_buttons.php:46 admin/social_sharing.php:59
243
  msgid "3rd Party Integration"
244
  msgstr ""
245
 
246
  #: admin/like_buttons.php:50 admin/like_buttons.php:751
247
  #: admin/social_login.php:45 admin/social_login.php:1946
248
+ #: admin/social_sharing.php:63 admin/social_sharing.php:1837
249
+ #: admin/social_sharing.php:1839
250
  #, fuzzy
251
  msgid "Shortcode & Widget"
252
  msgstr "Shortcode & Widget"
254
  #: admin/like_buttons.php:51 admin/like_buttons.php:764
255
  #: admin/social_commenting.php:40 admin/social_commenting.php:384
256
  #: admin/social_login.php:46 admin/social_login.php:1960
257
+ #: admin/social_sharing.php:65 admin/social_sharing.php:1870
258
  #, fuzzy
259
  msgid "FAQ"
260
  msgstr "P&R"
275
  msgstr "Controle mestre para habiliat botões de like horizontal"
276
 
277
  #: admin/like_buttons.php:83 admin/like_buttons.php:326
278
+ #: admin/social_sharing.php:699 admin/social_sharing.php:1120
279
  #, fuzzy
280
  msgid "Target Url"
281
  msgstr "Url Destino"
282
 
283
  #: admin/like_buttons.php:87 admin/like_buttons.php:330
284
+ #: admin/social_sharing.php:703 admin/social_sharing.php:1124
285
  #, fuzzy
286
  msgid "Url of the webpage where icons are located (default)"
287
  msgstr "Url das webpages onde os ícones estão localizados (padrão)"
288
 
289
  #: admin/like_buttons.php:89 admin/like_buttons.php:332
290
+ #: admin/social_sharing.php:705 admin/social_sharing.php:1126
291
  #, fuzzy
292
  msgid "Url of the homepage of your website"
293
  msgstr "Url da homepage do seu website"
294
 
295
  #: admin/like_buttons.php:91 admin/like_buttons.php:334
296
+ #: admin/social_sharing.php:707 admin/social_sharing.php:1128
297
  #, fuzzy
298
  msgid "Custom url"
299
  msgstr "Url personalizada"
305
  "Url para like/compartilhar/tweet e exibir contadores like/compartilhar/tweet"
306
 
307
  #: admin/like_buttons.php:105 admin/social_login.php:1231
308
+ #: admin/social_login.php:1607 admin/social_sharing.php:721 inc/widget.php:949
309
  #, fuzzy
310
  msgid "Title"
311
  msgstr "Título"
326
  msgstr "Selecione o provedor da interface. Arraste-os para rearranjar."
327
 
328
  #: admin/like_buttons.php:173 admin/like_buttons.php:415
329
+ #: admin/social_sharing.php:908 admin/social_sharing.php:1306
330
  #, fuzzy
331
  msgid "Horizontal alignment"
332
  msgstr "Alinhamento horizonal"
333
 
334
  #: admin/like_buttons.php:177 admin/like_buttons.php:419
335
+ #: admin/social_sharing.php:339 admin/social_sharing.php:637
336
+ #: admin/social_sharing.php:912 admin/social_sharing.php:1310
337
  #: inc/widget.php:446 inc/widget.php:758
338
  #, fuzzy
339
  msgid "Left"
340
  msgstr "Esquerda"
341
 
342
+ #: admin/like_buttons.php:178 admin/social_sharing.php:913
343
  #, fuzzy
344
  msgid "Center"
345
  msgstr "Centro"
346
 
347
  #: admin/like_buttons.php:179 admin/like_buttons.php:420
348
+ #: admin/social_sharing.php:343 admin/social_sharing.php:641
349
+ #: admin/social_sharing.php:914 admin/social_sharing.php:1311
350
  #: inc/widget.php:447 inc/widget.php:759
351
  #, fuzzy
352
  msgid "Right"
357
  msgid "Horizontal alignment of the interface"
358
  msgstr "Alinhamento horizontal da interface"
359
 
360
+ #: admin/like_buttons.php:194 admin/social_sharing.php:929
361
  #, fuzzy
362
  msgid "Position with respect to content"
363
  msgstr "Posição em relação ao conteúdo"
364
 
365
+ #: admin/like_buttons.php:198 admin/social_sharing.php:933
366
  #, fuzzy
367
  msgid "Top of the content"
368
  msgstr "Acima do conteúdo"
369
 
370
+ #: admin/like_buttons.php:200 admin/social_sharing.php:935
371
  #, fuzzy
372
  msgid "Bottom of the content"
373
  msgstr "Abaixo do conteúdo"
384
 
385
  #: admin/like_buttons.php:218 admin/like_buttons.php:494
386
  #: admin/social_login.php:1548 admin/social_login.php:1577
387
+ #: admin/social_sharing.php:953 admin/social_sharing.php:1385
388
  #, fuzzy
389
  msgid "Homepage"
390
  msgstr "Homepage"
391
 
392
  #: admin/like_buttons.php:220 admin/like_buttons.php:496
393
+ #: admin/social_sharing.php:955 admin/social_sharing.php:1387
394
  #, fuzzy
395
  msgid "Posts"
396
  msgstr "Posts"
397
 
398
  #: admin/like_buttons.php:222 admin/like_buttons.php:498
399
+ #: admin/social_sharing.php:957 admin/social_sharing.php:1389
400
  #, fuzzy
401
  msgid "Pages"
402
  msgstr "Páginas"
403
 
404
  #: admin/like_buttons.php:224 admin/like_buttons.php:500
405
+ #: admin/social_sharing.php:959 admin/social_sharing.php:1391
406
  msgid "Excerpts and Posts page"
407
  msgstr ""
408
 
409
  #: admin/like_buttons.php:226 admin/like_buttons.php:502
410
+ #: admin/social_sharing.php:961 admin/social_sharing.php:1393
411
  #, fuzzy
412
  msgid "Category Archives"
413
  msgstr "Arquivos de Categorias"
414
 
415
  #: admin/like_buttons.php:228 admin/like_buttons.php:504
416
+ #: admin/social_sharing.php:963 admin/social_sharing.php:1395
417
  #, fuzzy
418
  msgid "Archive Pages (Category, Tag, Author or Date based pages)"
419
  msgstr "Página de arquivo (Páginas baseadas em Categoria, Tag, Autor ou Data)"
420
 
421
+ #: admin/like_buttons.php:244 admin/social_sharing.php:979
422
  #, fuzzy
423
  msgid "BuddyPress activity"
424
  msgstr "Atividade BuddyPress"
425
 
426
+ #: admin/like_buttons.php:247 admin/social_sharing.php:981
427
  #, fuzzy
428
  msgid "BuddyPress group (only at top of content)"
429
  msgstr "Grupo BuddyPress (apenas acima do conteúdo)"
430
 
431
  #: admin/like_buttons.php:254 admin/like_buttons.php:525
432
+ #: admin/social_sharing.php:987 admin/social_sharing.php:1417
433
  #, fuzzy
434
  msgid "BBPress forum"
435
  msgstr "Forum BBPress"
436
 
437
  #: admin/like_buttons.php:257 admin/like_buttons.php:528
438
+ #: admin/social_sharing.php:990 admin/social_sharing.php:1420
439
  #, fuzzy
440
  msgid "BBPress topic"
441
  msgstr "Tópico BBPress"
442
 
443
+ #: admin/like_buttons.php:260 admin/social_sharing.php:993
444
  #, fuzzy
445
  msgid "BBPress reply"
446
  msgstr "Responder BBPress"
447
 
448
+ #: admin/like_buttons.php:267 admin/social_sharing.php:1000
449
  #, fuzzy
450
  msgid "After individual product at WooCommerce Shop page"
451
  msgstr "Depois de produtos individuais na página WooCommerce Shop"
452
 
453
+ #: admin/like_buttons.php:270 admin/social_sharing.php:1003
454
  #, fuzzy
455
  msgid "WooCommerce Product Page"
456
  msgstr "Página de Produtos WooCommerce"
457
 
458
+ #: admin/like_buttons.php:273 admin/social_sharing.php:1006
459
  #, fuzzy
460
  msgid "WooCommerce Thankyou Page"
461
  msgstr "Página de Agradecimento WooCommerce"
480
  msgid "Master control to enable vertical (floating) counter widget"
481
  msgstr "Controle mestre para habilitar widget contador vertical (flutuante)"
482
 
483
+ #: admin/like_buttons.php:398 admin/social_sharing.php:291
484
+ #: admin/social_sharing.php:590 admin/social_sharing.php:1289
485
  #: inc/widget.php:460 inc/widget.php:772
486
  #, fuzzy
487
  msgid "Background Color"
500
  "hexadecimal de uma cor desejada <a href=\\\"http://www.colorpicker.com/\\\" "
501
  "target=\\\"_blank\\\">neste link</a>"
502
 
503
+ #: admin/like_buttons.php:436 admin/social_sharing.php:1327
504
  #, fuzzy
505
  msgid "Left offset"
506
  msgstr "Ajuste à esquerda"
515
  "direita e decrementos deslocam para a esquerda. Os números podem ser "
516
  "negativos também."
517
 
518
+ #: admin/like_buttons.php:455 admin/social_sharing.php:1346
519
  #, fuzzy
520
  msgid "Right offset"
521
  msgstr "Ajuste à direita"
530
  "esquerda e decrementos deslocam para a direita. Os números podem ser "
531
  "negativos também."
532
 
533
+ #: admin/like_buttons.php:473 admin/social_sharing.php:1364
534
  #, fuzzy
535
  msgid "Top offset"
536
  msgstr "Ajuste acima"
544
  "Especifique um número. Incrementos no número deslocam a interface para baixo "
545
  "e decrementos deslocam para cima."
546
 
547
+ #: admin/like_buttons.php:518 admin/social_sharing.php:1409
548
  #, fuzzy
549
  msgid "BuddyPress group"
550
  msgstr "Grupo BuddyPress"
565
  msgstr ""
566
  "Se habilitado, botões de like vertical não aparecerão em dispositivos móveis"
567
 
568
+ #: admin/like_buttons.php:574 admin/social_sharing.php:1583
569
  #, fuzzy
570
  msgid "Url shortener"
571
  msgstr "Encurtador de Url"
589
  msgid "Enable bit.ly url shortener for tweet button"
590
  msgstr "Habilitar bit.ly url shortener para botões tweet"
591
 
592
+ #: admin/like_buttons.php:606 admin/social_sharing.php:1615
593
  #, fuzzy
594
  msgid "Master control to enable bit.ly url shortening for sharing"
595
  msgstr ""
596
  "Controle Mestre para habilitar encurtador de url bit.ly para compartilhamento"
597
 
598
+ #: admin/like_buttons.php:613 admin/social_sharing.php:1622
599
  msgid "Bit.ly generic access token"
600
  msgstr ""
601
 
602
+ #: admin/like_buttons.php:623 admin/social_sharing.php:1632
603
  #, php-format
604
  msgid ""
605
  "Login to your bit.ly account and navigate to <strong>Profile Settings > "
608
  "\">link</a>"
609
  msgstr ""
610
 
611
+ #: admin/like_buttons.php:630 admin/social_sharing.php:1639
612
  #, fuzzy
613
  msgid "Clear Bitly Cache"
614
  msgstr "Limpar o Cache Bitly"
615
 
616
+ #: admin/like_buttons.php:634 admin/social_sharing.php:1643
617
  #, fuzzy
618
  msgid "ShortUrl cache cleared successfully."
619
  msgstr "Cache ShortUrl limpo com sucesso."
620
 
621
+ #: admin/like_buttons.php:641 admin/social_sharing.php:1650
622
  #, fuzzy
623
  msgid ""
624
  "Use this to delete short urls saved in database. Handy, if urls of your "
630
  "geradas para suas urls antigas."
631
 
632
  #: admin/like_buttons.php:650 admin/like_buttons.php:655
633
+ #: admin/social_commenting.php:304 admin/social_sharing.php:1712
634
+ #: admin/social_sharing.php:1717
635
  #, fuzzy
636
  msgid "Language"
637
  msgstr "Languagem"
681
  "compartilhamento como \\\"via @USERNAME\\\". Deixe vazio se você não deseja "
682
  "nenhum username."
683
 
684
+ #: admin/like_buttons.php:726 admin/social_sharing.php:1812
685
  msgid "myCRED"
686
  msgstr ""
687
 
688
+ #: admin/like_buttons.php:731 admin/social_sharing.php:1817
689
  msgid "Append myCRED referral ID to the urls being shared"
690
  msgstr ""
691
 
694
  msgid "Like Buttons Shortcode & Widget"
695
  msgstr "Botões Like Shortcode & Widget"
696
 
697
+ #: admin/like_buttons.php:766 admin/social_sharing.php:1900
698
  msgid "Why is there so much space between like buttons?"
699
  msgstr ""
700
 
701
+ #: admin/like_buttons.php:767 admin/social_sharing.php:1901
702
  msgid "Why are floating sharing/like buttons not appearing at homepage?"
703
  msgstr ""
704
 
705
+ #: admin/like_buttons.php:768 admin/social_sharing.php:1885
706
  msgid "How to Place Title and Social Share Icons in the Same Row?"
707
  msgstr ""
708
 
951
  msgstr "Shortcode em Comentário Social"
952
 
953
  #: admin/social_commenting.php:386 admin/social_login.php:1962
954
+ #: admin/social_sharing.php:1872
955
  msgid ""
956
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
957
  "an online website for the plugin to function properly."
969
  msgstr ""
970
 
971
  #: admin/social_commenting.php:389 admin/social_login.php:1969
972
+ #: admin/social_sharing.php:1887
973
  msgid "Why is my browser blocking some features of the plugin?"
974
  msgstr ""
975
 
1009
  msgstr ""
1010
 
1011
  #: admin/social_login.php:41 admin/social_login.php:1746
1012
+ #: super_socializer.php:2359
1013
  msgid "GDPR"
1014
  msgstr ""
1015
 
1171
  msgstr ""
1172
  "Selecione o provedor Social pelo seu ID para habilitar a autenticação social"
1173
 
1174
+ #: admin/social_login.php:226
1175
  #, fuzzy
1176
  msgid "Facebook App ID"
1177
  msgstr "Facebook App ID"
1191
  "Paste following url in <strong>Site URL</strong> option mentioned at the link"
1192
  msgstr ""
1193
 
1194
+ #: admin/social_login.php:247
1195
  msgid "Facebook App Secret"
1196
  msgstr ""
1197
 
2000
  "Se habilitado, usuários serão capazes de atualizar seus avatar social pela "
2001
  "seção \\\"Foto do perfil\\\" no front-end do perfil BuddyPress"
2002
 
2003
+ #: admin/social_login.php:1490 super_socializer.php:1958
2004
  #, fuzzy
2005
  msgid "Email required"
2006
  msgstr "Necessário email"
2306
  msgid "Recover Social Share Counts Lost After Moving to SSL/Https"
2307
  msgstr ""
2308
 
2309
+ #: admin/social_sharing.php:52
 
 
 
 
 
 
 
 
 
 
 
2310
  #, fuzzy
2311
  msgid "Theme Selection"
2312
  msgstr "Escolha de Temas"
2313
 
2314
+ #: admin/social_sharing.php:64
2315
  #, fuzzy
2316
  msgid "Troubleshooter"
2317
  msgstr "Resolução de Problemas"
2318
 
2319
+ #: admin/social_sharing.php:73
2320
  #, fuzzy
2321
  msgid "Standard interface theme"
2322
  msgstr "Tema padrão da interface"
2323
 
2324
+ #: admin/social_sharing.php:78 admin/social_sharing.php:376
2325
  #, fuzzy
2326
  msgid "Icon Preview"
2327
  msgstr "Visualização do Ícone"
2328
 
2329
+ #: admin/social_sharing.php:150 admin/social_sharing.php:449
2330
  #, fuzzy
2331
  msgid ""
2332
  "Do not forget to save the configuration after making changes by clicking the "
2335
  "Não esqueça de salvar as configurações após realizar as mudanças clicando no "
2336
  "botão de salvar abaixo"
2337
 
2338
+ #: admin/social_sharing.php:156 admin/social_sharing.php:455
2339
  #, fuzzy
2340
  msgid "Shape"
2341
  msgstr "Forma"
2342
 
2343
+ #: admin/social_sharing.php:160 admin/social_sharing.php:459 inc/widget.php:955
2344
  #, fuzzy
2345
  msgid "Round"
2346
  msgstr "Arredondada"
2347
 
2348
+ #: admin/social_sharing.php:162 admin/social_sharing.php:461 inc/widget.php:956
2349
  #, fuzzy
2350
  msgid "Square"
2351
  msgstr "Quadrada"
2352
 
2353
+ #: admin/social_sharing.php:164 admin/social_sharing.php:463
2354
  #, fuzzy
2355
  msgid "Rectangle"
2356
  msgstr "Retangular"
2357
 
2358
+ #: admin/social_sharing.php:171 admin/social_sharing.php:470
2359
  #, fuzzy
2360
  msgid "Shape of the sharing icons"
2361
  msgstr "Forma dos ícones de compartilhameto"
2362
 
2363
+ #: admin/social_sharing.php:179 admin/social_sharing.php:478
2364
  #, fuzzy
2365
  msgid "Size (in pixels)"
2366
  msgstr "Tamanho (em pixels)"
2367
 
2368
+ #: admin/social_sharing.php:195 admin/social_sharing.php:494
2369
  #, fuzzy
2370
  msgid "Size of the sharing icons"
2371
  msgstr "Tamanho dos ícones de compartilhameto"
2372
 
2373
+ #: admin/social_sharing.php:204 admin/social_sharing.php:503
2374
  #, fuzzy
2375
  msgid "Width (in pixels)"
2376
  msgstr "Largura (em pixels)"
2377
 
2378
+ #: admin/social_sharing.php:220 admin/social_sharing.php:519
2379
  #, fuzzy
2380
  msgid "Width of the sharing icons"
2381
  msgstr "Largura dos ícones de compartilhameto"
2382
 
2383
+ #: admin/social_sharing.php:227 admin/social_sharing.php:526
2384
  #, fuzzy
2385
  msgid "Height (in pixels)"
2386
  msgstr "Altura (em pixels)"
2387
 
2388
+ #: admin/social_sharing.php:243 admin/social_sharing.php:542
2389
  #, fuzzy
2390
  msgid "Height of the sharing icons"
2391
  msgstr "Altura dos ícones de compartilhameto"
2392
 
2393
+ #: admin/social_sharing.php:252 admin/social_sharing.php:551
2394
  #, fuzzy
2395
  msgid "Border radius (in pixels)"
2396
  msgstr "Raio da borda (em pixels)"
2397
 
2398
+ #: admin/social_sharing.php:262 admin/social_sharing.php:561
2399
  #, fuzzy
2400
  msgid ""
2401
  "Specify a value for rounded corners. More the value, more rounded will the "
2404
  "Especifique um valor para os cantos arredondados. Quanto maior o valor, mas "
2405
  "arredondados serão os cantos. Deixe em branco para cantos precisos."
2406
 
2407
+ #: admin/social_sharing.php:270 admin/social_sharing.php:569
2408
  #, fuzzy
2409
  msgid "Logo Color"
2410
  msgstr "Cor do logo"
2411
 
2412
+ #: admin/social_sharing.php:274 admin/social_sharing.php:294
2413
+ #: admin/social_sharing.php:313 admin/social_sharing.php:573
2414
+ #: admin/social_sharing.php:593 admin/social_sharing.php:611
2415
  #, fuzzy
2416
  msgid "Default"
2417
  msgstr "Padrão"
2418
 
2419
+ #: admin/social_sharing.php:276 admin/social_sharing.php:295
2420
+ #: admin/social_sharing.php:318 admin/social_sharing.php:575
2421
+ #: admin/social_sharing.php:594 admin/social_sharing.php:616
2422
  #, fuzzy
2423
  msgid "On Hover"
2424
  msgstr "Em foco"
2425
 
2426
+ #: admin/social_sharing.php:284 admin/social_sharing.php:583
2427
  #, fuzzy
2428
  msgid ""
2429
  "Specify the color or hex code (example #cc78e0) for the logo of icon. Leave "
2435
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2436
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2437
 
2438
+ #: admin/social_sharing.php:302 admin/social_sharing.php:601
2439
  #, fuzzy
2440
  msgid ""
2441
  "Specify the color or hex code (example #cc78e0) for icon background. Save "
2449
  "hexadecimal que você requer por meio deste link <a href=\\\"http://www."
2450
  "colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2451
 
2452
+ #: admin/social_sharing.php:309 admin/social_sharing.php:608
2453
  #, fuzzy
2454
  msgid "Border"
2455
  msgstr "Borda"
2456
 
2457
+ #: admin/social_sharing.php:315 admin/social_sharing.php:320
2458
+ #: admin/social_sharing.php:613 admin/social_sharing.php:618
2459
  #, fuzzy
2460
  msgid "Border Width"
2461
  msgstr "Largura da Borda"
2462
 
2463
+ #: admin/social_sharing.php:316 admin/social_sharing.php:321
2464
+ #: admin/social_sharing.php:614 admin/social_sharing.php:619
2465
  #, fuzzy
2466
  msgid "Border Color"
2467
  msgstr "Cor da Borda"
2468
 
2469
+ #: admin/social_sharing.php:328 admin/social_sharing.php:626
2470
  #, fuzzy
2471
  msgid "Icon border"
2472
  msgstr "Ícone da borda"
2473
 
2474
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2475
  #, fuzzy
2476
  msgid "Counter Position"
2477
  msgstr "Posição do Contador"
2478
 
2479
+ #: admin/social_sharing.php:335 admin/social_sharing.php:633
2480
  #, fuzzy
2481
  msgid "(applies, if counter enabled)"
2482
  msgstr "(aplica-se, caso o contador esteja habilitado)"
2483
 
2484
+ #: admin/social_sharing.php:341 admin/social_sharing.php:639
2485
  #, fuzzy
2486
  msgid "Top"
2487
  msgstr "Acima"
2488
 
2489
+ #: admin/social_sharing.php:345 admin/social_sharing.php:643
2490
  #, fuzzy
2491
  msgid "Bottom"
2492
  msgstr "Abaixo"
2493
 
2494
+ #: admin/social_sharing.php:347 admin/social_sharing.php:645
2495
  #, fuzzy
2496
  msgid "Inner Left"
2497
  msgstr "Inner a Esquerda"
2498
 
2499
+ #: admin/social_sharing.php:349 admin/social_sharing.php:647
2500
  #, fuzzy
2501
  msgid "Inner Top"
2502
  msgstr "Inner Acima"
2503
 
2504
+ #: admin/social_sharing.php:351 admin/social_sharing.php:649
2505
  #, fuzzy
2506
  msgid "Inner Right"
2507
  msgstr "Inner a Direita"
2508
 
2509
+ #: admin/social_sharing.php:353 admin/social_sharing.php:651
2510
  #, fuzzy
2511
  msgid "Inner Bottom"
2512
  msgstr "Inner a Baixo"
2513
 
2514
+ #: admin/social_sharing.php:361 admin/social_sharing.php:659
2515
  #, fuzzy
2516
  msgid "Position of share counter"
2517
  msgstr "Posição do contador de compartilhamento"
2518
 
2519
+ #: admin/social_sharing.php:371
2520
  #, fuzzy
2521
  msgid "Floating interface theme"
2522
  msgstr "Tema da inteface flutuante"
2523
 
2524
+ #: admin/social_sharing.php:675
2525
  #, fuzzy
2526
  msgid "Standard Sharing Interface Options"
2527
  msgstr "Opções de Interface de Compartilhamento Padrão"
2528
 
2529
+ #: admin/social_sharing.php:680
2530
  #, fuzzy
2531
  msgid "Enable Standard sharing interface"
2532
  msgstr "Habilita interface de Compartilhamento padrão"
2533
 
2534
+ #: admin/social_sharing.php:690
2535
  #, fuzzy
2536
  msgid "Master control to enable standard sharing"
2537
  msgstr "\"Controle Mestre para habilitar o compartilhamento padrão"
2538
 
2539
+ #: admin/social_sharing.php:714 admin/social_sharing.php:1135
2540
  #, fuzzy
2541
  msgid "Url to share"
2542
  msgstr "Url para compartilhar"
2543
 
2544
+ #: admin/social_sharing.php:731
2545
  #, fuzzy
2546
  msgid "The text to display above the sharing interface"
2547
  msgstr "Texto a ser exibido acima da interface de compartilhamento"
2548
 
2549
+ #: admin/social_sharing.php:755 admin/social_sharing.php:1143
2550
  msgid "Instagram username"
2551
  msgstr ""
2552
 
2553
+ #: admin/social_sharing.php:765 admin/social_sharing.php:1153
2554
  msgid ""
2555
  "Username of the Instagram account you want to redirect users to, on clicking "
2556
  "the icon"
2557
  msgstr ""
2558
 
2559
+ #: admin/social_sharing.php:774 admin/social_sharing.php:1162
2560
  msgid "HTML ID of container element of comment form"
2561
  msgstr ""
2562
 
2563
+ #: admin/social_sharing.php:784 admin/social_sharing.php:1172
2564
  msgid ""
2565
  "HTML ID of the element you want to focus on the webpage, on click of Comment "
2566
  "icon."
2567
  msgstr ""
2568
 
2569
+ #: admin/social_sharing.php:797 admin/social_sharing.php:1180
2570
  #, fuzzy
2571
  msgid "Rearrange icons"
2572
  msgstr "Rearranjar ícones"
2573
 
2574
+ #: admin/social_sharing.php:858 admin/social_sharing.php:1239
2575
  #, fuzzy
2576
  msgid "Drag the icons to rearrange in desired order"
2577
  msgstr "Arraste os ícones para rearanjar na ordem desejada"
2578
 
2579
+ #: admin/social_sharing.php:865 admin/social_sharing.php:1246
2580
  #, fuzzy
2581
  msgid "Select Sharing Services"
2582
  msgstr "Selecione os Serviços Compartilhados"
2583
 
2584
+ #: admin/social_sharing.php:872 admin/social_sharing.php:1253
2585
  #, fuzzy
2586
  msgid "Select sharing services to show in social share bar"
2587
  msgstr ""
2588
  "Selecione os serviços compartilhados para exibir na barra de "
2589
  "compartilhamento social"
2590
 
2591
+ #: admin/social_sharing.php:890 admin/social_sharing.php:1271
2592
  msgid "Search social network"
2593
  msgstr ""
2594
 
2595
+ #: admin/social_sharing.php:922 admin/social_sharing.php:1319
2596
  #, fuzzy
2597
  msgid "Horizontal alignment of the sharing interface"
2598
  msgstr "Alinhamento horizontal da interface de compartilhamento"
2599
 
2600
+ #: admin/social_sharing.php:942
2601
  #, fuzzy
2602
  msgid "Specify position of the sharing interface with respect to the content"
2603
  msgstr ""
2604
  "Especifique a posição da interface de compartilhamento em relação ao conteúdo"
2605
 
2606
+ #: admin/social_sharing.php:949 admin/social_sharing.php:1381
2607
  #, fuzzy
2608
  msgid "Placement"
2609
  msgstr "Localização"
2610
 
2611
+ #: admin/social_sharing.php:1017
2612
  #, fuzzy
2613
  msgid "Specify the pages where you want to enable Sharing interface"
2614
  msgstr ""
2615
  "Especifique as páginas onde você deseja habilitar a interface de "
2616
  "compartilhamento"
2617
 
2618
+ #: admin/social_sharing.php:1024 admin/social_sharing.php:1437
2619
  #, fuzzy
2620
  msgid "Show share counts"
2621
  msgstr "Exibir contadores de compartilhamento"
2622
 
2623
+ #: admin/social_sharing.php:1029 admin/social_sharing.php:1442
2624
  msgid ""
2625
  "Share counts are supported for Twitter, Buffer, Reddit, Pinterest, "
2626
  "Odnoklassniki, Fintel and Vkontakte"
2627
  msgstr ""
2628
 
2629
+ #: admin/social_sharing.php:1030 admin/social_sharing.php:1443
2630
  #, php-format
2631
  msgid ""
2632
  "To show Twitter share count, you have to click \"Give me my Twitter counts "
2635
  "their website."
2636
  msgstr ""
2637
 
2638
+ #: admin/social_sharing.php:1037 admin/social_sharing.php:1450
2639
  #, fuzzy
2640
  msgid "If enabled, share counts are displayed above sharing icons."
2641
  msgstr ""
2642
  "Se habilitado, os contadores de compartilhamento são exibidos acima dos "
2643
  "ícones de compartilhamento."
2644
 
2645
+ #: admin/social_sharing.php:1045 admin/social_sharing.php:1458
2646
+ #: admin/social_sharing.php:1659
2647
  msgid "Track Social Shares for Every Social Network"
2648
  msgstr ""
2649
 
2650
+ #: admin/social_sharing.php:1051 admin/social_sharing.php:1464
2651
  #, fuzzy
2652
  msgid "Show total shares"
2653
  msgstr "Exibe total de compartilhamentos"
2654
 
2655
+ #: admin/social_sharing.php:1061 admin/social_sharing.php:1474
2656
  #, fuzzy
2657
  msgid "If enabled, total shares will be displayed with sharing icons"
2658
  msgstr ""
2659
  "Se habilitado, os totais de compartilhamentos serão exibidos com os ícones "
2660
  "de compartilhamento"
2661
 
2662
+ #: admin/social_sharing.php:1069 admin/social_sharing.php:1482
2663
  #, fuzzy
2664
  msgid "Enable 'More' icon"
2665
  msgstr "Habilitar 'Mais' ícones"
2666
 
2667
+ #: admin/social_sharing.php:1079 admin/social_sharing.php:1492
2668
  #, fuzzy
2669
  msgid ""
2670
  "If enabled, \"More\" icon will be displayed after selected sharing icons "
2674
  "de compartilhamento com a exibição adicional das redes sociais "
2675
  "compartilhadas em um popup"
2676
 
2677
+ #: admin/social_sharing.php:1096
2678
  #, fuzzy
2679
  msgid "Floating Sharing Interface Options"
2680
  msgstr "Opções da Interface de Compartilhamento Flutuante"
2681
 
2682
+ #: admin/social_sharing.php:1101
2683
  #, fuzzy
2684
  msgid "Enable Floating sharing interface"
2685
  msgstr "Habilita interface de compartilhamento flutuante"
2686
 
2687
+ #: admin/social_sharing.php:1111
2688
  #, fuzzy
2689
  msgid "Master control to enable floating sharing widget"
2690
  msgstr "Controle Mestre para habilitar o widget de compartilhamento flutuante"
2691
 
2692
+ #: admin/social_sharing.php:1299
2693
  #, fuzzy
2694
  msgid ""
2695
  "Specify the color or hex code (example #cc78e0) for the background of "
2702
  "Você pode obter o código hexadecimal que você requer por meio deste link <a "
2703
  "href=\\\"http://www.colorpicker.com/\\\" target=\\\"_blank\\\"> </a>"
2704
 
2705
+ #: admin/social_sharing.php:1337
2706
  #, fuzzy
2707
  msgid ""
2708
  "Specify a number. Increase in number will shift sharing interface towards "
2713
  "interface de compartilhamento para a esquerda. Os números podem também ser "
2714
  "negativos."
2715
 
2716
+ #: admin/social_sharing.php:1356
2717
  #, fuzzy
2718
  msgid ""
2719
  "Specify a number. Increase in number will shift sharing interface towards "
2724
  "interface de compartilhamento para a direita. Os números podem também ser "
2725
  "negativos."
2726
 
2727
+ #: admin/social_sharing.php:1374
2728
  #, fuzzy
2729
  msgid ""
2730
  "Specify a number. Increase in number will shift sharing interface towards "
2734
  "compartilhamento para baixo e decrementos no número irão deslocar a "
2735
  "interface de compartilhamento para cima."
2736
 
2737
+ #: admin/social_sharing.php:1430
2738
  #, fuzzy
2739
  msgid "Specify the pages where you want to enable vertical Sharing interface"
2740
  msgstr ""
2741
  "Especifique as páginas onde você deseja habilitar a interface de "
2742
  "compartilhamento vertical"
2743
 
2744
+ #: admin/social_sharing.php:1499
2745
  msgid "Hide floating slider"
2746
  msgstr ""
2747
 
2748
+ #: admin/social_sharing.php:1509
2749
  msgid "Hides the slider arrow present below the floating share bar"
2750
  msgstr ""
2751
 
2752
+ #: admin/social_sharing.php:1516
2753
  #, fuzzy
2754
  msgid "Vertical floating bar responsiveness"
2755
  msgstr "Sensibilidade da barra flutuante vertical"
2756
 
2757
+ #: admin/social_sharing.php:1519
2758
  #, fuzzy, php-format
2759
  msgid "Display vertical interface only when screen is wider than %s pixels"
2760
  msgstr ""
2761
  "Exibe interface vertical apenas quando a tela é mais larga que %s pixels"
2762
 
2763
+ #: admin/social_sharing.php:1526
2764
  #, fuzzy
2765
  msgid ""
2766
  "Display vertical interface only when screen is wider than the width "
2769
  "Exibe interface vertical apenas quando a tela é mais larga que a largura "
2770
  "especificada."
2771
 
2772
+ #: admin/social_sharing.php:1533
2773
  #, fuzzy
2774
  msgid "Horizontal floating bar responsiveness"
2775
  msgstr "Sensibilidade da barra flutuante horizontal"
2776
 
2777
+ #: admin/social_sharing.php:1536
2778
  #, fuzzy, php-format
2779
  msgid ""
2780
  "Stick vertical floating interface horizontally at bottom only when screen is "
2783
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2784
  "quando a tela é mais estreita do que %s pixels"
2785
 
2786
+ #: admin/social_sharing.php:1543
2787
  #, fuzzy
2788
  msgid ""
2789
  "Stick vertical floating interface horizontally at bottom only when screen is "
2792
  "Manter a vertical em baixo na interface de flutuação horizontal apenas "
2793
  "quando a tela é mais estreita do que a largura especificada"
2794
 
2795
+ #: admin/social_sharing.php:1552
2796
  #, fuzzy
2797
  msgid "Horizontal floating bar position"
2798
  msgstr "Posição da barra de flutuação horizontal"
2799
 
2800
+ #: admin/social_sharing.php:1555
2801
  #, fuzzy, php-format
2802
  msgid "%s pixels from %s"
2803
  msgstr "%s pixels de %s"
2804
 
2805
+ #: admin/social_sharing.php:1556
2806
  msgid "Auto-adjust according to screen width (responsive)"
2807
  msgstr ""
2808
 
2809
+ #: admin/social_sharing.php:1563
2810
  #, fuzzy
2811
  msgid "Alignment of horizontal floating interface. Number can be negative too."
2812
  msgstr ""
2813
  "Alinhamneto da interface de flutuação horizontal. O número pode ser negativo "
2814
  "também."
2815
 
2816
+ #: admin/social_sharing.php:1588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2817
  #, fuzzy
2818
  msgid "Use shortlinks already installed"
2819
  msgstr "Use shortlinks já instalados"
2820
 
2821
+ #: admin/social_sharing.php:1598
2822
  #, fuzzy
2823
  msgid "Uses default short url permalinks without using any additional plugin"
2824
  msgstr ""
2825
  "Use a short url padrão de permalinks sem utilizar nenhum plugin adicional"
2826
 
2827
+ #: admin/social_sharing.php:1605
2828
  #, fuzzy
2829
  msgid "Enable bit.ly url shortener for sharing"
2830
  msgstr "Habilitar encurtador de url bit.ly para compartilhamento"
2831
 
2832
+ #: admin/social_sharing.php:1664
2833
  #, fuzzy
2834
  msgid "Share Count Cache"
2835
  msgstr "Cache de Contador de Compartilhamento"
2836
 
2837
+ #: admin/social_sharing.php:1669
2838
  #, fuzzy
2839
  msgid "Refresh Share Count cache every"
2840
  msgstr "Atualizar o contador de compartilhamento a cada"
2841
 
2842
+ #: admin/social_sharing.php:1674
2843
  msgid "Second(s)"
2844
  msgstr ""
2845
 
2846
+ #: admin/social_sharing.php:1675
2847
  msgid "Minute(s)"
2848
  msgstr ""
2849
 
2850
+ #: admin/social_sharing.php:1676
2851
  msgid "Hour(s)"
2852
  msgstr ""
2853
 
2854
+ #: admin/social_sharing.php:1677
2855
  msgid "Day(s)"
2856
  msgstr ""
2857
 
2858
+ #: admin/social_sharing.php:1685
2859
  #, php-format
2860
  msgid ""
2861
  "Frequent cache refreshing results in slower loading of pages with share "
2863
  "target=\"_blank\">here</a>"
2864
  msgstr ""
2865
 
2866
+ #: admin/social_sharing.php:1692
2867
  #, fuzzy
2868
  msgid "Clear Share Counts Cache"
2869
  msgstr "Limpeza do Cache dos Contadores de Compartilhamento"
2870
 
2871
+ #: admin/social_sharing.php:1696
2872
  #, fuzzy
2873
  msgid "Share Counts cache cleared successfully."
2874
  msgstr "Sucesso na limpeza do Cache dos Contadores de Compartilhamento."
2875
 
2876
+ #: admin/social_sharing.php:1703
2877
  #, fuzzy
2878
  msgid "Use this to clear cached share counts"
2879
  msgstr "Use isso para limpeza do Cache dos Contadores de Compartilhamento"
2880
 
2881
+ #: admin/social_sharing.php:1727
2882
  #, fuzzy, php-format
2883
  msgid ""
2884
  "Enter the code of the language you want to use for like buttons. You can "
2889
  "achar o código da linguagem <a href=\\\"%s\\\" target=\\\"_blank\\\">neste "
2890
  "link</a>. Deixe-o em branco para a linguagem padrão (inglês)"
2891
 
2892
+ #: admin/social_sharing.php:1736
2893
  #, fuzzy
2894
  msgid "Username in sharing"
2895
  msgstr "Username no compartilhamento"
2896
 
2897
+ #: admin/social_sharing.php:1741
2898
  #, fuzzy
2899
  msgid "Twitter username (without @)"
2900
  msgstr "Username do Twitter (sem @)"
2901
 
2902
+ #: admin/social_sharing.php:1751 admin/social_sharing.php:1769
2903
  #, fuzzy
2904
  msgid ""
2905
  "Provided username will be appended after the content being shared as \"via "
2910
  "\\\"via @USERNAME\\\". Deixe em branco se você não desejar nenhum username "
2911
  "no conteúdo sendo compartilhado."
2912
 
2913
+ #: admin/social_sharing.php:1759
2914
  #, fuzzy
2915
  msgid "Buffer username (without @)"
2916
  msgstr "Username do Buffer (sem @)"
2917
 
2918
+ #: admin/social_sharing.php:1778
2919
  msgid "AMP"
2920
  msgstr ""
2921
 
2922
+ #: admin/social_sharing.php:1783
2923
  msgid "Enable sharing on AMP pages"
2924
  msgstr ""
2925
 
2926
+ #: admin/social_sharing.php:1793
2927
  msgid "Enable this option to render sharing icons on AMP pages"
2928
  msgstr ""
2929
 
2930
+ #: admin/social_sharing.php:1850
2931
  #, fuzzy
2932
  msgid "Facebook Sharing Troubleshooter"
2933
  msgstr "Solução de problema no compartilhamento com o Facebook"
2934
 
2935
+ #: admin/social_sharing.php:1855
2936
  msgid ""
2937
  "If Facebook sharing is not working fine, click at the following link and "
2938
  "enter the problematic url (where Facebook sharing is not working properly) "
2939
  "of your website in the text field. Click \"Debug\" button."
2940
  msgstr ""
2941
 
2942
+ #: admin/social_sharing.php:1873
2943
  msgid ""
2944
  "Why is sharer not showing the correct image, title and other meta tags "
2945
  "content?"
2946
  msgstr ""
2947
 
2948
+ #: admin/social_sharing.php:1874
2949
  msgid "Why is Facebook share count not working?"
2950
  msgstr ""
2951
 
2952
+ #: admin/social_sharing.php:1875 super_socializer.php:3094
2953
+ #, php-format
2954
+ msgid ""
2955
+ "After the recent changes introduced in the Facebook graph API, it's not "
2956
+ "possible to track Facebook shares using it. <a href='%s' "
2957
+ "target='_blank'>Social Shares Tracker</a> add-on allows you to track shares "
2958
+ "not just for Facebook but for all the social networks"
2959
+ msgstr ""
2960
+
2961
+ #: admin/social_sharing.php:1877
2962
  msgid "Why is Instagram icon redirecting to Instagram website?"
2963
  msgstr ""
2964
 
2965
+ #: admin/social_sharing.php:1878
2966
  msgid ""
2967
  "Instagram icon is there to send website visitors to the Instagram page of "
2968
  "your choice. You can save the desired Instagram handle in \"Instagram "
2970
  "sections."
2971
  msgstr ""
2972
 
2973
+ #: admin/social_sharing.php:1881
2974
  msgid "How to customize the url being shared?"
2975
  msgstr ""
2976
 
2977
+ #: admin/social_sharing.php:1882
2978
  msgid ""
2979
  "Why are Twitter shares not appearing even after registering at Twitcount.com?"
2980
  msgstr ""
2981
 
2982
+ #: admin/social_sharing.php:1883
2983
  msgid ""
2984
  "It takes some time for their service to track the shares made on Twitter "
2985
  "from your website. If you still feel it's taking too long you can contact "
2986
  "their support directly from their website."
2987
  msgstr ""
2988
 
2989
+ #: admin/social_sharing.php:1886
2990
  msgid ""
2991
  "How to restore Social Share counts lost after moving my website to SSL/Https?"
2992
  msgstr ""
2993
 
2994
+ #: admin/social_sharing.php:1888
2995
  msgid "Why the color of share icons is not being updated?"
2996
  msgstr ""
2997
 
2998
+ #: admin/social_sharing.php:1889
2999
  msgid "Why Facebook share counts are not appearing?"
3000
  msgstr ""
3001
 
3002
+ #: admin/social_sharing.php:1890
3003
  #, fuzzy
3004
  msgid ""
3005
  "How can I show share counts of my website rather than of individual pages/"
3008
  "Como posso exibir os contadores de compartilhamento do meu website ao invés "
3009
  "das páginas/posts individuais?"
3010
 
3011
+ #: admin/social_sharing.php:1891
3012
  #, fuzzy
3013
  msgid "How can I disable sharing on particular page/post?"
3014
  msgstr ""
3015
  "Como posso desabilitar o compartilhamento em uma página/post em particular?"
3016
 
3017
+ #: admin/social_sharing.php:1892
3018
  #, fuzzy
3019
  msgid "How can I specify minimum sharing count for sharing networks?"
3020
  msgstr ""
3021
  "Como posso especificar um contador mínimo de compartilhamento das redes "
3022
  "sociais?"
3023
 
3024
+ #: admin/social_sharing.php:1893
3025
  #, fuzzy
3026
  msgid "How to share specific page?"
3027
  msgstr "Como compartilhar página específica?"
3028
 
3029
+ #: admin/social_sharing.php:1894
3030
  #, fuzzy
3031
  msgid "How to integrate Google Analytics with sharing?"
3032
  msgstr "Como integrar o Google Analytics com compartilhamento?"
3033
 
3034
+ #: admin/social_sharing.php:1895
3035
  #, fuzzy
3036
  msgid "How to customize the look of total share counts?"
3037
  msgstr ""
3038
  "Como personalizar a aparência dos contatores de compartilhamentos totais?"
3039
 
3040
+ #: admin/social_sharing.php:1896
3041
  #, fuzzy
3042
  msgid "How to customize the look of individual share counts?"
3043
  msgstr ""
3044
  "Como personalizar a aparência dos contadores de compartilhamento individuais?"
3045
 
3046
+ #: admin/social_sharing.php:1897
3047
  #, fuzzy
3048
  msgid "How to show Whatsapp icon only on mobile devices?"
3049
  msgstr "Como exibir o ícone do Whatsapp apenas em dispositivos móveis?"
3050
 
3051
+ #: admin/social_sharing.php:1898
3052
  #, fuzzy
3053
  msgid "How to hide arrow after floating sharing bar?"
3054
  msgstr "Como esconder a seta após a barra de compartilahmento flutuante?"
3055
 
3056
+ #: admin/social_sharing.php:1899
3057
  msgid "Why is share count not getting updated?"
3058
  msgstr ""
3059
 
3155
  msgid "Floating Sharing Interface"
3156
  msgstr "Interface de Compartilhamento Flutuante"
3157
 
3158
+ #: helper.php:921 super_socializer.php:2375
3159
  #, fuzzy
3160
  msgid "Social Avatar"
3161
  msgstr "Avatar Social"
3162
 
3163
+ #: helper.php:924 super_socializer.php:2386
3164
  #, fuzzy
3165
  msgid ""
3166
  "Do not fetch and update social avatar from my profile, next time I Social "
3169
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
3170
  "Autenticação Social"
3171
 
3172
+ #: helper.php:925 super_socializer.php:2390
3173
  #, fuzzy
3174
  msgid "Update social avatar, next time I Social Login"
3175
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
3184
  msgid "Large Avatar"
3185
  msgstr "Avatar Grande"
3186
 
3187
+ #: helper.php:992 super_socializer.php:1936
3188
  #, fuzzy
3189
  msgid "Please verify your email address to login."
3190
  msgstr "Por favor verifique seu endereço de email no login."
3261
  msgid "More"
3262
  msgstr ""
3263
 
3264
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3265
  #, fuzzy
3266
  msgid "Share"
3267
  msgstr "Posição do contador de compartilhamento"
3268
 
3269
+ #: inc/social_sharing.php:241 super_socializer.php:2046
3270
  #, fuzzy
3271
  msgid "Shares"
3272
  msgstr ""
3564
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
3565
  "que contatar o administrador do servidor do seu website para verificar isso."
3566
 
3567
+ #: super_socializer.php:1914
3568
  msgid "Search"
3569
  msgstr ""
3570
 
3571
+ #: super_socializer.php:1936
3572
  #, fuzzy
3573
  msgid "Your email has been verified. Now you can login to your account"
3574
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
3575
 
3576
+ #: super_socializer.php:1940
3577
  #, fuzzy
3578
  msgid "Notification"
3579
  msgstr "Notificaçao"
3580
 
3581
+ #: super_socializer.php:1961
3582
  #, fuzzy
3583
  msgid "Please check your email inbox to complete the registration."
3584
  msgstr "Por favor verifique sua caixa de email para completar o registro."
3585
 
3586
+ #: super_socializer.php:2030
3587
  #, fuzzy
3588
  msgid "Leave a reply"
3589
  msgstr "Deixe uma resposta"
3590
 
3591
+ #: super_socializer.php:2046
3592
  msgid "Link copied."
3593
  msgstr ""
3594
 
3595
+ #: super_socializer.php:2291
3596
  #, fuzzy
3597
  msgid "Super Socializer - General Options"
3598
  msgstr "Super Socializer - Opções Gerais"
3599
 
3600
+ #: super_socializer.php:2362
3601
  msgid ""
3602
  "I agree to my personal data being stored and used as per Privacy Policy and "
3603
  "Terms and Conditions"
3604
  msgstr ""
3605
 
3606
+ #: super_socializer.php:2366
3607
  msgid ""
3608
  "I revoke my consent to store and use my personal data. Kindly delete my "
3609
  "personal data saved in this website."
3610
  msgstr ""
3611
 
3612
+ #: super_socializer.php:2378
3613
  #, fuzzy
3614
  msgid "Small Avatar Url"
3615
  msgstr "Url para Avatar pequeno"
3616
 
3617
+ #: super_socializer.php:2382
3618
  #, fuzzy
3619
  msgid "Large Avatar Url"
3620
  msgstr "Url para Avatar Grande"
3621
 
3622
+ #: super_socializer.php:2484
3623
  msgid "Login with your Social ID"
3624
  msgstr ""
3625
 
3626
+ #: super_socializer.php:2485
3627
  #, fuzzy
3628
  msgid "Email you entered is already registered or invalid"
3629
  msgstr "Email fornecido já está registrado ou é inválido"
3630
 
3631
+ #: super_socializer.php:2492
3632
  #, fuzzy
3633
  msgid "Please enter a valid email address. You might be required to verify it"
3634
  msgstr ""
3635
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
3636
  "confirmá-lo"
3637
 
3638
+ #: super_socializer.php:2496 super_socializer.php:3250
3639
  #, fuzzy
3640
  msgid "Link your social account to login to your account at this website"
3641
  msgstr "Associe sua conta social ao login de sua conta neste website"
3642
 
3643
+ #: super_socializer.php:2753
3644
  msgid "Thanks for installing Super Socializer plugin"
3645
  msgstr ""
3646
 
3647
+ #: super_socializer.php:2755
3648
  msgid "Configure the Plugin"
3649
  msgstr ""
3650
 
3651
+ #: super_socializer.php:2766
3652
  msgid ""
3653
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
3654
  "current version of Super Socializer"
3655
  msgstr ""
3656
 
3657
+ #: super_socializer.php:2775
3658
  msgid ""
3659
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
3660
  "version of Super Socializer"
3661
  msgstr ""
3662
 
3663
+ #: super_socializer.php:2784
3664
  msgid ""
3665
  "Update \"Social Login Buttons\" add-on to version 1.2.9 or above for "
3666
  "compatibility with the current version of Super Socializer"
3667
  msgstr ""
3668
 
3669
+ #: super_socializer.php:2793
3670
  msgid ""
3671
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
3672
  "with current version of Super Socializer"
3673
  msgstr ""
3674
 
3675
+ #: super_socializer.php:2802
3676
  msgid ""
3677
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
3678
  "with current version of Super Socializer"
3679
  msgstr ""
3680
 
3681
+ #: super_socializer.php:2813
3682
  #, php-format
3683
  msgid ""
3684
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
3685
  msgstr ""
3686
 
3687
+ #: super_socializer.php:2822
3688
  #, php-format
3689
  msgid ""
3690
  "To continue using Instagram login create a new Instagram App as described <a "
3692
  "Instagram App Secret <a href=\"%s\">here</a>"
3693
  msgstr ""
3694
 
3695
+ #: super_socializer.php:2831 super_socializer.php:2840
3696
  #, php-format
3697
  msgid ""
3698
  "To continue using bitly url shortener, login to your bit.ly account and "
3701
  "\">here</a>. More details at the <a href=\"%s\" target=\"_blank\">link</a>"
3702
  msgstr ""
3703
 
3704
+ #: super_socializer.php:2856
3705
  #, php-format
3706
  msgid ""
3707
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
3708
  msgstr ""
3709
 
3710
+ #: super_socializer.php:2880
3711
  #, php-format
3712
  msgid ""
3713
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
3715
  "target=\"_blank\">here</a>"
3716
  msgstr ""
3717
 
3718
+ #: super_socializer.php:2880 super_socializer.php:2905
3719
+ #: super_socializer.php:2930 super_socializer.php:2955
3720
+ #: super_socializer.php:2988 super_socializer.php:3016
3721
+ #: super_socializer.php:3043
3722
  msgid "Okay"
3723
  msgstr ""
3724
 
3725
+ #: super_socializer.php:2905
3726
  #, php-format
3727
  msgid ""
3728
  "Add %s in \"Callback URLs\" option in your Twitter app settings for Twitter "
3730
  "\">here</a>"
3731
  msgstr ""
3732
 
3733
+ #: super_socializer.php:2930
3734
  #, php-format
3735
  msgid ""
3736
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
3738
  "target=\"_blank\">here</a>"
3739
  msgstr ""
3740
 
3741
+ #: super_socializer.php:2955
3742
  #, php-format
3743
  msgid ""
3744
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
3746
  "target=\"_blank\">here</a>"
3747
  msgstr ""
3748
 
3749
+ #: super_socializer.php:2966
3750
  #, php-format
3751
  msgid ""
3752
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
3753
  msgstr ""
3754
 
3755
+ #: super_socializer.php:2988
3756
  #, php-format
3757
  msgid ""
3758
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
3760
  "\"%s\" target=\"_blank\">here</a>"
3761
  msgstr ""
3762
 
3763
+ #: super_socializer.php:3016
3764
  #, php-format
3765
  msgid ""
3766
  "Now plugin supports a new service Twitcount.com to show Twitter shares. To "
3769
  "your website %s with them. No need to copy-paste any code from their website."
3770
  msgstr ""
3771
 
3772
+ #: super_socializer.php:3043
3773
  #, php-format
3774
  msgid ""
3775
  "Replace url saved in \"Callback URLs\" option in your Twitter app settings "
3777
  "\"%s\" target=\"_blank\">here</a>"
3778
  msgstr ""
3779
 
3780
+ #: super_socializer.php:3068
3781
  #, php-format
3782
  msgid ""
3783
  "If you cannot get Linkedin login to work after updating the plugin, replace "
3785
  "For more details, check step 6 <a href=\"%s\" target=\"_blank\">here</a>"
3786
  msgstr ""
3787
 
3788
+ #: super_socializer.php:3068 super_socializer.php:3095
3789
  msgid "Dismiss"
3790
  msgstr ""
3791
 
3792
+ #: super_socializer.php:3326
 
 
 
 
 
 
 
 
 
3793
  msgid ""
3794
  "Your browser is blocking some features of this website. Please follow the "
3795
  "instructions at {support_url} to unblock these."
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, twitter login, linkedin login, google login, vkontakte login, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login, Twitch login, Instagram login, dropbox login, foursquare login, disqus login, reddit login, amazon login, stackoverflow login, stack overflow login, discord login, mail.ru login, mailru login, mail ru login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7.2
7
- Stable tag: 7.13.21
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
@@ -213,6 +213,11 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
213
  8. **Social Commenting**: Disqus Commenting selected
214
 
215
  == Changelog ==
 
 
 
 
 
216
  = 7.13.21 [29 June 2021] =
217
  * [Bugfix]<a href="https://www.heateor.com/social-shares-tracker" target="_blank">Social Shares Tracker</a> add-on was not working when "Load all Javascript files in single file" checkbox was unchecked in the Super Socializer > General Options section
218
 
@@ -2297,4 +2302,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2297
  <a href="https://blog.heateor.com/track-social-shares-for-every-social-network" target="_blank">More details on What's new</a>
2298
 
2299
  = 7.13.21 [29 June 2021] =
2300
- * [Bugfix]<a href="https://www.heateor.com/social-shares-tracker" target="_blank">Social Shares Tracker</a> add-on was not working when "Load all Javascript files in single file" checkbox was unchecked in the Super Socializer > General Options section
 
 
 
 
 
4
  Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, twitter login, linkedin login, google login, vkontakte login, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login, Twitch login, Instagram login, dropbox login, foursquare login, disqus login, reddit login, amazon login, stackoverflow login, stack overflow login, discord login, mail.ru login, mailru login, mail ru login
5
  Requires at least: 2.5.0
6
  Tested up to: 5.7.2
7
+ Stable tag: 7.13.22
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
213
  8. **Social Commenting**: Disqus Commenting selected
214
 
215
  == Changelog ==
216
+ = 7.13.22 [17 July 2021] =
217
+ * [Bugfix] Fixed a Javascript error being logged in the browser's developer console
218
+ * [Bugfix] Redirection after authentication from Social network was not working in the mobile webview
219
+ * [Improvement] Admin UI improvements
220
+
221
  = 7.13.21 [29 June 2021] =
222
  * [Bugfix]<a href="https://www.heateor.com/social-shares-tracker" target="_blank">Social Shares Tracker</a> add-on was not working when "Load all Javascript files in single file" checkbox was unchecked in the Super Socializer > General Options section
223
 
2302
  <a href="https://blog.heateor.com/track-social-shares-for-every-social-network" target="_blank">More details on What's new</a>
2303
 
2304
  = 7.13.21 [29 June 2021] =
2305
+ * [Bugfix]<a href="https://www.heateor.com/social-shares-tracker" target="_blank">Social Shares Tracker</a> add-on was not working when "Load all Javascript files in single file" checkbox was unchecked in the Super Socializer > General Options section
2306
+
2307
+ = 7.13.22 [17 July 2021] =
2308
+ * [Bugfix] Fixed a Javascript error being logged in the browser's developer console
2309
+ * [Bugfix] Redirection after authentication from Social network was not working in the mobile webview
2310
+ * [Improvement] Admin UI improvements
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://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, Social Media follow and more
6
- Version: 7.13.21
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
@@ -11,7 +11,7 @@ Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.13.21');
15
 
16
  require 'helper.php';
17
 
@@ -1816,6 +1816,7 @@ function the_champ_close_login_popup($redirectionUrl){
1816
  }
1817
  </script>
1818
  <?php
 
1819
  die;
1820
  }
1821
 
@@ -3090,7 +3091,7 @@ function the_champ_addon_update_notification(){
3090
  <div id="heateor_ss_fb_count_notification" class="error">
3091
  <h3>Super Socializer</h3>
3092
  <p>
3093
- <?php echo sprintf(__('Save Facebook App ID and Secret keys in "Standard Interface" and/or "Floating Interface" section(s) at <a href="%s">Super Socializer > Social Sharing</a> page to fix the issue with Facebook share count. After that, clear share counts cache from "Miscellaneous" section', 'super-socializer'), 'admin.php?page=heateor-social-sharing#tabs-2'); ?>
3094
  <p><input type="button" onclick="heateorSsFBCountNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e('Dismiss', 'super-socializer') ?>" /></p>
3095
  </p>
3096
  </div>
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://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, Social Media follow and more
6
+ Version: 7.13.22
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
+ define('THE_CHAMP_SS_VERSION', '7.13.22');
15
 
16
  require 'helper.php';
17
 
1816
  }
1817
  </script>
1818
  <?php
1819
+ wp_redirect($redirectionUrl);
1820
  die;
1821
  }
1822
 
3091
  <div id="heateor_ss_fb_count_notification" class="error">
3092
  <h3>Super Socializer</h3>
3093
  <p>
3094
+ <?php echo sprintf(__("After the recent changes introduced in the Facebook graph API, it's not possible to track Facebook shares using it. <a href='%s' target='_blank'>Social Shares Tracker</a> add-on allows you to track shares not just for Facebook but for all the social networks", 'super-socializer'), 'https://www.heateor.com/social-shares-tracker/'); ?>
3095
  <p><input type="button" onclick="heateorSsFBCountNotificationRead()" style="margin-left: 5px;" class="button button-primary" value="<?php _e('Dismiss', 'super-socializer') ?>" /></p>
3096
  </p>
3097
  </div>